diff --git a/tools/askcode_index_query.py b/tools/askcode_index_query.py deleted file mode 100644 index 1d413c9..0000000 --- a/tools/askcode_index_query.py +++ /dev/null @@ -1,35 +0,0 @@ -import os -import sys -from chat.ask_codebase.chains.smart_qa import SmartQA - - -def query(question, lsp_brige_port): - root_path = os.getcwd() - - # Create an instance of SmartQA - smart_qa = SmartQA(root_path) - - # Use SmartQA to get the answer - answer = smart_qa.run(question=question, verbose=False, dfs_depth=3, dfs_max_visit=10, bridge_url=f'http://localhost:{lsp_brige_port}' ) - - # Print the answer - print(answer[0]) - - -def main(): - try: - if len(sys.argv) < 4: - print("Usage: python index_and_query.py query [question] [port]") - sys.exit(1) - - question = sys.argv[2] - port = sys.argv[3] - query(question, port) - sys.exit(0) - except Exception as e: - print(e) - sys.exit(1) - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/tools/askcode_summary_index.py b/tools/askcode_summary_index.py deleted file mode 100644 index 07a3ea0..0000000 --- a/tools/askcode_summary_index.py +++ /dev/null @@ -1,159 +0,0 @@ -import os -import re -import json -import sys -from chat.ask_codebase.indexing.loader.file import FileMetadata, FileSource, simple_file_filter -from chat.ask_codebase.indexing.module_summary import SummaryWrapper - -# 为已经分析的文件记录最后修改时间 -g_file_last_modified_saved = {} -g_file_need_index = {} - -def load_file_last_modified(filePath: str): - if not os.path.exists(filePath): - return {} - - with open(filePath, 'r', encoding="utf-8") as f: - fileLastModified = json.load(f) - - return fileLastModified - -def save_file_last_modified(filePath: str, fileLastModified: dict): - with open(filePath, 'w+', encoding="utf-8") as f: - json.dump(fileLastModified, f) - - return fileLastModified - -def is_source_code_new(filePath: str, supportedFileTypes): - for pattern in supportedFileTypes: - if re.match(pattern.strip(), filePath): - return True - return False - -def is_file_modified(filePath: str, supportedFileTypes) -> bool: - if not is_source_code_new(filePath, supportedFileTypes): - return False - - relativePath = os.path.relpath(filePath, os.getcwd()) - - for part in relativePath.split(os.sep): - if part.startswith('.'): - print("Not hidden file: ", filePath) - return False - - fileLastModified = g_file_last_modified_saved.get(relativePath, 0) - fileCurrentModified = os.path.getmtime(filePath) - - if fileLastModified != fileCurrentModified: - g_file_last_modified_saved[relativePath] = fileCurrentModified - return True - - return False - -def custom_file_filter(file_path: str, supportedFileTypes, target_dir: str) -> bool: - needIndex = False - if file_path[0:1] == '/': - file_path = "." + file_path - file_path = os.path.abspath(file_path) - - if target_dir != "*" and os.path.isfile(file_path) and not file_path.startswith(target_dir): - return False - if file_path in g_file_need_index: - return g_file_need_index[file_path] - - # check size of true value in g_file_need_index > 100 - if sum(g_file_need_index.values()) > 100: - return False - - if os.path.isdir(file_path): - needIndex = True - else: - needIndex = is_file_modified(file_path, supportedFileTypes) - g_file_need_index[file_path] = needIndex - - return needIndex - -def index_directory(repo_dir: str, repo_cache_path: str, supportedFileTypes, target_dir: str): - """ - index files in repo_dir - """ - global g_file_last_modified_saved - g_file_last_modified_saved = load_file_last_modified('.chat/.index_modified.json') - - sw = SummaryWrapper(repo_cache_path, FileSource( - path=repo_dir, - rel_root=repo_dir, - file_filter=lambda file_path: custom_file_filter(file_path, supportedFileTypes, target_dir), - )) - - for progress_info in sw.reindex(True, []): - print(progress_info) - - save_file_last_modified('.chat/.index_modified.json', g_file_last_modified_saved) - - -def desc(repo_dir: str, repo_cache_path: str, target_path: str): - """ - """ - target_path = target_path.replace(repo_dir, '') - sw = SummaryWrapper(repo_cache_path, FileSource( - path=repo_dir, - rel_root=repo_dir, - file_filter=simple_file_filter, - )) - return sw.get_desc(target_path) - -def context(repo_dir: str, repo_cache_path: str, target_path: str): - """ - """ - target_path = os.path.relpath(target_path, repo_dir) - sw = SummaryWrapper(repo_cache_path, FileSource( - path=repo_dir, - rel_root=repo_dir, - file_filter=simple_file_filter, - )) - return sw.prepare_context_by_top_module(target_path) - -def main(): - if len(sys.argv) < 2: - print("Usage: python askcode_summary_index.py [command] [args]") - print("Available commands: index, desc, context") - sys.exit(1) - - command = sys.argv[1] - - # Set default values for repo_dir and repo_cache_path - repo_dir = os.getcwd() - repo_cache_path = os.path.join(repo_dir, '.chat', '.summary.json') - - if command == "index": - if len(sys.argv) < 4: - print("Usage: python askcode_summary_index.py index [supportedFileTypes] [target_dir]") - sys.exit(1) - - supportedFileTypes = sys.argv[2].split(',') - target_dir = sys.argv[3] - index_directory(repo_dir, repo_cache_path, supportedFileTypes, target_dir) - - elif command == "desc": - if len(sys.argv) < 3: - print("Usage: python askcode_summary_index.py desc [target_path]") - sys.exit(1) - - target_path = sys.argv[2] - print(desc(repo_dir, repo_cache_path, target_path)) - - elif command == "context": - if len(sys.argv) < 3: - print("Usage: python askcode_summary_index.py context [target_path]") - sys.exit(1) - - target_path = sys.argv[2] - print(context(repo_dir, repo_cache_path, target_path)) - - else: - print("Invalid command. Available commands: index, desc, context") - sys.exit(1) - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/tools/get-pip.py b/tools/get-pip.py deleted file mode 100644 index 4b66ad6..0000000 --- a/tools/get-pip.py +++ /dev/null @@ -1,32321 +0,0 @@ -#!/usr/bin/env python -# -# Hi There! -# -# You may be wondering what this giant blob of binary data here is, you might -# even be worried that we're up to something nefarious (good for you for being -# paranoid!). This is a base85 encoding of a zip file, this zip file contains -# an entire copy of pip (version 23.1.2). -# -# Pip is a thing that installs packages, pip itself is a package that someone -# might want to install, especially if they're looking to run this get-pip.py -# script. Pip has a lot of code to deal with the security of installing -# packages, various edge cases on various platforms, and other such sort of -# "tribal knowledge" that has been encoded in its code base. Because of this -# we basically include an entire copy of pip inside this blob. We do this -# because the alternatives are attempt to implement a "minipip" that probably -# doesn't do things correctly and has weird edge cases, or compress pip itself -# down into a single file. -# -# If you're wondering how this is created, it is generated using -# `scripts/generate.py` in https://github.com/pypa/get-pip. - -import sys - -this_python = sys.version_info[:2] -min_version = (3, 7) -if this_python < min_version: - message_parts = [ - "This script does not work on Python {}.{}".format(*this_python), - "The minimum supported Python version is {}.{}.".format(*min_version), - "Please use https://bootstrap.pypa.io/pip/{}.{}/get-pip.py instead.".format(*this_python), - ] - print("ERROR: " + " ".join(message_parts)) - sys.exit(1) - - -import os.path -import pkgutil -import shutil -import tempfile -import argparse -import importlib -from base64 import b85decode - - -def include_setuptools(args): - """ - Install setuptools only if absent and not excluded. - """ - cli = not args.no_setuptools - env = not os.environ.get("PIP_NO_SETUPTOOLS") - absent = not importlib.util.find_spec("setuptools") - return cli and env and absent - - -def include_wheel(args): - """ - Install wheel only if absent and not excluded. - """ - cli = not args.no_wheel - env = not os.environ.get("PIP_NO_WHEEL") - absent = not importlib.util.find_spec("wheel") - return cli and env and absent - - -def determine_pip_install_arguments(): - pre_parser = argparse.ArgumentParser() - pre_parser.add_argument("--no-setuptools", action="store_true") - pre_parser.add_argument("--no-wheel", action="store_true") - pre, args = pre_parser.parse_known_args() - - args.append("pip") - - if include_setuptools(pre): - args.append("setuptools") - - if include_wheel(pre): - args.append("wheel") - - return ["install", "--upgrade", "--force-reinstall"] + args - - -def monkeypatch_for_cert(tmpdir): - """Patches `pip install` to provide default certificate with the lowest priority. - - This ensures that the bundled certificates are used unless the user specifies a - custom cert via any of pip's option passing mechanisms (config, env-var, CLI). - - A monkeypatch is the easiest way to achieve this, without messing too much with - the rest of pip's internals. - """ - from pip._internal.commands.install import InstallCommand - - # We want to be using the internal certificates. - cert_path = os.path.join(tmpdir, "cacert.pem") - with open(cert_path, "wb") as cert: - cert.write(pkgutil.get_data("pip._vendor.certifi", "cacert.pem")) - - install_parse_args = InstallCommand.parse_args - - def cert_parse_args(self, args): - if not self.parser.get_default_values().cert: - # There are no user provided cert -- force use of bundled cert - self.parser.defaults["cert"] = cert_path # calculated above - return install_parse_args(self, args) - - InstallCommand.parse_args = cert_parse_args - - -def bootstrap(tmpdir): - monkeypatch_for_cert(tmpdir) - - # Execute the included pip and use it to install the latest pip and - # setuptools from PyPI - from pip._internal.cli.main import main as pip_entry_point - args = determine_pip_install_arguments() - sys.exit(pip_entry_point(args)) - - -def main(): - tmpdir = None - try: - # Create a temporary working directory - tmpdir = tempfile.mkdtemp() - - # Unpack the zipfile into the temporary directory - pip_zip = os.path.join(tmpdir, "pip.zip") - with open(pip_zip, "wb") as fp: - fp.write(b85decode(DATA.replace(b"\n", b""))) - - # Add the zipfile to sys.path so that we can import it - sys.path.insert(0, pip_zip) - - # Run the bootstrap - bootstrap(tmpdir=tmpdir) - finally: - # Clean up our temporary working directory - if tmpdir: - shutil.rmtree(tmpdir, ignore_errors=True) - - -DATA = b""" -P)h>@6aWAK2ms(pnpOdJ9~Srk003nH000jF003}la4%n9X>MtBUtcb8c|B0UO2j}6z0X&KUUXrd;wrc -n6ubz6s0VM$QfAw<4YV^ulDhQoop$MlK*;0ehK(> -3Z_jZ>VV`^+*aO7_tw^Cd$4zs{Pl#j>6{|X*AaQ6!2wJ?w>%d+2&1X4Rc!^r6h-hMtH_d5{IF3D`nKTt~p1QY-O00;o!N}5(98{@xi0ssK6 -1ONaJ0001RX>c!JUu|J&ZeL$6aCu!*!ET%|5WVviBXU@FMMw_qp;5O|rCxIBA*z%^Qy~|I#aghDZI*1 -mzHbcdCgFtbH*em&nbG}VT_EcdJ^%Uh<#$rfXmjvMazjtt+Y{4fL(0@tjn1(F!nz|6RBOjouLCQKB%tCsn -f_O;(TkT9D!5I2G1vZWcORK< -*}iONjWAr8Zm1&KuL0jC{@?djd+x5R}RGfYPBawx08>U(W?WmDk1T9S4?epCt{Z(ueTz)EC*E`5mT15 --&2~-DsS-6=uU3I|BmObEPJI*Sr)^2!Om@h-$wOJl_c@O>A_3OHg5wqIeD(E7`y@m0ou*N^~8Scf|wu -`N_HtL5`*k&gASg%W(oQp9a7<~IpnR_S}F8z9z|q{`1rb)-o!>My0eex)q(ByedFLGyO7=Ikq8}(HcH -6i;acy-%V$hD`fEosH@wgA+8z#{H{ToXOd_?&uMj~(yRVmD7BE?-`X6FU!78rkLs#HE1jqSOWnjp~Z3(}j4wN{#<0DmEaw -w2fbN$l@K=F!>KqO9KQH000080N_fRR(=O1mCynJ0Hg%~02KfL0B~t=FJE79X>cuab#88Da$jFAaCv= -H!EW0y488j+IQK9caJ`}(Fd$fl0Y!@S(qu_`7`j4GY`W2AORgkmF^c~CNIOp2pqmbfB$JPikIxRnaI( -d$@d&t;nJ-)LYvmv_bql6|TGa{sQFNz4LavGeEou*_H_94a(LN1=C8rdsM4*2yE6hPUP@awnctg>yu} -H|$_wbd;8;Z`Pe(zyLX;p2kr?icdfz-P*I4?c+HNr3qf)n`g?k9BBHfWtPnuu1l^lGI_(_KV-v^hNGExu>by~;Zm!?+4p|GYR4Bymg-3GHC%Wu;gF`s?gglU-mGD=5XMhu0qumO^H$R=P_Fr{?BR=O~Eqw{TY?3ue9pt3AsU&oV*G-;vD -a>`d!S@U$N$E@)j6PhU=^WjoZ)e0t%F*ACjR~4Z8?QBJJh2pR&bDDosFd&3Zp)+i0>i4M&?tIfBW@v- -6;vcK^IotF)3Cc^z##cyK2D`by~>?OTb)rBr1-1n0`K{f{Dp+4W2;rnmFU$wJJh(ZrF`Bks+6VOA;U8w@ -MJ^n&;oTTQ@=iEA>dhSd;sK*1;dt9rD{rnF&P435VVe89PFpK{B#8NggS -<^;Bs_i_Vh&2ph5dyRt$swh%C;-i2U)2@xg`UP{ex51EN#NR(6Bkz<6Q&jo+?B+Xu*a{TT)7Y3d2Qu- -DBP1K2*Fh*Bp{IY;7J)sf#@zOTb++R>j0|XQR000O8;7XcS&BwqszyJUM9svLV3;+NCaA|NaaCt6td2 -nT9C62L9#V`y-_kP9QSf2V13=C{tnX)PsolsJX_Jx&=d9p7_`6i5SMvz$qHBvD4Gc2vqMK2J#u@ -ySRoi8HJ74pBUZpQaDYr)B{xbde@6aWAK2ms(pnpT#zaG_BF002D#000>P003}la4%nJZggdGZeeUMUtei%X>?y-E^v8ukug -uiFbswF{0i$>t`ejR5^xfXOea{_5ITj{ZH>|-*eD9TSy6L1Q7<+BD=coNr&m#H+ihfTtaPW*CaBb)EDPhm;MO2-v8~xV^W?=HuY -yW@4N)bpD4E7iPN{ZMpU^EP)h>@6aWAK2ms(pnpO-Rh+|s}0009h000^Q003}la4%nJZggdGZeeUMVs -&Y3WM5@&b}n#v)mlq)sMeohb0q|`#7akqa^dt?6@-VxMnY$})4!4knnqaR;C0NC@qmt9fjY+cf&g@=d845GqB>#Df3Q6@sIQd$~UhV^2-JxNf}9-NzF`1KP$^EPP!BjDgrJ#>Qi4>CJ|YIBT^yiN18O ->I6o-=|&KCVYURVq*==@#@;5l(Fn~ji@s&d)czIER$jQ{M42on@+4PMFGTAV_Lui5OI)eZH#E3dVDP}pm5HJl)P6@}ev(w_5nLK977MTt12g4a0X4M8*6RW(N$^N!eE`wqv}M97l1btW3d>$(7*y;$BUo#X-BGO%h --7avxG?59?pn6<4JAL5dg&Kr8%mUr3Olfj4hbSaf(rc!A*oJih0_IwZyl*#s`1T~U$eR(ftMGf_0Hbg -2N4NF{+xn@>~sXf@9Y%Es0xhUlsaGerW<^+`|ASE&i(dXZPs}1yl3?#v~;+U4juRsa0% -IZDZ68t4y{J^q@RHiN388ir)H`2wkAYmC0Lvc=ZU&S}3A{$DU{Lk6<-?ADC;+-Hq#HBg0y8wvs&eOQ7~$JH)qX*&#jyD`uwx#gxl)UrjR=IGCAXWQ(DC{3 -%(k|}KLS`u06dEu04>%A03AF+iLJqH4rPNX0{GI5dO^V8Y$iSvTjvw~*gyDIL-Q$Act~gYS(i;Sh2Mi -8r0=pEnICA6H&|UqR6P-jx7WJEK0>nEFaQE@w5Tx|QZRexq|0T&%TL*6-AvV-DGSY;@R0X3nhV(>$832BS2C~XS23};4)N~sPQ~3<) -o~ay$EpMO2D2eHwp6Am!4ysJrJc}r(+Z^HsbsxL&ixD{W;#`CV@g7SV6c7vPEBhg2M%Ub10TRa^);;SBlMpiAa`=ba@y$Gz8Pw8rDOd(t?%rHhPX6@t*N@Q#XFU+%z`az1MX9 -M$g4QvtM|ye|F&6O=2HNj68vd70|Al6Ig0l2g|4N#gY2Ystn7QNfpT~gF-Xq)5<2? -v0m;(rXnnmq;gG}cQpi4eK*F&WmzEYQ-1?nmgHvpQ`rl^OxM{Ej8^0?QKi2^&-%Shr=y243D%EP{{cf -FH;q}Dcl$y>1&m7G9<2-IZA)Y~r1bn6T9Aka(1EZjmb^h(^DN{k7v48Qep;GdD$az`OmM6v$btzepx? -k9WLf_rOi~Cl{U%iNkVs{?9+#Le;Xf*T1$n-%R> -g&>pqpkhtfqC7yw%5Lc=QYZpL(y{y?M-29i`J>X1?0ZS=4IH2lP)9_#H)G1X@stI;9PX1vDGciDZjI- -#K3i4n*C$^uUKtpHNACN7Vq|HK;{Hc;q~i1VsLVaMI^k(me`(`d(NfWU<7wNBT3auQiqCjL74@M!rKswtla4v` -3#G6(=Sg+8G{fl*TC+%9fkoy5$Kv4ZHPoFW7L4_NkC*MY{2jmLr5~{8!$sul^~+B`xR6F0nnOS@y0tn -7Ec|L`m|!jxb!iShach){6PMGC&7sc4*v#gO&TF7FvqX0)5mL;5cl<6f|=851fDbj(0Oy5F!;I9vGZFTfHE>s -wm3sJextRs^ReYQ@~3W^@%Y6{t}d>UkJm3QU%z){|dk31a3n9M>}Y7704hIEBs%OFVXgo-4u(ofW7=>-C -i7veI*|(i0KFvu02TlM0B~t=FJEbHbY*gGVQepBVPj}zE -^v9>T5FHn#ufdpUoll+geqjNV>oUrKt-K+9dF@B5IgXP#ex`-BWb)8$#BS(m7@Q>=iV7|hN9$bn?8aH -hAhtG&VAo=hdZ54zm@4$iPy4_8?{qKGnr1OlZoC{W!;FaG}~OSy2p>EEV|!$x!LGq(><1EvaZXWsANM -sgd6@Ik9MLtR9N1PKPwJ%@m#0PT)ff--*2l%mxatHj*PD2mMUb5~|6H* -uzGl{QIR=N*CPJo00me`Z&%i`#DfEByY<(mgTKt!1uGEoRZC8`$7&Ryb-YF_bJl(34EWHy<+{o(4nt2fDC-@Sd4ym|Ke66>dBt+62{mxDh}GPM>7 -xg(fOnR^`d>lU76R3&Q(wU}izoloatx|q)9LKUX1RU%EQHLsj8z1kk{0w}hpM5Vc?1Vv2JTpA-dCVNSqL5dYblPO%3=O2oyF7I@v41AWtH**%#7+IIK$Ydi0TZ`PrOqkSy_} -|$bWb%c0kF9lCHl&pXzj-R|&b7N(@vygUk|Z)JU(Z7dV2d^XrYs!8tjxB8foE~QZ`MzNeFY~e%Eprs; -J7p~IZmt%WR3bMzmblP{g&l$JDnf!3olFTJbNPqZ;WG}6tdt5V#X=^kQd!}?jibjiu@RxNHg>U>XD7u -wWbj()ie9C)P>5#UN>9MPOmxod?7w4v6lr1lwzX_1rJg}7J{N5L#@FRPHAgrNjThG>|xQe__FDC2IM{ -x3$=Pk8_8rp{_qMMrIMaCIMkahrR_T~iD`s2A{e1r@ZxnXH=N@=Jy~S_xK!3)XH~W&Z)uz>&+5L1l<83iG`+7+0hSEwmGCI<eN@G;cE%RvlsM&`y4YTatu3UEr6iMP!NI&;cR1LRwbJx{}WGhbu)!%!J9{pvJo2s?~YM> -1(}KHCPdx=>syEs!-vm&X(5V)d8j{`qMFlcrnOLRa_lN$bp-`H^2(r?44|sdWdZisdMGhyuOR -xo!@EYI7VA*fvdN78e&ANYt)kEWW4?mApXtxX{M5%3S>6@t>ZKJ?wgVT-Dhi$AdvmIkVLXJ=*QYDc^c -_FRhdmh#<$|$+obGn?mx-JQp_VSZ#gC!TW^KJDtlqpl4Lt)}$9?Y9zykGBb=!c1nWg=3S?NsJX-dCDrFmSa&q*uN*nC`sAm#=hEe%|d(*R)QWK7 -EpWf&P&wguWKvX_2Ti(+=+Spc=5zPJXt*T4^J02H(pv-)|u3(-XQW&c-6Sl%ssSBEcUec($`NeLjc7= -8N!wX3DMRuuuaMFs0hM>wve78-pvvlVRjtQ9VSF4-E|5^0JAR<9N_rjfK=v-FG< -H0rGuNylGKR0H)V6Rt8(tWRCZa{W!+^a$6PePKt4$a{uP)d^scU{Vu0fp0iF?3S6Ml2SNp>=?xz|DlHX~XU;=51U<~MV{a?X -_4`|1v}(mXbW<5F8^Mf8{pRef_nvGagg`hzj4*6;mk>(?sd3W76(E2i?IcxP1jC@r}e}Lny?~44Q4Lp -j1BNW2msAb?!d995bZ>u1e5SguR02KN`RFAUA4`dO=I2)TNW^ioZl8|%Z;b4Jnl|wj9Jzdw -}ceILjx55zhZk8vHY|EmNKw^|!JXx;5?nJk~_FhWKvn}*bt%}8Eyop78;le9~*;)BBT0ru$&Zp=|TVA -zC+N84%zjbH~dmhD);y9*BhzM?JNyCesjiogl0}zi0knEsXly1^6$zv$t+rFQQtWy~D(AFsR1W{HB!z -x3pW`XuyPiTFS+CdI(*AB9Oups-bPPZ2M?14@@^|4Exj^M7?a)CJAj}422YYc}KE~w=1*z=tili^%X! -~N@cgUk0}rxp!qqk*^7(8~WlL^Z#iw0m59!-`7YIXL!IB_F1RGdN*6zW9p51>Q#16`(VB*=B$9?NKqX -bdQAc&!C^9lHSyZagDbwy|lMjkw1GjSZS~1PTs?vfDK3mx@gs4!s4PMCGc@EA18jdJcr>%2iQBWI8&> -36OCr+GriiNC#2X7Gr4$R(=+}d5qG6PrfPG(xZ#YSEB@23C+v;A(I^ABVCcPgMV+=XkciMylwo(2w^(om=jv -2E5uW7!It6x&?Y?KnbK=()p$^1+>FX`68qiHk3(Uhm6;HEbkBwEjZKz}y#*zK|cmI$ERF_sHa-0_^P) -M>3aFY4w?6yJTpH`Qe=0Y8RUqKESc?-ZirB-USwFNgQxLsy_X@#WxxJih$?<>l+-!^_LdSIM`}zI}N) -G~gyLS3n4dWXG>tGJCV!FA1zULY70uSl37Q#g|2&K?jolGi8i`iD~GfOsvW>cZKOlJq!_+!@iOy{B}( -Hhv6c7uOAf2{^bYV)9^iRx85#I{QHu`b)EE9De8HN*U0reHG^I_7hH(rR|^d#Nb_Ab#;$_bdp$vv -|%-L5C}#vnRF4i1VWpguKG;P~g;l@GP7MuEXda1;Oxj-?>*2N29-)^pwyKyw@OyxiM*vZ-aN)-C)Fj) -4b6G&DaC(4(SLT@m8wVQLKH(c}S^No`X{cS*Z0TY{_>ff?p6+%DF-HqC$HMZ&ok1BuNu-CfD3H$1zKM -ep|==cQlS#<^rU;_&Q^$>220+OIk@knUb*{w6RlSxQkd3-6bLVFxM)Amr$v!QE3x5&k=V!4THQqp@Ib ->}zLdp^&Nnh35LLz5v{uxwP>sx_jqezQ#eK?1_=qV(t)atT=T7Af&bq+m?}O?4=oIh!eE{d5N7<)iMv -?J37WgI{?)8jpR`f4GS_!v>c<>P~FS(&~>QrOq={m+`pIxMJnAXK>Dl?In>v(&XNppFE3GCZQ+fERb(#ud0ni_g)iAB>WeGgA*}F~;(jQ?U2 -7)xjMJr|13M(aGtNrasrch34Pa$eY&wLmFtV*jM=POwy9x>@KHmvwrx;>1^^3P)h>@6aWA -K2ms(pnpT$Pd4o0(007xE0015U003}la4%nJZggdGZeeUMV{dL|X=inEVRUJ4ZZ2?n%^Ur1j9Dv -PDK*~qjOWx>{Ik>2n%FKVWEy{QI+t8&d*&E;AYWnSLwCW8Z3q-#E4>`<|-6m`uDCJMG7Kx`>;u3}hpm -*yK>^$Gv7RHT7P~P!5{r7wPJn^wbtYaAmDYCo=aaLe^UqiNmx -JouIJ~*x^(j07-tOJ87HVOa^FnPTPXMDaeBZ1GgUfWQ>AWBjv8gAqIDE}su&Wh7TBSuc_*oPgY%oF?M -)*4#GgZscVDQuV+1rzM$&ZIu$7hG{k6~Se*oi_!Oe`&-jOU8$H+XI|I6nK7;QFiNeY}MO6)Ts%Vk*>C(AZS+c%YX|iCQi0k5|W+(`W%RrJUKc}&M%LSFM(R3I@WZI%`c?een;%>cR0`aiboGV9i -E;XC8y_yN6Gow>8}ky7laQS0S*Q^sUj?I)N+_4=xLG!Gy;TncK+db!rrI5YtBFdG%pD55dWEw#<7FH;ok}I5IoTP^p+d%i0YxhUm)8gze!~VY$Lr<QvSWo$oL@fR`Gl0M_ig$s7e+7Ws} -m%MTNQ*Uz-Z -XKA@=>ucPuNpqRqg)It2(>iNOpU14SPjQNR(PjA9n~ATGFErIlj4a>KR|VPFf$6@~sv+f{u3@CpzEv8 -37G+s&hRi6X9tIzrjUG8M43>#BzyC8LmWv8r-W4}lM3_GV<*2-=x=9wVV(J0vDzpqZg38@K#44App>t -$GizZr0#fsu*1PD*jg~iXna*v%m|E7!b$s6^g{fh8Vqwg^CY`=nsuf%?I?yU4jS0x!!3II%8BK@uhnv -0mwn`7rVzmbjaXeDiAI@%3<`MXf$pX5PDrF9^>P7Re*+mp^+*0_AyK>U+`#$FNQ692sA>!Z_an!)TB> -#<6tTJunC)mte%JK&%Nn;q(Vyy-jvb=)`q`>MJh503TA+) -P>u>cFe!~pG)0O1cmVKXTuLHe)~ifN=^5d_#;ffs6_A6}e*cZS5I20yA;Wb;N$`p~c<@H)F($3l3f=v --Bol2iEAS!*X-6_5}CuolRs$iVNx2Ce1Br`XdX7uhri@2kjwQox*hET9|}ObU;_F5x8n;<_k%ggqLw1 -9ZEfVt0TYT4TX@s&>dtEeJen%?!{UP7*u=n`LR8YWe{fBC8;Xi3MaJM#!2H^5T%8i8@Ij7tfbtSY77G -p$Q;fLIRsZZkb?Im^4`}`J*|eT4lk>OW~K+o2yMlVX1*U8Z_^~OdE)Z8G3ZwO_;ZDOq2*B|HSj@dwsC -Cis*eu;6MpPW>f*?)*g4j)C#j{28jS71Nwgd5LwsXfk!YQ(rW*(POBkAV8~$ubVsAkPX9^!3wa+~)&p -nlSARi^@U%s~U>9v<|SFn}8Du|w}4zVgs@nL&Qcvz84{(vBf_-dYoig)FJZF2L-tQ -d6PzVlLfd&}0%$Drhsn7G2T-H--#HuAvo_AvucW+m8doIVAzEDQmGdJwf0}T_!w(?4_Zu@ds^^XUM#y -=%-yTg;a94D{-^pss=wNN-64H+g>nqyA)z#DeF-09ghL_cgA%Z2Ue?eX#>AgeWHGh2t(wFS|h3DE^s3 -{QfqD?v0C;>E~&$AIGX)w-lnQlwzCt66ko{Q^g=@fTNXkHU#pgHwr$|*6=`%Y5B=X%BL)H1ng<9Q_vgyNz{jxShS+z?vhB1hP2kFdvD -rV|u+zngnchSLbYFKO{a{|p&xS(=W~D!t=L;}zWeqStLSZZgYj8mfOh0Uus>B>^Td5--G5natX_j>s4|>*t*oPiHM&1toZit@wyq=Sh0Sj!S*xj -*CI$Z -sMo|s^cm?IQ8Q?-BD_@t{{ajo)F~_{n(wwEu8|5ZKrw3H24c*2cb( -l2fvOum+^%4x9z#ym2>ce$sfccJOVbvC>X~;Bi7XoMTZe%VG3c3Z0OZ?4^QgajBIv5bQA_1IdO2)*{y -Y3sfA+7hQW#GPIp3_)gAALk+-Ewp~`dutJEo(FpZzxmVD5;|I_TpcndIb|J+bFp~;u6cAbiV6N_F5d}`;_6EY=7aV`r2~=$K$BgPa~0xgPnm$M4sc)Z7FZ*DiQhgQZ{z%NS*A+(=h`Di`i8i#Cuo%q@@R;tSZF`^=CQZ5?&RTjc=K0ffZNcsdIMqZsIJM{^(IHjx@GPkQ((K?4Z7$kDUC0fg$!zJ -ugG>^&6<0w`Rq@VH;@HQ*$gZ;<9Ed-&*#0~LhEL?XLWTeD!O+@^7nL4S+*hd??#ZwDd}IS@MaH;03o) -h`2a?t5J4=x@*f*CnnGUl!PbpFy^UMN<+QFZHlHl@eJM@}SSz>MhB+SW{jIUh-*kVHdD&G9i)yO|)xx -yCN`$Yvk-pbGdHqR?$2ZepWtWhSfLnQz&wBMzy<)?rWA##vY={`!W4hf#{NVMMC^mf1c^l+)gdCnVY= -zYmf;6Xo=DgBnu4x#yMTx>%H|y;2+J%iZ$7uy&CmROQe-v6X;iVJ%h6lRIxAZR&gMQm2^z3(BUYCjwq -qmM%LgtRayMwo{!Pi;?!pG5=h3weFKfI-_)MuNMfmSxv6Fuo@KbZso@6Eq@@~Oa0`aZO& -P%=!fRhs}4*iqM~nu(WI3LWaSFrLf(hF6b`XE@!+)~>Zt>0(9SQe`DJJ+8?t0beaE0Z%qHTfpy{H`gT -^R8uVPw&`w+{%=+0?Y&3rEIlf9e1$`WvQ3-qiWhCVps$M3J8PP1+;+1zH%>;6xvq>4kkP1ia-(9RKagUua9OR*bYLMR?mW9zX^Ba{5)WPeAVHb0fvpViVEgI8ogXOdDCv!Ut)|b}OO4DuZOf>fAt~I$`h2yJiGgm(~DbQ|rVTj#_RCg5=)K_c~3svi&O*pK~|bSD5O-B&$B4Hr)+z;i7z}}E=2(za>wrU>@g^6$5JJzIE2MD6`Q&c?-in+2<|x)U(9`1Pj@~l5 -rtt&UtRfB2*;~x4TqV&9L-?44BC5N9#m>hD$;wk(s;o~rb;FbSC6><-!yQlOhD0Osvn#SBY@4)$M2kM -F+U9|_n`akDqVYBpt_3II#gV?qPib9aZt1!I6-W$mhu+!M~S`deCKyue#i9I-aD1=o_nX_d6|3v9<62vZ{}YS2D=v{VWn-mB$H4Lda`mF#IY)c`h&yL!A*-J!R~VJ&hhcvjQ%yY!_xun=HLmox6M -eQKML>gbs633BN7_?Op@46=RXYZ!_kdzV?GE^v9>Jlk^PHkR-H3WU8|EhQ3rGM7}!yH1VMtxmhr7q9J3Cgpf(i -i9M_6saLdyEQ6RZS6PA*8ax+!~RLWWX}Zv!HZ;dl9yRm(vnEv;Nalk+yT$?CLbcXDw8}@qEa#z<)X-| -`691Mu?nNRa4!9$qpL-t#4?YoREjt6FR#SgcUPh;)}qWsvRvgwDP~2!6k)b57fCi34+(yX+f}migCr| -uk%j3kG(XB$vItA*3xWy%$qy?Tl{j)Prc#3or!bNM`7BIRF-uaZ4BT=dk5o0)2tu291kWlp5(+R+W0B ->hh~-LVvB;_U(m(P%@90Ql8|B$7nXke^$-;S7$`56lOwE%tkHS>ezvgq8oB6p4%Z1anu2{Wv{{oN$43JGsP`gNxC*9y@Cts{Z<|DYjSCW{NA>##d-_XRhH+S -irv2BUk}rVLMKY~$rn~w9mGOUgph{#_-TjPzBC(S~E@cKYK^~HYI5EuR&t>_Vo(+N^3zsqohDS$7PmZ -35%P5@9@-#-4dvX-ZnFtaU+{tM;4I;p7ppFILHWcHp#1y!UiBib2Dl+&0ikH!1Pm}yd6pN_ -8;Z~R+S@^A-jCUaC$#l?`cuQ9|5Ki114PhQt28MGzz_LDFipek?&PYdxplRWVhU@Hj3*?v@=2QMt}l`hMpb1JSs><14dXQ9o+v595?4n7@=C_K=Wi#TE&u}g>js)G&FL21aLrCl&Bq^LAMauU5fEoJS;%Wh_H|bLr^}*^Q2Y?HJG6uO -k)XS0RUtOkO$BMczB&kmoV@j2#*!QV$lP{V-TQ9R~7dlVFYSXtpKwRW7JD>Jgt%x`0Lg;D`l8gPo6dm -Kcig=TQezxpyov-)7i-W`n3Lf2Ml^Fo@%*w?GZk}t=>aeWPpoz^At9Yd2G8mBO4WSje8#2qO_Z8FNOoD-PUQ0%LUtPd0=x~&qtegkcLIL+cz;1O!%{wFi*rJQx)(_2poe3OidzOcX)Q6#4` -462asls7EN%(uL?F+iRvpXQBvU&3eR@(h9kW$4j>fQW~@)V2DrM>39*B39~`wtY$*}ju5Z9)rAoBPsQ -nn*f1;Vwu$_-A24mt!^M#91jZCwR*<2@vlbWwJ@33qy$r5P1x9blr?Du99%Tdt8es6(6hCq!BAI_T!m -U%Gr?QWZS|GJ^(K|n$`2z;Zlx5r}Bob&c8Z|Lq=F!Tz5fsKg0fa#8%?MB*Z&{)uY!wtMvQ#_ALWkDcIVjXm7y&OWfhluQ)ittIMvXV0t?3Es)fyWTLIEtqa;e6z7Iw%5;Yj>Wa}v}P)J<+U -Jr4s1XLC4`=sAF3!xf;>ytP08~_oU_&=6-BB}^T3F;U?Ed^A7<7e(sr9G-}G>eUFz7A%>ip{cN&=OKb -JE{y)B~ldb)o+%!xzhoB#c9pq}vh+cPSS_CNpqKX-H({w9+%M#^t8xu5^*e}4Y^e|+_EGlZuH&9G@~| -C%}f>IL<#Vb2}3l%Ci>vF@aJLN1=amfJmV#|sxwWBazWnlpv~z1&i0J2B{$47)-1bv|fan;^T?-npW7 -HJ3nT@DEr9A|w)iJquT_D*m+^3_J5Ym`I1u(}MgZ^NiNuvd|sNf0vm(M9$Ru$yQ?eZ_bkr{d!LK^oKJ)Owy>AI{sIP#GY^tMfUUA!fZr -raL5uVCd6EAlqw;HX*>qq>4Z7}kJ=jH?-JR!=XKkXqNUspN>OM@9xJ^xr5Boo6U71V4lWUhEH-h8K7}I9bX;UbRF}%7Kx0d4I`mFsX%wcl| -wdL#CH~=82R3&Xt!A=2#fWTV75aBex2ZM`fm8|?0S!x5B2;*H!Db6S7;!mG{DQ2Jw5N0gP5atZ(WF@0 -ymPEw0zUSaKbhaB2?YCuMXE8pGVRf(HjA1d79;!V12jbox1Ves9x!Gmonb)K~@cM>lz5Rc{pSWIcboh -Oj+;%xJjBtT)=Z3-!(LYtfdo#H@eQ|nq>Y>r(oqzky`0VY=cb*%pQ^`C7l%!q~8`q20BZiL?aN!C-Gg -&H(aW2ApHVsK;n3MsEA2DDT4A>D-6}Pu9;pyAFe3@5SOtZPYCFLcHWxNTkV~B)IpoK+eD@IOQ{G6SiYd9{CuXt;5 -gAvb2|DXSKj)+`G>~EnK&Tl=KT*^fQ`ZQ05~&IW>p5ocSy>#6#N62aoSBKDsz4Q8XjS5jtXQOjcO)CRwy%N1zT-W -0nt}q3*LrXnKccfpZh@60s@1s6$FNcA-3ekXv|1QdG=nBEiGkn5BaDHk&}MyPSl9!oS70*;;*p4Z8OA -00yMQ&+L$olmhtw7YQOV%x31Fv+sOgSyUda0-uM`=fFOuTmp`I$rz;JK!Ez=|_ap}mKs&}P3+F -MyZ1VY^SDHSQ=+X5gtp+p%y{B)@*OqF~zqz$UG+C?e%Q4A$&SsQV-Si^B~O4m+o6)+TSZP -ft;2m-6>6(Q>2KGIrjsNEu%U7XYIqZ%Xv<(8Hh2@bAKK1H~uWYuKsWUS8mZo4Z(R7Yn(9altL$! -=YSfJ*yDoyV0KnkH8d3^K>I0*3=HRPDBfL~O8qb;ETJhZ4tR<%T`4F(t}i1HZ3Q<6EZ5tj -@FXhJE+5WuoeDpO#*de#1TAn%{OlOWPQvcbFw=%orPuYr`zZVw -A|)Xkj08LXq(Jl}To+H8Ynbl*&4xNAeS1f*`>2L7AJ+dtMVu*)p!WfpdsHJ4$TJSTbgnUim-v`kh&T- -#ij5^XRRbBsx#-pU0=4`)<5h(wLYe!4cDF>&_l2H`lbdJuJBZcHuR|z7$kM`{osAwn -|>WkSk_B~MjuQCQy$#O^+_5or*SAiAWJ_lVp-J61c?)+N@J{od=^A_9wRe{K^#vGTDg#H0bt7!C9KSZ -0GPkPtU^x{V0D_aKh5LyfJ22;(A>bKQANRqM+27OE>K3Sc3IzcxUaG9crL*uYkf|^>4Fd4=?}YHx{pc -e^OQIoOLT!7!5v8`kZ8{b&Cz)&#a)&^WaD|Blk2~big7)T?nBgCuwuvJ6upU3DCT2o=Tr(1Ucd~~HK^ -;^EQw%;fEP1!<`m&sfVCK;`2$9aB|{;001;PL)q{^DRra)m`D1VkRHZC&NDB%?0tT$JRg$5E(34T@o- -H_|7)y!e$Ru8rj{1N1{L;eUGf~LK?@$ey4 -s$w62hH#|&RAy-R%y7_GIN!qE0Iu!3zXy9F@o(0G|KLP#I)ta#|aKXt{J9)y51SPnJ_vqSU#e06&SXwSrZHOmKlu<#Hj+_I#t*VrQEwEQ{riD~_3R@EvGc -YgFX}ANU{>Y_Y*QmoEx*FS=3uUuL#N7g%xa9r -Aeb_y_5`zgu}d_HVi33o2_hQ>HdX)t1hBIfIfKJNxQr-QPG*rdFznsmxtqJTYcUlE;Iz78jbzFvRAc3 -o6-E|`nv$Nz=OJ8keF99_F;;U^c7DI&#`G}XpM`psh=9_+2h$?j>XXgvAr`%Qv -t^T*nHXKJ72sqDL&ZKU_#N3&s76NgP0)+3G3--9N=q$7SBVL<{?rcETTnn4{sbewg6@k#$cYrv9`QTE -rTNKZjHw;I*D2;&2iVRkoP3=!sUvzkS_*jGwf{REc&owhh8pm!i+E)@!3I=p9ugZX^3`2RpuDfW@~_R -%-P!7osB(;B*YQ?p=BW}>YM3{d0v946ky|B6>UA$HH}_Zn)F6O4`BPNWJ;!2nnW0VADT6QP1sPSKjEp -bdZ~KHBq{BT2%PEsI>=IaB3|S%5GhIuu%f}r<73lxqOs?sbycFrt=CB(vwnH{-Mfpkt4Z+c^zv1$Ys? -y)G;@QFhG`#*Ipd@U9&PT0Lja$%^l$ojR>6R6MTfQI*EX*1Kfo|c<6XP@JW2 -CyMiA55uXOyoJ3`s-3gxoj=|;xGT$c85rB5~riYjkJ9MKN+ns3IB#qXOfNC)J$lg;*cSLKtTDAty>t(8%e -J4c;;<3@QLh4NlIef=86)g2%zwOpx7kVw{(#-V5ud5=KF&{kp+D6Oo!`sNQi^v&5$-O@_EDLyz#DxC$ -tBM9}d${V%6_a!2(#S0BNPzc%yPg}lfNGP#7 -w=F6J|tKHAwPsm^cY-dy5bd6cZH-x$iKLdj6}gwSmrd+^v+TKrT>_srP~-}d`$PN@S$-h#fBP9x$iu> -UBtUNOdng|ry#5&vYf(n4g#}WEQ!Tn3!s5XHf~PVmEuO!uNj1v9{|W4uX5>8`|8j!^rmg;duw*h^Rm9 -XfQ>2+6sStA&}hhd=gW12j5V-d8-FA66x#^uAmgAZg^$5YuBGoTM_fx+lB+?KFM&RZ%Co`HWq|g}oj$ -ewZk_A87txtdN?|t3=D!_r<9OB+U~bqD$HzwvveO&gQ7yvX|LF_x0HRnP`cFsaxql!sKL7n6{`jXu|L -Fzx4e*2h!vSZ9{?l~$ok-%0C=>vDWkFsH=to_ggR9`t6-l%Ky|#V!5+()OmDLTOFo;+M5?7ND_+ktI3 -TAzZwmwL*n7|ZhK?~7cCQ*UGS#Vh?Y^gx{V9_UCn4y|>g}FrrF&tc5mvC>Q< -7(bT_rY$3>x{#MQlMe_j)u5FD;PZuevq3La_v8XP%RTVSH_MY?{5YE~!;Cu*2pdff-86#1dWS_-kFJv -yozcC;sne5<>Rac)Bv$S{$NS9Q=H=J&HMwJh?qSRtt?%oqTy*m}pQ00_=*@AJbK_7Z3Hpz!a&^vHVXQi`7p -_ft5E(n!%Ng(Q{rAY|G@fnb-p=OJ6d$d9?XR>PHm2Y+=2VA@Uz#sxy4a6Co3Gdg)77bmMthB$#Bg_>) -76$;0JFs~|IEWJwW)htRF2wqHHp1yy5 -6-@qeHMw|u`ug<`!JE^!V1B*`CKng)E@*7e`|$`ZZM`epgBomcY}8u$EN-YYav5eY460g=1Yk%8RWDk -9%z8)ABx!~G>GCRZu8mQ2L$w1W@LE0_^&(wjdN32O)|;dv -WY~8U0Pd+6>)WqD^mmudqenVt0fM0i#t(oA+KZUOFQ65nGs1dpimfH;4sHJ_Fxwr94?;zc+XJnO$_V$ -;D&&y+cuasyn#3gd_n$Z4b@UeY=0_gA#g9KLOz}mWcB$DM?cbnY^FXh8z$XpvuDZIwn(CMI*lW{@8Jf1;~8Es -SV_ily;!;rH0^>U^)t<(^#S(8J6|YH4OkSpv$oYB@~%_fIhTHWpeKXdds49=aZ$*iN?uy7O0jd6qFLD -C2tl!Th}T&3bT2?HMd79VW*J@>cPPq<8K3lShM;l#5+FrUu-h-2)pqH8@H-nXLMQ43b}6Jjq#{t;I&* -Q{NuxqBR&DA@dIE!+A?&PBuM#Hx1LyEvqinSK#AHpMqH|{hu%V6pT6we={0dm&i_mXL~DOiEig@r81cjQhAA -aIh7$#8@ -%A>|F^J1X;w0wVVsP7ydcwEnnGLmeze^#Esd}QIDm@geS9*N1E^?y)H0|XQR000O8;7XcSCjg_T=l}o -!Q~>}06#xJLaA|NaUukZ1WpZv|Y%gtLX>KlXc|DN9YQr!LhVOm~k<$vDeHm;EY{#9(cG<0z;wDNWaBL -wd8+rS=DXkDlNaEMWKS-IuR;D}x&0NIblhpR`%|<21-yAN72Q@h!;SIh@#vMGq17 -&L+)M%RKXCj4~ET|~I*uzi+O6s92SxZ9DPKZsxrfBua3Tl)RoDl>E6wF;E+vLc++nSFm5&NF56wsqZO -1cL{gvpGx4Phjkmb3559C+mzm^hH?f*PKmUSIqTaI3?`gL>gll^vyu`lV8+$8554sZ+g~bNZ9WjB-U0 -v_T<1QY-O00;o!N}5(_ifY@i2><~38vpc!JX>N37a&BR4FK~Hqa&Ky7V{|T -XdDU6pZ`?QzexJWW=RRZ%%s4G@#bpP`9(J)^T!7wQur06;K`_wR@{Agfn2-rW%~=X8w_BJ8O;Jvs!nZsGZcx21%y)UNmm#JK;s#p_ghKzy72S3-(@Gw_ -yM2QIB^sFW1YyT0aZbXcL8<-golkYt{4miEqJZWyF66X~bSAH?DuDo_Qym-=|LtmOP}ZN#%qA4=VAw7 -Jash`HaEOowAO19mh}ajL~KhUeglyhkK(x!S;V1WEU5-UgY1>TJZ3aNI9F$8qu<~wCfI{vDWR{Iy2Xs -Pb-X3$(BE|jn>_YtQp}3qnHGf;E<{X3N9FGmW->0fs^y(t8`+&U|_IhErt^wnN$pv;=+6WB-Z_*_uj3 -0?soG*VPr+Kwt6tNSU2En?X)?pyeV)AerFzOTcK+8NlSHEf5D1zsR|FZKsP8P9}X6r`$ae|JIij9?C~ -d1oJti7_E3bA$A@BrtEvY7taqY*O5V}NipMeDo#sulZS=*jGgt_R=-2Rwks1sZsE}fu_%i7;1F{=!SVpHR(7JAk<>jmU>Gvhdac}Dwq*a}mQ27)gN_UWmTK7jy -L*NLV7C^OjsIl7X(dJ@+0R~Zm6+LatF9aqpZiYM(sc)Bdr`|)il!P3zf@yedUL<_y%)?@|GS587u*_pr7PCbr9d{ZJIpq7|vdPI;DiX#aBGTgd&&5)+JF#R9nkEAW^n&lU86K{Zv81TStZ+tjp$7qH88FVs=!7LWjt-jF7@#o*fI -O#v+kGIo_Y*7qJ0ZhaH45P0ppg^taed0CFKlu~O;;0VG&t=bAVFX-FSe=EF-=&V>>QYLVtkFN*~S|BI --1v}NkWhWFZ;+3Suym*!kNIy#sE(Q}xiGrw+eA5A17=R_!$} -K@CEJHv$Z-%kV5G|enRe}}hWKLrboR^{BV?e+eRSY-s -MP!$PUu!C@mpo%g67FBW_>zzZqL@Ny7rHGoaVxyVWcz|hV10yJZfhE1d;`Mw3zyMD-bXLke2PJAz0vr -c`tY#Ci0bq3)A>2#c2Z0EpJMQ(!KzNIukum0HtKJLh`4y1s6ttp^LunEGC&&Gy<|1IjFeZ_8=@WsP)Z3C=Dd_`*mG^l~GX5FCI-(OkcIbMxl)^$$l&Y -{Am7scOByhJbUlehuRqp!D_4+qXYV<(XF)R@YeuetX2^GQ`Wiz~-mJi!*iAN*GkIQ0B$7xuX1Qnsi)= -QW>-0Cp=E<6fmN}C=4m|r1Z;}V@cziSg&cPmz$Pmtv@;MkoF~G#oCw-G6l({A?}82AebEO -f5ELCd$R#ujGw9^VF`}Lv+AH?Xv!%3nPwS4TkJ2n9Ac+m@Z#))wD48KpIpXYK!q+x*Tc{7I5;F;4VDn -z4)F2VN^BtdWET%WYCRc}1d4$sdw0?ZTV@^!K84i0tpCr{AH9d>bz>Vq-hzGbM_5*YVLE~Uz#u?s7Kh -p-XKTT!gv#1BZG=gK8JOYToo75Zj46|$)@)Cc@4?Faj;o)fnk4u#AOI9S)t-y*sB(?P8?cZNlH`Qyr8 -1QxSn9m$Xy#zYiq+IzWVFKr?_1dTPdR-!E{h)opR-E^ees3T -27~uXow~3{7Sm8fzr62O(0001RX>c!JX>N37a&BR4FLPy -VW?yf0bYx+4Wn^DtXk}w-E^v9JSzC|WxD|f)uV5VvA}>5b5iHumsJEMDCc8niNsyV{pdAbZS)y!aWKk -8V@fbn=d%werB+8m3yY+)DkvxazezVxuve7J0HP>R#XTrW0ZIx*$OXU}KsoIrd<6l22S^4KuZnvV^`d -3-&I&D;kN~*X{_0GSlqnZ_s+|!k5R;EgE#Y9JiU9u_TLE$==pl$SN&o7 -NQn)oZRy&mkln>?ouKwzUPg?DUZld$5Le<61RJbpb^RvRm+Ve_(2{hiMsuS3SP`VMDmelmyiKKg2ne$S`iW6Hnlhh3_I=i^?%kQwt8(w8xO<}3HKFH<{Xw* ->Q??ioNSEhhK8g9H!@%F>jOCg&??}SQ#Y55JOj( -R7nk_9P$GaCQ>kPP3ZNrmXG_zT9@ -%;KSdHKsVTeJDuzt7M1=V$r#+0U!9Ush*V|C!HbGl~MRv$YQgF?f7!)}kb-(mhX-1&+a%SVHV8jgUix -n$75rA6E>fvS8;w(C^B~39HHGs1YI7^bE0QFqCLvHVF>vE;7Yxmp*&;ebj+0;vIj;#TH_A01ek|QyDl -=Vge1BR`G%abw%{pTMdm6jnGLF!6XaFGKDlr7Cn(~WaZA&hmOUTsg;RMH#oPXpmhrxKYgA$Xt*c+-~? -ftb%&m?>*mO`gfP>b=^bbM0ggn`&_H$vMKK_)Tm8a4E*i%lVY^WPK%WlRlFbQ$F`@Z#Qe)-a -`*f%el$;u)2p7a%ZIuYnb75tskTOxLR^7XEJC=kS~4tToE2z0=tuN%){n3eQ*adzvknN_^>*Gijfoy%)#qH -Y@Y^2$d_FghM9hHsU3!ls%POhQ!66~YnNP%|8oZ`u!_)j219E84014bF;NNi(x(k5j@MfJ@do>tD^#_ -pDs5pE<@CVT-jzpj2=}{qqB#NVe$SHjNm3_yaeUGod{MmdBo&AC%3hzb5o$M+O>A?G;CK%Yx*hc90J- -0x8qNW&{sp(5aXXEj<3CHg4FAEpKM4FdLdJmf6U+ -ih>ysx$222@}J=&DO&p|Af6NtYaJ7a3*ddE3{?3S5!;q_!|kmHB6=Vln%dO;a%*T;(ll+*1vGoKD~oQ -AU(r0P_=+0WO!pHh~1_zJdW=hR|ApH1c2z{`G}y!;%g+mkq1x1Q%J)W4S7fk1v9!cXB#9nlsK$aRE_| -oEZJ5L(4{*>1eR9$m_^k6h?Gr-RG=nEv6&%+Ahh)2?aP*LE3qTf_MSN(4<`L1;ReJ;UCk4e5c -IDHpcSn=l&Q;AbQHacG)t1Bu%CQyu*eX53A|V}fH57^S_tY{eQep$JN_HXH=p!CEg{i8eA|@+aPI`79 -6kX}zDvvQU|3tOQc!6F(hnLu#Kl`z7k!}6@YrSodOy8lRueHS{%iKgbTO{*?eHm1?)PlOo)&x1z)UJj -B!}UKQb+GLu+vhNoV*cqHI+$qjnVp+HqfhT>^7vy|zt%cM13N%O6B+sH{AL4wZ*OjpD7n79*`SWQwY% -LC9k_LGJt;1a80N!Dm^$)kHvhDChEVLipV@N~J1!_Wb;7bRVFBip-lxKhFIH?m0S^-M+f -T-PK=NltF=^;#+i+gFJ>dR)!VP`?ACj*nYwO&&eA8Bs(C4VIqm9UE4q6r!tQ|4%{Jgd17%F{4n{NXTD -P?{G$#e8o88zG+YI|`pEw%6M_M8o`$S;v!OcomgDJ_9W_Z-gth!-dY#Jmrd#nL?!d`Q2#2t ->9NbZW;plSqP!oW=5@mnmWu<@&CZQ|*?f3C?(^?E`nILtvpiQ?Zk6IL=y6PO^HQPVZli_V7)(Txe15(6}+># -@@}|kV`iTT!$(;k!+}lb@)0EYslPs^zP+L-zKUf@#Z486_%wWrk^C-jEqSy;&9daVlhSpcL)pglZL@J -3%ZFySU(i*W>OSdy=T~}D=FnxWL7TUS$5ofCmb5tt*>+w_E3quR`zYk#Bj8q4?2hK4*Svf&CTsHbiv! -@$S;GUzB*FHNSg{3UNpa<+7XnTQ`dZJLtu!@UgP@uOaDi}YW5h$Y -Z@w;-UVJ|{{t|3HU(v0B8O2w9%Q&MTwkHQ-f$F$#x)H-kO*=RgbQhE-No#GP)h>@6aWAK2ms(pnpWuw -`(R`Y002TR0015U003}la4%nJZggdGZeeUMcW7m0Y+qt^X>4R=axQRr-5P6;+_v%i{t8A$Pzlkgagay -5zy@d>yD*T%f$gLpjDx_FxVy?}B}J6(yb1E(J2QNUq@=w|+q6Ih*ta4%!+Fnes3?kF^~F)hq31)}vpx -K~8LPUinghE(3QeRLU!0PsJ03h?)%B+V9b;{n3T`e{WrmMOvzY|T__OL^7%W>BXaY}=z;7!|91+S}LM -BeZdVDyIWL@xpJC472`C9Syw(DFw$nlk;vC8=tFe4sWfILOlg{sTq$3`drhiuZ*eCS|Y@fxW0|p{W0% -kz$Ra=7Iv$|?-4YqIK_l2c|*W-CH`6|3K&z -&NYugQj2jcVB0)%j?8iCP#I0D= -7A1*~ZtK0Tgvbwqzj5o~S$~FYN?Rd{m3=qGaAchu%-Aj?N=h-2HbkSaYl07w>(cc~{r*DXg*p(sJ8;4 -XA%Oo*u$YVQ#XOZ>A8u;h!g3F{d*$AQCa7*aZ&79xYYInmdur<(BhERb4SJ|8h(&Yo=U@<4ri~7taaB0D{gkJDk3U{kYYVPbxm~fc3!}us8&Pe&*1PS8JZ -Pih3{ZOW?90e+l*S+B78Q8YTJ&V#AEK)*g$D2u(sW;>=QTc>b85j!qqS`EFO*_!54v`_sxBaLwK4CAY -J~&pAbu9=lRlh-+1^BciBX%&s#OcJFlC@2J))?Z6rX3NRWD~jVKzzz}>KmVB7Y~-3oxB>02(z?vMGsMZCAm-U@6(^g`Og7{;uGi#Hu<6XCMeu+h1srIU1yIR+`XVn%G2Ak?6}NbY&htfuS-e<}X>g31f<|M;YzhE2v6DHp~l#F --WuSHa|Xl!(fZzwjGCzeccjOw5zjdY-%bW2IcX@CdUf=G%C8#!eACFo6N$2oCV}{!=|nEf_YyAb{6Q& -Z=mRh@*mPNykRL|M##J+5P1@@Wlp^(A$|vu8@!!i6pQ5r(&1fhBr+j~`XvoWP5h|uMuT`lBMsFpF@bagern6|oVv9v(QWELOYVEqc+=f1)XN=LcbW=@`RVw5s1K^7m8`E`Uth^=#`(k>1OHq8 -INd!i#?nc4QdKWlR@O^J!fAzvc|xs>C}=x*BEl;`{IrZ}+P41%Si$00VeOeU*}0ilP8+^C=e9Y8oLuv -lSBcQ+I()xv1GxPdh-wLKiw#N)7t4$S-_F0EFJ#HbbmO0_@dZ9_yas#NcW*r%%XJAl|~vFfur)#5 -^vWv8U+;_MT($%SV^W4>)u0#hD*z*{gPyod5H9$P$ukyT|k0k`y7mX@sRGY*MQl}D4v4sbFkizmwKMpzqu2j;1;|U!#O9nI%_&>%G(;Hc -qq@Ii&SYM*Z7OGCs9Jd5mQVhsq -};cfoGPsIXAPZ*~Y#_7>*ch!?2X)gOF6xfBNai%wiAh2z-m|2z3cmEtyl|n2-*Vs(i*6`Ec%o3ZWYZs -@%{A)u4*9<`|448l`F{ZdD5bmS3ycL*3qhZ?8?;qm6s6wv{ukvk8_u8F1*)Rjp|jsC1xu1$*tVtldv( -)tmt#Vx!HYvdtX0Eo8nhyYhah_PoG=78&{?1ha)IrZW~1-e~RzQ#UN0MCjT2t2fX49_WD(;`pFGSl{! -$0hbGmq|9RCpQTlg6qrVRuB=<@MegmFeKr4)JY@n9_GFxRwyR2kYvYiI)UnIdH@-Bmwv^4Pa_jHT&gj?LtnE5aq4)&lgzQs`>{Uo{SxO%~SX*H$V-vlE)$E)c`4BX%hwm?wI9Xj*EKUR^1CR|+30xS8(Mz<5SV<;pp~ -h|;+P%#(zK`r7=r=_GW20GabfnR&cGvvfzZOf+u0TMnG&(W>3ewY|K4ZaceWlUfExb1rwrsOh*dU+4? -QKYTqX5yiy+sXXSgSe1jiaGT5F0U6N!RosA7#}~Ks(LgyUrdtLN9#*RWe=(paxm&KKtHur6T4-=gxUw5rSXXl?B=Bma`S;u+iS~JLP%Hi4M -BEl@7#6iMC2Ug;&ll=(X(D~JT9u%k4p4gTg&bsB1$;B?mjGGd;ZC1pYLV`pLs5O<|L%$c_oWWu+#xPi -uYx80EXk_p~w^RAHA_{Y-`rKjtMJepDij_tdRZarfRO|=8J}fqRJuTa*DD=wyTQuI(wq;lGqo9Cl;Zw -#O`iKCi!<1)*ug3XkVi$FwNH9%*L)f -XfSBY}rhG3=^+jW+Z&p#{cdXUTLM*}ueHx{@;}&0AR -BW&bqJaU>U*-KjzNu$%XYtX^F|lyax4lVO5KeoWZbFahex1L;lskuF3z+QPjU@)@$Nc>f94>rII@>}G -Mm}Ag%9GHIz$$2U90w_`shr^AhLm3L@LADW;epY3&w4i(j-NKhI0qXttgDSE=Py6=}V&6X^Sa6lWgIr -B+W4%B{lW}1B2$-0IU$OdO({U7u+j{;1b9=&C{Ttf7AqZcXzY)nfoA`*`VEJKBcVxfhz5xns50d3fre -Lx1$|i=T0~Ls=$?DJ?FmJk`6haXVWL_wJ6$N*gD``4@vVx-8x&_&;R$vEvd12~ -Ml=gr_;l!*cU6daPFI#b>Y>#-|H7hG1|^8zA)T=eaDII26nUUa<2Pj3Vmqd=1#R-`BsTv9P)h>@6aWA -K2ms(pnpVzt>NIEo004vl0012T003}la4%nJZggdGZeeUMV{B?y-E^v7zj4=)aAq)h2Ua= -xY9+Z5*2j*g(u@U%+{60u&XGW8Ae%;5Qa?!~sZb4#VCrB0EFl0Q}=Dm|us2D>mcs44G$x6X>>&hwToY -DjDk1RCNe`g_Xd-X+iUN8?xA3g)?KDyUid8HpvO9KQH000080N_fRRzQwlr3MH902CSk03!eZ0B~t=F -JEbHbY*gGVQepBY-ulHb#!lIZ*6dFWprt8ZZ2?nomfqi+cpxt>sMgu!;obS6Z@z{sd6P#yRP+SrfjEj -P^m}^1xbi0f(w8%(!WnPK1hJ1#&&d(1fUz}*WC}@NRs4(IPi+-Bh{o8&rB*pJ1r`4YHOysXb5kVrghD -Ba^K>w+~;T#Dwz8ogL7U^Il8r5U;Xh5RlWwptMQ0Hk+~mKX9MKs(tB8DLJto}eiNj -zLuS=uU*#!>r2DAE@LN`Asx8+DkIR_oPEqj#S~e5}mBjtyCS0K>eQAEH@fJAbEKIP`vx&^L_E_{r?_5 -+5^X#{8|Gg#<9y!MaU?N{T=4KmPV9+2*RPxlXgqo7HxZ00A&Loe2GkQpq+ -mD*>8e&#IFWUP0y2tbgFlwa9k4W2>qWMt3w@Eh2Mu$&BHqpTo+%#FnWBvZY#5O`@?l>_bkSuV%D~yw7 -(b~Gg_;zO0Ncy7%p~><2@q-BF6>UVr0bFC~WDVkr>kt7rNRFgG9KFCP$sar8|I|3C5KVnqf0iA~CfWd -knN33v)YVi99Wo>4>C2IYC!Zm!qlP>G^0etJ`uWDnoKq16|neMkpn9pkzuSKK$o?1g3cX(e -(bE}ohl=Eh3_jh8C&QyOXb-U!D8_0iia%Dxi3X6x88G`^+!h{og1=r1Hz;HXO7nU*BM|4BB*#bSc9*; -TF>@EFKwJ-XS`k%@s69uhnpb8T*Khupf}+6gwU#-4}y9I1@_Yu%Sg`KLb~9zNcE`c(Yq?!&`;NWj_xv -c=rEprWWnb12}KBCqWL04%i`nGY6U7tpq4U|#AJE{$|UXLs2r>m=L!xHX2I!z?5#GF;n34hGj~dR~&J%t*SQ77;TK_?~@Y_Zx3#jB@L -tl=XK%Z`w}JZuq6&5Pyxf`x2&y)0Krg0vCrx8^LFz1fl>azOiL^>%Bx`Sv!Mvchnn*RW)r#1I-D?Uz_|Sgqm;4{ImWgt&s)pBQg(I5tFi!z!i}m6t`B -Tn1PkMwmg6lU|jdJ4n&BDx!j(!=`aMIB{Q7tyu$AhTG2cmpQUk!CfIu+(O -|lc$Lg@d*=GTu%0lT{L5_Y8aDHMVLCg9%?kTma|y$wf92S`YcAV`c@2oV!Twp`-{4TFN3AEt-m+5Q;j -}D~Of8oJmD(S;%5o~UY7UbXL?k`+=TlhDL1Tv6gWdu9sV6GA35~KG`gcdlp_1>>VcPjvhehHuh)#kLI -k7sj%66zL`^vDI7;ixNHUu1;zOl8n$Is*~t}r!l{FLx^dz~5VY2t3(u|&)bAt$WAjT0)-Xx?-~gJqPP -kkt}dEc1oc4`Z_OR>ej{RTv&(mbwrDJSx6uf#(nu+Fa6Ex-tor+OizVbHpCM0r?~wGAz&*oOq&ermhb -l4wNj$$PbTdSGZwCOwl`L92__c -1Dn$PcFJjV<$e>Blciv)(;j366%z5+A`YP{$l7k%}-Hvak{9{TBz9DMIbjjeDjXnhUxgn!!0 -uVVcHzM$L-rPayu|hQ{tQyUn!f!2;3nrLEze(Olt1hT~&Wyl__U2H=AFFK{JS=;>?1v2VO4U~Qn}zX4 -E70|XQR000O8;7XcSK}__p0SW*B@E-sGApigXaA|NaUukZ1WpZv|Y%gPMX)j`7b7fy+Z*6U1Ze%WSdC -ghvZ{xNZ|L(tnP|%${I0E)Hn71XDTx&FSg2cIN5d;J+(KdIosF6|}ujv22-$RPBWXspPeJCm%E)x0hd -4Hv&D7q3>viEwk5qZjzOjtW+^lD@#N{PR^Dpf9R6h(u9+7#N9Y+2<=sdZ+<^M|y@2;_XUv|8RKQrPYq=CvR@xtAR(#NABTAq-h1Qm$tStCSr47i31BU13;o|XC5Za -z-$o*wzt)AaV5Ur!%+YximPdu|8Vy-yB-fleN4!=M0(wI$zO@I){aM6f -7}?OjbFJ|VwG!Ks^nf3t@UXRq2LLGw6#2wV8 -Y`mc06ojwf_3ZAOQ=jQl^ZlFAEcJo~!ALI&gW_A=X^=4T5daSEVFGR*^8LJ#N7Ax}RuwZ@{CkW-yaM(hb1{@6ZRa{9u>U|2Bb*@*QCi^(AKS68*-kDjpTeZ7z|v344ydb3Et6#^O -?#*h6@I^ffAXM))aizNQm>F3Ob|&^m@S-NTUGxATlII2bRhug&tcKkYp4$h)09{9%#fw0_W*ZccUhVz51=YT_>eUPd*wpkc~zr?u>gKcXr7yC(G#9 -;G@IQZ|qlM=C`N|xD4rR^2KB~9CeS0H05gmaG#|oPETDBqBf!by35FliBbNP=|i`^XsXonK?uD-tz^bMg0tXymf5wgvXlg4b>(5DX60Jh`kSp#x{Ky07Tp4`Ee&NihL00bsM2KwQoQ -HKMqR#9;z)ZIXG2wvJ>>Uw(O^sKy)dS=P4W4sqAHT97qf57 -jkNo5PlQdbVTomkznW)}b}`fHuSw1#o+r;Ce!`KqlEASi`6p^06wA7>p&tu4>d7pvHAkH$Xk;qG)fgI -e7v831s?nT`)_IAy9{c^DK5ml){Fk8bIz3Sq1c2O~1kB_=tN6ow1)_7-R+`*;e)-@rRjOx($VF{N@#U -WcM>BfTS?e%DmiDgOVijIkC7F7O`!H^~o`da?KsesHJ&i{(haItu-rrQD^v!@Op7dL?zkl&;OiH+jc1TMW>DEy* -`Rn+*nq5S@Z>h4~xo0MI%xTlE-e)YWJ2{2E -pJGqE3gxCJUq~b@4K-^Yx-=dfh}31hzl$RQ+9k*bE?GG!px>W8hmQ~uiDaQIf}+V{3W*E`fQ>2((IhJ -Q7Un%+eV0ND|VL4oQ#$7rNjUSTX}v%dW^$zfE%&DxcyUw^YZr70xKayVyn1XxYrf_-OWcF+ns6sQ96zcu9#wEZ$2o?vWr&<}RpY<_orc -fsZeN;p0`P;z)U2^DDKi}DroHx4ckTn+ta>%4y`gHkRBHLyYlflXV43C0g(7ksUCmU`sz(Q#L^(Uoc@ -mP^E?ZF)+!pqbRVTN(JiZ~Wpx+Z-+LQh8C8T|4ZVc#iI;_ZZ0ebawwVkEp?n{ucG3l5faBmJ2s1e;MD -+&(p{GBfoqCgJWMMto<9~L8%gv4KYuK0)irl-aKa{@T)UoYepRg21ju;I>KsqPF>}&?+T?~b%}taG*Tbf>2R9{yw -2!9JOUZ@Ddq6~qUYF2?VOB$dRztwb!f-leP`b>v_cBrkGg;Y)7pe#i5FrZWl=vmI_tr+gU`4pIuTe-;%DG5lo!!iZ7ar+2=T -p$8`E-UstHdJKpa))W4c5=Xh&GVTS>AR{&xST!f0v36?HC{_6Y6%Y1j-QHJNJB@U0jAcYzNO^@zab@b -Hpin8v`Fi+&rA9q6a9|;Y$gFAxox1&8*ov!(NOZs`PgHICRFnX@Xs&l&3enBlo*~HO)cIu<4TvV%JbQ -3OT!N0$Ip>p8Qb6T3rP1T<8dn9w$!lwl5y?Ff^*_yPAMtMlm{88eZx(h!gVSnm7aYudl^j<#q0Uq9#A -3k5Y{BA#^Keg_^sOa_&1m7e@^rwo5QAB6rR9k -OSC-(r7sb#&NwDeP=Pro%;Z8g?mb)>WH_jYM7vI-xI=P@IH{?*8>goG_ZP3&FXcs${Tv<9I`F~sIN4Z;QVNx2#jj4*BNOVa -A|NaUukZ1WpZv|Y%gPMX)j}KWN&bEX>V?GE^v9>J!^B@Mv~w8D`w%kBDqUqD2nY`$5u&7 -_EI_(79@uvA`svLpk%Jg|NZ(kFA$VvDz3XaS6LE)nVy;Mo_2)@7llIxBAAecD(+_gS-4=?p&{_0#oQ7xTWFr3L)2s;vU3jqXi#bFX!w)@fDiI#%m!Eq|*UUFa&!Ex -hJFo57rmMpp%nKceN;%W{*?i+G@$^^PWFe!oOUF(1ybTQyR@r1?hI49$#epw0ChkRtE4Yeba1IWB-YCxGvCngcWa0IN5E(|n -{ZH^72D?g#{rlRMyzvWnN~>^8+!6DI7EfM?1go27a7Pn{I$D(GtXA)e(~OpC2dzmu|9WHj^MTBlW2cJ|22SsHZs`Qr3EIXOOgb(;L}`g{bO+az^0OV$-^t@m9ZR^?phb-XC6RoW!Lq)k=k2 -HcPI^n@Qi&^s&U`n~CNwmp0OK-(s*a8~PWvxF@oeJ<(Y89nRjOH_!LX}#2TtrwT)@7}&lUL9Y&I=$H6 -X_eJ8(*@YSDW|}sy&iHk5a`ITcMRjdp=X1HNSh?XUatotNmXf9>xB1AqLCH@Chw%hqTFO+xp`IJ(3Ts -j@ptNNS?Ebm!9U#C`1>5;g6NQbByEs&X$ZBUzj>gTM;*pJ>Udn;)C@`~GZO&gPez304E8>^Gjp@;c3R -MEQE2e^xX0pPzR&>hwTM12tdHDqqCUWjkA4%gJ>vz)wn3z#_%{$r19%zN>pW`)!{M;!CNHal*9POO^w -uJrw8nsbPH6vL0Y*o-v9CvV^}8F4aPEnd7V0&~#lj(jny7O6o1Qh)fW}j5JXRpfH!F~@4N37iOn~)CA -DN_2lD{vqysvKcw)R#={R=1jWbgYk@mC3`^QI$AHsZNlML1q`&4`2TYPbd@y)=+nMAwElLg;Zip9@k4 -@=M52F*f|hLWtQ?&u)`B=&hvEtUO%zdLlx3B<*->PZaJjSPLnaUEco@6$Q>57ctkcSyx#>A{)lr)D7< -AJZ(@SIr9N*gcNn4p35GX0CrN_U_xp#*Z}e-_FIS3{M%9kyF<%Lfqj7lruR6H@t7N-VZsK*rpBRt%C) -hQ)X@G2=)E0S{9oC>95w2gWgqAo*zX`Gy4wf}>h9O+G~4qAL|v}YMj*}L+Fa9LL&n}TE7EG4ltsQpLi -u8T0LvH*N9sc~0gO+gkIW-AEqAWbc+z0H={gaD0DwWSJ&Tq;`NL5#ByJi+xt;S(QC2#D?$7p_dX2IQl -(-m%z&GW6k(cSb7CDKtQywvDwE|Y6LBM2!v9&;|%S|=Y)V|8VwzSqMJ{i|*J{%inV(HNXXA*k_~`EqRd5_W-shJORgjS%(Yaf`*;fOJONYCJB=F)U9=0a${S3k2kXF>}Nbv6*etf@P -3Jz_^2>EQ3@70O<{ZBxymJ6exg(v3o3>l`TSF?S4cH{>iw@9QjEGtdG58glo`U(Zf2teTDa(n^`YHr>4ZZgxqq8?mN_w@(1q*%V{(*mISmasoytmZ(I+<7x=qiq5=mzL8^PM*t#m$=?%sl%1u*ebBaBHg$j08y_tfo1Y%eFGLZJ7PUosz80Uh*6) -2bLW)8-#$e|(OC96x=_ImyV)EE!}b^^G+1A@*s1;s=%GMf!_h0sTe6gc@V#a&jF1;r@t(kjEHuzp3s; -A3eBc7yTc_IStdQr&0_I6g*z!E -VBh?$o4VH?@wPXQCmFnneZJS#Uv(_+Z4{8hZn?m%7v6;Ob!H%)8<0I)IV^Q?jQ9KpnpDA-Ww>ZlD-=7 -nmqm9AxNMF|FdjxPTpI0plcdIxJVAP?PY(ZyyB_y>(oU@+p$i?r0Jvjdsrmw*~|*5a4&*(cbYl%ez>R -O9BBIfA@FZ}fl}{=?0XfCTgNpFEaVJi$d=L)PX2T;oYGW*{|~l@*X_T^4iFho$=4@%h`=Z(oko>G}D) -a|U&C{`&Iu$?+SbH+?v{z5|bJ7)Uc$D>951i)%FykP}cOL*^a8(<9ey4Pv`==o|ST#)~Z1{u3 -~-y+(`{_j#q86g2#in9d%Cya&AGvlQiLi8_x(nBqei`y){0r1fw==6%Ujs}=zQWEnVHJ7X@x#J_|qE>O9O&PhDbEe-{Nj-WV0nO*bL0^ -tR}-5UF0jXijlI)LQ1is>_K$&L5hg9XO>ZCg^p2<@skuKi@Cu5F6cw9PIe{mI1oWF&^^>V -;&)LA!1%~FuwP;L;Z!qrY7lvKko6z6n~^fviQil@}3#V%NoIhYe}**5fQ+GLVnH5PCFJ3d&83qgL(+o -{A@W=gKS7qXZY)Wn62^mbO^oFTj8xT|WhbHG;KgB_jOrC8fC*l5(V)1St=n1K% -t#?!Gvuoy7JXvK7cp^VsH{Og4hO#vd*xNsEUHlzufUudoR7Z-2Ti3j!VRN^*93roR5_h1Dt~ -fN5%er{lBNLyE8SnGM(n6(}cslcyPZj|PBfK>b4%Y>?=CLi9{+UuC?WAvTHSI|A`XQ3#@`c3@5?GW9_Oiyl)lr -5%5rnFR9WL=Z(ahP5lPGRPUF!Y3fhW}JYQX2o?Wz2<{edk2F7OLc5y&oX*U@n%0G@r7y-MH?vwl;KfJbrX;9Lvjmr9HlcNhX#6AaaRfsna$`0cE5xxxOB+)~0DyPMkKk)B`E) -9weHO*(BN{6U25Oy`Vym&g2P|p3iLngPblnZ9Yfc~@J^WLI~caY{;;?ym@y_iC?Ah -J5{02nqY7~topkhQ8RN^zd7)$x$|sORp@ -cS(xrRfSyu@zKg>8|ZtyY`Llz{KIxe<0De)!d_NZ3Y8s~$?CgD%S!i_Lj2UoRuA8b(0Sz`Wq+BWF5_5 -npVP^lbsBA}D^d3yx;ezDATwLxkn`u!~5z*?MuAqY|CiQVy?N+TD4!qwM)S -(W$sTg`)8ldbDK9Q>we+6Cz}+j%S$nQ!7bfloVKO?ett>>yz+PWm*i(JmGsMSbmw0FU3gk@k^ispbZc4<@U&%GkEb8czr --~rAQ(i6ur-<-vb(}$Z7!JG%bgyWPcy2`vOn-JP`Zcbfd=MIJU?vR=@9G&q}!qYcNl;|?%@=5FXfz({ -H+=0yI9E?iDeBBH!jzh!?V?stq;t__u -2S!*H2 -!r-2h9Z~j?}0r!QqNl}E!4fHjuI1`;SmN<4Cu-P{U<Gj1q>yZY+dzK~(qzl7O84=V%A%CD#abQJ6M ->iOjQnkU*+Ti3_u2du3_E*St1(K?2-74R=Qildc@0gOVQy&oz+*n>h+AwK48B}K~FjW@b7_%j_t4i%y -X)_rT=eE|dC@a-!akmDY7u<*EIvz`UVHW!dJ7MU4$GacN5)&gO$`4rs3LdL87)i -BM7}IIF7DQAttb06kWZhS#YW$m{QZNqyj=0!T_|f@7twD!0#x~uD6d3a& -#5l?Mv5bX0gUiayz7&Yx9MyaG@Ml@qG(F9AUQWZSt?r`|WehPtn0gJ_2ph8; -5ld)Thn%9a|moBUhddXL!01~$4hF!8k%3;j_;i-SCWYjM$<@(N+jwFZ99GZ2xbs@W;^?~*6! -R->F4eP;dMV0Thu_>s&zGYFEHh!7Bbz@8zqO(zGDLl|JM8ZQYktX=wyAB~(S-S$C{Tc5P4PH}t*TzxM -!ZEX5rC11^#pl4bzA50E?x|(R71%~$wR(sK+o-E>J+wT7^?*KEo6Jg)`0;H=e3<8_>GIxpJM7L6bS$>4~|Q(Q%Y_rAPeE96PhQ`6 -)R5T-dwjc>rfq1|^G9u#1c@-+}|9V@fzoSTgMe(u^z3F+T_#Z4jF?M!l#3%)p=m35o^U(ZIx1ufRnH? -i&f9#!g8LMnACNLBu#fmEnCkST2jYZHg(40;Q`Abi_fDv)5~mi*+kvI71}4LBUNKsm&ri=vE%Kv9Z=+D&HfwBZs7fd$q-*Ck=uDb;$+0bqH9h8pGh)hX -KrIp*4Xp3_t-ihvKIgWg+)2z&;Q*8J*9F)*u=U+5s8DHvroY+Um?Q_KYV8p6hZCY9nl`@;O%fic|F -KE(_I`9rU5r!KmVq+)V9F}uadQ1L&N`Fiw)*6=6M`$vIWc8W3gS3Wz`;XpLsR%%qjCw0Cn1V9>^U-FE -H_pGBd{8;bxmruyp-Gx7mjH(eG2Lq=>{g0oNd51|j<`dW-=lVeu$BmR5KwC5v2?RT~AK?^%^on95e-0 -dkN{MJ4UobS}XH5<*A8IFaJ3NVslC$WDPQ3{$T0{+EjGoTW)SSPMIYPYiE|^~SVdcE>ga1kPqP?1%pj -4f8+4Xdji}8fLxE>ZJ)$3&zoevv=TmsiGL6kq9=Oj)`y-!1$K$yW(3)pl{X)3mB6~{M;ioh#Xuh6-2P -^+z+`1U=PBpXk#jHK*>E2Q0Cyv)MnTrhHZWePgNGtYcn;qF6){ic7lZV7K~awOI>Z -DQjXj-m@65F?qn$Z=TWG(W2rW`i#yOMJJ)B@($H=~NazGxdmRbQ;3SY8L{)Px_wSDKceWuc@i+ -DEvoa>u(wgr*6Oz$#)GIZw9=Pf!E8jo7{BP?&%_d(2r_a*OWVwNI_c#!p%IB~tzn{df(Mm@d{Nz2BDwa?1bHR>&~AmKZ{RXfb;h?ypg*6AUqT7b>ZdyjG$0j8cX5!Z_LJ@_;~m;t~5-MjCFKksf3BGZ>hYC -)%RNi$((~ncxeG;$f03b;}*%LdJzO0E_;@Xi -{5f_7LHUSA^hiLD`8sEO{=$~<$|mheL*fjDztiCk02`KFm&I^Nz$$tpM$`BNc(r3%5J#k$gUO}+`;Vs -Kw{1yEMHy3q-Kt-%+{k$cJ6HR5lB1I00|G`}e)^9;Neya$R!pj1KQGd^(0&8;zX`vMC$D(s>=@Fh0@A -yJBV+{z>keGdNSh8<%tcaEJq0anF70!tkrlP>?v|ahO0}dk! -g5`v3JjTvP^)mg-*Z($YT}7QvXLAkwZj=6m#?IWcW+mgcq}0yf%PtD_1pbSy(AL@*h6 -BX>=}9crqcD!#%<-Z!no*(4)PKE<(qk9%aJ}n7UWjLu2_ep>d;N0D9ZBnk3;k|@0FnKGdZC3lbE)eCwcX=!ppGC}xEchHH0R(c{{h3JbVx`b!Tr( -AS@Ajcr^@&mrsKmkc-OF9U%xid5;V}-c;!ee#HvAs!)afwqG$f_*3%+0v6m!EVcZ-Acg;@wWnJzm=h8 -O;v16|9u#?3IzL^d?0laClQNROz)&*%mP6r?I*WK8;vM^<$*gHA28$3<+gik$J(Fy*9wKs-}s`Y2 -CDaNZ)eck6uU!m!=!=xUhP<`VO5uRGeUdQCZ!F+~C$$Hc0n_t+rRdR^0a^kb(!DU+hctPXkf7C=GKWsbDC+sj4=HA!N`>M`CnMU-v$ -|cUq!Dc-?W%?e%%*32(m#?uuW7XS;&H8n^a<=Hxuvsm*|Ty{8UZz-4X6t@Qn%X@$T0Vcqfx2Biv`X-# -B;>=Ec&r-0ovudc{2EQeyX{eZg;VCi;HsPm*q2br0muQTHIY*3)a}-6Z9n;+=%vCwGye_b^NulKIn95 -6%0c8DS^9x;=Q(tpHq;mYfS;?CvAW*dNVxijQQl@V3H7u$jHJ&qsW4onMRG@YFqV_qcg8{vS|F0|XQR -000O8;7XcSB1cUvD**ri1_J;9Bme*aaA|NaUukZ1WpZv|Y%gPMX)j}MZEaz0WM5-%ZggdMbS`jtg;K# -zgfI}j_bZw`L4th1CTmQL8V`Drc-d^43d3$=X~{6G@b|Wh6hY$7p`kNx9`C)hL|gIP8iJ0r`rxXnEfR -m|6uptmKa+7-Nh6Pdtn>@i*UB76@cn>z84wA70s|Hy>NL^c0(j7mxoT^8u8(5$gk -PwHXyCCltsf_Y|?@bazAbT%1;nR7TlsoI-!ZeoFm9ncwe2f7^*iYQPz7(BS+|5D0dIh=&-BKB;^@8jF -C_@_H`Z$XtJSS13J*xt6yLdi(ksU6fiR@1{S8_q17R`#sbS`8mA!grDO9KQH000080N_fRR%ULjxDo{ -b000XB02u%P0B~t=FJEbHbY*gGVQepBY-ulTVQFqIaCv=JZExc?4F2w4p}83542g^T8XyA>cQ>p+(K~ -cE>_br)icQ;E70Hm~q}j0lzK4>XG`-#ew9pGlkq;k|&hz|>Q#;5ksk0<9sG+RzE;*c)wN|AZgRSju& -=g&plwX|E_cV7>nQD;ElbhAzu7cuDn&wTtbmeD-+K~+Zt3l5-#TZUHU)1o)IqTk%9)r>+!G;D$3Gyss -IN|7K#nJuC|}# -r$&MPaJ+hlW`Di8JkDM>X*PaAFyo`yD=<{n^>g8TpCu|Edp@-RaGXpzg7hTEF -2B0)Y(~J!id#MB9=B3E3;LhcgUs$-&>iho({d*iyLBFuS6ZGONManxGE5qw(XwW)WOO$avWjho -tx(hDgh;b&>^?K_(Ej7LvW`Lm2$}`kE6r90yq{drjurM;EVwwX3>OHFSM7GQ=y$tvJ)GBj98wIwyA}4 -1Mh-qP6w7<4~jq47lAxl~F=weWFcZIp5n+H{xL3lV}01A?aeC030XSO>)wasG$Wb?p#c~N=)F@D=tLf -ezOMxl1p(Q@nq~FS*yu$x~B&Y3U9$F{69z&Q>e_|J`p1f8)uA5anlOK3t-^~pfL$&S#vSKHnC%KKk=Z --EHX&N -ic_Vv^?*F1JlyRk3wd`6AlCvw>2&Vl**J^sExhGwEfE4l`H864+`5m*qr)=r7a|44W>+d(WkqDo}83@ -Kpn7&2csvITfu=#S0^>yi9IPgk}9LaXOXvBQZdO<2F+hu+AE46CD|c^{LxGaPxog!96|#u{&#MAy&UY -Ijl3rNVO3-c91XAA^+m(<^=b{yY*uhFR#S!Ad_P#A}mi`g$+`GP+m6Lc_d9r5!)3P1!r7}loDo6`SYa ->?q?PiG%4~U#=4!r0dXc^WQ-xDJbVC+zNs8swE5c=}l4DGo3&&X8|1wdHnI{EA@!#sfy~_meJH&bQwR<*XDxgsO(H -qi=DVUh@>vs+bOLKUD8;Z88N!(+izz3L!syIwGky -~mCz@6aWAK2ms(pnpQx#9(rX4008n3001BW003}la4%nJZggdGZeeUMV{BqHObI+ZkDEgIXE)EqVO+|A?N~uULg*K|q4G0Jo1z}H(L@i?O7^x{2q@hYPHH)HXHsf_8l_665C*AHF -C3B{Sm7|`OO4h_28?@t=KXYvo@})6c3R)%Prfn)V>ognQq!|~6DG;UmmRCi_#Dm{@U?x+o5OiO$40NY -9*)PR{uv$C!se7bkSy=Mi_;of -)!&1+s!m3h&W8TOR3&iBDPtNlqSIeBnvc%{>t>pTn>=wuH}X|U8C4oN!9W?4q7D$B^4Y@=K;YFLIT&b -oj^35o2JcQM+{X0w8o#2D47KKBtvtgShmGUB8+3crk1dw1(3UmE6-RI0$`N`*3^x -MR2RM;M&62=1({9j};kJ2OTfM+ovvh5QUR;dcAjeD;v=R6HL*Hc+jI1*6^|#_7CNd*7Tma7-R<}+a?Z -#&P*proF60KF^r?#{*>M&Ev-iw>mjP-UdTrs8nPHzlN;4C+yz9zR)imfRLooI5a-K?RKOlcCWx4V>0E -K^hgA;VEwG~<`JQZt>_*R+t<{e|zmR8V55ix{RJZV=jxSM&1e@A~go*^b9o2Kn4XZI@xMw#?@5mQ`XO -#XUxrl>x7p$%(Jh^sd#tSA4FOOMsGN((_EZg@xV9MeU-r@y9C^q~yT#>L6 -Q~zPxJd^+ZlLTaDY#;}k?NQbsv#iE3m&*KEuac`m@6r2@C<9&8K|VZx6#7m0u|VLX&r@wS>77NdUq%< -p=$v1n!B{~$=ztN>Z2d1a1D;V*60r3bMZqbvM$^T{*;hw8(-}Na7NeP{^FwW=o>8Ds3X}+b7wP4Av6+ ->hH}DZ4Pd(mT%@CoXb=scJWGmDrOT_LpU9KDFcoh>-I -W$q%X8H*;WM+(g0pWM<@a82vAhcOU{ZAv>PdygY2kZ#7JZ-+v+VWEl_Qv$Jb;KIKcKyKhCXki*|R6FhaBIK#i7~lyD;-uCnhp>giTl}hS%V; -RRO6J(_Ui(j;r`-v<7XDl!Y*oRq0DT>M;YcMgnv4Xe^L04r>`u)B6B*`8Jvj6oxn|HHNLkT?FTwl{26 -<9Qrp4SqLHguzqgho#kEJ$+fengRFR>sQwwPw1-vJQYxA3#WuKQsKO-ER{ED*x)`(>k!<8RDzir1Vr1%$Y<|MZJ7_BMjTtMvgZy_~lK=j`4tiJraoOEe$K7*mW#jNt}WQra|F*yX&Y$2}uQ*^-)382 -h4Uy93Mw=S~1LB1_`tU9h(pK2)ITV$^JdedNGitvLx}A3>|rMR2>?jh3O#YWcuUgWzToznb*=vws0lO -9KQH000080N_fRR+NCe|H}*j06{7M02=@R0B~t=FJEbHbY*gGVQepBY-ulWVRCb2axQRr&06bk+_(|{ -?!SVNQCP~!O438WEG|LQyc#q}g5c7k*jos+#NFjtE9ykb&erh%-Wfh5QlcFv=!Xh{qX#)0&ht0JO_Jn -qR5Btu#YIax+Dq0G$<)v#Npf<+51r^0X~b^F+nsxa(R!qNmis~RW_&tIcdOV}b=}kMWZR1asYHt}8h% -0C(4p&kCZ+kVjvXxGzP)IVIeEn^m6NxuWj$4*&&hi(;l-~**RT^atK(f!a-iI|v?;2F7gA9*$g&bOla -AV#5C8b^@n0Xx*PlOs{2ZMq+AZG=unY>q&U)#;%)`gmeJ}bLC6t9M4qR4_OwVdssge$AU*d#v=$o8K) -hlr!M00Y2@&&m+bAm2*Oug6d(z0ynft6);a&l5NR7&!xXG$Ia&YJFx=nquEvZ>QZ@vf~IFj5Dfv(*WK -3pDzIbU2%{{&53xCs(Y$5TO4(3@2MR9`8ma7upbTe$BR|gne>VmZ@aTHYbm0zmqGYt4EJ6ugAxXoIfW -YM9a+5c%7P6Iw851@nMjPTrff#zH3=cuDRNe^b5T<@E{A&V%2kPpd&4_(mFZNuO(6~9o1w5QvCVJVj$ -OY0peB94sfT(JzWgD=C#`EZ^ouk5hY0Ez(KR6I$e$hGt6StaLW%QHV&QBYFLYdWJaEorx7~5g*2hkr_KVh*uE6KWU{=X%>Ygl5`i$rjEZm|IJh -EQl2#}kGJ>H_4bR+Y_rioIH@|4aHG1Kld$xKlj5P)2EvFY9)oidvPGssZ1gII`rkW-2=LD!` -*<4ycd?6u^BP%EG%^lJ@1s|YSu;rm?G;rxfLjbEeEvhlT?s1=(x;Sl|0YLh)}d5vi}z;n`NGC#ax~BuOvD)0JtV(ve%^Rzg!jo`D2YvtzQyA9k-TiUiI7vscy`aX^WDI11S)|%bie!YWtFc~usbE+8$;ZX-JM6UXVx0+lbyM`-cl -$%9}$H1e5{77+v*4lneoP1cXm0`z0V-C<`K>dXSnkQ%IOZ@JUAk3v7PfLlA|311=8x -!>C(Z1|TQ{2}ao04qOFO0(?E>fS)0WxqytXP<4P4u7L_@w(nV`AiSeM_7>?Q(!w&sEc&96!qzARYZRi -38mLjQB6GE&beo$rXc#Fif8PsZ?KA@rP?JIG2Yd74q>m1wNP>|;9JAPNj5?MZsYh*EO&2+6&^Xf;95eX`px?@Hwkn3$8H_?i^5ygUWRb2sk%m-sLYiyf}RHy --%K>y*5MMU)X2)h3yfYlfCPG&P|Y2;!09-?2`#9y?kviek<&61s#r*qr|v1|r?PIg-diLXfXsJ# -LC_rWMi7cR-tj9)!>&{>d{C$vb6!E~I%GIrQM(-!{#aRb!p8xT0k(R9ZRcj)rReo*^Y*V@FTmf_aTKY -ghW1oK@YQib%LbcM>zRNyfpFe3XX{w0!ekd+G2>OuV8gmFX~Gu5mhB{{4aN}SakE}cDGsfcBax*5=BZ -giBvDu+ai7>yC@^xe#6@6Dm&Uosh+&)Yde5ugfi&C)Kb$cE=7Z_iWR}W9cbVU1*qeZ@qH$roF>d$S|dmu2;hI=2eVE16m%O?x -3s4gn|(%dKhlxXQhrzp&&ee_T6hKlYijes|I_AFe~dyun|924rYQjAG^NQ|+1HA7YQFG4akOr?!j^GN -xIhObg-W-{3&5dzkf^EwP)|+j0jrJBaG>4<3b!-VE|2I002F`rn`YSj6MYS}ZCwULO0L*p-aebuJ@%{ -Dx>3E>A_FOHa%~Cb@5aaCfv$C&lqhY94h)fWXe}EAN?0C7;loF}d1sgy{fEdA{Aks(`Ld;PCcaO=4K-F1^{Lj)1dGZ?K(u6NuZm)_S9(l=cLSb^ --h2_}d_)xs{#mj1kW0r!b0{rTJ6BcddrbhfW=d$=)&afM&fcs&ykC@Yuz$OBY}9O5P#)g{h$i$=RRe8 -JaCuXVR>U5K%KyBzcsazsJRZZ1Dz*H{K2`L@kzxc3Pb(Mw+f9g5}B6Y%T^naH)``U;-;x+oz3dxJ~Yz -`Ih!?&H&vp3X$LBd{dY3eq4@(`uDW{Ev9g2Xc#dDmm4{1p4?0?0K_VSe9Th5;iI8z-w$5}$^VO2)EOu -=<~x1%VG*b~3xhE>6O5T|im~v~X1#*E68IG`g;EWm=Z;m_$JxX91}ze0QbC%aC}$|=Bmj>oVpwlaG2z -Q>I_fdHdI5p-FksrjUOhPVSI05IGd5NP0k9Ym^ccT&vVuawB|}}IeJT&MokAhZP=6{2N?J+=9n -E}rsd+pc`Bwa1go(5B^D`*3D~fe`=*xIi2^ER$mFjZ^3|wIt5kVhGFK^n8$@zIgenJ+rMHOU1liMSPA -v_bssHZj-6ycNtjO_-hoo;*%kf1DI=X(E0Ep~asrrH8S(AC%A_R+dP!~wVUDo2<@oO4D5O-N9GGUK6Ev;w -`JL0JUujJ;|ZIt5Tytat|trors3$GHCc`N>)cT)l%#N&GH<=Z2W!woP%2!>$8FBv&9`M4GCEG|k0CHP -ni4v$fuK7N8_qGGfz#zwp@R<*sxD1>iWvrred6)G{bDp|@+yRkd^PbUdSbcol3)b&F&5jRGuEt?5i95 -6m3wj1yZdGh~c5mtYrWiXCsGC&=}May;&#B`TmG5n#yJ*I&m`);ek-D|sfj3#s+9aG#P)cIrJKnLR)# -2c`+|EY}`un{pbqha`K;m&dmGh%JfV^9W(sosH%l9>(=Mj)87d64BpSiPXtWrVLV2)coHwhi$b^CUJ# -;_X3q!N<}Z#@k^w2iX(*5$zRri%flH=gn#~cb$?q8mQ1qR+_CZ_X@S9N8IkU)UQFL5pGO<8ku8 -1X!nTi+8;dX&)+~!ykD&NrEsXu*r}RBDBrLX6jH3^E7zXNHpVEYffl)-b&Yyn#mT@hoDM3T&JkU6Gw` -AijRiI}o--Mm6V^pT3EP`fUu%Zv0#N(W;Bnok5m25&s2J?YNqBlew|EF*0;=K$RC!Qz!g;Pe)Cnm$fR -cQP!!uF~cRIp*DCw?6e;G8$Yy>w=_Fhzw70Ua%x2NP|Q|E}h&avrmNuCye0VKGmS6mEz2!N)J#(gN)1 -GDc1tvy6P{+`JEmEN0ss+)Slt0gAE|@)TDZJG=HGwLqK}8ab*N$uWqD?B*Ad6}hu6DeK%^ZuMk_mK@!N* -E!Od(oh98!Bc^E&f9^CFJ5HV&#r6;5kuqsr(bxN|Mk9z;02; -ZpLQ!~||pq2W%O1U@-hwZ?YU+P>6IXvJj$4^1sG3ShOU)BHQCQk&F>;*i!x?+sepKPfZW_!_D^Mh#w@cEtX639Ui$*#K!EvaAhkr_ce|Yt7*M -L5i3MR+BhL?D)oLpVRVmHl{~`^p&{Z49^3(e3gC@&aMUHHEDDKNptK8Vvz)o2`-=#;n<5CWS&O+WJ1pUZ!sr-t&fz7pE7x?1{^=aijxYcC!tlehWy^a0=P)h>@6aWAK2ms(pnpSEamB}j<005Xr001BW -003}la4%nJZggdGZeeUMV{BUU0w7gXIabfQN|>1vNr3uc_C{WD_3JlR@ -L32;=B;m9V_a`s;sku9kc5!zt8UYpF~ygmgQNKtwkxiJ+!F~I@VVe&w-Du73H3ZT~oIm(p~udc3Hj^6 ->s+p=arQu6P;uaFqgXJg`O6#a>3<_@h*=SQ4}o}nqFDo-2q$XXD!X0+{?wLt#@qGS9w?0r8F$STsx7K ->TTV0@Ec^QU;Z^Kd#-zS`vzyM-`xJ~`aC^-dw%-oi}ydS*!R_b#V&>HR_v1{;^*U8g--*u`Rfq!roO8 -v}sN;Ft*6oU2xBNlWz5JmUWpO52dK@BztN$68DN7FP(;8}*qPjmd59j+eN{7;oQX<{i)2vWuP;g$#Sa -PHflSrGEZ-$wCFppsp8{UG_@u1)}l`d=Vc$YT&ZVOgt)Px>h)3Z?Dig%B7dk-v-g$|q#HXG_xHyrE}g -&wa_uIm43*TQ`5>`COe>e(|?VA>6tzv_9z|Iv$;)7_rJ}Y_kV8(301;EmzJ(^=`-vfGYd^|m&v52&kgRDP%xYTg8SRl}Ysw -W2VW3aMIdbUi{D%dkVZ#f7M%%hi`glX{*R!=_#8xAgAgl -QL=IZw9^y)Ibz5I}#US6EPzeP=>po(eG){_ITDXL|_lY-jNU>LgKzu&8v41^CINEwU|H?f+Dw^9Z5+F -dLUUrQ*Z^A69yM+KAPQJ`Jw$ATsyu{Y1Ni>w -lYPFyD3$@IS=Y5o-F3yHs#dH=EB2?Xl-x0JynqrAnsyt;fqp2SL$4Q%2CsZdK6i1}U|hR|d)rmBJsl0 -ysLdP^PX<*3N`FLWG$5cyleW_M$==#>MA?U}&}nrr(LBp0739r9UUb3h5e2FyLCOjT^#b&WhZK -E4y(wqIkQf2@MjYsY{1{eS$P-HZGl6GD#+A`kkTu}IN!Xq`uz;5Bsc$d{uBHkR*^Labck -EhKvm8Uex^7_!YevEvXbJ=bgl@?AqnoOX4Z!|cRHoUk?IgV2%;UNxQ7M@rl%kV*!?8J-QTwB%4wwgXs -44WTyJRgB&kfYH3tu1BkIWPMMB3Aq_YJ3yK83S)-C*J{rx4PeuFLZ;@0@T$;-1S)Yf*|KJC{Ktxe6iEzF?C~qh|KQ2A57S -}&1sd3oZQVCIm^VTFDirZgqWiVP(oE-6Y26rKvPW>xBpqeQcR0|%tfF;`g<9}WHS~fkMm9Be>_(MYs{ -A%6eB5$jEyaR@S4(&zQ1fFdHv&7W!{ZufQBWSri`a^sW>!P%7M4O)wRNlq0nRpi5 -a>5`@0v1LoUxtEn1xsDU3L#?EhgGCGNn>?15(5caO||VnVicBd_Qd#NY801LGt*nt^y6;P?fs5=5vMN -7vo@AHarKHL%8@Cota}W&FaXDz0PahGswoC~*;8muQ3z -u-Bdc{;yDE%VAe2gO+n&3A+T -0Ol$Z>dzSGY8|lqLZ&Ap)S=pU=;)zyIO#JiR@CcYStolVTO_1E$K;Vqg5jUoI}s()0I!4O9Z-^Xs?g@ -6wNN&(AN@)9+8;o`)LUoc~WsR91^mx;Tdws#I*!wy)Amrfps8ik!t5Fz&0q1DuD|&;>1mPuUk#C~C2q -#{N=?&l*)Oux6mki*B)JrMjT8$WD}?Xszftp{OlJsuj7a*hgR)RA8lt*kyYxU@B9CoT~us$GT{Sn-#b -i%E@C&6}nx(8aq0BDG15H9wjh{7FSdGn -^kmY@<++eq#qB;7Hcen+NSsW)C^Y%1Y6+e~V5zLXwBM&c7vd#x7B%pjvZ&bx1ljGVk4$yqop(N~)4N5 -ucS249MG*#_Vc)L}DfA$wK;r$wF1S -k%Y7I+nD9af}WZOTlWnx81HZ0{1vd5*9s*>bq|vbOn=F`Th>xMw6v5v>;Pa%LNwkZwY%7Za6CSTAz5M -w8dyFiu?do?mz`$7?^*7oPA -sVqS3+#Q>`Z0TGWpnI`LXp&Gbipg;1KSP%QS!wckqiUxLBsL)f2A{W7%?xN@I}(i%U+V1wj-ora#FiL ->wH&iQ*}RjOmftyf#WtTV1~*+mIYehg^oLN%se0)E9wz36!&9RQDm0oIryNeQ*jdC0iZI`#lKS6o_MJQv~VP?Rd2| -&raHHrBwyNjP4+rg?6uNHI*jr9_5GtY_h+_1sH5t0xbVy%&UZx$N+9E`pc@RG?Lmw|Czpr1;~ynffAi -6%NMX|AwACBF=|k2Eko+=~VS(tp1Z&8uA*9%fe9H_Kj8l71hc#&r7%1kLbnFKe>P`SAhBrnwEGqe3mh -X=YDX-XAaL}im_MM-uJL+}R#G*+m9ew-e+c$QMC-#kYkhZzo@ToqP;NTK&C0XOeEp3(3fX1DKHnZ`XE -i8M7CQiKL5-Udq^j?@PDmukvI#_bzpEI$qVL?(f=~P0PsjAHOr8zjIcptzLcflq_YY^PJ1|r}p08HWa -8>dPgIII!Q%}=TN3rG>@q4rO4JDB{-pgMREY=^oh!^yV41}PR+vHaydrE=>S|3e*J^mo+AHy0oeS`a^ -PPu_0Wlu9zzOkb_b?4SGe5f5g;fYBzC-4U3Ce6k?#7iu>SjcGxAE^2eHNC(R*^9O2paL(ur7&(zPuix -I@UXQlD2Rdz5K}cq{q7drqHJ%}~r|H1;Rv4F3F)p5?Lyio*5^u$h{Dga=K??zt2cY_HJ4fT_$Vu3fL9 -i5UilI!3k@uc-afVFO)cWAp6f`wU#l5)PVBAUWbhuza5vfbdCDO -x?VEAJ#z&uoH1EZpa@I%FbW+-nbDX3-Fgx{?0jKM4?cycwD%|}X4h;?M{A!zSrWZ=;qn&d^0j+Xutf| -g5>zlh4;5((N2)_fL4tMBey81|h5y;K{2+Kv0Kc|K_zx(D7ju4Rgbo$Lcbq}gJ?ddQwCSxlW$MGk>D@ -79Sal~gs2pxWYW!ylj4KJvfes6 -Uo~ZJ*Ib5T@ckntvAAiI_srM4v=j<;2}MS92KwVjGL~XK}>+>P6!h5Af(+wK!5s3*#XwW%8ZK8F0JTh -2>n&|wdNQ~v@kpvEbh__;{A#c%AQmWpM=%jO0hP#&PJRPKe@CoArRk8;A*f84N6HfK__!Pf#G;LV3au -b(}rX1PR0+WU0w|MBw2+^?za$D@2Br(2@Lp`j33N)8DU`(ejE_3501&`cR(N`m`uhGrd>wZmyCY<9h~ -&w89h~DSU^Xg)6Y@I8QpwFFQ3rK7wO{{>f(#_@K@>J7wX@y(7i9xyD!wa7wg-herDsB{*+K@nei~@{EyJg97;sIWNa<4tNBH3e^4rsdly4gLcj%ykaw>Mx;h4Z}aWc!1e~uTU4*Zsbo -T`(osn1ft<8`A$u-L(VPJ&&gpMOk!hZ$muId-7YPOZNzvpz*LY)og`;K>~2aGHc-fYjA#Rumwq7ko(* -PE&2WDMxsHNw{S$1tdLff)>drDjsGOnvhi-eN5U;(#e2vY4w_t^^9|{C&Yp(JQYN6_H^WydL`3yfnOs -UCmJ<9LQ!d0iea5oMfz0o4mSg2GCe^)YGDqL&$-C2T?aEE^XbVE&KS=3guKSM2@O?YT -Xv=hqkL0K=NoDIAFAkB;=~BmElk4wTum$m*f=Zwaj`kD?aI4tW} -$us=ys^XsbA-MaQn3<`}A1ncA0B80{j$@sGwlQ>{pNY#~qW?ZTh}C{Wm>axazb-^hB^6j>>X$?;Qs?% -kGd~Qg@bu~EGl$6r!M{dml5-`fEia9lCC8Qze_f;dmtnG`u?E6ZU1@XT>v+%D -yeh`1X_EL+#TK7l-Zowxow&*wt_SL{s4rUVc5NN2UoXZ(_tb$xFR{F$?6PEM1x`8Jh#-EgoN)hl+N4o -yp4Uz2ng);2&mOcmn@+C#IYw|zJ~9_=Nm4IdKU(8Njh^bUpp#|ggp1E?prpuImj;8uH`zdJCk63-R3p -C~S?FQQ!Cc&0>bPJ-#R1e|Z{rWN>-5=1%*W=%wAlg`2L6DlIl^7?Vh)fbAjZUP#p&ix4hTW_5roj}SX -C6I_ckc<)c2|QwUrjDG`<|w5mVMWE(sr@4riU0R0V)cR5c@1SRrkR -VKq)bO+SAtM5Lx(-R{@F`7XcS7N9=N{IPh$|BZi!%Yf)wG-fd=|{w8&sDX4jRXQb?#qPH-K|8uc!JX>N37a&BR4FJo+JFL -Q8dZf<3Ab1ras%~;!R8#fSr->)EK1eO|U<)lpz7< -gzwbFe^t^~}vkXxu<+m)F-tQh^(41ik&u}}P_G=y9n)+?UjG+tW4Q -f{BTwtlXxU0$e7091H!K2RJhR=Cunk}ggCjz}Uy1xEn+-q14$my!!nrBpq&5*nxWsy_M%-AplUydtMH --<=_vBo9{4P4>kZ=K&fH`L69LZqCKqx8wsXF<*2c=qsj&wUo*J90(ssl~ -x_fje+Sw}j%7F(Q@A3LBy!H1SW^hNo3m29{!W$|KOFH!6?M>#bsBxP5m40&-gYG_OaJtsm(eIHS`KAk -){(wC0cfIrv*e?9vf|afyW?ahAAT)kt%^%s5tc%e1%DZ&D&BF7piuMG#^|Zi%J~%4IFaQOd$a_w~&AujPu}u8 -y0WCp&wv7KnqEp=WCC&by?yj8HNYRNfFHs54g)n&(87I(m1v&OqOFXM)Kc9A3m+lt@-xQaiL$%?z{c4 -7V>u0&Clsyp1-^Y^i0Ny9tYqQkrl2gT1@sLA?_suC?Dq%;2A-VU7@n^d<0PH-jNzHcKJmlHvSZ2vTTls1h|%Sw@X71Y$$ -_N@k2OU};01ACZ{J95UfqS_(Tryh0X~0quz78^($e6;89W4$0NBl_7%PFc?p7xf#8h0DyqIrC1X{#z@ -UaNWVqtWH@0GR_7=oE?Wg&3T|@)xEO*q;WsAJSRQe6Us)kTJZu%jzgLQ$AEih4M9o9BXh+iD4Zp9iEP -<`x!_8~76ulN0D%!u3zW3yeiX}8>DVKBA?>&O9N2WL2c2;G_|2EMy{&aBBr7u6Im%aZw%S1!wy*iB69 -JxLyB8R`X_5OKyPmbv(k^rJsnC%A2gV5NGiQQWrPIgl}a$u{CtgXhdxq@(^b=1tzE;Xh|6x`am$o4GBGKUY)&IXZFDRl%gMeJ=I26Pj06k7if -htT+tqz5o6c>^W%98zjmk3x&FnbIme~nt%qS>6tOZpqtVzOQWS?u9?zUjyd80>v&x(eG^vAaiJ&-$*g -qqr>h;YK;Xq?c!7E&$mHzJ`7lc1DN8{;M0Jv|Am^qKbb~+!h}P^7y&__v*+x)#X3RQ}M*(M@sgm0k7{C!`xVXzl{4FQ}4@x4VUJVx0BbW(^ntgU!1@9lfma -Fv#TGTJ`=s<;_dn6J(OkdVdQT6F^u7H`tD%2L23uD9}u*cXqVL5)NLTiU0D0FR~F&F8*o7x8=EDvT+l -~;I=h%4YI9~PoFM=ux#bkALTS39DY;OPCJ$|(Ar$J!j{n;W}J22ZgWjoMX<3KC4ngHDb-L{~x-8blW|IvstTR}NU{sK@- -0|XQR000O8;7XcS{dxdPSO5S3bN~PVApigXaA|NaUukZ1WpZv|Y%gPMX)kkhVRUtKUt@1%WpgfYc|D7 -<4S+BV!1i3x6QHm%KpR8_Bq(XhnE$_k1vbl;)lx#$Foh0Kgyp3kjCSIi{4)_+k!tgS)SS5b%0~GO16+ -cwu&FOrj_kR}e~m!w=Umf<`X6zC2T)4`1QY-O00;o!N}5*dmDMql1ONak4*&on0001RX>c!JX>N37a& -BR4FJo_QZDDR?b1z?CX>MtBUtcb8d7W3?kK;5Df6rer3J^S; -Qu5pht!&Q%#cE!-wvjxDxUM0qJ@>8ZR`5>bZUrA2(ql3Sa_BPK3gx&#T9!+Z?U?1;9>t)4A6}EB|MQ? -q4R?{#MH+F^6{NK;TFJK!bJYrR$*kRy^a^Z?a;8g{N%9qZtb~O^_@f{Z3e7Dr*tIIJK$lQ)cI-fk($Q -f`ZIB`x(5-7)w?PAIc(2$_lGag+!UwV_L^vWWa&4XLmi;lTx6l}Fx$*{I)@!o&l6gxXD-PNe+z_i~4r -5|3J_}(R$vPB8;rB7&@z{`F#ko&%inb6>DL$>dY}ry3kd>Mp@KBCh5 -0o=2xPgUjcrHqjW3hB_st^Qv7G;MrXz67zyQPr6fKc85SdKY@Z}5egLZ8$!OGc6#Um8!=nH5B7e8vp_ -odEt)q3~2vrkj|*@I23-K3z7btuB%efz+Fs;NbCnZ`iD7F2f@wFO0@ -TF>?3YK%9Vb=DmugG@Sp%=K|@qB2Pbf$^?WDzSE$`!7ovv;xhctRv2DmH~B`vp1B5yideGl3kt`pjmv -{b(}hDE-#|@=U8#VpqcB<#vTH>2RbJwAl5*=q@9n4Q_N@=9@xi13+~qp;K=PH6IL -OW!1pAtJTgQBd$t^9KPbjXWdaGl)jTe`G?^b^u}3>6b2V^EP50`doZLDZ=pw5hn0`-wIiT@Yn#S)2$h -e&}%>yv$HG7>qKsU#PztOa -{XYEYcWXtBVh*am3 -cNVv9TQlGe4^q7O}04&65Y+w-%KgvvY;GJD8dmEy>GP60C=@60;`{~<|R2+!>M)Vi0c=9h$O9KQH000 -080N_fRR+$u#b%h830G%BG03QGV0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WV_{=xWiD`e%^7QN<2LfUe+ -8k%B2sHB+v0!&jPo9f+}>S*MH*~!_azr7vP9czWl={`@w!3&duN8EL_M5j+XAhDSQa_&7iXAaUkj<3P -_x4P()_bN$h4kqq}Vf2>pGQ+GrRlWv~0LCd-_-x)zH_)2}I9qgpApThAU_u0O&Gm$O+(PqymT!X&BEJx`KoHk)N-sua6OvmLiQL;H-DGX|d^2Ki=|KEVck_TQrfIn|! -!)d!wh_`Azg`c;z6k9a#UZ_9T4NLP -p5hmP2#mh~^7Vp_5xM11h<8qws2~NcwLfAqORVQdL@2#g9!ma}H|6mXDQm+EkIhn)-0n?@g5K?`xne9 -Z8akUEFE(@$_f~XI<<7K@Hu6cyO1-z-!TWn5J7t*u>>tr -SfizMJE*Y=W!7A2urRTS($UA6Y3572Zt=%7f`EAgb(FKM^X&I^Y+~xtwHf~?t4c -1-VWL8l0)SL`3)x)zEu&^g4JAN2*-oOAQZ@k_(xGdoWT*q^U(2)2D$MXWi8v4)5SLf9fd|KJo0vFU2` -}&cUgo>zFUul4D2X(E@+ehtkyG^zi-xw$eX1KfUSPNRMV>B{oR)=g1r>i}PoN$Y+ADXYfFvo9%9P7nh+Hd$a2YAQ -XZF?3nKI@$mldwRlKtBJMo;WY5hYVbZr=(}Xqe;tEQT7NaUI!5l%*dC;9f{tI!B#-pj0}CwM -A}wMcq9Z9665F@frn^zXmE(F&qkDu&urQ0cl;wCQRhmKQ{4?kNpLA9^WRj)6Me1U?kE_0(8RZ$dqCKB -oX1XXLIiW;uwp{Rs5afxAb9BT`fN|0Pq<=^rfEbgUrY^V9&Q4d|4o5>V&Nkd$H-H$XPFB-3RD`yb@{* -Q6d>&Mx@OBXil+VOT>U$E^7nGb&`hl@f4#!vaqdr5Zrrf-GO4SQLvXTMiiaZSbj?E*!zcKPI@8V&T|+ -7o2#IV56Hu~OTdZA|D79H?@4y0IY&RFKsL=I=f5U#LAd5E~2+(P1#UgDPUi}rDB5O77Z^A-wQF0~9QF`~HUQ>l6tE6Iczg=ZTr)AY;fqD?kje^(hXY2w?_N$1s8US@l -j=_=s*L6Jz~x#f9tP%WF=ua8FlS?wUM~HUjBc_eUm6q)c5@JT3FX~*{NaO`opMjy+jK#H3qgA4>G1Lh -teQ35GeapP@!`1~vUP_Bm7vl1>S*|EhoL;locOhM*t`~VZ%`b~b$P2tAe+n -0m*ka^Q(cc%3^-=F=H(eL-U6-jwR!{L^S9bI~%1~JfB#5mFUJ_M{w5)e2^x9lPS$iM@xr-xT0tjL5(W -y|O5>Eaci&F!$pj4TFBaDSfG>0mcR&*zItao@PMK^%_0Vky_YoteL%{TbZhWk#z`*>3Fe_^Esu~O~-P -sF#{f_=Z~mCXY`1JYEYsRKz15GA!jv2X!`B6y=fu0r+fZw@L{0r=tBWp1ynj4}AQ0rwv`Y4&3S+ve0~ -_g|sy?|a0wJ&=e5*hu5NSm^k*vgd-U>P$Nw#wzrc!JX>N37a& -BR4FJo_QZDDR?b1!3PWn*hDaCx;5&Y5WV|X41t0TUbE*w_Y!(5yO6NGgkThV>}VrPT79(S-|xs@Q -MPV-X+zJ%3z-D-T3t}B}-V&%rJ3$_{+h5xpcE2~9huv-osWckqxRSQ0PFS5MWSRi2eyh~1IpaPpih0L{Ejn(ismzPvM5Mgap2P@BqJjHK(xOH8*zcufDOrbQnI%b531%&9LT{ -rc>G+?m`~Fs|)e{=tTwv}9#%3*?*fRo2tLfNBfl#AHS);5t+JcZtPvI>kQzu~q`gNy`YGF?X2el4!W{ -nLPFH?)6$zcqyN8@u~rlq%F_TD;k$l%)#>dLK0R)APt2(v>6FR9kiQuz;+PP3VabPd>?4ksJID;I|C{ ->sRLuQhc!QC^!3>lvv>C5bvB+Q-mCG3MOhLV;QAOGJN*y)712JS6F>Xm9wP1^OBM ->$$=3oWskBS0~^Wq;l6eC|3C*L)^l0#(1RV;PqVl?}yhZAIKaT_Nh`2r|F-j?t@1EmHagMPi(fJL+N@ -Kj^4pV`Qg^}XZgLEQD>B~oR( -bmk_I?iDlmQG{{c`-0|XQR000O8;7XcSFsw1A@dN+>ArJrnBme*aaA|NaUukZ1WpZv|Y%gPPZEaz0WO -FZLZ*6dFWprt8ZZ2?nrB_*R<2Dd}_pcaejV{$%+PaS}yg-sVK+tq!*xm+<#8734cG%UmB;_2g|9gj&W -S!2Yu3jXOGvD09Aq$h3OAybZ$FfgJpX4KVlir%gA;gJHTrMc&yMMYtN=3FOpA!~sik)jFWG~xDSYkUY -l9WeoV0!_xSFWIr7l)x6`31v8_Ir#)NLQu;nS3e=migz4i^+W6#ga-E2s>oLD~LB#Ith|NzjsPWdxf32|iQFHhqNuup>6O6F{9<-BUCdFyt_S!SX!n -CL(&8Y09K>@<9AX}JcDuu;dKB(#GQIvXCeSDP*SWo!{Wc#P{oStoz58*w-y3j$U*m2(n*2i1kNf5Kcb -KMEQ|IjS;->K3WITla5Ptdi!Kd2~Q5pnbLaG0LfB4MpqhQ70)3uuh60FOn?XXkv$+*x(gY4s_<+61ed -78e(U-eiJdu{-aG4};{>Q&j})b+tS^Rn&Mh8J~kB*Als=QRMj{J6ubt|lY{wuWGuM>#tEoCz8(>+U}4 -ZBGVZ{r)x&uh}aucGPYGK^0z2X+bfP!BfR4K=Q&4Sfm1OLItMmqh|B2A0(TmnQT -}$tJqBfn#<`ZaEl+bvnsaClg7)BqD+qOt+X$6=@iY5?xh))%{truU#-mhX+jqbF4cSN&HB;?kO&!2qLey_P?Twxdejmmsf@<~3iDr}Z`MYZ`4Z3|1rS4%{8}-y$SG}(UooI0F-OBuemG}>bBFL+9`eLP -0N^?e5?GUO9P&|r<#{}DdL5gi?LSIf2+YC2(;45VhPVOe@K88lW`jTKkNYHSFpbi>vxWP?Jljg1a8oZ -E0CYi;!%<)pDO39;E$jw&_jX)iUf%>QoNONVJMr<&FVJK3_A|7(~&xto@)PqnNA?PSv$SSQ$4ISHE6!T;|I}y!Z-CTWT;xdH{KikMir*09?MoKXt{r!&zmi>mIK@ -W!YmJnc@s11;_{5QaoPkNsAVwj%JLT0Y7Ey+CSMBLos*T(cv0fEUQzpVf-@!NS|_UKXN8%+h}7lo88Pt@Fh+mOofC*ol(2}ePk5s8G -!LH?7w3cky_whwYZ_c!JX>N37a&BR4FJo_QZ -DDR?b1!3WZf0p`b#h^JX>V>WaCyBNU2ogE_1(XMQ&B_$WVPL+aeaX6^|F*=#g&?@rPwi1R%Id;XJ-A6B(J$ -ytM(<(uqz*neaJ2{RfX)btTIs~`9#B&SsBGyQE>_HqE((n%S7>bC3d@{NG<-UemsPts-&tFAf;Scl(X -yW%j=Nc+@7AE-Q0{~iejB@YMG!w7R{e9_&e<`h4ktlS&`~*8(zf@ZoJNNuJqz}0E4f=7(@QJ;-q~e=&|a*vq~a-i$f_+ -f@debq?P$Na=CXx!k*I5AsYX}#K2)oHJuGx3KS4?e1ou_ -QcSt=mKIb<}+Vlxo`X;B!)g^qF(6y+exgMUj293Ppd-R-etz2@LM2;8LDH!88u;5z=8?8@8_@*seXGH -6E=E)jihN(>5tfUa(3KF3PL -fEcZkMA}gu$Dr&NxzGRz1NFGc6-#UZOdk`6F%QtCazgAcj=1rBrzqeSH*y1-NKGgyC`yJ)~3m}W>RHr -TbO@B_yq}sv)K22Ugh8!PDu)_#yfWX?EK8!}W{yI*S;;vc2*eprYSi>k^@q8Vy>F?|-czV{*!`IPjM{ -p`?5&Q;%s9L*uq4OU0%xdn9E@2=+5%Ux*@c|kI!W>0$SGGJa=PqyJf2O?#kp)qOAKcbwG(^O16;!T2& -Tno%UNC?=`*i;8@|t-=LfwS8Ph^%XvHWG2XBAW;ai66;ja(tjVib_m*O5Ra5f&Q^ACR-?2IhP8`^^ezjBWKmf^(ww<^FgS#k+o#xCkbBB6xLi~b`ra -5r@OJoPQ#AaH>L=SlLamW3XXT4fE}xz%Od3=i9EwH@z2B~|q$w*LuK;0`+cec})dDcGt25*#~_ZoiCe -3-uv;97Y<Od#5^@tSK##;KKz(s^iAlK~+sz`EMkbKj^6j#^M0hC0|n8%v>yqJbY< -7}pg6?#U$>LcR&oh^Om^7OP83rcut$7uK^7Y2&Tm{wM*T3m`~UdGytO9^O||WZ;DO59#@~!Bg~+M&+S -8B)9xvRrk|H77_JL~`j(9M)InOwQz`M{4lwjat8u)ZD5#8RLT{p5t&E6giON&AHa&h^$j~6XUr`tJZ#jUcj}L+wOymk`p5{-G4Vh&<2`Iwoi(g&w56NI6vnfv*ZDA638k* -O%P9uX@Ox;Y3&_4bbn$8I-!2EruR1UM&?BOG27L?h6(|f+{9_jhsTQz?REqsS&M?KqN{k(2Kw%K!s8s -c2NKn8cD=Z7}JwRZEd%>&8MvJb>Nmg(!|4fS#R!9S%{=!!U^oNAO~3xd^3{`Kh2sJhCz3bdi3l6&svx -8G5+ZDoIz+w?KTxZ_52(gKaS>_^lY_S`?OmgjkN7HZD&K$xlaVwq$TPr#&r3J(3`n#*?b(v52O6zY&+ -^svxRSv`_Tn3rN0>p%%<6=}`(hMiZsLW%okuI-%A5;|^Ju)XZ{kz8nx>N-UF8kLeOR77`AyM{n2oPt8 -fAq7y>3|}fLvb*2BTwrFDiNwL(!jSbEqX;KPBXU6UQg+H=U5h>g*^u7s!+uKNq$8h%?lQlHQoij -#Nkubw9^>H#_*AC3Mh`mtgn9znpW27ed4}$6xFbFfcW*U!oyqV}ng?kMm)_8KPDRqM!y`$A{x0)l>Sm -DU7*BV9a4%CZ}mt8stAx8DQBhJ7`z0^8z=-Ic3>Lm(x{$uBaUBisUw`bUUZG60-=4&=`G_ny3nG917| -BM6>{%h~*{3?C|>QN1Il=Oq=;d$tI8(@eGjqD!E{Co*Ehw#HW+z_^%VW;Dv3URO%psc6_;dcruW~44H -swV;d^_ocUlrC;?7)aZbo3fMwVk@y-e8;!c&7OECRJf3hOa2Y}w$1D%S#eUCdA6Am9yn-&*F)HMl9YM -&9S;DLD(VqBU(;(l5r=?#l9FtkuK$2YS?4*!OBAkf+IhqQx&r>uF_nk2#K~z=kO|P$?KP*q6Vs)FL^(i(Rtqc}^n%! -08uHfuAi@tCg9XPt4Dtu=LB!!n*Pfd;F*ca2JAfV6j@6aWAK2ms(pnpT2M4d9yy006%k0018V003}la4%nJZggdGZeeUMV{dJ3 -VQyq|FJxt6b!RScd7W8XZ``^Oe&1igstAq*Y=q=>aW+6|J7@tn=VH4ru0hZewaZ2lRg$u^F#O*;!;3^ -}cN3$2uqATl3=#HED;`V5wH#H&^~$Z0R#vR#^V@DG`dxUH6PZ5fRik7_#*@pS&uEhg{5f|ki+ih{;(#OqB3i8Ej0Z8Z7@RitX+i@2QifNiTAZs4j@`6E3S-aL_mAqbH -$IT23CDzs89LCl?M1g?=)cAJy5^9iV#F^xB_v?s+~@$x>{N(^%=tQkpWsIyN>mB;JR?H=U8UYz|gU8o -EoNf+|c1*_8{09UTv5eH5^#aX1}?+xVXBxImsgXM(jq#Ok|3Sc<~fh#|^8QVSxd~;{B6QvhR3rPO*$e -w7T@Z6!=761387&^DLdvReTQ6%$I|BT#;>X(h?}H?OIN0&pJ+Nv0ANa-VnW)&-4jBGsle$(MGL_UD%- -O73BRV@>TYHvm)^0kW0}wGSA-W4SA=tH9=0#l;A=rP>`|ZsJ=B@{v$jfFH`bOR#>uh)v5s69n+V%V>z -CM*++)V3wIv=L@H-U4+@;X4~kTZGsAtHQ1ji;jtx!?49a_JFZlJaiOxMvBBdO7PYwTW@+=BGI6Lzp2+ -&!9k=D$j{+0Ybf_IZ1yf6f&9(X011NuuVdO(h-Ket-0iQ=7nf}rgWK+Gym2E`lkok&IW*uWFSKrZ^K9 -cx6vC_FSlmPupJ+uOJA)vv>;{L+}X#gH6!0My{#aV4pz*M3k*>;=Z1};sQ537|E -`&O}D1Ahl3Mv|>X91QQTDY`4dymdReFT6fe7?Q-I|v -8r4@Sxs@|Y&9G9zo-1Cc%a8our5>~St~n)Jvm$!3IX_Ow*4EJ4cLJyGiXn$o<9eYkvym|sEYT`M113p -c-ZHPb!uC*E#96!9IxjWA|RM}BS1uo4uHqt!4oMI9Is(idh&az -p~jniSql}ZIYAW<#e`5pmjMvKj&+0Ls}hf+P2We>@!BHMCP@~v*?>LA{m@!?8+jj?iq>2lhSd8v+?wF>7wr!(e*^cD3w`U?0%J379(F?h>eyV_Vx>cnpmmugh -?{{fn6(vfCPtgcJ^BG;)9w%9XdKwqQ@9i4j~%3P4YY!?Jeu;Tx)&BbqDz -g++0;&ziLIYJwxjh>7A9{uW+X~4~1UW=^6a>>lGNN0?*Xxz5jciOgYiDRY)Sf>i59pfT4f7I4FTDU-H -h!lhTH$`veQ^5)62lJijyx!E_y*-5_Y8kfExgRn%eqdXu1|+luC?bEp)I-;(AuzrO*@X3gaOFx8O(B+tH1#uLkWZBU&$v?hxFqd1YN`PE)R4BbSJS<-{AI(<65Ltq&4pb!b0A3$5+czt=D+_?o&a2Xl~2VWfd6X48M*4qP1%cF!I>{s&9=J -pAPe41};79F?T8o1>ait@;lJ!`9-zTZr|4=a~6G(U^-1v(wR`k8xTH2_A;`Bwk5!;bXCvI!K0SJo>Wp -PBMH`<}=-(0cy6zyBf>l=YWMp;xCUx_w`g-=V`G@81VALgvN|0l}!~pipKwucV!tqntT?bCP|PQ3dj -j>}V;5AcZ+gDTq1hdR`ovGSO=ThQsdtdC$3hsKLsuWOe5J$WaGwD1y|2CKH!ivD1uw!g0nK0%Tq+ofO -6*J;Yj`Irdm>N0?0}3JddzM@Du-XC5e%J|8Vm{zr;Fcf{xlRf{fn34QO*fA`7#-(qUs?B9?Du|?k5Mh -)E$hy97nK8#aS6dd*)B*Y#0)#r#$VMFYCC`T~f{C5<})|aP{1MEIJDYy*ve7WXrvnT@iGk=ak2TRj^! -iyiSa6!-EVV7-hf$@R8z2~4iCC4HEuqJQd^lp!S6^aJRuEyS;yC#cD1_fSW#>LNw_fxwJO>lIXE@q#Z ->cKtIWRl(PVc?j)*=aX(cAWKY+O-#CKR1yyWn`Dqy5ESI1u<-TWTTPpA}u%SgkK{N8w_di844e;EWm1 -*!bA(o0C~l2ag?JOMq^n+fs~CqDu~;G2Q7fAJ?p_^P#6F}2}Q-rnJ6-P^u-8f)zHA;sGELz%Zt-Y_@! -!Qir&tX^Y6SG4ffHVV_rDV1mb`Pu(36~uOvpeXFlHek*Gk8V<9{m{3^CYI^H`2mfG8WKSu!k9tA0g*E -9B_a-5~ii}g<~2!(`%VK7g4nZxUX;ne5J)k(}>@GJT+zRtK0odCV4WXGX-#>9VK{c(47b9+NCKGVP5e -Z9QC0x%fR{lJcTpCmd1cX9XU^$(#I1ZQAQ{L`Sc|1HQ1!1PZ)XT7{~$6Nx_$@L=>FGq>Re%zBsd%m=U -kNE!sP)h>@6aWAK2ms(pnpVHDwaeHA002G|001HY003}la4%nJZggdGZeeUMV{dJ3VQyq|FJy0bZftL -1WG--drC3{U+cp$__pcy46q5m4+a87iK@|*0H()?96ie5aAYf_f*k(hEDoHt2fBgI4?N|*LW -Nw``V3<}as-(@dje{h+Jd1?XLhnaC#&EyE#-dC>M98T1D{*2U=Ovq>nTg}%*~FL0$ANP=TvFKOsi2_1 -;at^|Gm5WR%e=e(IY;)=ZM-u*=~>w0N+7W2 -A-FQ6Bs)iy}gsGjHsO1|Nsbnb;e+})E#$xmnrX_Xk(-^!ASfl_%>IUF%ah5Gl>0MW8lB@m{{9Y0t$$A -?%FCbT5FZ7gt_RNfeSGza%QIv`rc1?V}tWyi~%-T%NVaH?2Mfa#7rvyK?)P3Z_jRw)2|eBesf&P*h)V -b}?(e1OyaXf=X}&IX!U1Yq;?`39-wzh*>_Jj{@0P*zyuTumWIm>1?sMNHhlVQrTM -43Yv?>wnDC%80@}$(>1S|>Mj+Owdk%CZ4_)kT`88YMQ7CemVT4qKtA!~U&yo^3z!?ddHLL2gSou&T*(M|4zzpC;Y#=Vf%d#U)}>#{Qm+n%*BowY7t0NxV5X -eyU#L+_1$bJ4ruahj?`T1${BLm!n|zLn2fNx;=wu1HCJ9x9{__xSFS9ThzR28vpmA -x^OKxHL>ndqPCV%6e2f`?&{)5WI^Z{8eESY|<{YUB|JJ3~4r{hfH634=;mnM%TZ1!OI4DyH~U|jviQ+ -Ml@ZJMf=mhkRs$Ra=w*vRSdW;zdyJVFBQqt1yR_;QFv5RFGjgoOeJW_ZU+l|E2{A(Tl|UFEl3#-pw<$ -JUEz=#9?!TGr=!COuKi+)Wk9$HKfc?-7xDd{X%`^rXRSeOTuNCn)X*^NAM7a`Iq>_A?rG;+s`WhJII4 -N+6lA@@6aWAK2ms(pnpXd_ -;^n~u004&z001BW003}la4%nJZggdGZeeUMV{dJ3VQyq|FJ^LOWqM^UaCxm(O^@3)5WVYH5CjUysIBy -DK)q}>MbV-uuuU$Tg+NOqnO%xxNotdAkpJExDaw*;qe-_u*e2(LoHuWV!+WiaBlg*5tx-Ku+G%Di5FQ -2ZnHXS{xo6E~mn6S(>#``&To)CW4vb`?s0B|tb>E;vuB5%9SR9yzs#bl^WRt9J;_{k_b<7PGjT*4YH2{B4p~clDlfiLe3%r$PE@@lW2!5#aV`sDM_3iuW_g{XxBPIDv(UxurwcrNrl -oHmj8brtN!{ETLJ{|!C{gP!_Ets|BO*ndtGar99`;6d+QW}2W4o(kvyu^5gfQD#RKeEopEQx`?25z7S -=`3lL>6t6CU^Zzn14Q60&=L(8sS)WNdIM>><4-^=hJ`|98ZgClboet^bb-O8yAbl7HmW1{V>Ta>K&Y< -5K!NoZ)pH7;-2T-oWD{ly-5MYK+1@4|(m+dC(^R9++=6H~WcMTaO-a~~=Mv(#3nY@)v&G3EpESbNcX- -xnXE#G>B}D4DlFm_FDX`j~QBtNg$mYztWrJ|#{ljv<2gjb6DQU|EtZa@Tbh*59xaB*nHFt!V2A?Uv=r -BL)B%@0biUb$*+>fuJpomLoP^ifJ<%$i-0htzFAe+agX`tKLCO^xrj& -X^3}QcUs1V6m)DU4_K|B}tXRME&KznvAho|h5Ayj7En>gUeQzxOR9xoiIhn;B;Cm56;8QJz26oVJ#|~ -%xD55heRacb04kLOSy^!Q30Yc(P5gX9UcrjkoQ)6iyrWI58ht0Ury6TJ?bpFG3>3{a_m_dg3W;=F7yB -{Z=Exwx_uKaX!k1yLpc#&{2m_0~7@g=%;`D`dS#l+j#BlLXe@C4j1p!05uK{w37i2&K$OY$(rZm-*~H -D`WiK-Nd7AFHX%64ax3W`hL9(LsXebG-hNU9*R&OwQ+z)siEjjaLd=$fO*$mRi1nES3DuQpexgPIA9m -%DGhn;bEB)7UdtDIa3ff69WAiF6anM257at8a#5^GRJ)s{YJ(0xVv}oisxBdfAO9KQ -H000080N_fRR=>#m;Nt=S0H+2303HAU0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WXkl|`E^v8$RZ(l(Fc5 -zCuMmcU4UX7zm!7rdbbaZHQ0%j0(g>GA}$|>M-IDQmj9 -e2IOpc3p9ve|BLw;9=ezr5V+cJD>@PDo3AadXs{i~HN{x4R9yy4YP|^xgLM=4&`?{)5p9TTBQBc*%;U -S5G!0FGe_Ex_4cV1$*MakbGj0*5IzgUBZ~+EijfwQB+87ExE$H#l^cG6;B3wgOs}L>}h8y_R3j-}EXGtX_5T{A0@xBA@_+COl5(* -iYSok5I@X}lV(VWC*ozXRUz=jZ7*+=r(L!A>!>5#dol{Ub}ud!!P&lq-RdKiF8z*@?ZjR1)SS*2ukPH -wb?I;=OeFv -dI=M4ahE!QK>=GLn2-Wlx$6q0I&3)zcH<}X}Mb#8_LT_On+*jl0}~B!ZDq{n=T0rGi)eo491O&vfAjr -OFm^w&eK^g)2kp;Mn=)r1f-%dY47lE -?Vf3SeWhOD7lB0*agBP-ibK{0Vc$3NTAiu--nO*--!yx7Oer8bv50=dz&j|BorYq*BAvrOhsB<`tB~5 -EAiagnGk=6vMJ%S78z%)J&Yhycrxv9NMQDeUko5MrVX|;sKpgT}wnz7l(DdBe7C^I<$C!hWzsDhW|ot -iwkVJCWak2Yj7;-yQrJsR!1k~>I(Hz=%YybE)9>qH0I?JR2ZJ-=}?Dx-y!#xVVUeGwHmA%n_Cejo|(WMdA!WV4J1SHd*?jq -n7$MK=oSE#uHN=-1?wG2cD;r8Hqq_@|S+zo2?y+IQ-36e_R;>QrK}DY -rgiZ+kaoy9GfNpM0K2>*$oi!xM0yyXjJZdx=eEL-Wa8>{meZLSEc<4G{`Azs(w}(B)RPvJn&t>{~?|& -7Y3?-HQ1EHtcW6asyZCYEXLU3#5gbbs8+-+>cFg7t-Z$KkINT&q<4XqL_0ODhRFi?IA^ZN-dZx#`qzrLVI-#D4? -hU%WZ3IP7Y;YJK~pmI-5!XS&?9qCX?_x`P&la;!M8SnkFH3CaKU@-InZcz`(jrKL((GhGmZzsH+_Su} -W4IzA_5hImMG|1`-$?@6aWAK2ms(pnpQbZx{=UCL=Tfl2^|fD@bD^Z|5h!U$+QP9cMzOWKy4aE{$w`-x|K8E7t -+f-H{g7QrGozVjUKQH)TqxA?{hqS@YA1Myc&~aaBtg_3{=n@(q&-u|9_akZ2X@TSxgrAJv?NDgs8l)n -+AGQ#ZgcdV!H<}g+AcZ4-u6g{qQvA(akBSHd=m-mJ2aee$@H*@5EOeIhTw}J4YZmH+0yM~)P6!H-jd*;Oa9USd*hm+MDwwiB#JS>a{JY6&C?{%5Km6=F -@!EbEMkoWnjLvyPwVG5_1ROwHga8U)$RYvI{0%`|V5EC4#V;EPB#OQCRGWs`{fkjFI!rY+jnZC0<6m --pVz(Md*m`wqJP{4?_B~GqMiC#+)oPb>y>%w*X4LA+uFrj`oZ3wsayjHc& -dzX_mc63dG?{Ss1TwD8u6TQbx|&X55}5r~KNrmmEQez)JU!4HUJl2`Wg%F{TcXCoP00!1NHAnfRbh*7jl@Y -av}KU$i{c2*u+Fh0W#S9t#GU97CNzS+GDLDp5TMs8OmtBFqr^)e}KGSmPGCqF?kj3BMiZcu~JXDz|dbx)Y@DFpUlS_hPCr(cmQx$_nJNT76elo5nYMID1|hZt7|V+3OK_vY= -^?12s**>!ZagM{c-5(8osyC7fyKwxh|>1&xG#S!44YgUoubCw(>#s8c_2tY9vY0rFR)PRN%r@ -Q8Sa)sdZJEMgx}UX5Pb&x9_XJAX0h&whZB_>l(i^Wv5kx3)jIr<}8_TjyUHICt-Mm|GN1bic4qX^wiO -4g^lEPW=Csw;%KY4__s%{3_HdWl8(ER@!Xld(M&O-H*HvFf?x$s46V>jCE#trAzkz#1f+JfO8eanT(`iOeA#2=^7dj|aX}in&;uC -fL4-8F -4>Voc!k`rRM#^T~*4{()1#~2j?uu`SSzjX`hOgK48}2O}sHr;LY;8cB{+Y9EKW#fi{pU;dKoCbllaw% -OY6lFO%2dP^QM2*>hUDQDBn)>zNL((3P1~(4=C_h{980$%+Yq(LcQO*~sTKaqEK0Nr9RP%od?GA*NEl -TsAfMWhT^S;LN0HWn*+MaC -xOx-*4MC5PtVxaZoW#0vus`HQ*In(g7WcW<=t}mAs@A6Lc=f`4=(6SJ -1&xiaH6C~`9Ygghj8-iwcj;|Jb&L+35z4X8R;wvZv@vopR%pf8EC}JzC@#xNiioV*n%X0zy#g!^eqoh -vTdwNpbUXaK=3yOoy(Om_Q+p5p+}^%>cvy33(eau)9-)75i+9AH5zoD^Yzqxu<0SM*GSyx -N(%(|CmwYkBiH!>ATzDMRXqqEJ%O8^b*qZUf4;zKyg8B@GP#){2mQ%PnAArN(CwJ5eW-WqeyED4(D5oNbuW(k?zA3Q-Eh(yHBv_Qp1s3XrzATlG0Xa?G|bcO4BPRl|gn -HX+X=@pnKQ#F0}(whs2#vdt-&eGW(&vrXf -;#N|}F0d2!|#MyM$%AsRP&vc~AX%YWG}V;7SUO|OCgw=ibdjpKI<+%)vd&)G*B7EeK<^tdO5&dREeSi -P`RTr7MvPnFh$u=GmKCQbyF-nl4=A;S`Ltey=kyS(I}eWr=|ePYNTE$_$kz6AM`CC0vpZg0`$v#GYKz -VU|l@NFr#aU*0q$bLPOPDX=~P4?OLIK!o$3H2DREHv+DW=&f!_dg0ho&u3xQi0H?voJGeDbUL1%ZsJQ -8~Aj8cMpy?_AOYt%og7!!1wfRT8X(|DEonmi5i2hH!AI-B(h}_gWUYl?qU}Ok@*GhCAana{%JQ0PkLM -$FRvkPJKs13PTMc!-mYVr*Nhu3CpZap(CKiy!o(ZG8QL{|m6bHO9S*bbE7I&!Kl`Eh>c4(fQuCVmc#v -~H4#IXC?>U5@#T?d90ahqlOM))ghB-=^w5f*~G7XeieK~twu_odrG%}qekT}e7V}|AG8OeUkCSdjyLZ -+VMWloomG!}Pfs(RP<)FjRmdhtqZcy$7-h2zgM(P7Jldo(lJqo2KdypY)3Rlp()^?Nl -;q93`TsZh)tqNfFNL5)K_?VvJxM^tu!QpedaTF#etA5XZj_LjG!aiCwJVUrnPo*T$rh-(jNujjg?5X> -`fA*oeHFxFm>8apl{6{HC`$6aj62REa@hO_P)h>@6aWAK2ms(pnpV4MDg_lB001&@001EX003}la4%n -JZggdGZeeUMV{dJ3VQyq|FKKRbbYX04E^v9xJ!@~=$dTXmD>^g`agZ5mcY(_VLby1`R9`G`BilMXw%j^=+QN4D>zecF5aJ?zdgISNPaqdb-rZ(NXwoJ*|gg?MYYupUlpQTvNugv)Kyv@$ -tF$FM9B@W^16-MBD>a&o3^OBgdnvV!ZY4N=O|0FYXia0*PNHn@rk!-S?Gq@F0W~NG1D*_TIfEz^aD@2 -wB7P9Y4+VU05sFL|6y0@_l{~H -bW_h%jn^1IV*9(|4=LX!fw{PFPUBae3e-3-%>&ZW5++Csq>a1<+cFA5=Fm73<*n}SW1}W<-b;dyS2-t -z0cMo>FOY^i#?bf`yDcZV1ta!V?s!928Lt)7Mu+Vzfqz2_bzkL1T&Cg!4lFc_o$;DoDe5bo~Ty)88TXgBV%B?3)qua -@Wj6tvd69vnTr9rQvOLcEB6UdcDm(?<9H?dmY|ToiK&YQ1W+pg74l)z)*a8}3!FItQY#@1&}eZCS -6=at69vl%A6K2Y#TROV9yz4?H0`V^g;lO_RttIx1<0SUl`jm?TxY<4LkOIy%bAR0vI$O3s8+dAK+wsD -mJ|$(S|3im-WtA=sx!^lrt@_vbHJh*Gxht`TIwz$Y#itQSZdL@pnKUOw@gwahA5(HSjAmleAMbEGowOC@jNoPq%XYy6v75+>>!R>qCA1q&5%7J~53A;&Q%WX`X8_846x*7Hs -t+dtF!jRE^0PK1RC%+lgrC5DvCPWaA`UEFRPs)Q142R6L?9uzt>)2X|{)j$Izqhv!nl-)k<@f(UiB%G ->=4gu?|S$k9*nxB9X! -RiC{U9#VLp$t=CLQsmgC>(+HA{IOp^Ya(a-aUKz%P(r0+Pl*~OM5P2;RWY5RC%5C$Z3*o5g5co^#0=PZ -Sv=57iYe~u+^r=RY-3jT6{w;T~+nB*scu%^vi)X~!;lmQ-jcE!m=yiO8!pKV -WI9E06?&@Y$0-8!c5`$l3zXXn}zm4XtOP>|THx0Io90e4e2cKa$S^YlQ!^dV| -LHl14=tPe8)MUw_rR^6Rf&ErC2vCOXbVt!eOIe`RuyS+Sv4I9Vkh2qYuVP=!}PrIlP|*wjK4YY#g3mcqh-p{O+!3;#++sD~ -xF%fR<2zlkKlo~=o^d6px=+)tc>LlAva!UaPoaF~`YPj -e)~RadWaU=&xmKX{2Rr_yljvw2r78zpm%9&b9+xJo%`veoziix(&uqmjsd&}Qe=e(%s2%Fs6jWPOmvw -GP-y!WsKDUd2abmVz0zAfEx->ai|3&u -pk?0h=0Cpw&qvJt_|7sGE@6L690&=jEkNx|!|4x>4`C9d*kbMhY3sqD$OyLac^_ljtT2@Ue*fd5O#aS -V@xFs@KGF4D_R{{OiWyV%fugqij$`)j>%gAh^;nyrYT?1gr+)xi$IE@4fqy7L0ur08Mt#%|*iz -;pR4;D#a9zC*aLtf@1J1Z5ET&LoiKO&%BZ$bZvWSzDTo*CmM6xNZu@5nyNr%-Pe+tETQT97}IZCm$^O -KP@?q!Fl%O9liR6?(MuJT2d2lAgDnJK=Xr3%bQax_xy(QUmgGqGnF08-5kK<)e3;(oet&r*OA`Tfbd=MiL6|}zb-tGS$sJf?U; -OUr{DBncEQe(A{NZhQ*eH%pb@94IBE&*$`*cMLDVI<^jDNsEUIouDuOL;8;>TeD}!k2&5(sbB%`=?Gn -4pf(*p2hSNMcP9!jSZ_Ksx^;FtzK)`_3vz~a3p>^W7u*iN*ag1+TI9JX?#NEkphn2y$1x+Vi@VhHpAr -JkRivp@Xdj}g0&>24fJ#*&vz!-b)JYb+h@111s}4w7y=nZ6)O3Kdjr`7vS$&< -=iS-c*Uw(P`seEJ&t5)8uQxft39>j&u$h!2SVS;b5>6{8@tsGVhkRiM@<^AkA2kndzhRM87i)!@< -=7zd3k39nI#6&rP;A{Tb`6o`IT_~71#nn+Z7)FGU)6kIsn?Up85kIO^qnr-P4Fww$R*O(#5AnE-2Lg7=1Ybxzv -gCwND*QMr+fo(Z-FGeYU)bVxQXhmr(LjulnUqp68v(UFArdCR30DVH_MkISkzV*#l)5)(cKF?EQsTY? -yV0DE1Rb_9zuh`yEN4k^-7b)lt -E=c5V}sQyoXM@&j$UOR?nm2YASS@$d_ITr{%`jzarRT^{-c!Nl0Sn*GNElBb@Pw<43Q3Ub|Zr9s71}Q -X}oSq61Nm>1yOfmAvDzt(U7>n$GUZBsKaI2a+HLbv%k<*!$e>NA@uPC~Q)3D)Z1RH`e-6ZTM1emCF(b -OR5Kji}Q^bS{B^O6AZC+c)>_7dNpDW{5)ZAOm@gNwFSCU4W{He&`N05f<9HY^mox{h?kX0!e>RB^*b1 -)!bE(Ceh@*nlrCv~Ta|U1FTk`1^)DUS(NHbl_GQ|#u!wjBQVpzORRy?Urs5y1FdA35kZh=w_9I&Th$D -~q+!`pveJQQ2szY&hchSFG`nisQOA1jaze -%!>V=|6hzS?|b8h{q57D3S>#2S4)Bm@KC19m$&~>r@mOAZAmCa#Kf5ZB7Jf36!MiCsJRgbcAw2yDX}n -9*k}&0~`%9n0tqywJhba1MHJNbPgi+oH7bWYjLW(6L3t`=1fh`0}!wn+{RTf1q46CVYm=wYApLjFjWo -?p6!k44`9f%DEyG2SU21lI1^BoEVu=qk5^fZr5th4cbnB8g9SzK{Da~Lhl%oj*Mwv6K$FT~aMi^>EcG -FrRAfaV>$B%KN<}ZGvr_G~IgSEcyd$+vB;q&I!`2)_y9_W08C-#Sww@{HHn^Ii6F;P|l)Adl_IvF5@e -^36XB{*9W}P$gFAzV$&s27!Bgs$4X&lZq6&fTF9Kd3nPjc$$&YC^4uZ3OamsBfT?$jOQ -dgkV@sAD{~t+_45~fNDZh@ZD#H-i>0AVY3yE|#sYP)D_3A9Ad|>PB0zg)mmZR5OD&|@h!RJJz}%HDD0 -aVZ_^GnM?kS^27#*ayZJ?m^an2#vE&BQ+5}$@`C}W}``!WfSfKw_@6+EFOG)|qkLcw&k!hoam#*>gBe -iR$|Dgh?>0{qzKlrmD?T1zW_?;G@h_b@QEuj7^1YrjcdV!@0N@FEdki7}>{7eA^H_1;=~;7+TWm0Vm(ZHN$9Vc -(!FBvx*E=5jqKng}5({_d0p^er`yPHHhq2kK`Y6*u{XQta%VM1jv`9y&6Z=`R1uZGKXKN6Y`@;4B6yJ -B(9N(g-71w@l_F_gS4?iG)JJ(5ePr{iPEk^6o4QJrS(7ZnzRdXdF2UH;jtH#-D -ZL*ACko!tG1-8rVQmXdL6haa|ffqf@L7Pz#QJXrz9R(=l=ei@es5103MJx!DsyTW%bz|BvKC1m#KZd-Hk|8JyQHBR-KE~x)dgO^fM*qP9O8%*-zC#9_Ak1zn&&1ZU0l6cs61*1wx%f69%I5d*Lj~dB` -rV$45+!px6Wj43Yz?yrM{3$9#CzW>IZhZZKEM)pn`sA19{8E?2l4YC}u$d%!gF)qf1tXr2SK2f|(LJQ-e7Z;W0xwmt#G6XZCEW9ZfO8c(ffzKn$Nc9yYc -Z`JN2vaMK_g39-M2NLL_kafsLX7qOzuHJkE#G4wXB+c5OyJrBEy+OF1bJtrunk8yjA3DQj -4Hcmt}V&{^)DT$h58Mf&8%tbH2QpZBIP*oYH?7Hh3ae8vH1rIz?3?ri8lO;8aZ>Ty(GdV2W+( -2Y93j);PNOcf@QrkSW^k4TtP1mfB5c)?^gOv@Ni5XMxnVap-Vq-b;(JV)jdq^ -Sw7wFG$c8MyqYC#?JElZMaZQ`vIZ-n>Iw*Qn@+y( -%m@3UJ?q2ER@UhL3mv+~y%kQRS$Zj`JV%vmHW`aSVvEvu^S;zBq{!XyZRu1dSaxRx=@_tAR!yb -Anmk;Li5Q^Adi{D02P{z)ktmBUbcRV2N@_SEyb*kVUj!@Ve`9tGPo)v+Q-)M;f`lgqv3nH!A{&ky=CF -`H}b^nC{Q_k6z!DkIQ3~7P>Wk?PemAo^!SeM@F_J0eFz;}Nmy`0$W$ZRt`sl8*~#(=~)4B-F4tj=@gH -3@r$J&wyV@CKB}Pwt>$Wm{!Q -Z)}-Nn(IwAkFhT#JNTkc1`&bfwoulrcMddDgbM#RJfbAna2LA`Z>+xzuT&~b{v#jD%~D3;r5n;(j-pp -rY9BBLtl>HJpU4@sg(0y}?qJxu|=^iV6=E>u|Z`(U%(+9Vj^Eq2>_6uk`%^8iHR3k{fU6nKnAF}Q3+AB3VpNcV6%;`PqUJ=617Gnn -1kzUd0mw}e*k;f%W^P{T>6(zD3EnVhiq9WZ;p|dXLt1{@RVIBGkMq@OKIrxJ-WDWs}}f#wW&I=jOBW? -nYxha*uMkEvgi>@NPr2lYY846X`8gyxk(x54Jk}#x3OXpN+9Qa-EYGHI;~uS!5|SDqeVx03ph5IBuA{ -8j$*V|&dKrFdXf8_XuI=txE%c$GkCpmILSt@N_Kp3tFH+rZQJNl2nN(dAQ`M(vZ{czE8E68y<~vp3IDJd@Q=sZ3p4kl($GTQ0Yj4n@f` -k0{`$a4%6Kq0_xook`%{BD+jfm62`-ERc981)6GqQk)MEbP5wL5~!j9=R1f6H8dSE84SD^QZcCuLhQ+ -;ywNjO=ysH|JRT@{K7cYc<|Gf2m22)gB --1eWfQ+W<^Jr@zz<^w{&rRK~auYT?q)nfM--pq~j@iTU5xyRmJ2gSUKh=?CAkzgYYShqxJDr3w_XcpV+PO485j(B)MUJm5iYXO;a>Oxc#0H=QHuLKN;8+TPl6t!Uyv -47S*c_(-vlA+c@L0@6aWAK2ms(pnpQspm*iCp001{I0015U003}la4%nJZggdGZeeUMV{dJ3VQyq -|FKlUZbS`jtoe$lWdz4u7B6hBj@(H?-z|va+EE=A-haX97;iH#K(%hpJVF%LTw(us_O8dpOXhvPiF+irv2w?a*E5jU`;!(|(YE -UNOhw``<1uF5kb8p|JZ6)67_4L;q5UR>Uwka*}V_x@H@Yr$u|io0|)}xQwTT$jUAL>yY2+)nC+N4Eex -%TG5_bgrBKoe+NAZz8;YK71^=AWX&xXZF68vA0+}Zsbwx1G6_g!C)jorl3jiWt4yFpL>1Jq{;m}_Kt@ -V{c30rtd%Y4vQWgV3J9Mt@@gQ|V{=MEoR4@`~Rw((f6mJP^{ZKY@4&C7Tw#jI>+A? -t4MWmb1E&`H3U(Vb6fOJ6_jh%}CdF>e3ad27&(l@gu4l?q1<)ntlA30}2N{N;pyU4+Kth#18ZZ`~bNT -z&)OdztKC$Vc6{9l8i!R$o&h9tkmkx5CD`|&ZDxLz;1cXAQG{2(67*x%6Fm#W0I^wd`Suya;_rMy*@c -P!I%f$QP|*@!UEa43V3Gmd47;ls-SliS?h4N(;2SclwRf+ -LUNvL3?27JKd4Js0>;0$Q7M)DqYF2S5&vlW#Us1qjNHLYMJ1h#?0H$>E1xZMXaFtt5MH~|(cn}odRM7 -twbCQx2GLKWK*T2-alNWq!68994Ner+2znjtRd5NHuj<|9JtAQXFNZL*rIoLS47>`)aOibVE!ksdgo0 -03unsQcm0^(~(8eb~3uzYY6S9)Nvoecy+DOPzpqVK|ccv-q#) -{MRj10^geX@LYA$>#cS|NO=7~YxJjn54mMeCE3;On$~bE2AvhDTGF(=a$S5NbNO=dY+G@l{V@qetx4%5ife_JK{|{FQ>5cQNw$KqKNU7|2#clU+foRIN_(JV}9fpP9`16 -ExJbZlDfoUZm%F$GeSx{>g@MI~LVV1p(&=&0Q93&F7XqN5 -&l8%;YXXga}hvv0vap%+s5-b@klD76||_Hu0Gi?D~!H|ns|@a%3=m~T(~KLGF0h=A9(cjW_ZZdj#L6f -&brf1;PiT;Yo8weYP)%3Z60>E15d0{%SUQcw=c@+UuO^45%n#*Ro48aoV}d|?7uV?TXZ -^M+M<;)(MyR=iA2io)gEM>(69B`P}^N~fC4DRM^)dr<0CNxuDQU2Tozn5Ru(|h~B$M$&0?b{7l@FDDnnXqsQ1? -_>0E$Pe>UlD5OPz0lY_c4xYEimEp!5epa;`tsGnH6ZIu}(-s~IHL>>(ho%;DS&BLud~bA)L&9fQSmXO -4^dD)7&0Vn+7YwI3-_aDKT(4ujM_q>H947qW*68`X=06bzvl<$5=Ay$`1Ek`UtKxsYs5 -5g;};4E0Y=Q`ILz;prF6c!-gI`>f5RSVVNn-=#)dqk;iUqG>nw;a5PI^>ebuHQ1&_$i&Mw{i&!A9K1D -8pe|>M+K&&cn*aP~>Uz0pEO?Cj9A_u@a+)vf@m0bN8nP%8~`>n}mKS;Ye8?rbCUbw1`{aZ3X-b2+am>QHw<{uk06v);Nt;^n2p3?I>b{|nfP8iiS@qaPAv>iOaFojLtPrbJ -)xjgz*6o6tE8%`B7m}b`0SOQM-1?rn1y=`d$mw+;22;3y&f$_2}n7JX}e5M;;JvqTDG?eEkXB3MSwkN -+6)oboq3Vjip3MeynI0mLn*}W6IKK$0sGuJE`aOv8F}ntK!FuU^`p~hwsZU{!%c1Mp|-ObK`;um0IwU -GAF2)SU)t=w9x4hros~LqOUpk -1nLEy(cU{ES3B5IkJk#j|@(dI^36eCwTK58q&{WKI*RPPgtTuvUF`5zNt5MVAJ42V4&)69hOEZ;2hkY -n?VI=b64R>wJkc!|#j6~uff&7k`~iYHP0bG&G}oLuZEl6}$(Snw4Qk&>TE`itr7K)cinE@N2D=2tQ)9 -<_#+zO1N--nI}-jO3;o2CCLyt^Cu$^?D%kM4h1Tt5L4JxGivJo(JdEKdc_EA9g(T?TVRpk^=|)88(h{@I(Qthc4ln!C9UqAZWx4vd3J@>3`y4XbxtA=f-%~);_ -$^-jaL$K=hx(zBj5+hCwZ%>PwN~P*W!>gGQjK9OTb}riH)~ei2{`K2%4d@z2GyNW4-5DfK -s1(Zj;SsycgA-f~yh_aY8=rZaSDX@4Ac>)Akb-MdirKK`#AtB}Ito{xl(TzieX8^-(Zw&G_5pHfa&7d -qr*a&|!9lcnNblVMPpRwh%tsly-S$}d47ca{AFTAX08(F^4FvYix#b` -2#S;ch~t)GEW}OU93L3FBIs^7afD@TYyI9G!i}*OS~PQmxCr21Y!N7S!$n}l?c?Y9mW>oM-?Gtm^J+M -B(v%th1yD-^1QY-O00;o!N}5(zuJbQq2LJ#;761Ss0001RX>c!JX>N37a&BR4FJo_QZDDR?b1!pcVRB -<=E^v9RSX*z~HWYsMuOL(ukXBphu+SFN7kF>PoJeW -a~G4oDgk>x9SnPzuPtP7cz -boH5{L+Krp3aGp|tCcGIlDXZs1THj_AQgQ|KT#lB75hCEYcJx&{(Oo>vM*hZIa8>`F<$ToE}r66n(9h -{fHkY5cX^dvyuN`L%(J&wx0i3mWPW>cayp+631JT_RtCX$YEPvsqX5mIsp>S!47s04fhf&XpT7}MF^=XzpSGB5p$u --N0N|%)$jrb;n)^tSR83N#;bjURntDGuDjJ2CW?%DcxuH%{}v10HMbkC+lX<4tR3JyXZ!bOKbH8r4Kz -}9j!8lkI9l9|uT6b|Lwti@S|lCvxUGHcA7QMuZ=V~*YTcnEdQyeNt+4*?g;M!S+bknnFXb02dj>=hd`|iBQWU^$25ll-!O;* -V~B-ydNoJGGv86m(=iVcKY@1P!C+klfZlRL2!MV`Btq@^kugUlQc1vl` -yd!6BpU3tGZ)C<+hDK6KzPOCfJZHqR^Hua8FVWp0z7X99?k09psNY;We^VSV0KrH>fj!NYW^&WtkO#0 -cxlhO+`RJ(_54OFqxQOOglA5`7-XFkOR -GV>;crL9)9)V+sZ`uHbCPK2#6N$eHoG+o6OA>`McZaIq=kdN_uZry49aKRRQcoeZD2jyM#fd?11i+e$cAtWTAh1W}2lf*=_}2sPp^oFq-gHkXMm2pw$#X?w%LH>>ATBJOeRzFC>{q2Z>w}xFHzO_OfTo_dK?;1L^Vc`0^P4H -Yqjw-~B3aI0(EXXX^Nyb8wn6_0S2j;fCKHhHF^T#a>K|+R@P6O(;aK)O3>}F)9zzuSdCiDxHJx6iwZ@ -qX+N#K_y|6>vwEkbk0>mxdz-fuYaqlV0PHMP;JS^NcE$jWR5s3Z}`F)ZZ36FeFANm+r3`R9)B5w7Jgu -HM|VMPKG%+$CkMPssvCcu#N&k&zZpX$*pgOyOm3-V+47WIF&J-i`D4azNYNWThy#piZk?A$2^ixoZ^Z -b?w<{E2ngCIiPhAwP9%S|H>V`Tk`;SDq34PoL>KwmjB>fT3i=b*;HSHd?w2CmnMobN@9=@gw%FIIy9A -_)XN~=!1yhFeCW;j>LWcUXUM>B>ku0A`VoydahxrPiPZ8;=+-{k9O^tw9XM&8yd$nee9_{9wD%gPT{f -P@7)=Kf`igSXTRAgo1)}d+zsMZaGc{$h55u$yE~jHKRI_XIq-icQ)A#|+HUe#0X*%Pz?3!%`bjeS4^T -@31QY-O00;o!N}5(xAVkH%2LJ#Q82|tt0001RX>c!JX>N37a&BR4FJo_QZDDR?b1!pfZ+9+md5u_GZ{ -xNSe)q2+1QaU)ve0LvUZ5vUdKOKyi)6RwAqWIUq8)Z+Nu{V{-J<{f%nV79lx4R@5KH9TIG1mRmWRGmn -l;^iFWdcUr@8~{dfjt12qw+uZ@d}BVD|K}2RgU&vuK6lx>Gs(pyBDc5%!7JZsnkJcE=B*{yg@$_p#Tq -Yk9LW(t6n!<*R7xP8B_`zH&687`1E$r=sF**UE}F@=sB=ASz^)E$9MqMb*gSnGd3@y2F9Dwd1}rujg0 ->&Gk3{Q!OTi*Z21y?{oI>^s*=wm9xrEmq03tA_}J)Dw69Wi?LoA9Nf; -frILM)L;@*_hqU=W9k9xJj$Oy%@E<^>$zNNLaB!84;wpy*Kh7SXKcI( -6V^E91|giFK`DonnVhLDXAtOVfy&nUIK~SP}2%7a$_Dm;`sV?EdCz4G!-c$y?11TsG`Q@EXiD@{36|J -&XeggOfO082heQ-JU&mloi7h`@w2_&x)dOWOCnvS)~$xj1s;fU0y-RXEh2V797oZU6)o$I*4YMvGsd) -2dCOtO^o4kQ5}eGC_FUE!ORVxR6%#F%!IcabYR~HQ6dYH`TK$K!i}*9=zPEZtTm -sj-mt(QA@QHc-;mSZ-Ezm;P8+)Dh$f+nH?CSp=QN>u+ptfKfHGo`5U;WpjJs1Y%yG<3{2q!Vi-akmN7 -b5|oi_d$g*rltpl^JU4s9A7nLqOiGys4^U9b+ -l^Di9T(8UL<9y5IuJS4!ik2tl(Fx^F!unj!FaoHlqo;l84x$G?_!W18Q8g#*eAF*pV1s!t1wvQg9$5( -}l)yW!R>!jMAQw(VQm6wjO}kGJD=eb(**34Ashd8A(aj0R%>Snt%zx$p5(-LHbL^PZT|7$EK}#A6_6b -utTBJ0|!xYJ<)PM@dE*e8l!9L6|$fW|~#`m&^-bbeZl6MokLC`{f)9cLsexXa -$})7SVwX^q=XjsYNbt^p^dFYKm!wC{1DDBEcs;fI%RofTpWT;434`((Lcmgek<12=aI`m8AGDBcTLXA -e2~4l0bVOaBKqXfetTfk0g&o?bveGf88VRpRzYOl82fzge9avXacI~q(+NDFCek%Ji5#=*QQqr5>eEy -8{2xrzJpH2@UQqCQa!a&vY;W9=z0@#*qL%VtwyCF0_3{Q$vi~K?WRIXcW;@6w-{O}XbvA96NI+%BJwbjlS_(M>QrgmFTgpWt+ULCNn7^UX_)K62O8_c*h;xmiykIf(Nm33}vpI1FB+hiON6+>&5sGh>=r#LA9IurEgo`9pU8`m5#wFu*Teed|rm$2@xd<M>0N$6r90wqZ9?T6DW@cMXpRY5eS -OV2hgPfu}_qN(G-B+`P}wKehLZ>8@&?qhop<^rWgVHdKP%ylRu%DoXf%;xN~LyciQyB$k$wX$^&i`$s --+u%8$VTm1ojOOVzrkYPg+sM&wb?KzR#I$wvcu~ZDmL^xzE`a;v)6AcCq>A{`_4rL1#elpwZFZZ`gCYmvArte2uTv8TJb&E`E+FD|@qu-3{)~qfugk`=BU-Hum+nQ@Z*cfO+T) -1RJGstH8aU~iIpK?2`y6eY=J$GF*4Rm%!ScS-)#dDO7@<89|KtUlSv8}_H_~?U_txEpJe#eOvmDdiF<`N4QBS)J!`SC=Iz8=mk-BJ -y((>9$bf^>DcfCPp)kgBp9r1p;0?&qKJCB&%>>t?c_4Dzf1neYPkjmgQSJ)Tw|5poM>xKNCca!XboDc -re?gdP}>k{WxaD$&sUlzO+5YPTqiu0YqW7RDmT_VO=LHfY;BcdCi5zxgb!TeKIotQk -L`%C%v&$XaO^ -9F+2BS4ZoWE<9AxK-y!L?a+M=XGwnmKMum1-EzbyH>dAQ8YVGKVsTz -G1Nd`KcyHt6yEuW1@=CHQGF#TZ3}i((p9)x=EndAj{HHklC%lYm8}|6TkG7?*hn(8qZ1j>}w7PL1>*!QkO#>J6w2yIr;HS?8{c7?i3$LGfv71P206+#ZTafJuI&=Agf=(i($t!XOT5WoBy>$rokBo4E -G<`b}*4 -+LvHu^EBwcA2%ebgVA?f!*w8qY)Ao*K2G&g8b@)HPX388(3-e^dVvE-MPuc4cGtG)sCCY%{i#ZBV3G2 -hR}**$g|mOyl(s`h-T_b2gyjv_u9J(J4m3Lv6qhtR*57w{eK39W8V` -&*lEHk`*v6Aj7j=HmcU8oO~#Q#7Bo#WbX%eUa`2ckuoP4K=bVhH^y0e4~Z=1QY-O00;o!N}5)K>r#{|2LJ%H7ytkt0001RX>c!JX>N37a&BR4FJo_QZDDR -?b1!#jWo2wGaCxm*ZExE)5dQ98!MP|Z1Ge0K7zPAYF*I#~0>uU_-S!~}1V%d9Txd}xDW~4A-yKQGq9v -zuFax$FlFuFa+zXEsyGCitq}psmy_pIBs!aD}wyhO%R%x|ks<92%23Y9(lgk#2@3V&n@mMdSn~-3e24I-oYKhP)Jd$!eu{T#A1 -nZ@Ar_$6MGngy>{^!T0w#x56rYn1Vf$hjtZYR=qfk`c2KQm`Up3S9I}K4>JsWgfJtXgg2xK%cg -wM>25rnYKvH(xE*(x)6==gOMhq|aytXtzRY?7B}%2rb&>_Hz`aE_FH#2M}sb -%W(-59APl#5-w@K31y2T(PaSjk#K{T^o8BFL4xgr9!QtUQ2Gl*tK8FE3}zMzhbQcKVfGUW)22z&YV3f -Uf?3^|!%ZxH)-Nln^$b|;xajb7(tA*fK3Lp&<|KtWS>2`P;SFOG9se4oVQm -X+2jzZW&vhh%XXP}TDAOlad`=9yrcu*<5#DCu^pOC?|$$Qx*W`tj#y=zc!f?`(eVm~_p>c>KZL7Cq@= -D3rn_t4ndi>~bmA=;Bg{*x+6bdC+Qbe#wI!q=WoYrJ7FGyH -6HUWjcP%UOL16|Ckcla*dUkKhvbS@w;JTo -1pC$4<`;DGBmXWS2b0db0WqiUa2sk5p|jo+F>OI{)*rWrosnI$=Ex8|&>KkJsJ9@M3;Xg0$Npc6ikPV*WL -DTh7Pt|nym^WX(_ON5q`E*Qn2CR&XC~{F(D)9@9x)LiaUpc|&(JUVcCHMYzWB1fFDR(-sAWA8lAcF&7e(Jmosq5PNl`?irrxi_a`M$=SYnF_lM7q9H -C585;8TZYrgZaB=e~a53c@Ck(~pb3>(r^8~W6tKqtr-Z#!7=%ys6YZ!mmI2`tZ6{^9Cj_whC&bNwL++ -i?S`g9!UY<(CzhQIPoNmeqUayc#qPF&L62(#aA+zl{YdBIqTznx4UxvsI~A6L8d@%I~aC*e;TMDR<)$ -j<;H_N6)5lDiL0nl3n}dncL~qn6mCqv+^{VBATllX&EU{gAQO@pAD%jg|WFRy>)1bZa2{_y|)qu@6aWAK2ms(pnpV?w4K6zY003G8001Wd003}la4%nJZggdGZeeUMWNCABa%p0 -9bZKvHb1z?CX>MtBUtcb8d6iPlYQr!LzWXUecUTKu9-xQ8U_10Q=mt9mCsA5a$8Ke3p>IDWX*Q1-N)0 -*4^7o@pso6DfqEnWW4aioTtRf$niZ+n5J}b0GpyuQ_z)K+=U53}_g{p5c_`aMdK3vNs-bc_K5Y0sJ)f -cz$jOYH73m>%k#cs!Phv$|U8?-?wRbdT{K4Kn==C$Jqo%7%Or2;uoW0N3Vs}(#wC)3&t_{Cze!_czzp -doI9$U-@tJI-q!LTqVJRxUrSyYO>j6V;psyNQPHu@6aWAK2ms(pnpTvaa2N*y006}V001KZ003}la4%nJZggdGZeeUMWNC -ABa%p09bZKvHb1!0Hb7d}Yd4*KlZrd;nefL)od6@$={(t}-mhJ-dVZ|`)-JmTx)+$S?L@({%kFshf?t -;!h087-lkUFs*ybBE2v_;VcH-Oi^sL+e7Imd#7Hosrhr-RO@2RXP@FTP>=|=Ih->IBD)75|4h>%gy2qO?0!tS^lk09oB -t|zI1<;h#adm)Ix$V!Z~s1L9|5%_`@!-3;LT)~)YlN4c>BMy59B4gE78SDxoYTUS>?~ce*Gah -mzz-=RqN;sPEMh5&Ya6_Pwiu!56Qj9%lefuzt`ShP)h>@6aWAK2ms(pnpPK=`FBeJ007wn001Ze003} -la4%nJZggdGZeeUMWNCABa%p09bZKvHb1!Lbb97;BY-MCFaCvP~%WA_g5WM><7M~JG^#M5)T1ugpQcC -Y;ZLQ;_vZQKdsQV-)SJ0$ -WYL%47457pmIn7#59>eET|I-W%>IqQ;2Jz;iNi^QXX_aO9Nj{K}jRI(a7 -X|qDs*0KT)v7~x -xKON?)YZQIgOF*D@bGw3LJl;o)C8rLCZc!JX>N37a&BR4FJx(RbaH88b#!TOZgVelWNCABE^v9(SW$1>HV -l5hUm>^{-~(K5eP}lX$bfC_hGJb>tR41H6t2$ZUDWt2Pm+@!g8cW9l4VP_@4B|@fCUH=TNFipBtKFX` -&KH$YPs8qX1CfZxo76k;{QyzrKbiI-_($?mtZpXs%vXlIl)%6c_A7UXn37(I#E{zG}nITkM!b6b1jr? -_RyH6O_k6_iA`sOY;?Zi8vO1bHn_q|^Ei-L(g5#EXzljF;zk=@*PLEHQA(<%ZKA2*ectl&itnJ<(xdV -UUbweE+m}n5_h5L%4Iey3yFX+nF4Q{L-KJHt1U*=*x~2hD+z4}7Xat@f_PCA)tX32kwCmglDBpp3X5X -bn(eOPK#d@_`l{H6&FJ-67$c}Ug#P!*V;ZKqzzeB4)V`MbrOxxWo3`oARlCLg-pl5M~$+5tMp4OAHebQc}#G-cY0CokB;2j4R3U(o&=Iw#OZii@Y< -=fob@64-Ui<(X0Ehs`4QVsQX&F+6ci;+WteiWXd&@GhA75qgQTOH|oJiz%6k?!HdbWlY)vf;^P)mfZR -l8$1^1!>c5?|9b`QA -dql2(R6**yns8L}tC@e^!$Hbk8jKI3qhRfQ?24^xRw)h?oKt-KUKm@?_rR-1&4|Iazp?0Z912E$UE6} -#0g_i8)O*KVrP=M#fI!0&)W6@UL3}-VKxyh;)jyM8;HW)d;6?|_*IZ+sRhSiLEO&&>D4+@_-&hB1e>Q -ZAp(fAXE9FOP5!3Pm~2qsj*I5HN-*O2a7A`)$*`smR&SVj}Im)sV(FC;88|5R>wIo3C7E_u^PL!qfKt -r&1s3sk;=l4AhajjQvCVoV;ZX8|!>x&|e-2eNc9vF{Os7Y*8iCr{Lh(GCif%0e@4I6{Hi`Lz^7$cQxD -`C(8dYRQ2bnYBLT?6I^h&M-s}7_YTtH&R_8PD*wZaB|CFy=l){)E;Afe_Z@}@%+z=9Es^Z5fhbHWBHt -P6N~i5=mJTxPXLsGnjwpFq*{e#CDmb~ms)}B%os32X^huA$EZqtQV-x3nm5863QHsDG}E32sa_qhlZb -Kwz@>cd5%1kWX+2A3pU8aha2TUbKbt9Y0ajcfw -q8)Di7oEFtiwPhS*UJyRPWpAV|pQ%NBzTk-ibVk4jngW%|{s4w&LX$yx2XT_MJyiX--Gi<@Rvjh&==< -mP_Z8^Xs4G)*P&H5I>(ek}iNdW}L6><2mQ>%odEwSR#?}Ykt7IxI(e>WM13Jplr0`-z$h=ODKY4i!1$ -wqfZsYkz(jar>`GA_|CUAh)MHUSsW_~H{<6wTv6Ycmw579kI9^$DOuxz&yL?;={(7n%MN#ECm7;`wz# -{1Jr5f+xIEM?l+@{YJOgC5YLdAUycqd;V@m}^^203Qny&AG%dR9&bN&vyc)I6piVT2BsckR@8du1DL>Jl+@lz4tW^{BOpHkzotD8Hd!}=`e{;T<+537ci6|aYShzw;)<`k~ln`g+uQ -g8B`jx{9fQ7;tSPYY*z>i(?fG~QpE{LWMJPWl1p{mk+oqCd~6)8X(YCMT-re;A$t`7lBYBi=`M)4o^o -1~2aKjp7S~p1bIT(*+p_I&7Zz-0fuF>G4irJG2HQS-kEdipVqCeR7DXFwha5>UH&A0^LUu5PP{mR>EK -3<9p~r20zkpJdAOG?LA^h1iXTqaXPnkp^wY^D^qa)4q`RrUmW)_U_J*=R@OWK~-W#zVX_AoqcTuh&bOI`&hIkV@ -*NdvTT52=aQFl4@(70!^Ld?%H5>9C*CT@TDMc%@6OmQUiwNU>=)a+d}$s8`ef^Q8f}Yg&D~RMZ(z~+@ -{}_*Tn*gfM#nTwc%(jL?}Sr -?!~V~y%itH0D39H}V!4XR8aXHW~Nd~m8|q%~f&=xN1&ZaITp_`0jO#h{F&KW|M?)5oJ*IlkxULkivkj -}%a1z!gvyz~2{cV}EU(q7O=wUwokPX&}-$c%jg|#$zK7fT}2pPNVmbiuY{gEoId?(Vb4GA2d1gWP%5T -L=AgtQKZ6OgYqCPc`!DBA(DV*0ftWKFct#(4EJ#q&=S))>VjTiHqkDUV!bnSO6rrI)s%yz(v$8h`0(k -SJGt{Wrbmm?Ll_7)Ym@CUlEw6FBk%w$SB%yz+_wZrVRnWUZ(REu7>xmD&uUeulVV4D;gy4wJWyM=aX9 -)tv*wY_6#FK(f1VHV)T1=P#X?)&*Cx_56NaIN(@zS~NH#Tq?GOIS*~Jc|eKnd@-)D`>&s0x&80d)S^} -OVaA|Na -UukZ1WpZv|Y%ghUWMz0SUtei%X>?y-E^v8MQd08FOG&Lz$jmEAElNx-$;{7FNX}15fna-6*(6LcwG&xBDz-;u$-9+OR2T?oiWq?a2Mvhkx}4vhck~H>mS*Q;R8wQH(f#`MyN -^Z`MYGF|6x*z<#jbC6jgq2Si*8dYv2BXJk^-K(M#wMp?tNL`oiYRhf7E^bXGE#^0ApkALVp9R85)5Im24%(k+)?007NPdg-LR`IV3JXD?QciyzmHOz`;iRl>{M^c4?_nM6$ex_3-Za%5AA~$KoOb)y(>Clj4FDRAFl6eQx)GN6n=~YqWWDn$<;F -WSvy6;q^J_ZcN0!plPwV>C39nW&qTG9V*0=@oZPtM_z@b4RHgYTHK%phhScsGVu)2opt{F -G5ZSR}rP5=|dUr#RtF9RagU@)cl{ONr%qlqB@eG4+(k!gipWZ^A{1+4$r)F6XsX=N*)DN#2(Gch|c&0 -r=k!c73xMDNK6;UB;NypyWg13eZA2v^&wec5g1Jar*}cR1y$lC>GTMsU#&%gDjOzn1XUJI=fj#1_bwS -D8{G{n&Irp1%VX?PT4}&x{T)7#PtOSo)D)$fC>$FLlonFuj_A0LLrL{JI+KOw!wEqw -+#=X9@h5^L_&>vmJ`9-X|1@GEYt^?h&30wFA=#R@TGW=-Iu4LG>^t4a{EnnR6YJy>5n?dpRS7oDFhB` -eaK}ny;sW%fVvK>{b~htsXi=2-IpoLBTB^*U1<{~H3F`pleO8r)d3S>ELWvtt&R~@=&I)yJ9{HzM~m4AMp_N%ZzOf5g*Tk+%dh3sJP^{TlV7^$=)|Kqd;yAHm3fA;`24;uk{uYEL=g>>`Nj^8!HTMx@z(mXxnXK0Xw#b -7`#+=yTx^@Af8O%hXPUQkkVFmwQ0s}!JdANHeI(veZYTJ^v#nKD;vaJttUuP*hh1WR1CobL?G3*?j|IRDfNpnykR6B{Q(9ti1(+g;*?MA)k=(KsNKNMj^S8;2k0E+LpB}taKj{@Uk-^Z4k^n6 -j`MIl!zbmt_OKJ2=J947h6qiwl5kxL`-5V+PU6^h*D$^@QWeq>wlL?L2xTyAGMVgP>MCRZ%<{In(C -TYKtDx;)2`SAKGWGzJ@*r6=>H*OM#{$`K2lA(81x~)o6s4{x)~@Tb818{CDx|>P7PM7zFEgdESeuiPy -o%BAoC<{0$VKsh@RXpVj1SZXkUtKzP|uK$x6o6fHxpk)cNztbfi3KZlG%=2;IygK@e;5V--0tYN!m -c!pl#cH8XB35fja1swn+6^(G+oDjU2sy;wIgUA4c>JT}I&vl&#vO~_6Y-ItI&z*v%4?qBU%5C{~h%MS -|y)JV!-sDE}417TX ->JJQxsT@6)EKtHWSQW&OLoBpLftC%hnwYf%3je!`o@NbN#PNdv&elJN1%RCfq?j>`{;J*=(5|e7!*JZ$MkkIlO>C4^cD`9t{^6#4I_s;Gc -t1bMk@zox4K8_A2tz;OH9GXh2ut7S5@G#erl1lY=c%IfZaF+s-3B968{a*z(|Xg{5of`u*Z)orSa?Qz -NXmX@riJSWtGrK)kC9`9;r-CQ2#*SAxaH*$G+t6zivW4s;4(ZG^;eMRRA~w(?iIDFtv#U8tkoZknbVr -pKUlkLP*yRfh0+^9-+-l**OEJV125kZNA1N%VI&`+|MvYe*@MO%&Lt_*q~BIN*P#)2A5cI*uyvG2muW -`mlQRqX9~5xuR1ZmlLxRq5Q>xt~xg!w5$|o9tLn$ltqA1ll1oT2y6 -d{l^M7Y|>sDTKLN{vk1f2iL0sO-wiJ1Iw5QExKAFn~#9Hg|l%Pz2Lf^i;Tp{WFeWwt02E2suv;trZO7n^M@!wcq)SzOmbW}SpynHS(Y -(YblF>N)QXd0y#J9jKGo`u*apL8;F=wGfvR#2yA9%QDDm=ge`5J$OB${Fru**w>i&bLL=xE)e+1_EAt -RI`s1`8(cPoD@khQsS>5?0cVL`J{xQ+C0qPu%MS6`j!Uo7ptCfH)4gEqEu6e0lav8Jg*(Q%k!%m@B0Dai76M?Ylc3=(D*AsW6Ve`#cE2!il4^+fWO` -%Rf|XozZTdoVUGs2{DLIt}Eh7^)CY70X+pTb-ECBeTHb8R>lBPi>kW?H>tk6Dvc!P;3VuJp@yo2ERaUuL1dH%^n%Any -w#DT?gmqQkzb8{~^F1wR*$6*o|pV3-~x1Y{llZ(s9GgHc2RoX_e4b`shnaH}XEpJ>IVOpa(G!2^75BE -(Wo$XRgIa;|k4TTXW2;dYujNKckK1`*IC75fBEr&mN@r7IO!OCk~dv)zjw*eACBu4JI%Wm}{;YqhAkT -eD+U3HlRIzbGqWn>hCMtF+IZuM$VU}>MF;y0}l6F(F$i*D-XwP(31B_n -qbsc7xMyWs!>@u3R)zYbiaXM6RA7?p{2l5dyE~mp28OfIy^s4BII%VXncCDeFSBwk~-rh0oO9%^{KEs -!5$2?en}2H))8%{uv0Y_{Wuz2KLHcb~O25NB|?;*=|@xHs0-p -DHcHw&7ADo>D!C>7Y5}5DCXCtI^D(N%O#zyUc)a#JB{zP!JhIRD*fZ^7(VbQd4o)l-yh5?s?Oex(Q?Y -{;6sCr~KbUtDhdGTK#C{a7%V0jY<$wQYzSM9^N%YFn_|gXdUPHu<#PSCn75fY<-j!>Z5|VV?(ACsH#J -MY@h%P><<#fv26z7!PbMZF0ogkB;8o>JsyHVA;juE=eEzIL7Iu;`U9NidE^1S{OQ$COVDu+VtQZ!wt} -!_rQ_1N%&C-%jW5l8hW>^U<9%rzJzr-vAQIQ0Ul56v+tu -I}2yGO(z|fKOcKnCN=rD(?Q$-82_Ds%x&`#7!I~TZ;)encO}F7YrD3Ah;WMuETn8(Zfi=RR3&mqn94PB0IQ -xuIAA%khhw*Y7*k#tQ>3`k@`=5#0DXI>{`Zl0jh!vMUPuJ66klQew`h8|%W^B5zI!bA2s^Cc{d&{!a@ -V(+MC7`s0$MawQ_<^+!lv=~cba4TZHX){^tUJOTM6yxz&RFNx?b8(C9Z4;=WefGb9;{w#Ujgt(+v*6$ -1wWRnyC%wSiLki8_l;cAYpzvTeob$6_E(ug2OGqda>T?vK-J6mzf(|_6rS=3G`oBsG@n)-ABa0iP8r> -e7h7~3|0t7AM5D%-zzm7DIQJ)$o@5h? -C>XD~t_^RAefBNIC0y__4tkSw+;kKC<7ueh(qd-2Q?^ZW0F33cU3|M*V68E&pE3q%P!hz1VUtT@hTN9($b4rHYY@Rr-D5E;mDz?Y;{sggO~Py=&#Th`;%^2-i(Ng*j+c@8Z^Z4|yu%nWTHT1_}7TFtRKIO#&uk -=pQQ?hA#3w@9dxth~EiPNDvvu*P*yAK=V*;`bTjnWhPP`<~k5FzT$vvU>3vjI;Sd^VQjZett8)*FbC; -Uu|DUe-vN&OWtqM_$}V#BzJ4R3QzJ4n6UYn>G4=a7bAFB%=5c7+z?7k7vBsA>#iStlCSucB~4g-v*vr -Q7U;ZL=*7elBRu52Y!!c=u@+x_(f_s#mtZVKTO5yoqW`INB*VCPtkX7qlt3Nx`+T2hMC--TD1a7>8R2 -`~{{v7<0|XQR000O8;7XcSZ2uE)ks|;A@sj`mB>(^baA|NaUukZ1WpZv|Y%ghUWMz0SaA9L>VP|DuW@ -&C@WpXZXdF?%GbK6Fe-}Ngd^rj3Z6xL2|>u$NB_Z(YJTn)6>(_)30evCX*kVeP7kG6Rq5oyryDc~zh5KU;aUZkw&>uXgZMsHdm@`QoH_^!>@BzdU{Z-Ap`bn_p%9QuZ_P6yTL --8#xotst*4CVb@npU2bNAUZ3uF`0l3~9v(5|UA4=Lcd}kJZN4j)Z_9IMpl&CZ)w+^xH_|xo%k$2lR-T -VF1-fla+htidb+s%v)vvOs%dH&i`3{f(taabw+p?2?<7YSMwkz9Cin8Nh3iZ|{MO6a{fnvFQzm!BhgK -u^u;OAS}^=jaUn^u;qtEY9>mz#}T&8Wd+pnO}M?XmCkrhn4xYxU-7{SGF(`uRf2&68>)anAhar@Gtka -1hCFXGhZ%PQ+gMvVp;Xk6Mk`v#NgkNI#sZxozNKmjbeFR&vwjK>by<0`}EV)HF)O`;mS*0$|;=+p;f~ -P2IQ6Mnic*PapBak=}@&i~mT|PL}QRqUe^*&LI1ep1s6Jqdk!(FrQ-A%5`TutH&?kscdDvlw*|Y%l2I -M#qO%Vu$**C4`0x;k-nF>nz|1yZK`oAe+gFMNBPUXYUNheeX0ZPqr3oVq5Av_cDVT(SPleu{HC)h%`VvwgK$6}9X)&2qR$B&(Jea{ -0DsnQon0t>OOr8X-9SU;gys#ScH8o;F`k-rw!Zc6D@A6tJ#EA -r|7*#M>p4nV6tdF`Mp3+3hzyK7K*7luwX`?d0{*(b0w$8Gx7t&k7QrMKL`(`W9&iG8o>IkbgxI|5Y}9 -t%Uz8Aj3?6fO`G<$c*_n8<)#C9Iu*wc=n=0Kp2hg@kFwvlwSW!TUjPB&f8xA?fl&k8ekV$<^umQa`bn@}A09@@#+ZBQ$x6WFslTy+uGfk$v7y1ssKnsXy-~ -vl~unWA=fAJ#ex^$+f7P-Y4ihMHZm)B%kE}XsSBfmb(o0`OG8Pbn11}fYa>bHFf9&0MD9EX3=}17;bB -!LBZBpRckt9dtoTn@u^c&~cv59(tmG%~zbUW2RT39u$mHd|Z!#vGSy)i6nty;om1uKS)^C9z@e -8Fq?ycTC+(>V|xWNvzRcus%{s1kP7l}3jrG}ciq&Pu2Sb{D+KMIbJZU<*O$unF%$?b6EN!zA}CFi$<>zy5pv=U4ZR|M>dP)89?h;@uIC8x+7*z1-|q -V9C@1l#1rEP=to#w*=Ke333qo+w!dx-5y4fCCnL&t&IZIf$a%`9Hs-RMQ6@M1qdu#2}eF`VCYIi$W<; -*FW_{9?Ez;{xret3RDV(SF!Zw0C)AmQfdM`Fez&QX72-=r3J#CdT7q&sgCQ$G=|XOH8qiKQcuE2;wLs -HKpN`m`X-N77a75J?h24pu=dUfZE25KDG)G;>zA`3f>Ls&VH@61$D^!$h1J4kcdnSNwt)I+ElQdtSw7{@AI&8NR(4rDfMi;t05WoQGaN5q -216U$0!iFczMz6H!Eb164tEu#1m;+ch9Q2Y_IML=z6zn_U%&A?`I9X1SYEb2!(J_01Dymp3uYw0CLwwKSbZX0UG$^MaHddlMFDtM$QG|Sd`qyVl#TAWWMe*X~h4{n0uYG -k0j)L-7v+wavDZpjV4v&~W{LP@%QN*$X3DKgY0dgprlPM_ydU5B^0Muqe=Z{}aNg(ZHyRCZVc{`K#m| -_uJu?-zzbGVue^3`Zs9wv$^LzE!7+u?#3ns&K(%u>1YAi-dyY2?X$4VqaRTVz9D98mLg+eN6%prFhP@ -5oqqixjlIzt@Olmsu^qFOy- -!#OR8AESH$gH4)~RBcH-F&#b1;ZO3k+3;}T!+^DhW?%^qf#8$9d -MHF&j{1NyDeE$L!56Ad?lgSQJr(dEUJ0G`9~P=lquxp=zvW>$6lVkW*|e7^vh4)X4dtWIA_>P{eVv@} -DfX?^}DznTA2l#RvZ7qgDxBtU<~bTFU#_;TtpnHGXbOzv27dw -0Un|`39*AaprdEK;7u!?<{F&!i(6bjAkF31~W0i?j;=@lL$19&xTdfi8nlC(pntDBiUg+ajh71OT!u~ -83xM**nLcxchM{+tols!RD7X`Tu5|YgkIa!^b{wqC(q${M6eYcO7_r1cKQ&>$&ZuUtql(s&u3dMo9_M -ndlQ@uaR(fz7w$|Z`LES(a$Ap*#%QURVc^idYXpK$KV2u` -yg{!Fx)%!q4T2V5)h6o6(?KrSO#In7yown!=kL-R8{c-b~^3~3($oyZyTc!C3`F$=oHGBk-?50(of0E -T4>ic>C9+C+}O;_EC)7sQq+VSr^m*lC&ycYq_wSAn$wXBn_-vj?5Dy -J(u8EosNbfJ3tb^)pY4DPRaq0t_v%myoB0(`P=z37MAJG$x0)xWnwbp3rgEtmBzyAItzBS)F&>#Aya# -h*`U@G3p}74=0X~l_L_*dLYQ93x^gZ4Qyym0gpw#r4b&p$^_HX#Fce}J8VLB#{S*!#Mzayc7Pq5w*`x -TwhCtgtSNXSc}2xn|9bD9T~!pWY#U#5SbTPk{PPbA26^Li;znmg=+ah%8ggc1K&>rdTW?RR6y*8k!e`2S*7q1#8NP=_Ic -JpG)+72U0YGufR@h3LO*dG)^AEQ9Vhg9t0I?f()z$bXzi?d89bB1lY&pQ*x;&2I*S{RN$8XVp+aBXXf -Q^PR?HaiF^<*+O`&4HKHx|HUWOZ6(59;2MY+|lvla*Bj{oA5`Ib72ImAG&@*h>B+4yPmGg3q1Q&Y6cv -m7#C18nb8rTNKuMfULG-fc0C@+7Krjbpe5f6^!WE=d|RU)z?&cgoCrAD438~(6TW!cuOkl|rXY` -Ic#anlR^ggZ(gYT>0BmH?$k&UF?7f)40sA|xGYO*LzRgc`ivNI2F}^=T!gm0(jQ>)M|*$6_u?&1f_^6 -_0{ddM0J9-B0LoCD*b#@HGJ`a)6Xv0o+)+0U!NV}UtTX#^>c4b1a7w=35q~vdwo7>z{*SY -4%~GG0fUxCel`j%VEZm$f3P&yj6ir*yO|h!ZWrxm|SA0a@5i0GEpo4C6tQm%a%PJ3Rw{LeKDwJJNqX< -^53?OSpPQGa>h%u7t$LzU$>j0% -Ouze78kXZimmKAj0i49c2{C5*}j&+lCgoCVvBuEqU3!eL3Jql0|&H3A`ZX$8jD6bENN>xV#%+ -ot(Mu$T;$Qv)sHDAL&#ToIi?(jybdgMjnf#H{?2Gs<^`}N9%f=Rgn*-iH{0Jg!+B=x8~&Nt{S+V?UTD -Vx3#TcCHdx&_nR$Y>x2!u*US-q$0+E)QXjzwB`f;u0e3mG8=GgE;$fcZ>-}9G#vY -CTZALo;?x(2q%d>w+%?vgyyY-g&-%qm>&L+CXyZ#&ec|i_`5^_Zj*Q!M)p~9K2!0{g5E~Qs~Xv#L^^` -62BA1tYLF4FMs*EGsRsc0ySzv?LJ2X7h4H7^4ueAkh%Ew4?e@akP$-iq7Ehe2?=y{>$!fi*Em=Tqvp> -HG46NK;QFT<|cv(1;X^4-Z!>2*3ALRXU4AZO^pR$K0FD8%DflL}s890M8f)hj<%%cZ8ll=K;k(1Lh5S -af?h_Ng+Bwe-=g{+mBo9>{*y&%iW$T~L%&rh6VfS>XZCx$lJ;}!=e#~iOom<00}pCLa{obfk_*K^{r) -gvOLC=&~>v>rFJF%ijHXEv!Cch7-7hKfK$jjdKDMvP&f)IS -@!%}S!`kMqDaaT!BNqiic*6|;#zTP}AaCq_L1!(^I=+(RAvn9&gQdKS@foI9-Nn#Xj9gFIkUEF -nC;uW^>KF-=q+H@>o=4csG!4kUUWfsrWU~Ep+fWa$@ -2Aqibe9N-_dhmL{{c+%xd=MuGB}okd>5ML*nXxQfwYB_^#DW!^xr)!>r7I`RWgR9@$(R6=7vo^p -?ZOJ5Ux^=vrSprl!aO4Rc+!U=xp6S;cQKvsBap8uKr~+i@!_Y&)Fw=(kMn?yyaiIN?2TTvRVBq#BZ%E -+}i`9a?F(b_k3j5h|hD0ffN@K)Y&M%9w_^DkF`&^gDGdl;oGEp?t8GAk#)#^QKNUQfVJyT4?BxNtm4l&(7+Wn3qF{#si665l)08_}!>W<`~ipmR6CId+ -+cz4846e1_ZpsLq+(Zn3>&H)4{%F?mEc-#0}X>6l~7N5u7KEs# -us9q}`8zNVs%K5K=fMjsB2ASjS@Cg~nc5UKIOQM8I(zvzXmR~WeA^pJkPqv8>KD|4o$8YxtrOaY4uBj -oB*FB$=<_HWONR;tX9;qnR=N@uTyCBV_`b9J5Kvb@4+0jfv=CJOC;*z#Kdg$eeokS;IE`aCrob`F#3c -?tZ~H#>l(!&n~bC=1_J=p~97!NMa$2vZ;w80agS%X)^;fz`#Tg%MPguBWUcV3lc{ZpD6QO&sNN_9G~P -(;9zbjbc!nhy)7b{}8>-GgPEuXi|EeTf<0S_-7?S`=nT%;wD_iaeowsiI%BJkQ(VvwK5qO-D``Q_6ZL -<8%9I%`p5QIB;h1AF87Qbj_NJq12j_7@JH#a9p?a!PirRL$}0sJI~4GztMBP&>gIvtl|3dMYm-kA+{%27q1!JnI4(_pcg -EQOIGvLj+o}!60_?8UE%bdxvNhX^a_M(?#NtKERt7tqYCu3NkDzeUZv?E=ff^ -4K7PwY=lcIVWVP}7%xHFLjS3%e4|h_cSLFVJC8mD$|M#TK&ks&(H$;DFyIH5Y5>u~NsWYAE|kTPLd;9CFTmf -fjfX}pTC%2tG<)Xe1E^(7|^Xy&*VZzJ_wU+(xItimVxtLh#}R*K#Qfs> -p)3aNzO|@JAA;@(Q5;GzTiN)?Q2(r3)qmA;M8Mryf3^Kj*Ve*F7W5tlnR|8K`ZBbZSIhs(w3k~CNCp+ -jSs%zkh~)SmKXFrPG@V5T3y3g?Xt?otfOqoPN#P$$w ->kUwt{v@-L>po6JIJ@k~?%ivc-f&BWwf -Y<=ECT%M{%Z@1;&OCX1Ep4=Y4TQa#E0#Nc~P#`i`QiVgJc?%tIRrgGw>)Zxa0#2b66N)6@b$ePr6J=gAT&?pUio3O*s8p2MXflsBAlR1()*^mU#2k -suLz=4SUbPaucdZfnA~iD^1a*aBP)qm&(#}7TNQYM3LET`98bOf(ZZ)1#<_|D?Zu!3?`n0ba|v*h;B; -sn?(0FW^o4c00xX#BG9lqFPRk(QJ#RL7BLpM!h&%C+N=*3#B@5Qvh?EqpT2+%XLRY%Z$p+9EW#EH1TcBc( -w|B8=&O*9N+XzZE|>wv$p&oClbacMvWw&3A@v^mRZEq(cE%%O#<{9y>TcP -zQ9yrZ|bx~7aRvqN_FQYjw25&Ugw7DnKI;D@!*eS38Yq~T8E>hqr_pOMKasdjrs;vV;A8AK+Ic=3=^x -SGs>@;PNU?dn^ZChFb$pr?SES>6JHLf>In8h(E28oO|GGzf8|u7XC31VT%L|om95jJFD_a_6W-jNc%A$hP;r_p78B_7*iBJa~BSCrNd9twaZ^@zJR3yI$Z8{6d&)|(DZi -MNncWKEAQpd`tidnuCOU*BmWB>P(oj!RQ(2zbbB)fBS!K4Uz`ICpnLURa9i`V7w`qIKgvpYnT9VBjgPdiWl@z{ghDnn2%{ESVQ*YEYI= -H1*Zp!lsc+-JG_UDNJ$u1V$-;3Z205Xl -6i@A(>@TqX06J|@JyMA{zArcB<>+PI6D=^hH^#^MmdBp$>+W>bXU+?-M0!qJzZNu4cDDD8G@M0ff-=d -Qcd5Yb|NQLpF3q*+@Mn0Tn&!aML>$&ufglDf<0wFb52>CCzoC>e~XOswX^FeE*5UZBsu)Ui_W58Qp0B -$He3u=iCQRbOq~cGp~4*TLl`VNJS?x>I8XeM;vdJMNOk<2e68k?8~GtzKj+k*53c-o!jVi0`u}vmFYS -is;%(}aEhPn9NBDRagp&(DP!+^stnjWZYwFDs>>ZPY3dUBr%+4z<@kdwwhD$tBhv$h@S&O>J1;)_0jy -wpdt6z00G4!)sWo`zBq-x-n4NT~6z3y)nGe*BLQo!>{ -lHlku%Qb57|1lUp`C12!Dq_k`)*+|PJZRZnWu+@G84^*DDzFbhYhj3klD6;-+@`MK!Qzu?}WE&x@#ug{tb@)8Hb1!G!J1gbLm5sKX;0W39fXOMgm#F%aoP=Mhng{PWfk -P-tlc|3>(mQ4-62BQczBZ94I{CbAsldlx^r+aaNx4_JPAt--8&~UFtX8?6&rqVh}FVi5$AHj7DF@DHG -Xrx>RN;{L-9nC%qWkC~+kpnhEX$2hR$tU72sN=F5w+s&hiVQb(naE|Vt@z+~}dAx&<)E)lN5Kw~=F5- -lndT6T_~gcuEwvT`h(vKx%WLcFw1Zc7Ra;h%#FgioBEGbVG#*vMY=uyjIo66J_opwBAJXlPCHVOn)3H -BxW&1h%QF$d*4o`Sz#prb<%zwNZleqrV7LAx$o?(8nkc{80&(eok=?n~ZLlNl{DAbl|YC`02-I5s1M; ->4apY^W-LmKxXOg2)k$&=!yb=Z1X9!Gu|?$p5RXC0+7c9$J~CH#M>PDQHhh=y`dl?oMl&68$;iApAY$RVZUG4e3V9#U -=OIJ=>n(2t6adb&F>-;BR(d!aLNfUMJX4-O!+Ss9sq2}suoZawGS%t)6X} ->FUo3z*XG)>tA={Q0{n0adKsIUw9XRH{=t$APn78>S`J7*x1Im*U0Tf-@i8(Q%2YM%JU_e|_}=WV%?o -alKwH{fY|#r#1Zc0&8aUN(erEkm5V-=Pl%AI=<`$H9j&V4w^r2dM@z|Oo4oK2)AjtXO^VTlNboM&ew*^477?kvxaDhh!T -w$}jmC1LFJJGT}9q(iEzBD&-!3OkrnJW8dx6Lz(#l%7!($#lbBRuycebPf-_Te7Zv7nqRCY<-4PafASX{xmf5_zyaQkRWMt -}I7VEe@p0${hQNnk4w1ki3@k6`el3Rc-oD&ETSNxs9M4`VeBXiY!H2E6{kYbD-VrJG)NObApc+z+KvRw_dpG0BiK~5U{nhE8#1W*p)I0poO!!z;1hokqRco3r*eRxNm?X&@slNylyW2@q$llU -ao_-EAdXL1tUn#Zg03aJb>fwPg^O*C+`mg{)!cgKBmOq6!!m)=n{$B-Q9W@+NbZG&6L$<%;PKo|<8`? -JNh9iU8-jJK!90TI>PbIv$%CR|}k(*ne4R?ADt^{K8CpogyEjby5=7aNP#1eu1EIVvQ@{xeGp=(CPJv@#RZhE6D1`ovG;OW(=y4{M^7&9pjM>mlJ%YxCH*{4Fn9DhqsbL;PtnmX^=&HrH7!J -zOU826EK36qd9z1wpW(S7F-F4Fx#aY=N-_P&eH7%mVMr?Ns&1{ovm>^t#=CXg&3xC90@P+%;O5AdK!) -(F8q?!%P7ko1jHA<95XheXGmkS-_RM48`a^LD(D{E>ayFcj~KRUCiMk}Kx`BnACG3Bj=f=6a37n-O#R -VT=xq-~A}b)>v9S12iH#(KLgUTD4(KX;|~60>k7$AL~{zLVm%jFL<>#8>m`HGN|wVAYgdtd8uKw?#X$ -_2h$w_R(@8-wgiXgQZU-vp^XCj^KfU!Fnl8zATi9Z{x?ud0|XQR000O8;7XcSmqlXa?ganM6 -9Pvf?~eES97(Y+m9|W(?N$`qK)BDn*mHXK}*9r1|?P -{FcvZR!FL=R;=auqHerw>2+(s}vsvxJc+2gA#=;~i(mhX-aS&XnLy64pw|We^0JOpPIz{-F*!_B&i<)Z|cd0crR%>8$k8WmDKD*4V9Cna&IiR(1de{ -Y_HUSz9)~O2ni~R1NSD5g3Fvy7rH+pR6Hd042XF>!=Gt%V^j+q3zenv0;D|v8iUxN^aLaUHZZUjDXsy -QbUIlAA-}`9K4AqS^9@VcpO*`0^~@Z~QUU@&cY@u~!C1EDFzd>D3bKJNb{x*3Eeo@X#9^f?N@NlO6yS -hc$a*5Fmf8qyZ0zvsEL?(K)%K=`K#VwRFZo_s{>0M#V##`?`k$>Avf#GfqfeQ)W&f&Wzp -_~6*GT9Gm_LJaUh+rzF%0P}zMdBw#43Q1e(+ng}h2O;yso#0#qCG6nP*3RMMt^4=1NIn7+`CSRj38eX -yjD6H&SlGxkSQ}^+;@Ns;&7f;2<`lE$qlG`<~)GrR{8QNl#j5mClt}PZe6y-I -H~!yH9NG790lL@XK;Db9*$w)VRBv0!HPi7XnZqS@)tI2v$U?GSfkn0@6aWAK2ms(pnpT1$NU|;x000F%001KZ003}la4%nJZggdGZeeUMY;R*>bZKvHb1 -z?CX>MtBUtcb8dCfa*bK5qW-}NhSbUQ2U%2b?W)5KHd&Pm+HyN=_Dlct@VhoU4%LQRo6g0!ve^uO=(0 -)QYz$#&YCyG)x%Ao$>Ue}&X?mF0z)mFc9&vP5?jFC^J~uF|>vnz;w7xL71=Y`^NY_C8Lsbf)H=S)MIL -v0ecHVICf(>%MrSCPiQTC{vloMV9x)`&FT`G*0^BW4TIXhu>VORT!zXkU2aGm)TS%I@FVeTuKY>;`Q6 -(cgN8`kAJ!7iwk}E`-#(SATux%d%)Von-jbKyAFj?!*Nz@JYS#~-5CM?iJ-=Hx@4*5 -94gQ?mu27aRFLZTPkzeSYn;1tvHhHYK=U*=m>;`%TA|*+AedT(5QU~uuf^M8$~IwD~f;-o#_1Z=;P_h -E1>#N=mKAWjd4-rT@Ybk1P1M?0$N3Y*dqUcU(v-c7q8!+{c!SQ^yc`7qfe(F;azwqG_-><%`)+FD7sJ -j;@}Y;HkC8bj73%^Q{-NyB;B6ae<{Xbt%poa5PV!H%{GimJC&fAz*?zAv5?|APD&{lw-8X -32*eF$n&PD=y8lToh6l@mM9Q0Ph4u2m^#pe -P5MAT+V!GGiq_=C7DecE)J&vV(SXG)-V-Ordx4C|M~Ni+kOIb -Jutla>IbVQeV_HL&reZ0VS-uATOaW-Dl6VXPVx}2LF)3Cq6>>C5m~{;o=y2?G_QWd*L@5nG#~EUgvIk -crDFyloRFit4y@4E;8tj}H6rkuzjc4x(PXa`Y7V>tLsEI0o2iXdhQ6PLoo!;>{g}BOi8X|+Y7%;xJjr -Y;JlZ$spA78(XPLF>&KJ`4y=c5m2Cucu)Ag0N?_P#lO_320J3X&|l(ov$WWHer7(bK2TpFL`I1rk`Tv -!o=cf~aBlKJ6AaDoMm-5vOxwp2*o8G@ua1a~Y>_A*J}u^Qp9%lKRt&0G@tXlzz)UgmvatS;N -jo7WIPtGnr9-W>>9KtX7z#?B)exXd&Ed>l427o1vx4r~!Q*imk`rY7?V948vTovM`EK;Q9>Np5$0=UaejrR5A6Tcf -R3IJrsrGj!6M9WdD~-S;HhRqe%>Vy36=htAEMi8F=d6R+*uEHVx+kknuLA1Q$SQ$5mzYgVPFj7WjRUE -hRe^d53iQd=Ab1KIwPE8irBGEVWT*T8UNa7~L4~jDgqft8i^LQKpHW-=T~(c`}#>~s9sN9VY2__L2BA!kE61Ay -`-HUP7Uz!}C8xCREb(}yTPNDxMSn+iENR;L{t&|skg;+EuO?UXVG5m|=fHW299C>C*6Ud+4quT!@zDg47gbRB+ ->}No0n>D$_RM>SG=aY#I`{UTeQWI*Ll6xw_OmB#CM%9FU#Cz@ApJ46Bjz{TRq7oi`H!7CH8 -jR4mr;XQd^$V%c^{!01u+WsHoK8fBliV^b167v37eWa8l?s3kpUnuxkoEA4iJIEYx4|i7tHk0*-nyj3 -Qik%0=lGfs@s9FiG+O0IzlxE%ao*SrtAw{-cPI;yn`C$^S=Nvp~4;bMxMi>Wxl%&l|by4Uggx*N+wedv&6%O*RdpAKoniokmYwAY5Q1+Oc`P9L -je70VZuL&JI+~eNKoz+AO=?|6dl$cj;zG+{*eCpawxiw#J)&mT2a)yY>NCz`?WWC8zM+EP-6Y -bn(M;3P`EEX)gV>k19)DPEt4uHKvOU<$qM>2_PNZs|$DV_XD<9$hb8a47}*s-cQt?L{5IID>Wi)Lvc= -S3q(eV5%ny<&wc-`epzK8!GEXD7aszU+7qYz)f3irZuy4rPq)#4>03OB1^tTPz5w14x16aGbJfi8_ba -(ug&9yA0D)-~zP3G5wuzOFBFIDdzvk|+m-?W{I7dfO$lHP?_19`Ja7fsK3<()t$6D^tO>@Xi!3Oe5j7 -63eyPk7uxNS#60m;zZG=k)OR8@8c?L*V*r^l3~4aK*)zlb<*EFz*Ci#D~bmM=SZ>JaE&5dI30nLT)~P -t5BJZX4h^eM7cYrfQU(&JrANwZXoJaCid8;sG6`hIK9K_;l51tJsXB4T(o?38@+q -!zx1nLWab>%F`O$hxSADh*2NO3;Jw6{22SUgA#=(lXr_vN3qKJXaF= ->C@&IxkjO_+0V37MRq2^MI08iyL>&-TLVl|D#cDoKD3tD1ysjOf5z#f|&mt{z7` -Tfkd(JfW5XeSs)0Gy;(>ApPNaK)j{wEGtf*Bl&@+po;EdVleFFXg*!F`)4Xxe-IU!GX`mr*Qwe>&d6@ -c`ckb4rO})5-_Pe#@eQF!0gblN)S7|^9W(STH -D;(*r!>@y$EvG0ABp9Uo(TMGh{nqS{Bv(B%a5Jblrx+YAm&>?QR@bive&RU{y$65b``k&gQ+4hww`o*lM1F~fT-FKV*dAw*p^Rj-&0nN{?ja=L$j+azQ01vx6>~;zcvA~hK#Lm9K5pm(BO(Y&y-qu&<3T>xo7W-23JFONTLliEzHam4caAUwS3HhsO4 -_#1`rqTJfL@SWiRDS@M;mJNOk!p=v2+*ZFh)55p_x5z&lWOgT9lCJNUHix?Z=pBb_PqmxIG6muS#ks5 -ANA7tJ>|U&6MI3tUhVikISGODIQCSu*Q@1BUN5x8<+M?Ix7_Mefl5?ny4DmJiKX5|_kcBpAEs_JNTPJr5h3not627N>->nP)y#~o@b#X0N<=~g{?1;G+Q^e!qf!ed4sS8-5a3MNiH>J?j|m9AH -@UL+D7(^-oZG@#)IdR#|JN-9!#h4Y;dZ^gQ~~0TJN16eD{3+6rR`RZvX((6*Y1;tkyt)QpMldrO-p|f -+03f|EL)o#kUr1zwT0*8s>K?Otb$J^6iN(yMaC%Ki>Z`qr~5?eh+M`#>`!sAU0ZJ0Lo5HUQ=Lp*D!H5 -;&Nxqt>Y4BCgZi|S&dfARD$*E$33OWQ%j5T -IcUtYh!OY>8taIk}N3_w|bD!?p->bLw>Rr9fhF-Ie=k1_*tewpfKS=8uEz3AvcRl34Tv2#$bn99heqM -=J{g$C_3Q!K|EFIPt@lWvDT!W#XbFf!n_L^Lp#(nLA7QrSsx)yG6sQh?C^u{%%5dOuiA%NtB!sN$wC>`wcTrP4$Rui*j8lTy>9u?=L==9Vn*!NPplhkzvQtn0gH&mJGtVfFeAE ->oI}O}Jszez$+-umagb<4JFaA)aU2S*|u+M6wEJjymI8DtP(O&Cwv&A4A}+rkHg%VW!pFJwn^~ss4U7 -f~rlEs;;=#4fnd>^%i%pcEyg!cB7K&w>m;Z#OrPtqoq7z3tPOAmE`C2e^a|OR?6p60j-BZ{Bp_Y^T8#@@oWar!Nj{ivCo;V1?p -BqeYPD2JoZHJ>m~)~-Lsyq)WlBlcXyl0j5NBJ*V;9og%dxmBBHsz1ey3(Ms&16x?Z{6_p_X(Xk^thBM -_?dbGK1IwegPe14k-4yjNqT_;2lR~ANcv~2Jg68dND2WFAZ^D0fr{s8(=F#u{W3Nc0$)=-Q^UgC$M+ll%v?za2+N~W~-}lC;TaXW)s?d3=>^ -VYyS3Ucq&&EJ={&1(&~QPH$U##*9!>m(}zgFp7Kx$Z2wWxcKK|a^?xrPQ@`F@KK}+#O9KQH000080N_ -fRR&}Hfv=Ipa0Mr)%03`qb0B~t=FJEbHbY*gGVQepKZ)0I}X>V?GFJEM7b98ldX>4;YaCy~OZExJT5& -pivf{;;Io61@Q1@4M1+~Sb<+MsCy)G3m}Fa)kd?K0MiI+F5w8zjH|p5cpL)^@Jww+4Y%B8S77;WN(+l -_beqRdOp;YuI5Yv|tCp8l~=7tu!lDTg$DpEk?mPwK<7H90kPC&A0)Iqje$nW=}wan~P --&AZPm==3=FDk|{sP=+&N@8BN%+kW%_FCjnvp;snHMDD4+6&c@J-oU6nKwqzE^lhq$?n{+t)gwLV!aW -pk}${0hU^>mY?Y;bd*cMLNvXOc9>@S;`_3xW7}`;8cb4t=y?`~JMQLFqOjB-+Xz!&~E%}neMQIrRSE? -0kbM!7n?QtzMnw{Lkk{ZUq(l`O{Fn28k+gaP0^=h@1cGqum#A?+YJHCQvD``wG%<7Ln{_xTTo>VI>w- -R9>Kg-@2#DwvdcGBDjNI2QUj{KY0c)$jTF!bgNtB>mi!@r`C`%YRm7^o?6_rM1!-`^n;THoX<@ed)D!+?d6}YX)q#FnAkZm5ER0Xco0r`|-r`a*uHP*;fD!{9@d&*Kt0K -JzC|5^9aYF;ri9zuKsaV{Qc_R*Z<{;_=-KpScJi%e0p}9VNPm3u?)CeR*UyUs-?j&W+WW -Xf_iYQ)i@vRdF2?y_V!q)F?yNp=KA^FygrA5*5y(o(1VzH=1J&C(_G< -ATYQ77owAai5Lb-iXABrX&?PVnP9MPf0oH;})Dz&oUXpVvy+@6Ai28jciwN_VG4Eg!zO`bAK(MF2$Mk -x|sL5$06il3o1SL4lNH_?ly_5AAEH^MyeUq3{%g(K*aAf~EyGs?BH0kcc}2U#t -A7rPvEB0pxl=XDfaF#+Znkti%!7 -jn+$kWcd*O5-=%5uKk2Ul%APtxO*xnr(GQ5OxOjXNPE_sc_5xh{E?W5s+sL8$tM(q0Kt49Lqo#4{6TI25$Rig-mPJ)H0J#149u>oh4K|JzXs`Rwp!e`Gx* -|4a1jT{O{M~kpk!3i2@qC{6c@9Q6O`-@8u9nKM+%R8sRa?WbSofSrXL@BjLfR^3OrS*>~yBz|GQAm?L -_}ocnQe^c3cvh`*Z&aR$?QVxt4R6GuY&q=^`<_VPCnAwUDa99>W12>Q<=9H=8;rW2*CrR -ywx_nCtYW2YJ^{)IsKJW|WHeK9EUjVLlbmAS~NzqR}hyoBhKqC$Qn9`^)8Wp}JY7ft(7)8Z9$z#~SMI -YZi5fwnZC8itH|!J7j=nipgj-toG&zSe8e+5NQiYDHt1i7lUFr8|va2@wo;jXs`lZKz56O+4-1 -4E7Wfly^nw`x}{VGb_Rl`t{?t$47*^_Sms+3*c6xqjEs1IAl4G~tXK{&JY(PfE48jIMW^d!NW>f!ZH) -TX1D;;TrzF?!x|5Yr`OP2ToY>fB&;(kK^uccLh0iWWy9wid33onbj-&NJ6Z0SqGB{Gm(a~M^}ZLRzM3 -i+;Rn)}_r#g5WXvuERF6>AD&-O#Cr@pT9?bloGWwhpTgQ^O -jyO0{?>x`X=?f%i379ikP-hgiFReiLfm1H2<3f$1k0m>IRca)P76MI&x6dauIVl5iK{{?d+*re>ma$S -f*N&$}B-C1#T!)B_SJX4M>19(XuqR+(*f}(uqv2v70Z?@ybgI8ht0W~&R4yI>B9r<}m-Bl08tVns -lfUlU^Yv(n|{gX^j{detbza0M}c2e!x$t}C|Z<@;+^6Zs#MzKh+h37URta1OZLlB#d3w{oMoKCa%Xty -wueq@KQ8x)geaV^)pGdDpo$_fj0j`-M9L;2X>KH|rlzzi_314F|Y0xy#(FUxvBW^%2eIe%LixpE{k)J -xivk_PyARcn;Zg0_LD%{-H1>V?GFJE(cb7OCAW@%?GaCx;^U2oes7Jc`xAk>H0Gm5gE1@<9 -87RYqdo$O?rplPSOC<>XD=$MTx3L+K9DEi;`T#}L~TTU{&vq78K7VjbNz2|<>a$Tv~utMG4$?|R@-CL -#GS9%-1%v8CQ-72%KNM^FE)tXhZN>W)GQJ1_(#A7BZBUP!HUwm0U@IvOd*-EU%8?|1@lGB2iebl19EV -bc9VL$OJ$6(hg7llr=1!<9Q-~4j%&x`cei+|t7%;As8Hbz49LDr_>g(x3d@wzEXsF5~hF6y*@?)6F*T -z6Y#D_-7-v{uT*>`s_;&A+NTUCR=`A4ILKLQr?uf;~y_mc^kSJdpRwQ~a5EBo0rO-n3G)7fM) -dBxr-BQ#Sb!?~9@&JS$al$kYTg2x}rC63X+a-!I>`J9fBizROglRBeJXY)DBWnLZ`CLX0WY#|^c*q@W -ve~Ot_%&bH$jx;M305^QgjAC5h<8vHLvqIhr7HwACKo45Xj?$_YOZj-jyxnm;EY_@ozkt1t682#wv;b -arT4rj8T~VI`UxXOo#`o0TjC<5{Mf(%=LPh>YjQE0qDS-GYt_^DEd`~cwZ0L{VfJZHHQ4u07buxj_TM~vA<92Esyf}(7}GZ>4E$Jx#G?d89`S(3>lJ -^$_e^6LEOtBcf;@)j=F!c03Pa=iDH^}C+V;P~|B{l(jh_wO(M=H=4!n@fmdF*l~31_y}CtU+@ -VO0?DOIBSa&_z2!Q2(Fi01tGYk6#q0d;$!FD{&yh7+9Cm!{#Gv(*7YLrU0HKKu*bJf;EZB5x%UMhu&% -k`^71EA&QCdExEqV-X92gRW%ov5J-)lbisi5^8&Y~JqHRcH)CG2O9r)8Ph{aQVw*ZG0Vf-ewyPU|5<_ -j5{Y(VQYaFKClvLskm}Y33rvVeK6_CR6BUjr}|~92(h!64e6UqocrlYYzQ6#i2&Jz-9|!HbRt7@DT*F -aJxoLMr~IM)6|sk4}*$Zu2 -PARIDVZc3lrgQQM06WlW%A#49SZP?Vlu@6RdiU@H(J9ScYBx1#(S~#5zmhKif|G3LPL!(o&L3ZeJ%?D -Q*mJ&$Z2T5C6h(Kh?tU-E%k=y(q#w`+!&|PXc?<{wiA%yy5qVn49r>ofJq0lyDNzS}!7;GbJRg$yYRC -GD4E>ShTHnCOfxqi@Kk$xa_aR{WlRQ`)`ibUcJJ8nSyQJRseIA2`Pg!4F8g$}-Tm)ykW)Q|@< -avwM6GdqA48SM0iDp{+8@M@rLQiM&)suyItHDB0b|Dq@B9Ofuq*xuM+~jvU};YMSml^ONlh5`UTigOL`u6T5Qcj73{i*)nxv9R`pdN+(s9<$&V0Ue# -vDUKcI0}@D167UnVXS1|6<@nLhB^1(SuEwcRmIQ_e8`u@hcZqRhkPo*+S^ -W@V_yu+!ZsQN^8zgih_u1@+%zmJsf9GR~>LNlC8ll?g9CL+lII(J|aIx^Z~HGN~2JBJ#1FoHd>SvHW& --C>_P^-@gmj4Mcw8L?;Y(>q?b*F!;z4a|x?BB@iQO?fZdK`$=dQT5J=$ZxJdq1pLlU0H7Qiya(S=clp -%yA01g`X`ipq5o4crUB%5R+|gMbv5A?2E>-~F_UbN$hSR5)aUL0$u>mk5P7bCXJ`x|b?!KJKq}5L1K7;mfGk^cfM?aEw*nvDIz+>JIpd-3GJdDf>hd%f=_$+6`(Z`1pH7|bXMqV~!q8_OP{)$1{;CNFe- -MaIUN58}YsUVLD_52=E(r}%PmE`Dcf<94;sIYL>_%1$If$~IyTt(`s1;~ubeFHK2BiDQ7_D2hpW2Jte -rBg>*o_0u(D$XiQ0bGS-R?PoM}S<&PoqLu^gDt(%Kg_WkXXUw|icuCa?f4d!n3~Ei;branl-A5Gmo&`SQeW5z@%}sw{Mtvkw$eB -N%e;a*?`xQ+s!WHgqxWacKX9I7>#1Nudy8ClIm

0iFs;sMc(EF)J~I)Z;beeIv0+}g|glPgzNPNMxgq2Zwh7qMe0 -c^0@eFoNgNjs>2^>9`l-IL7`yoR;O2{{T=+0|XQR000O8;7XcSsh&krfdl{m{0RU69{>OVaA|NaUukZ -1WpZv|Y%gqYV_|e@Z*FrhVqtS-E^v9BR@-jlHV}Q+R}AC_%dI2tVjl_^NYNnc#Rf&z3n#(0NCJVDXq# -)9R7uL02Ko0MQWwjc1T7i_iFlcrGiPoTn?h+zi&CamsoVsj+EDG65tg^#2h;gXm0XBrvtbW~kjo%gXt -kk26mcS?$Xf|k6q(TG&3o}yXj`(J%WWf~ODO>drwJ_^m@y%yXAcQ=z+a(Qw2d6Im*n$dY3oawi-1UFl> -aB>rx>HgF~y(Alp}%{UhL}?Y4u{0!Wn8KJ5dR -Vqgz@qIT^OI((UqO>={bIS4r8#eVK({+4#l-Cgl(Z3C(;#@OP*+@Y$W;4e|Qpx0$tiZ1u<)wvP7P_d66wl;0qyDfKrTI}H=}PtW@=}=@HIV+j1ieo13Vm3;)JrE5mcc|Br_I_v6Pw#Re+m6u-0`@KL6Hyq(|xW!C65Xa&}vMK4i7q1(KF_vjTqJcOqh-63@OI{* -^=ckC_ZuG^X+mtMBV=)~qCypwCGc9II*aYZ(!r`ql32N|AR4lkMXL92?59DoWnN@OASF2%|p)Wt^?-F -{A}}R;7LQ=ZRe6t09ico^61?May%iR<}& -f_=-rejF0KAgtzZCqHuaoC6kC%`;7Kh;o*K0>D&dk7(=4594y)t%D5EoAk;InW9{cFxfZaE{<*uCHc1 -=ay%u2*D5E3mb*E&{sJ`2UQZ&96)%AiiTngrK$m>KIW7wL|nrHL=c!btaGkMK1^s+>GXzvrq1j!HXIEU#&faeG;-XHtQr-*1&!uHj^emG8ybGmIs9ZhlJ8QjjZKg4z#hnVgV# -;TW=OhZYdSXM42T`NQ3W_$n$mS&yJEI&t35(bFS)yperpBGQDIr@RfWw@cV}f>zhmO5f3UFp9!dV_W- -<=rSKvg0piYDfi=I6%E$`$*tGChM-xoJmw-fmKTl?yYb6r-Ci)h34M*PjszbJ_=NcX&mqYcLY#H7wU;n)QJpJ-%c5yxVHl6(*4hF$LP)h>@6aWAK2ms(pnpS)xQQ=_)006iU -001HY003}la4%nJZggdGZeeUMZDn*}WMOn+FJE72ZfSI1UoLQYwO8A2<2Dd|*H;YkQaM!w1dA4h(Jh) -}oo%q2#Aw|XMG(leL`Q5SQ6MR2-LLNqNy(BgNp`pOi=`nsmvhL&ktl1a45YF${F5ofA`s59Y^u~qS?J -avyC=QY!BWW*%(@oU19Ox5u6&zy72;F_0Gt^JGr3j(nm< -~)+lTab&td5VQ42`h>uLCc+;acJ=_9W)wB83nfI%S9xonCoX*5q9IJj++k{gyW!@?1q`~*as1L^39QZ+e -OU?kugz-O4xyOnXfay|#CaHM{GNEFwyQ7PAG^clo~^>@AoUui@;h&<|p?kbqBO^$zW;?vV_BVbi#ooo -f6D3Vfq5}L;_%Z0{`TET*YTydpDmT`Pr1H*&T)CHQC@Wj@7>~cDWt0nXRh80tSEefhLnO;qk-+!AVSJ -%_qUuPe$&XeoO?Cjmy>vIs%C4D7^8W0gGf-uCi<`5wF)G}h8^Ni5nJ%|+!x4V-9InLSzWuuK{g+zUcdFPuTT_G -JCd5b?5Wv3MdhU<3`_5!2uScE;(1c7iw@$B=NqCyj!w*q8wl3U>FEtZs} -vcG;BA#btt5RE01dR|^+J3pVRo@2VH^EE -aV=6q?rf}X$TmKeL4{kavFCJ+{}MkzIx3xM564mP`UCYM)m?u`v7ycCzu?&2tl4JVc1gBFs9?SW#C%B -Z9-uD#6BWU>5~pSo-7;HrL?1KQupp&s)itMwek;LXI+?=v-~ABxGuV)E>7Tlr+#+lBbyuf!{MCDu+<) -m7?Qo;?JMh8|gB@I>O)uul+*pR$JNqd37f?$B1QY-O00;o!N}5(dZ6D*(0{{Rc3IG5f0001RX>c!JX> -N37a&BR4FKuOXVPs)+VJ}~5b8l`gaCwbZTaTMM5Ps)ZSnNYV0#0tmvVC81Ah=Yr2Pi^Rj(xEleXB-}kCHZz8f_sfoxF)A;? -unc$wcd|1sF^VNL&`03$k@l5W?+9SAb$X8lHM3!}Fm@FZF(clz;zwDxj{|2QI#E-}$Ej5HuXJB_ugx8 -E04W|`LQNB|3N&LN}CKsw2%b#m$dM|HmIBvPCqI-_YnC&Id6v!}@T+DDbiBZ_x -vKo$pu^L=zUh%Cpg1ij*Q~@(NKKcUvFgaOcCVsWwU^xbw$q{nGtq85&&wbuKeganEISA=;xd~NZB$6& -zwGbKVJI-Q;>4+wQoMo+!bE{AX$pZKBc#9e!w#;}`>hdMiyGknS+{jXJ)1v#nk5zUAeTJX+te_Zyb;rJKxW6Yp!gHiYe79r9pPJicRC8Hj*A -00Fu&6Jq$M}vQH4pl#vGX`-oecci|l()C -)AJ8@47!^X04povqD;HMGPzFFx$UjMwlcJV1kIjkp^Q0o|$RC`Ve>&~w7k(2hU*Z?kzDcEdF$)G>5 -%9XlVBJ(w*m%kk-Uok#-M1TXl32ae%8$PVrt4~Fl#vdVhxfiYF|qz&xn -@TwNA1N2zHKQi8x+^!B$QB*279>8uE(oGeqEJ*}0!wqO~9SHbZT?FII1#f%P%L>@yh*66@6aWAK2 -ms(pnpWUn{xpOA=`0guhumgNhHu{H2RGOl1-7 -9wOCdkjuQT=HZn=WjjAfSR_5Vqn=R`+Pb>4_=PJ+4_cULxlWc8%7P7udlZE+NS|EQ*idB-Tqg9!2M7= -MdkI=71M*{xNUQg)r;=j*Nqo;p7efsCKS3mHhlWfmlp5|$)mUWV6=66=hBvU2-e3mS0{&rTYQZ7>E{H -k-^>P1rNR!EHRU~rhE>G(pe<#PWcKb#2t#hrhW -0abxmq58N~L^x;EOubaKjAboP%Q7$fx~2J2dcCToRuLnls)^WEs*LbiU*}C8tF#JZpzX4bwq@$`(zCN -Sr%x}UcW+)qFHbK{o}FBrM6XU>o*Fj6Uhm4Z_47xhIN?M{<9hcDP4o?y`36|sqF%?q^igrWu7r3XE?z -%-JrghU4@$&pm1GIR6j!QL;V?wCUPoz?T^pF@cZ4DpVYjH-SM+Nb$R??l20&6pNaJ)OGQ$No^tRk!=O -tGvQXlJ54tE0L+a-kWQJwQB+#`%oS(x{mYK`wne;g$%U)E=|8a?{qyv*x-nWsmv&$p$*x6lyPoGPK2)_37r)i3DTD2g(WttbNR -aI{QiRf#{yN}XnPxj)Z=SR;e%m~sElqRb0b)_eK|3?i`qs8Z=_ET;bs%v5qi{3~TrDG;doYy;W|^@xg -zJ4Y~FKQvGr+ph?2UFO^3OTZmr?`WB4pjv9+nyQwdz2gYY0P`^mt3pc6Slu%H!!W#L*-T)4dS3aM1VQ -kWM-ft_wA8{5H>Kgi`Xk#Wcv0s9)km2LP!g}-Jfr6!Pygad83-#B8WiokR28+Uz?`L^A3&@DMh#67J; -6#SFZUC%yMn>+4FS`m+y;Cj}6q)ELOy97qB_8ZiBp#JNt1ZJDVl(W1> -V<6^pxu}S3#`C!Vqk_QZbHo~KZ`tG|Y=pUxnWpjkZ!g91u?WI2Xv7pSK_b#h0`c+l{q#vsLnCtHUysEIUromLU8 -8)xmd6Zk2Jo7ugwwIc=*f)VFl(ULj;w;k)qI2iCgKsb9yeN4`%V>U(oy59X*KG&TQda8x&&=i^K&E1Y -gO`ZS2?@3qNARv*+$h@d2E#+nO`deqh$&lYJU=ZQb|D@xIl3W44uUJ>ACpsx4(yZh_%Wv!a#YJBB-uFdfg93~5U6#TG5GE?jZIaS=#9S_G)I$V*uj($J^iccarWvLb74a~lz;`= -!V=gs>|pUOtF{ID?8;zr<_-*NEd}9;=>Rs=5SXBYq~exo;TXf%ygPFP`JNFnRTK?5uWXN2!6$qlmU2g -o`dRRA9T0yOBmQmT)z9O=9Rfh!cZ6Wb^)^E`;7x`Co#9K5Ie)_Nvdf)7a^wNjGr*?~$Ql$bU^{ -dXGPT6qPno3PQ;-gTn6p+Ja-P6>NwTFsK-H*wnIUU9qlp~QDMgiU%OytiWRzsNNWeyee*i21zm``ZI2 -9Tz%o@z+j>V8!)jJ`OAc;<8l1(?@n|X%vSx)l+Wb!OoQqapvhNnqNOB+Ym32`0B5SZ4&tF`)<=$bC_G -+7FCP(hObFbP%w-C$H)rFIdme@yP?Le)E^8l|7q3ym0>#&ZBlNu9Xk0Pt1PTWO|75vMWjXOP7dl-KkH4BK$MEe=9Pq-Rt-ZeRJxuxUNW{x_HV4+D74N -)FHVMp%wcvd2E~32IW$>ao$8~7z`xn}EOd3g(QES3lBO`jg8N$5Q$s^6t3uF`w3vidpfJ>8WW5E+fKFkp2u)$?P05PtsvR -yAK-;5G~(!3|ii@4ximdVrGxpxQ>tSePV ->6Lc4Q^vF)SkYJ5Rc?wEHXqj#nItLt;toCMSqJIh6)E^@J-Dz$OvC85KnROJPX$o#ZXKWocyo*GSaMi -w&&^dNer>{Fw_hqZWhO#Sj^c+?kRtmQm&03*#(wTS`#;JZWRUb`yV7ieRI1RCK!c?cqKM6#yHHvX~av6Xd~>Z%(v?+lq+UUvzauW2nq)G+Es^sRlPfmNEIflz$craM5A4IX$< -M;CzoT3;x?DzZ-CO|NlAC67?U&lGZJZ{B3=|6z6_B{Hz8W*gdrm_Zq;lEoL8JAjRqJy_>L`64uD6b>) -DXn*CnwRbi{1)RBaMuGnMj0`BwmIzq3R5{O})H`t8XD*1cJ13s-2h8rgzeDNX${v8F=U?PHO*y=V(mY -&edmJay=*y{yWrNK<>d$a4*QaR4_-|)uyaN6riqWdc5PSywOXy#UsNydg0sK&aU$9i49q2v^8JRw8~B*PzhKg7ez>a5{iD_L6;Zc -Q>(O{{VQ#R!<$!AFtfTEfJk({X;Oy1gi<1{GPTvIG1%3UN2`+xbAX|U$6dLyH_#nW1-gB9x5Y>SK!5n -Ym*T-P_b=Zfbq -+N5B!M8j^JLskn(w*E_;-cJ=_T8z65FW5&fqRzR7rG9(IV5+ -LnONyPqZDj^7ih?4?qvOu8LeTzZi972OA%nm{%Kozu9@9{t+|u1{^#4(?-}3Bp02|gegev=l7>qYI%) -WZHizpM?#fWn$ugk-Nb~X;hlHR0pqd>H=}9^N{h=l9O9d*`fdXHIRr&cEd7xCR}TqYjAELK5!($!xoL -;VvMohCB*qZ`>zzUjw;RAP)4Yr^?T}Zh9Z)rjptTzU(0Cj-%$jIg@iwPiUI}h=kMe`YunjJ7+m(I;T? -`_1^}s%=#ursI*8K{NfN?u5mGl -mz*k3?fIdxd*9!x(DR>77+EOa+ur-2qd-EPEf|&i&E{AiFhW*4wVs2WIPV#7YBbh=iB(s%~smU&3j?mze8JyvKRD(4o+J-R=TjfFC{s1%0tJ5D(-=G28B$Y{!QX%V1Tr0MCINhYC -J?5)?=fK0Yo`@CrAe1*X%J(|UcUhAq6r2XTnM62hFzE~JhiRqtX~b5cA(?xYaDaBE`hI#&eGie*bK+= -Im2Ki;G*N0uug{KfiTHX+8i -$F1C&*@+Vf$KeE|U}I`OLfo=vhYo0Q^@U{k@V=W=nsh6*>1VO|~Isx9xaD;h7ngEfXDuO!&A*HFM4dlM;hzjmExr=p4lLb -=)%tDi_QQ=V-AArCWmH)k02eH3uItFn9szW>ia9%-e%xnXqVB!ur_#_MS5+h7U;$J{;4l$9e9k{!?lx -Oi$cM|3^^foX4xCH2yD3nn-iiGL{6cp -~ZW`C_nZ&b&WBpRa`DI6u1=k;*K2p^j}ycJ3ioU9cWyB#o5g!C{8b$o^O%AL*4acBz4z^5GH$Q>#+N% -t8tp1}s~yL%wCIS6_XJ9p0(x`%uy(*k~!RF7^8%5byS^6;T!Z~n!YN1wE?@lBRx1Ap*N#;nEvci?$UX -45NWckEZ@cqi&V1DaDWUr`Zrfnb_cwN05@VDmYvtNGjyY(g4F*XB6|2R*}BSP<92IQEEaM{+T<$CZPD=BHdRr5+pgMQAk#nRHe3hzq|U_? -dDd9;8;vp+q7^?728l98LDsaHZN6*CT!7lJG*NXJP5`!4k0(l1>cKg4O+wvc3mna*;ci|cR;=m#+2H -n7fn&rr5@?T%ElG>c-@hRk`ob48d^H@3*G}HvX^v*brj5k?kSjFWcP_mJ|j_($wt|$~ -Yc5Ajdt_cU})tvlDaQf~H=a<^niKW=Fr}SeLC#S&Vj9v`betSG+Wu)Y6^qL!eCZx4(BRYg@C1;su}oI -J83Okkm%iVp)*mzz^wKD&iehr&N9kv->Eq0Mo+TVXqw@9dN6dp)et>Z&_O<1$7 -$p$4gQ;JWLv}r?j4@{muB(BAte6BL791jQ}tgxbHp{S{Km3U#b)rj*3J$qn`%|}IsAaTpAQ^&;E46@J -_rl$B5EVE4Ujs$R#ar$nVYQGiwijryXSqb&kA|27RdUEw}^vP}dnN_j2O<_=s{JfkHo -<-?*;zGIl0YRK-x!6y?#N^ChE{oteRGVCY{5dpT+m$lO|ChAsB)SK>WKi_K{7Tccne75d(coS(Jp! -_L~ZKK!)FK8RUs2t-X=F7M7Y>&Dxg!A>&IyVo%r>On7B<-+>9%rWs?)0z;3-djcBpWLQ3UMbSt8{!P^ -TpMzaYfC8Cz}J@0*IAQAz$+{{gK+Qh>54a4NS7K~2K>uW?BLy7Qd&L$-Gt&tG`ta@V_ffEvIAEM=$lV -AaxZilNs|)@>Ak&-hb3#Xt^8w|4eRQ&$9aCeE$*K)c2Vw$iEpA%JJWL;Vu0DCk_?<@vmur=xYBvX?Sj -}zyBl-`499;>uxIWP6YsRqF18Ciatdxndu~)^ugg8OU(it0j0_%G94E{hxFZCh@P<7J4wgN3<%^nxrw -6LgZ@;erGrMsu+DmbGCC~>MSPgqKlg##*1%saGO12%1SeIG385j@6mYRDYUJjBP!PCnRiu0s+Sc#MPXSoD=UZ_p+%+?8}3W8rOJ;!sB?b{yoIp+VBb&=-eg1V=aOy%;n&?o(1y5+X0 -wS2ZK_pi#gZsh3yX+WIp1pV9l1>0iE`{@dl>%@_R{M$^k -j=GpjPdP?o-#(|p(=vS#+SI2FE-LAbu2Z74H10^>(mKF@3yJyfJTtnys~=IJ^J&{gXIoun;pKdtb -LbqT)ewi)%fKc5SgyBZ7~F*EBVheU`u?QrXb)KL9)K%5gKor0Xc_Pzlz$7PVkn_ -FDz9>De;tM+^^-^{8RTF5HWw+}XsoVkur-$i)ayQg{Z=k^vFMuYyZap3Fw@cKo4f8WGMt0%E#?yCS7O*ZSo=sFv8(*|f@&=fh6r=~dU3~8+#5Ux;|IE0yNTtu=DD6Yb8uO6{JWMYk0Vzt}3dXZ^8*P0W7!Q8o>)dL -i2tyXmy;Ljqv(WvD-Ig65TCsQKp4T6S4mbVM;jyy0FmOB3<;4?kYpERY?r~QruH~RAt|z;I` -s%SnigU&PGYG}^yzR9+{P(bS?q#-Dj7)xK=RGp~`*6|2ftwxXh?qJ^b%ke;~Gz>p^%Wy?x!9t!(4 -W>&NyCJ;c*f2%kN!xM7TJ^|AD;{)dnNKLlY>A}+-#ZyORVL5w<{XaK046uz39s -Rp}=EBBdZe8p9ZoQx^e(&p}VF$()kr@oyh3@G=u|EnaHL%8157=Yx7*}Et3VAn*o+@N|2*Hm|ZaVy@8 -dtU|33Q1~NUr`cvDh<9i9XsT^ChTYRv)(S+Mrynn2>-H3RJQ1}Yw+*PW6>XI>qwoA#FPr8+w08z_s#;>NAKSMo{JKwSS&_9RNpo -D>;KQ8SWa32GxZE!8ougl1)bgJf+tkK0Iv+N}UFJw-q;S+`fo;$J(;F@n)0s0qxQDmAo -+m#2tcA?-Cu(@KJW6$;7iW%*D=`7jhpULPAzxYEixwj8cg?k+B2#{b;cnO3(l-h%_#HDyQQZ@mv;{Bj -n+5+5<$OuruAkIUD{{v7kknj>=Nuhs22zNQDgJ(;Bz{nmVfWQxL=`%$I3^qIk{EEFEc4+xv9~>zyhXz -6b?LLV9ftIBbVAV`+=?#r0PpK;fc;GnVWXT@u#dPB%$O-!J9gQl_y$6xXXwDk6h?lsINDjYj80>1Ezr}bP5n=&3O(!-33r;XbW8_(e)OHc -?o`Gz-mZQC;h5}Fyq5b92m24khLLf#cMb=a+SyCNNh6Upd}Z$!D*NaY>dXcZCpe$x3^sa^kW?M6;&mtawuV;-|`ZoVcft>TQ|I -xePYzH~z=v~XtpNhaz=4uw-{?J*%7uY?OB47 -y)#t)Xx^37otf6*C__} -xfe$^7YY5AR^On^TJGUNZ0~jnz*og09AJvJc`d1W57KylUOyp@qwqfhFV}{zsS%^{dG}Vxw&XKVP&7@ -Pji49DKdNIjy1UYGXc9s_~&P_kAl!ZP_gT)m?5Q6J4#`4S=;QO-6 -mN{VC>ue-EgkpMZqH2zzqGKg=-;qNTwl? -@kp+foQS7@WNHV!3$#2d7fgPM}y5}`1RZq3LMsuJ!TO9Ni$AU|<`@}+*_X(#T6bJ`n@qJ=!%X@1T23t -N$kHCOI8K%&i_)b -kQYWehr`A(__@_MEi4m&Q6XR;+<6^HBO{Q>4bN@t$AAsKbr-Gs#33`TSCeuKw7p;16Xuh7ey~DTP+AI -iDGkR)(d55TFllJ(~=!H(`5@`<#{yAHhX{o$Y0OA)x6Kl5=1_{+|Y*1I6vF(XVR^`e$)=sNHDJEE6nG -a@cm+~N(ZAWCV!)qjc&M3PiYT&Jfr<6)gu_!ue?7wp*^6e4*JXh!rm$1^uZ4qB6_CP7u3)x83#i~0lI -i`(t&=U&7^}K*P-6`GxNJ|q$7xfiVYptONB3(T;!aqlg0yK(Istk)SeO%nwP42NX -VGIKJYR*Ll9(;YthzpF&Jg5ec4wJrUT&Y{vP4p-y_lZ&VxMjFxaGfL_?apZTt?JpYIaD(8D}IFhXmef -wp434D&!Ffp%>8L-`~?a&il_q}swfnFwNee?Ole(>4L@dD;M^xn`m(Qa-RWGJxeI`H-`Y@m-B5m?jZx -l5`I;TBAZqg+Fbw<;$D0;X!92?UsHgu5B_?U?mG|e^EC3ugsMMs!OqTH3D%_B%;=zFny=%HQiAlZ -?n@O+o!RH|i1Ik>3-xRv?C5I}qo6_mgdinEw1Z3!8=ygPz&pLioXB8u>iH(0pX+#d*A1WOGqmJ-y*53 -QrX;zhO`DPTU3H~C&ZaofP9V}eLN&PlgIfsQ>?mt4UwQOvB9-OyO^o&aRnfn)R+3P|H)DsnW4oi_7OE+w}0&E8WdSB+oS958IDTC -R>0fJkPoQAlUWP8QX@#F&r2he9R&O++ifGNKCMGs4sbS`&6c~Tuhm=;{MF;Nmz?y!P)h>@6aWAK2ms( -pnpS`^b3{%6003(M001li003}la4%nJZggdGZeeUMZDn*}WMOn+FKKOXZ*p{OX<{#5UukY>bYEXCaCu -8B%Fk8Mi%-ccE-6;X%q_?-Dp7C&a*8sON=q{H^SII=3R3gR;PS3{Wtm0!dAX^1C0tzb@rgM(@$m|_3e -if)8kKYul#moE#c}}vP)h>@6aWAK2ms(pnpT01*Y#Ng003GC001ih003}la4%nJZggdGZeeUMZDn*}W -MOn+FKKOXZ*p{OX<{#5V{dJ6VRSBVd5u*~kJ~m7z57=TbXj?!3N3nDAVD|%N>L=;L(?9L!X8WGHMZ;-Z{7?|*ZYvj -Q4Cs^QbFN?mW#0PqOV?ZJ5K!9e@^bk(w4MV#yWkZkZxmk$yHJ#SNob -y}Us>O<_C?wLZ|mf6r>_0$6!!146Mr(OecH)rJqWJP?F`^5UYy^W0B8CzOeK4L`~9ysW8s2W1C?QpPY -D5{59Yv0&9UkyH>NR!)S7dKV|ZvDdh)x1V)>z>=%2H^(N+n{O!=Q|DUZE}o|?`%6fv0WH`X*Yy@Hc^( -_iV~Rz|l2$=f!!gL)8OHx@puG9ZG(J*_H~9Zh`jrllPpbV%Yo$T1iMQL}gKhRK>Wy@ngMdkfbBpkX)i -v!*jnHOY9eVAW_AgnJ;Oj(igi^i=f%pA{{>J>0| -XQR000O8;7XcSBE&_;v;nqrXFTiyHAI`0lLs29#dhQiC!;oo-^0JXcMdZd_8~*Q|8Hy4qY1avG -z~w`{qR8RA&od)gx2iKt)Ld3+Ewtu$;z-&>`=^q(@WSwd8}8mH?S8e~Y+#3be3We|D{)kIs%B=_%I2; -o!{Q?b|9(_eC2}KGv!ds7nH&4-CnGw3TM6&UsLnpU=Pi=54S|ueM^Sv>wOGO3jcR00OIZU;hbVm!odzk`pv -F!M#2MKWCI!jsZ;Tg3(~;A$WP4|xU~3fBSf`gzczZ?;<~UaOEjE4(_0SL1_t^8R?ek1oxI(SX -2R9Cjp=q53WzwfABWIHhLjS^Linnsf&>FGVIEOvm>hGNNv? -LU!)VB|M*l*>iBT-Tq_uC_!MU?B43S6TGm$GpEvw{NEBwvs~36hdYZ}B*m~hVSo{Bte+em)Y -uJP*Otf1j*L#ZeTUHSFf*h21wd#4sb?I3vE(BcgCtnT^`sZI+23&l5sCM=#W{zYlrZbaP{EE^TC06j0 -odqibfAVo}8(cM&U9hpK+1StCTDS$r=reqI^&Nr;x2jbQ(k?K@N@(%bN+s0353Xy_=u2g+bNR>@KrS; -NbcmJ5$hrfz=+<0ie3mm4`_OF+KssvRjt`*fY~K(KcZ25zBn3lXbDZP&Dcqbmj+B7cyygti(s8*Wl(A -Im`@N|u3pNt0zZ-0+_kRk<3TP?>t|Qr=acVAG3jCoYth57vQhcW}@3cuGRdWtGZFsx@0aMY|Jr@(;*e -jaUZ^q~y4oomvLMcL8&T+uDbuoqQ_Y8d&&e{n-Oeo?RVF4b)%O&qb?Y -&uGYm=5N7ARUD+_s9uO7?V;H)R`Av>xqR(WV|@`HhDVX66!O?#0O>Gsclod?K;)d9u-0cHcpe3-{?l4g>tqA=dME3!(z~FS7KA19XSM1u!a}i0Jd0J&9*D?vvBRGpRiar6&7L5m` -((%{(8aAD}>h0;ZU(FZ*9pO|TrU7m$29$9Uw?VHp|R#vzxW;y{i9FkgJd{=GE^*+YxNpUIoUC1<*K$_ -gErF1}Q#h6szDH%2FpMx3G9MQ9yUzMO+3kh6Q{v+iL@r!a`M=_d-9S7g7N_16>u;#N -qZ{yu-WZfTT~K4nS~PGb_!uxHhJ}ehL735L__$BA&y7$0HS1gIfpn5ay4FTA=!N=@c_KUHRf0ybNJ8` -Ol%g!anLBlpJY>u=)SY>j5UGweedxofX?}Wj7r1#6I^^+KC5qvtVkHQP6!g|ImY9Lcb3A -52)B2h|O5vsW0~X)QBAo6zupwvwE9vSjnO9$3X-{2EuP2C#L?T|1(p=ef5gzZCT0(NJ2_eeX(t)gZ@) -r4Le)pz#eauLF^hwDXQ}X4?!7=QgL@@AChlyJyE;f_r&(T-(BzXyJ191794FBj#9_F$waOlIb{8W0W= -Rb#3R6*r>W_rHnxh|!*xH69ob!&e6FW=1cO|U88`X$`&n(<@xA@*ty0zO0*|EE|9Oq4CNq=Gg4UVN&} -1{yc_&+|FFlGkw9jD#9kVkw9CayVaAIEF^POf<2}==+dk+)oUCO|#uyv{va9`z-lQ^-1qyEV5m8J~Jg -82A&$#{UySPZ*~xJS+(M8Z|lpq&BffWilq$eW!fgB4!~4LvcgNxCK%OHs87SXqpe5dni+<{McR;~XH2 -(BA==Q4)-LW}+l@^Nk7VofJTasHJvn?5sNN{})^cG(1x40pk!^d!5Kvj61ZPunrC?rr~EPO}tXz=Y@= -b>eLr+D{&Qmfe74k4pPC3#=Xn}VE`RWb1h9Ng`RxSNDl;;&zDz=1{{k6<&oduLt6UY{`HxChXveeS6eD}kZchs0|`vKE#Fm&7jcrZ-$L%-T4lSl$>f~~@)kEj-MzZ@C&QD3FIv$QqRC~ -S=2wR=h;A*S~d^{sFb+>~ipyKLAim0|XQR000O8;7XcSIw1yvA_)KhAsqk!DF6TfaA|NaUukZ1W -pZv|Y%gtPbYWy+bYU-PZE$aLbZlv2FJEPDc5^OpdA(WdZrnB&{y$H_ouY`QnD7C-@S9^}12sHhb~TIKLMkYHw_%%Dwog|I_L!)AW -QdKD9L<14M0VnLg+$w~ee-cCUy-*?LpD9{0U%&Z;!O>ioSr10z$FtxU$R(h9F)C{uw85FLb<2jz4R^# -h)N1apl!w8Y$=-`rFWrm@voSAG@A=DKw9@uYRx1AV3sYloS0nd`dInIaPXjsBI+pT0(_hEDY$`saV#+ -`LO~{`KkR{l~W--gkn^G_z;eY?LbhXD4kC=qK27FOJ%$IfP{$g^#8xY+BmDSr0~M28ywEHXHI7-H7Yn -btFLE@w+5t*fia3Hk(`*00Ajw?!@cAi39xfY9sJt3Q<||$Z$l$0oJdWmCsH|k4e5mVveZK!FDgYm;pm+_c&gMva(V+C(> -BaZ%mczCLnLO+wf6%8}y?^9-Vb^!{OAjxhD -ri$EB;!AK!++?cJMO$`yzd^F{E%WdQ^u`|4fu2?6S>x)SrG!bGIh2~-Ijt9b1wX8u2NJu6gT{bZmJ*2 -+YJqqlDhjQjeuS?okSYXD%ic`_KX1siKWo>P9&yU4^>$eTd- -x<}CazPJV+Rl%@=|;>WOp_A^Yr`9{1KQcAJxT)2S}NVByZWclGF>1U|BG3;PKjL63%RpR3&lxnzF8d* -EE+1%$;mo26sQe<1Eu|5N4|C{X$PAmBVfGT)K@i)R>ea!k?_Tuk54HUsUGFa}fuce3{HMi>N)lM|iTN -g$6@VHXjaH7z$Q% -&<<4x7-$rsfSk-Y$m)+yJ4|gZLpmA!bkzQIeHbb(afc*;kZfbAjyXs#5VYB~C=_%H`J|15aw4iRyaUaq(a|`DntLrtt -=o0!t$3F2_Vd=u7L9@c0P=Mvia-xPB_l=8OqeP?N#0mL%Y?9Cq^^FwyPH6tk!IZ{dBr{N$21ygK{aT- -EKb9HDq&ucZ8JPf3raFoXs;AvJfK=Ti&sRfM=gE{@*TOY;(8@g^^Ev6-qA*{?U#`Vg_6pj*Fb -~pz)4|wUSILe{P^?r3Sj|D&gdQZRv&LECwYO)ntN>m$RGwf7+^qB$pYZj`wEzrR=m9OtcDs`HeFXJF! -MY1kN&wSbpXI;N%F{zKg6^h7zakyZ=1DHm -u-Iqx*Qc0pq*5PMb{R3)+c3yF6fBZx&>9^!{%T4je2Ugq90~KWSS`9YmS#x5#Sh+ -pTQNc3J@qt9vc06RYy`8w|A2qwdOJ$I#Ef8)AedE -@Z2KqYY32A#~Zxwhn>4Dn>Ni0nKM`U&O=ONh`Pc4hQ?rj6WsviU#*|5RK0Br6?b&A3_Yc5yCom* -AqiXK=}L0uuy1Fh3ZN{vg5<+&xbgP8&p79q3k>TKSS8;tEJj?X12IyS*0`y|9qJUfWtHyGdPGwr@cfP -la26mORWagSbbHt4()0REB3-!Ec_3Ey9vxGejG)4?ljmf|n}Z*CMCN1=zTc*i30~^XFHoBsh&O9KQH000080N_fRR(r`P{yP8w06zc#03ZMW0B~ -t=FJEbHbY*gGVQepLZ)9a`b1z?CX>MtBUtcb8c~eqSa#SctOwLYBPgN+%NGwrE&d)1J%*-oR$jwhl%_ -)Wm7Nr&xr52~=l_&slW=Uphu^yL_k`fmHP)h>@6aWAK2ms(pnpPDspig-L007q~@) -yQ3tM-*$wDdikC|FQBmauFx0-_@lgh>pKMFB@J)Rynv-p`3;~`^h*E1AY50>gwW?*rd3>LxZ3^LMP{3q8RP)h>@6aWAK2ms(pnpQih8w&_bYFFHY%XwlwHaM++cxmszk<^S%-R&AeHkzV-fFDbP+;wbz|DZUp2|p6%te -+ol5*+=`R}_UMT(T{q%AT(q}1_v-(O^-C?da~|4zPp{)|LXG~v6Z7K;2W>&mVLv#VB=CBK?AR7f@{M7 -<;G(D3S-boiGfzSF85$*;oWHqDFP9hT1#SyA%j#XjOEwkJU+=zpceh@i{YlUMeRlT!S-Sc5-Tica3>yF -V6*8V=C6$t#QgC|yA!FKn@mwp?05+V;SwYfkrluO0&$Z3hQh`yy1)GGh4-F7xc?$kvbFJ-q1@Ieom=l -c$BxqZzxpNQfgFbKSicMm2_Ja>MydgS%VT$Z&*)pP?p95FK5eGu6oa~w4#li8$*kCh^DLl;!WKODD5n -h4F8i+r^R4Xbgj|LkS3zDzl$i^PmMke(E^Ab0m<> -Y#V`aWn(yj;fG`lUo~kAXk7HPr_Aa0Dai=Z7SG5Er_50pH5!Q1B2_B$_JD?g*sZXb%!~_rKa}Lb}ynk -pmtAotyEy~JtNdmicTAYeV~~t4=M0T>tf0wk>%VKn6=X_!W2g|h0&)ue_n{~xRh8afhMU7LQRcIktEobi*B{gq+UgXAOQ(VRvF!6@&kGPxnk6U5w)e&=L!M^h>6 -Y=>t`F^R=xx6zV%_jOYm1(0owGNZ*Fd>xCS3W9BW5~k?qROYkI?Uk%55B$~H&)AtMtW($$uZ=iSYm?6 -q5OKz?+q;WOik?c_ApQR@qQ?+S3&9}MS;?l2jm-UKECQ4aucm8QK_B`b@>eZdivdJY2JVFxF8K7eC(G -l@AS*dEGSU3pmwm^M$%32mh?(U9>B_yHdL4Z&mLx>XH<;UOm};JUR@{e`yDj;U>(_qMo+p_{OwxNf}ZwE@@U<6`1D*9Djd1GZs!gCQ1S?Sx{c#Xx69aS~uVB~P7k2*ZYRXsTC;9egRffYs(p= -qWbHC)b&$YX+uDV_t<9x;yJ;%&hUGxJNbY*l^c3}MX$isPuKYSK2>g60gDxLL7VVrC~o;UxUaGnoAkv -jN#Zpz7Dv*NR-x>?WjNvTK?hj8~9}oDF$X@mUiyZ|ITDnay5+>Q9_=_!C9uqaB_)g -x~q;!e@Yj&zarw*9ub2sY~sV%X-@96Y%rfjBNCyE;4eS)j@DBAh4FdkOfvUOavy46@}f7L9pODXk1_G -SpolbwY5dTEwPUsEvcw1#CQ;gDQ8y_f{E54ie~o;KPK5#w+6022F?0d!HgkQ0jtn%4pR8SI37n-JThI -2vm2_Oo?RfYJb)4l~;g~)rS9M(ik)LTPADL?G8Njy7|HZ@h-QX#_YXu$85~w$L(;`IfDz(t2cslnw5k -e!vJd8r4Ywdjq467es)?SP!*5!$vhBxE)iTOwSy#?fO;>Ey$Yg;Em50~wgd1I-eWPipC44eQD{)S+El -Ur!6;fBu-i<9^1c|x#V4Fwtc)Yb%8#Z*~mT@N)MT0t!q{2Rnj^dho#vO_%+`_zlDPXX7k%Xn`k&LGaWVFkw58;4^q6_D-MTty=^Po5!4{4q*`nEeCV3|d^aojRHyMInF&COS1 -uK_XK9oB=`7r&i!IxJqIi-Ey_nD$bGKZ7p)rQ2hjo(E!?4B?HwtzC`I34KO^@m%D1uMP2P!g)e1-V+K -mNG!xmdj29g6Att&9*93FZ(0czKO!@x3mn?eR$*459bOPJt?ZvM%Ut+gzTn@PBSxgHPC^kuYmmAaB#( -Xl=k?PE>V=r5evT7^CEbyP9AhRvQiOWz*w6JhcZM!AhLBye37lK}+?S^k;p5IY`K2P^%&SJe=k5q`hL -Fi9gWNqa=+EvC)B`n3}fvJD09+hUd71{)(KXu)Nt>Hz}FHVEm!QUDl!!%wD-_1rd*ZSyC>a~QK*IEa& -NpP!+2kh;yYbXzpaRbFE5?#4^fP{OcIYwd=K#pI*KcVMh5k7qZN7r`u>b~AQ;LlMvN{&XoT=%8fPQ^X -MjSQnifs>ELH~xo)iEr8WvWJ2iaJ_88qf=<1MfY%XrZC+^G2@6aWAK2ms(pnpR@yjbms7007tt001Tc003}la4%nJZg -gdGZeeUMZEs{{Y;!MWZ*py6bYEj{Zgg^QY%XwltyN2J+%^!t@2{A$7cHVyk*fd~1%evwr8(r#gJBS~H -0xzekqSw9;~4($9a1k+-Z(%I9Tv;s%s1aWd9A&?SJa=-m+-Oo(rBSdpyO_L49dOi -EB=VOHMZ(S^C0fYwi>)tZboQ?Hd;19$*;(@=rA>v+M^}R3coZM@fW)frt5@m|FqWF-EP+?;T&8W+X?@ -{Xm5?GcR(Lw>@QS3S~waDWD+@q18F*lzRoAvoIt=x5d$ZUPMXw9I9ivoED6F$>0qo@Wy$2drMyaF&bCx#L0K{_i*?<9_z(i9#?-L-R -3rybUb6wfauJiqK&HBLj3@y)YC|H5!`UT*4GzAD;+GI9EYvhHQmp+A{ -+VR@qARmi)+4?=O8Z#A^&ibtUatOMf`ys#914Rd=hrJen#bR~9p@`#%UWhuDE4J(+4kHkn@uGg1_HakTGh@F7d?R7uYv=)ydcb@$M%35u -RS|yn7b-R7?IwS9C+C -*=}WWOV*z-HZpK_AMD=ad^|gBwb7H)~OoroUP~5`(D7R^$9%CWGn>Sh{RVCY4)Dd5zTUT?wy&{iqY{r -b##J$Xfo5lS4E=kyWyWjl}P)h>@6aWAK2ms(pnpWSJsm;Ox000IA0012T003}la4%nJZggdGZeeUMZE -s{{Y;!MZZe(S6E^v8;Q%!H9Fc7`-D@NW6NGZ8T%HDgaqE&CJmF2=v+&Z@98QSLGcMKs3TdE=iqw%~qA -8%}rF(if|IcJ~hXcA#j6pb@Pa4^lQdB%I+;>WH4d6ZIrFeW7QOkm~+7(>AL7Ger-wnYLoWHEth8WbuH -fWD2v3QkChkxgrIfk|uF!(SyOs0}EO>_U?*vd8F9pZ)O^?QC~e{KO$iZrz5Xv0nX~I9u$5*LurZmxQj -{3#nu94i%cU6AIcABw_A1!XlWp -CFq@&@!JP$+tSH(P(Z$SB2AQ#Lpch2cMAbhg$x(OTWGbrS6HrS71QY-O00;o!N}5)CnNB_m1ONa#3IG5r0001RX>c!JX>N37a&BR -4FKusRWo&aVX>N0LVQg$+bZKvHUvgz|Z*p`laCwDRZExE)5dQ98aZtY4fF#E#nzaV@26O`k3~Q0CpMp -T3rIW>lCRviQD-`+fJ5rV`F>WRxh(#WsyL;~8oob^F;5yCa9{52krSO55E``7GON+9^#iI6hn( -MqcqO6q3H7lRko{r@QW}eX4;dq5LYlSON9=TESfYM!#4@L#S7|WF`iU~BA4vl0YH~7W>(SmhMh~d;9{ -p&qN#SQkzi&8Lahb`s^^B%qRb^-KIG~|p+?uue*QPe4%K?`$%vD-1#hnG$sS3Q=0JVahxgMc5eA}_+x -UqX}zbd9PmaZT(Cr;3U=UzWmBh_tf3lI{w!pF(LKtTU;v)Z-;Ia)3mVKbu$TB!yxXxu{hNb@G>j*&5W -!z&CIEoQwzteHP!wcmLeLr{6xo-R2hlwMvF#uE7xuKHvYD&!KZ>%7!1Ye`%O)2=>6b2zH0Sc9xQYQ-d -;qPI!Y8vjd-4LC}adAzKtsva-PlkI5=nggqb#(*+Q%bW6G*kX=VcphSfxXz?sTI>kt~yaK6Q1ZuEUrU -GR+Nj>)rJnhq6V_8rr(+1^2tW@j42W|JEg=j@YB=DMB$ITpvA|7))(x5 -Xt5egUh}@P-k_xm08947B1ES&2t1N-CJ-?dJl0%KJZkE9M0W?Oh8TDPmqX*6w%heuqqe#3=&DP~bnoA -@+c!Vlt#8K6<|K{FgMNG-g>AJKlw3?tp#Sc!zm61`s(kPE_mbKRtC)*}9O62iPSda|JcdyF_y}=*;~} -$B9W=F3QciXiFd0^dX!q!-$d&}24_iU-m%yLLU!La|8HPH9W&G+4v)d?v-+j-yRzm8OzU+dW`|4bT)8 -nMx9h2Q$lhouME|eF&Y4S*o&*LmDjSj4qlW^23f`i@WC<>ddLyr1xW(NJT}Y3v41bxY+!(oj4 -TY@=F1q7@#9JyG+J6agzs)sh>f{U-=Dr?zZ-3(2yckZhPX%0zf%LGy{~a7aO;X_&UqNl&lyPU4{T6dbQNl@6aWAK2m -s(pnpS7*hj!~0004nW000~S003}la4%nJZggdGZeeUMZEs{{Y;!McX>MySaCy}{{de2Ok-zJ&z`>UU% -%c!XsZ&QiwssYz_QkRNET_3UoeHgprHBXw7%U)(arD36eC#IxQckb0_s;FJL11@wcD`qJHpOaPH*K`& -s(D-2rP?d_MbXM8cv03@S4DMYe%AKGx>m*ATC_{^qLJpQYs#{?OxL1Oa&OVpt0)((n3qB+sUkhdzTy$ ->W(~`jkI7yHf8PJ++mr10#mVt^FJJ#ohAWpaTp}yS6A*n#*+~=K=v(^z|#5Z=bd(N(uXNd;amo$;qqi`WA-tgQ(%lplO1;o2(}p&T3$aw9;CDwlWZye>-#GTj)+FY)zp4Wp`d -Zx6*;Hqp$;b$TV+SM)B)vI;~d%RmtJ9z}1O9LB9g3((axlA@9$v4@H=cg}DP64YVR!i~Z;4q#>`1Iw|-|45rCts -PTL-Xzc|6S!zV#N5F)u#k#^NXxz@0(6e_UIMpNOg@;#Keo^7+)wvWzLj=oo;wna&;;5T;{Zm=th*CRB -7~nS*VC%ky^vtWsSQafEP%)i)huUHo64DRGVmpaGI!IL>GgNUg&8a(7C8^CSU_}1f@dMM3pn2FP=B^W -pN{4R*U)~jecB$UPa!!2xXwkaX$nX0R8*vo7ekFHiamQU&JMh=e+_`R`~e#9C@hqsZnU21XBgKOXv}Kh|}}B0byt>sX$ur69B2A`BKiWapLV#!ixspik4sySd9=dLPQEiuLMX -+yNoW7|q`)^O9Ik&9sg{u=B={%&=6R?@i$+|nfV){ELAV+T+Ob*#@z_YMFo_^PfLjjcQ#3j87 -wmgwx287)*eTo!K*&Lmic0fZE4q&<>|!NK -_UZZOlQ=~fqIHZSap7UJ_}4i7sV=GnI4S}6wM>ZRC>9fvM*9<2AL!r2LY=UwpRnNMauH=2IQAB-D)@y -gQL6RMKQZ{`M4Rj4e7kk@G>2Eb=Pm?=`nqnif$!7Aq -w>nQ=e4*;@(av<5j1}u2T(1bC*Xov;IJGaXM=)t^*>I%##at96FyaVf4wL?YIm@%ZpNAS#Hcz*9~y6* -#V*i_rqBPTx$@tpQ>2{Ib&z&`7(U|56Y0g89a}?~sUZMX3h5$MXj6-BM$Uo+ -o3^Gjnvo7?14pyp*CMsil}1%}RoQIlY2^ZJbB{9^(|?VT|KqjLAgw!@E}$bVo^%$}|!Sj9e+?Z&B4C( -TShMz+cgTpM(&2k_I3jML)`@tA6fkh!xgNQIo61pEw&HSK=CcUe}PdT52bq*ByppG%HW{JgWF9V@ltX -;FVsAb~@?N0@Ex@kdLDUGJjDt3KI{^Y6FT;m_j~Yt!oY|;WOk#qU78I)>9h@aaKMBdm#VM2>K{`UaES -E3;qa}xW46hmM|sER>jq_HNh@yEN>tTiXc-(gh{P69JQ>wGAD0yY1fF}RG3Y4cNm8OGX89(qewkp-eG -3WidL6^j|S)ggFQDGg4I?68u>FM90ml2Z#6+^2y5OrE<7eZdTxq)MO8Y4_et*?{5&+@oisr}D4RK$f_ -?2lj-uh8FZRGcK;UyD^9=c@24QuaJp1*N!*3^$n8DkZe|i1p-O2Iu(~~XAo8Vt0t5Y;}Bw-o9Lo@b}0 -5eM=$HlUQ5#dm(ibW5wwMJTXz^lU+#uSN0LT)d2&j}3Co@U!Aiaj!wIHzgm$-WbC0)jkMHR+uO(8!xY -;kMZGQxN^v<5S!qSm_2eqy~7bp`bV!IcyMCs -snlT7rEwYtPQeF&yn8I=`UnT%C5(<-#XqJD1;6BtPd!YzO-B^xkS04Y$@l2IR51Dam?8Y2734of;?>i_l=#bDam$%*0-@Nn0hrV8`N52#2gHMu1zg|zmk<~M -2Xw&=0G*6AzVrUlkg?FIH6=Z`VDnM*k|PraPKoSl --EO9w92>+Nxj-#)eyQ)1c-27lVR5wNj7iGywaU=PzHQP2@wsQ6X2Gw?RyPhmx{5cbfn}Pfq=hq@jbi6 -&RLNKcabo4|og{UykYSue<}7klCW72g%&*0jSEbM) -rF0^2VYRZso5=xz$YHCt~$P%Hn_MpW0ZQX_>5KMa$`U>!`kGTd#Zt5N<}d39y882$d-PwI6(ZzoVBZG -RaBcW>OTyf~XG<(zZGepxj>KL=`J80-M_2;f1%bY(C+Aj(67$La*TXAFtQE*1u2KHvrpatnQ?;4-Zc_ -(*ZY&l8TwFfe`LFZ9ydCDt9p8{oaMbV=3DWC>br1|X)BJ`|rPHV=adJ}Y!oW?)3O0t?YymAftCA27!3 -S=0U^1HPSd?yciRvXB7$;+-D1|CYvG1mJBIWl_j72fD50yntu&qFA8$@^?>ksSfMTVC>z9%S`}Ea3RN -_wa;ipq6M@ryH*#(rx{dz*81bp0FtR?;sh=wXz_@NCOjo}v>ehzpzDHsgh$@X$XawNLsAhZzCNUoYgISMOs;!k=%-72Yh?iDH6)tWLN{oqA7+N%i#1Nbhijf$k=uXmTePGbr&D)m -&G|CtBI33ZI`kae}Rknx<6>6qL4IQHnwrCu~b6^B{1mwLv45CEGLq%SIeo* -oTsd`n`A`dH0US@y}M4yvEs`vUBf?&??6~wzil^8~*;2$8c#W*>M{~P|qldwjG&}RO*D@UP0gphh+(M -a&h8C6gzg%G=~wFAOQf+Dr1xWO|eXS6Zyh8zza7DV2lUEo}RGai_>+308-c_bhpzSZU29)=b*hdK!&@ -n&XEKGQ8_=>U6XG9QJLh|Qu8_ef9&QP=xOl-=vplxKsQ@vagfBd)3?usPF94gQYJM_Wh6hA}39Cfrd5! -fUuY#1_4?NVNeWxdg|JH)gXWqMfm<+wLdhhlF0s4({?jl>ImQ#71p5>PNq6W=+!2ZKw@2{Dy-;J7heu -7XgE@&_q$_B@ygLGGXWJPN^J7(l0v$|N31Fo05{o`dO=%#)P|(dF38;YbcT^^BrEHVs4eoy&*vdJz!1)?culvXGYg3q3}gn+v`r7Ahk;PdhOgX|2W^ooB^j-8a|B#o)=kDvTlqFA$hCJ -{C;W3M)IY{(F-DO_`!nSN3bieYCfoIZ<)XxU*4wYvHuy9=tjD+iaGPbQG$rs`?9~{KWBKt8%e586$Jw -y0(?_k@{{wyd`;>~SY9P;klZ-8mYgrkKrh0O-MhhQDNsoU=AI9e1Pn^&W<3fTJo>BK=zEPQtA;L|__k -&0Ia6jI8#N&ruq=}8eC)56FQ@|(yGTDVZBQw56+j#2)3;<2v&H)W`5&s+NK6gai|52w@&-etX-B@U5J -6i!+9JWC~S54=N<6v~5oxo6$zCmZaPU0^-rK47snd`1j(Jtu2N>gmt+(lDF{SyHtA9)8d)Ype4CUEc9 -5mGfs?hF5{p$DX>=4F>lOy3}NZ)}In8hpuZ-SjF|x^I|Bvq&@%oo}yDqaH!sPR$kC8l=i>Ewk8%U4RLy* -4b;|5&tthO7VCnDnxa~oDZ>xNi;6y1hA9<1V>;1d0Go4Nx{z5P2{qwI_kB^y=F$yVkC>u%+oU2t-CaK -6L*WcpOorIX{Znfp_#b$mug2ah25{ruFCZa2O0w2mt}$<77h*w7xZ^_y7{r`Hr|MmH==0X3PX8Y%#n|G6c?YCfX*y;I>AZ@pF4nkW;anm+9%=o>Q -LFc3TR+^@NM8xkHhfTCze(*)m -`RALpNGB59yjewy$&}j%N(=Z`6cs*!{0nqW7*Re|8Vy>BbQEvCQ%%=7@-=FpX2@G(^|@f~Hk$$T8O;D -1{6%=ZU=;vhx_oC8{1=uD4Zu(4$k^R#00XUWS|VQAK@AplRumglr5jm%UD^*dRrk7}uaBa$n{zsPx}HW -iSjX@S{3!$uE0s*{x2mzF)-J8Ju{8uC*u0hmYw#s6*vK^ER{kAJWnqHz_pJBOG75w~doUZ@7QAtMOmR -&72%><4$=Ty`^WsnD#n#0OMQxC7?XaOd2CoLs|akT~?q2$t4}AlBq*UDcXP5wFOaak}X#k&~8m0v|z5$FQXRbchnM?xNF+3&Cis4xwQ`~ -zCU*b7%5rJH+<#9zd&l53kutAT$eX|^^Y$T+PjyxH8uq7yIvz*Uqhe8{X!UMV^cAccrz~MIFSj-MSy__ -A!(T$2?c=!}v#1pR1aE*hmmX-ycrF0das_5f%EYT=Uzhl1t0z0N|h`gqIy^WOIXb)bCh8?8QH=r;?4K -TL2iB8`p@S0-ed|BzJ<+j0;1mdDOrY+Qp+~AIkP|+Kp>0%-2{*AeWjFvpdzHx*<#l9ozU~dg(qMd4y$ -KC-04NZ+wg}&r_)rm#`IBEE;Y_l+7josspRa3^&fTFeq#mIs{;TH&KD$t2JF_IIaC&ur;syfres2Eo!NUWaMKmmBdDCE)}H<%nL@cvYP*gg~Z|dI78b(p5Q -KKDOAAP+!Z9(HaJew0ZsJz3D0cLqs=QNZbU98wwcwVtI?arW0^=W$7z}r5bPH%QQN<0~b6mP}p)5rd6 -$4(?4aiITWcWB&>6}ZljBfAfdUq!1c|F-tBbFLzE2N>O&1aRgID%G)YZ&4cst0<&uY$ -{G*1kVmRpuS@EWL2amr?yA+A3}#PYZcFVEi?XXb#YT~Y&_J{HVTxBTZY5qWt`(n^mGGvxs&pUE$~Do` -1J{#|!s-z<*0V{cK_pN9nIZmHI{3VhzWbbYH`$G|4DU9EmuD!`!@rIwTqi&3dz2#&N&N3TVB*xTf$8r -0nI5JKmuaJ;#Ah5O?jM}%dew9PcEG!DkE5rLpME`chw4j|W#A=7X-ANjh)Qu^K7P=>_zSaGKWwyz>x_ -kS$rj7l!eUqMmG}ZCa2EBmO7u!*+{9pj0v!{g`ionP|HBw5U6xPcm&ko85P=4`^uPC9C441f9k^Ltrr|7apxVc)el%l5PiQvHu}HhfILoG -+Ug6TB%Q(rUudbPHyPQt6KG-+G{1_+xAS9Gr(+l?bT&V2Mx(l<0EK5QJB{h=X%0GIqa6NahDvPjounZ -!MOH?;+}x%xGxCSTzQZLY^LSRUh80qotd&R8G%_GyP`Dwn7ASsf8Qy>G{l<{cm)4PzlA?&prHRi%ELF -<(aNA`L-u9^1Tr-TY-?EX4?V-<0(e8No{>73prZHR9!~cD2T)4`1QY-O00;o!N}5(19P;XH0RRBv0ss -IW0001RX>c!JX>N37a&BR4FKusRWo&aVb7N>_ZDlTSd1X*dtJ^RTyz5siewP*!`_NmUh4M&w@OY(=Qz -^x4q;({!NJhK)c>lg@M=43Fi^enZ?#whzW4`4A@;(v+GG`l5$iXRyhmcq>MwE~fu=TVjZq57y!j2LZj -F691j)6{)2f!nSh}%fl*MP}^cnSq;859a|55@S2L;{!?syKGad?6=m{Mao*>&2Mwy{Q!REIPu~DtS&I4PEdSIu{Zm5s2`~u%|sc!JX>N37a&BR4F -KusRWo&aVb7f(2V`yJqU%{yuVq-45btnb|@UX7ffC51gG#&P#3shR7EjALV -l9Ur~SbzJTBQ5JS+kjz0lS<_A-tW0%R8<@6nex(lV@kJBaiKK(z0&*k)0{VI*Mw7IoiOUXQqPEEo~uO>S64o^e&`m3_t2St*=jH&WQFxXDZ{FBc1jCrOg<|4%v-wQEY@rDML3V3!H6jHWLb0A-nSEHiqi_6<~F-Y^%~@ -iU|FlBTXS-lZvYdY|mztF%=5&LwM>1jmuy;Y*t|EF`z_G>(SJkz(nqUTjmi;2EVnc04nnP*~$n4ZH&DM=3f&?)f -2er!~k_pIXV^^OV6gxxol)Sfvntat2Q`GS33qkLE;j%+J?JVXdx2`;5X&LE=dASqgc6{eCbR~AYdd*t -lKFmI22O?!O6Tj-pr9lgm1xX-Ow<76=AoSQj2Nb8U%ym$0nfmFdi6pPwQ3rCelN*yQdA*%Br!MA2QDlDg1H-J2$D+yEsQ26o%?ZAn={reN7nRxenx+u6+-D{SFh` -dMKewb(4WI4{Z_#75ndj5dpyToR!G#tX2X)g``RUsxIKU=zZX`+{N*eSJ;@XzLvoIQ)XGl{Dv%|QGlD -mt-P~NQQLpzBBV?J(t`1(ed)GO2~6D}#h&tM+UenBx%=N6!W*OIqT~gBK+?!l13wipF(Fx`C62F|LtCZ}ic!qZFvE^uTlCM&Hn~I>my&I3^Yr=G&%gU-9bd -nF@%0Pd3doIg!220iqP!PJ7Xk5X9&{lTvot2a>d>lPVH!*(RwyTD_{fJ$))C|=3()*1XJzCy2f>6|6e -HeuWV;qU`rpv_;$0zQ#f6+qzH|w)QdX`tbIp*&0%q6N98^xDT-1eMtRLk%&767KnS7e5!?sEPV?KtmZ -mB1nldIU7Lq{bJ66p5Fp9zn+v7}L(e>CW?Gdiq>4WK8u#f8TPqkpf|36Fa!%{pzY=L`@`Fs3&jOn8nh ->mm`lS@N4ci3^sjhM3!VXau@zN*EgR!{zFd@HgP_xt$E|3vYw0@r`O{8sz&yi7`-i-hWld>@J?eMvz5 -=7JXM3mDqBpEaqhumr4jL%qX*3=Bn6 -Og)7{mhe3*hWBFkH1j+~?C-dV)=h@svC&rk5f5kvC -*gw@4HYd~L`)MLg>$xk1+r?i{O9KQH000080N_fRR*HhC=Fb8E0CNWb04D$d0B~t=FJEbHbY*gGVQep -LZ)9a`b1!pcY-M9~X>V>{aB^j4b1rasbyZ7m+b|5i`&SUzVJ*;lz(r~t_-FSp}|)4%EOCLJ%TsTi7j`kcL*rz4R=qeArML -KA>$+2pd;9AklX8E2sG9Nf?Z<@Y)bgGk$j@aaG;)VhfsbaJg2TD1vWVA8aXk;!&j?hEd$f+ElmO^{%=L{4D83zVD4Pdf -S^$g7XyEUn(z=Qd`t_g`xSip{P8kM#iHw^_w18oa2VG#nZp#8b2Rf#f6W)hPz7*=P<{!&DPt?3M+&CkfZL{~>^lYK0FN*(AO9KQH000080N_fRR# -62a_L&yU|cBCFb153Y4dX-x&b -t))JL?2iAC&ZqFX_R?ssQg~=;C6Z3EmNm-UIt-!xvv;c|H!773g43);BbO#W=*3NTk7b|k(XowtvVnEIcH=R`aXW1LX7GUViS^*f59+FxEWHpM)u; -ptNok*&4p+3^F2mBsk1;5dW1+Nc0qL9vcN$E8P2hffNWu}AUogF+Jnla}e%Z0e*uw?uo*=yNX8}s+v%kPkDcq)X%OBx-5t=&4vqU@=DRumOgCN1Y9InBe$ -oaC7vbz1z#cg!EgR;?i$d8k;MHF-H-}Q0)Utvtk=LY`v23bxl3|()2?SWGP)hkjTi86P?qOQZ%dnZ=( ->?9dmLAmgWsmB!`*uOBjMwmfGDED0h>r-nx6Wk>$y%DuHY{ULBQg16>Z}AG#xrgKa_Hj4S4ge7cQJFs -C7cnhRBtD3R$BuCryT?pq8teGuHKFg`)6GE3rXwZN0efhm4vyu -1h>zYN!sx6ra^8nFa9|yk$@sZ9c-m(5bCV~5|FLqs@`XmC^u9rpsaspt8YC_q!$c_+Ehh0*5X?EaHBp -2ZFc8mSO??SZn4O{11ZX*j5);)(!=w -t+S1%FS0y_}k%YNcji*Z4>arv$UrtqBwyBud+WLFKsZm8+kY|df?zd+I1%W)kR5699M|@PxtWi?Jp3P -aH^n-$e*aa3Pn?`kVRO7`I*!H%En84ph6=hT1h$p!kU0Hqo9Qtd#Dwqz{MoTd0H8qZ{2~VwLn_uck4_ -as5}vo4wQ>d-YqOo3a;B>>pNsMP^CbodR#DS|tE^(_spm`HklC#X?!N1b|-&qRpoiF -sfQt$LE=Si%v`p?rFqlBJ-_F*c!JX>N37a&BR4FKusRWo&aVcW7m0Y%Xwl# -aC;K+eQ@q?q4w|g~+X~O-cjBbazSV1_Gg7HX;464>6Xm?P+9GNRr1|eXcgA{owOd*WH5lZ%k2&|; -mmEdW6;*~TmCgz&?pH*GSg3-8EOSvAy;V6ul4WGAa9X$(iLEqBZ>*@Kft6nH;i!~r!h>{TCATEjBuiB -;lTj2!Bekxyal+7OVf0$KeFc#?oc^LRHxX|g896U#BHk(MMnSPsRg!M0%(Y1>nSGK=cIo8O*2W*?va7 -2~xG80k&@Q9ODP1<2Z_BMLRQ@|h_yz$o-qC236%v8@)7ePi1H7+0JTQEJ?vGMFN)3rq1e0WXUEz1^<@ -_9>-of->4!#yUDNbg8bZ{R{Pef_9N%&=%gy7Y -mXYwH_82~`12;o!R=I)3qAe@P$w;LNgSn}%A$IPsGl*Rr7x%2rBFy#P!$Vp>T(=(9kRiZAQg-(>E$O`OP8(U+H*^UT8L7+j(LmR^T2= -y@y3hjOYQC}BV{*I1hj3rusDg@`#iKJz|%&juW%5ysFJ18n<|c25RDT<$ZJM%ltvQ~O*{UdiFO4m0NA*T+}DkzLF`Bnxfv@ruy*%i`OOH)_3s~ROLpENFi)~dX7e^1$fNmK!gy0D?ZmCBugrslS;q^7L!qv?Yg44MwW -tc}{1g?OEi{W9Vq<+4giZ8v&#Gs3J6S1F&&tu;mJM_u}T3E1e1U_Is`rPVrFpcA{ZJRI2rBFrRILgxo -hwpmd<~)|K(et;xUcVx@F`-F7n{@lw1pA;FLnDTH2#|@ZVK;a>gUN0 -x9_+|SPP-JveV9?9Lf;ecc`spqVV)h9S`$-!e=n1bLz%4<#yw9jZ?#m|S#8(>Cx~ -EVNn0at5G3v7y5g;;{Ds&o65k(>jQle0!14>41?^m8jK;?iqQd19ekyBp`{!ADta=)xFnX5uXm<6*J`5202!*&hw~Kt@SB7b{<83N&$8RAPV{=_vMf<`Xhhf3>IZh9TZNUHNwxE{UOK(gqxNig$r} -OPR8?p^W{alMminus%I#97>w4` -*h#IK)ZE?aFOlVhAhoJb?)NllbrcDH$s{6oWR`F%H7O4D2>VRp7hflS}3eBVq5%@aiW{_L0^0wJgD!Y -nG3)G0MBx$fzaSE?e6w)lI3Hhku|83hP10MQSAZwZq+l5o8j}ncHI$87BE7ZU#Xks445Rd;)_a2&+M| -Uips#dIS!_tnAPhdgMPZlmQy~g -|*L2qAdOp{Gl-`!q6N21yD-^1QY-O00;o!N}5&c!JX>N37a&BR4FK%UY -cW-iQFJE72ZfSI1UoLQYQ&LiL&d)1J%*-oRC@3vT&8bw#OD!qSFUr;hauQ2YQxr-|GIKIZGE1clR`yrs)~$Zg_i@JnOp+Yr3k)yNWl-PpsatRvaCj@TSYFMkH0!v38XgESdbRue<6w-@^SLb5RvIc -beo)ndCz7qRKl~ChNLqNx@5&tay90Yx#9mR?RvoT2|shd5tg=SQSPA?2lc-S4pGLY1zMeCOVNFrD=Lp -ZFjuwlA5pA078G|LSKnZ-&M8w)-PeXf(iS4FJO&TWu|ufodc+E>$+NIySx?bXw~vX%eoCO<(O696dmWd4TWCYFN(a_C>UG-#BQUX7JR$q&8}su>Z2ThPhnj>;2gfn2NFAjK(n7E&#R -)FC9f+1f6wwQE8q9Kn$40oJ7ia0&l0+Eq##$jY;nz+lDC%G -)!z5If#zvPEYiYs|zo>lVP{wpbuKF1jRNuoF2xQ@nQOy@ori9iOqSgkjp`D1lEdu4eiIM(_I0e%*nnf -~1x5PRq9Znh{P5TwnnrA)km{U3KyS;9c{=c|MIHb6tq+8dL|^f^yyR+9mpFv*JfbHEkuC+igu2iw4-b -SWJ(O{`%sdZ%@x&EuNpgd-mh&7tdkbOVAcz?om+#+R2Gkp@|iS=`kS;m>nk|t@4XNq_)i7(fgKnG{nE -M{ac_mio`i-DqsYHuRwwd!hjapv4j!HP7Sd(0hN@7ZgR1>l4FmPC1{7d{X?KYc&}tD5(lDf1$3DRRKT2wKVd+5wS-oIv9`MA5=>J@icl{OG$RH@IcV`%MM*TqL{! -`sUYpRp-lEx_JvkA@Y~`qwljnW)CwR{`0AT+O?*gd^1RMuu8q7?7)w*#M8Esm-ZNI5t7;8vRVRq7S9UiCw?3&y;ttB%6z)Qmg> -2uV)YDEV_3BdWY_djKN<6mf1K_Rwx;unB{k-xtU)piYO2o@!*#nf)M^dO?|Me`SQWjCx80$)5m}O4pNQP!$-^V(UYf-%kQ2({L^Fhq{tsWVh@1K -72(7c-{@&|HkH5PQf1ZAsu?W?C@fG@gC&Txj)pfOm+~OT|-AJfM5{U?mzpe_la8U3t@KaJ#K`6CfMfV8M2-go!Vgu){KcS2+{E -y`25_qH>#%gkmgi6JuWpr~)uwrJpnbK7XOiP_hAHJX`dg)|lVE;*&~FHqHn&NUqTg8oAl1ggS4f5ttC0ZCmU_-d&7nS<+W*vB0!Fk@wUb}$RVJ^@KtT -_!hqD07qM31P9ZcK-amFb;b2SsDx_YE88iakTGFBikV|D6CAfoT-Ya)=eNCT!MZA6e0N -6h#6(a=@XkF{(*pe8auLqzQnXA&T^e;)A&wQHd86(UvcHJ5lvQa1lTL{AxOl3z{`7F<}Ekh#rb+$r** -klT@Ledj0|jqDH{~VCi$nqLGdhQ)O1(9B!qe07uY?bUF=rkAXXt$8jzd!oku~O&K`>*P`P!XdI<*E>e -MY_rU%jOUGHm7jVTEWT3neXl*cRUqF~Hp)LsOqGTOww`dF(RW~7X17>H)Y^rH{b{=*+Nf9OxRhqPL4# -kgHeUAAO{Tb+bd{rbdAT~))-Ysa+;d1y<8aR2@fh%729V3;UC4bNBUS3bfSG(sfG)=&(s>O8lYto@RA -Pf}8FN2ZylI4!yfBgNE@4r7zp7Z9Lj`A@(1IdQUO$#exBiobfysb!!DiMJSW({=@Yzf=$x;=8yD^cl> -GIE5QA5ck|1?=%i;(%Bm1xB#j;KYkd?>1H*- -KWv=&qQ3S+`4jsUPx*BL3A(9pX@E3~u;8sq{#V6VV#Yc;Wx$%#JfQVjMA5njQ;262E1=#DwWP=yTp9Q -+#lh=)MJDKp^d9HoC4)1sZTk!7VT!=rV)nVMp1F%v&HqZ>cW<&6oqooZ@Gco00IK>ohSjFN(gURt0wjI! -y02dFOy408%QKAOkhaTa`L#Vb&%Mq$Iy$G#?LUI7%sa3>O%f>^<)x!f!}C2~Tko0ZC1@stP9}7d9&ef)zQ!uDWDf -tv4M#f?YZ=r0qbB%nL8@b?bfBSn_s^Cg}bt9gxP?Nl!0>LZHj-F;_ulO0W9oJd4+&9eaOUMLJE>w{mM -}Q#w53Cu2k5RGzFWNE>l^@02HVYdQBIuEgzb$dY2(l42J!xf`F||O0e@P9@emB5o9nMqkR|?RDS&UW?l1TUJvRX-k3-O2c3g>a3bbPnxF+)j! -87E^2_EVqsH9_W%C17X-BenTS4kfXT$(1`T6bZWSe)zMjuI8Ermy!6@nAQwnRlM_rS|a9=NYr!=$Bk- -RU;pC)C)Lud$oVTDlPg0K$emF0k#F9=t4$lMOfy2IvK}Ad_S(kGnxvy2(p0C&HeKpe2r+N1$QF)3ui6 -<=zAj0Zs@U0R|yLxzb -SZ(^U!<#$BS5hPv)A>y)ol1No^`xfLV6&T-wn}eU862~yQahfuXoSWGV&pq&?r)QGAk{<;o7e%ORD8EO^^Zf*IIR$AU^be!zsz>wLQ`a|_|v>$My@iHnhx+|U=Z=b?A-u -pAlVmpwocumVc5<{l7)kxNMazL5;DG`V-RmI*RdJ%}c5R!#}4j#`Nr{6Dw=L(8u^O%sV8;AVEWbN)cq!ELuHao@=CLY6N-31=_@gdj>w*+Ud) -TOTs7{0Y$6=%L++|C)+Mr>G%QwGKddn?$P`JRadWKhy0#nyKAcuRj9&dYziiImyo1MGz=M{=+Hv4JM? -54G-WU@y -Wr>;et$KZ9wHj5)iyoU}PlIp;eU1Bw!=xgJl{Qxu|@P0165FDJ>yOb{lv9S1L?HmzKTK;`@2%d?d$gh5%%uvI=3A33w>^R -Pu2pmA$7C|3KSnR0n1N-wdF0dMF+|wYzi?;1XpSx``H3$t8I6Tl|?_)Xf+3hA%!(sUdg~Q04Cv0czf6 -B#(71XvZhg_n@|K4+F!;0LFecJ2~cYd1Ds($m>kqO7?bliSucHaDm(+2RJsp ->r?9xwtPn9@gDNibiE6SMcE-4420ykgc8&qEPxZo{T@Z6Onc_I3}h3dd|NfYg1%fJwJb_J>}Vq<|mMK -lR5dV@m0)#X7&-)!?MU0B84C_d&%Sz)~$4R|%_Bm4jJwYQb~7+_nt)Lq -$eU~yFb5$Uw@lzb@)lPys!Bbg==0Gq!qa-bmCo)v4@)C%asY>clsAmCKL(T%*Tt -TC5zRG5>Xbs#&D7j&jk`exr99hY$oIYzsd@q?!>=B-DE$L@(UlWVv?r?KKn%wM`MC1By&yp#aB>9Kylm7)uE?H-4{3Z2kcVmq?9=ZIp -l55UPnKlF}uI*G+bKBqFT&#&ohN58NI@)pbM6l7UvIBZSsmT)0*Fc5KAqSDG^Dpd}NkVPQ^NO*c46LK -VlM}}uz2U-nQd&Bt^?i@n<5={Mf4-NwS&+alT-)#04D)-he?o#)9a{TTxQMD>$g= -<{)sPEDt`Ju_vsV184#J}uA(nPY|AnffbVQFUh13eFj`4?!hVUzPu0N{G|xcL(4is6^QNk8Y_@INMM# -W_nV%8Ao~D7sw~+x#`VM2hHC@iJm#{MEx46lA#ARgBV<}JLJGwK89$1Z9$&^4SS35^rO*1X-F+wl4M$&MuF!@Ax9!<7s}AUQVf7d7oM%Zd3I-pc2^#^lP+PGlIq~VQ%nbvlqWEcE$`PdOb1cuAu!UwT$bTIY& -GtBv7n~mKg@CAC>e3=(ZC{j&c|x3YgzxdXYJm52@&PcA^Y*&75fX5uZT{;DgLIi1P@^x*MtLZYrXuHbbTQGi^0svz>_KKa -K=%XZ;namTAKLLR*h9?bDX>xkVh&O6G1CPmH}0YMSr+d`uy?CAs~#w5LZhGuGS*6`d*+KR6T*;Rx2}$+h;{pE=X?MPjL?^dtD{;N8=iYAPC#ZV+^LVPQKN{n?|2r-2#}g7rXGO -nNKPA+3>bS9HI$bvvA{fxf-Z|@TdEcUJdDhtpty|VBD1uVK#z|XA_tc{P%{ITu6b1`ibmB*`WvQ1P7i -lNNcLUnduvzAxvmhUxN&}$)xe?02&=~uy7Q6{!<9o@QCJ}vsUE!;~)+o-bwEA5#kaJUVsOq5(99=+4C -Rn>v>ABOqEAhedYufNsmJDQ>GTGwkmHUGeN+YqISD7br!@4C0aVs2$Ao@y=eislsOEFIfe-y_0%gBpjajFHsMi -BK+ggHrzzVv?PMZ|ySMGBPrE$n(7-Jt1Roun`2JGl{&fi3<&P)h>@6aWAK2ms(pnpR9nAze-b003bK0 -015U003}la4%nJZggdGZeeUMZe?_LZ*prdV_{=xWiD`ey;Z@Eq&5(}^A#m>2xJ-Ga%pLzWTTx;F4-u% -w^0ijCp{C ->w0eeKE015j6dk0M^k(LYKcHQs{KW|MaEjCAK@fSLymBT$bLE>cW -2JX0|R4VcF3 -%^21w-`f-4u>_qMQgQnRV=l+cmIc0gqwelD+3yn-$ytjO_BPZ8q)U!1%ARbR`jIOGCVHMgL@Jtu7w%l -Y5-$($VqxuZ-A38;}&-2E`X!roy37%3&*>+mz7DlE&}Bc|KZmjjfYR4KLj;7!f+~86uqQ7eC8u=lTvM -yRv(^K_yvNq(9!acRGlZ$Ph=K2LIAH}aR_({QiI+g-*Zd009lJY_3r{RzeG5tJ#?5lB}fox3uh~Q5SO -*Zhu}|310;OgRu1LZWWWPBZ=*@Uj;xS`q1_iInxW=uT^SYbX$4afrx3!*4T&ZLZB?_4L7kU~3(Fw48E -{9O^rw+B+)s(W;xlIIbkEGcgS&Xjyx!Jv>#bO9GmN#PYM`@vd6+!VF4LeFyF*(|9;v+@@1M@x4(_JcG -m#OUkiuW${81V|X)%z8aU`i3>c%Xc6#WisMnCB^df}S5n`j(v^GU-{^>m_CL14X`H%sGu3sN{=tx5NX -ACEP>gZuUGaf?m6SvwZ`#U8a#)$>L-@IwTwbC;>fsk2YGn~CdLd*59=y5oKW_=)&L+?Ng!LS}vz6!_- -hkO8+?ZBSJKho;PSWgRy0_&jc>a-@Tp57kbId!?j-6PF8(OBB)2rZ&_GcgX6<^&_bXgZquG@SkYSXLf -aUik^e(QGA^gJ%fJromfNP=+MZ*ae!46{{k+3UaFCWicOTb>mhy7kTSn95dTAGs2vt(eM;(ze*jQR0| -XQR000O8;7XcSqAMQg{RRL4&=&vzApigXaA|NaUukZ1WpZv|Y%gwQba!uZYcFJPcW!KNVPr0FdEHoTZ -`(Ey{;prasVE?Cs*nQvWWWWsG+lyrY0$VEupkgl21&vqEQ1ayn(%7gRH1{=3LAdRC-M-rt`9kNA6ch*quox$5gTVf*HHLj&r8(guFQxO~ -VTOaw4S|m9<`E5My@lq%XD?X9w0+yt#2pKfwLi(#9H)6|`70x0tIOm*(c>At?nOgVEj|-d@@_hlDno_ -vtu2`RVP+r^}Q`$`#9(Lgq?Sy;1O{%Sv9XH_eS2Q)yIXHCKhx2MTJcbH)E=sG+2V&gn+4twS3LfKhG5 -HM`eQgdk*+%p4jsNa+XjF3IzT)-2B_Q52PINpj5gTI)9VX5k(QK21G?VDp8Qx%z!#WdI2B^36 -udw1A{cZe~?AY8H%a3xWla4NL7lBu7cYfsY+}#;DD}bh_c<@AfU|c+A+8!@YkCf`q%F?P!fOnN|G;MC -vj$>nDk%M5S>Y=YtnBqs6890ot-3*z)~dfXNAmY)|KR?iqpW5$w)v3!j8yM#h$FsjFo^ao-CKhPq*v? -yJb}}A#Z%moSnb>*l%JI;yc2OyrW=4XUt>XJtEr({XhbC1?O@T$PGaGh9o~8k?+atqobn(TL&7#5RO} -DK3kG9C>qd~aWWlgJAIhZv4Q5jQtlYAD_YxNV5`F&D1nO2v8m3&8V3FY^vwq7i-N7ZwB6J3pP~)dAee -U~m1Bh>MJDdXkb|KH_-{SHAprkhcEUtMkBOZ?Om30Vh~afgjyv{y%OQS>BZm@8joCn1XQxnEOZ7TiP& -Kr}SqyxqdUMNOYclfAG8+Lox~Y2S4)}C|>YwRQN@!Dt&Y+rZZ{oBWzJd3UIDE|&3{tJ$4ueqx3I_94_ -N)D$*re8dS3xAi*RX!XeY4hYJR>#Md=3$$b<(>xae(#V@i=`!erKd%Ktx)2tQhmXR`>v22!=CFN-lv- -gxo@7q_@!fXccJUfOo2Pq|s<-0*b_078A@oCK#qWFBq8rFjygtJx~U?_u@kC!QkN;z$@Nqr9m6rgU>H -aL;eXb8Lj$l?X(LnuYhG6ayp-1cq)O$L8}U>dO?dDh@@?{u-J@vA!3kApxkdkdpU$k5FgVN{WF9d)uZ -ajX5bW(0syXrxFJ-VjUEOwHZ@qhU>YU@vVxggSwh^0S;vlU;z5ul9-qOw9%*BxI+pP#6?;m0t}q;buc -!Ug2C2d-aZ_Rsm#f#;A!DPIHw7NBY}_d(GhxW#Eo*QbP9ApKlw}H8>fqSzFwj15_JcrGY*qoB?pfC-N2zxc+il-YTsYDIKDbAXm#4jLXuP0YW*M5w}j9I-V -yuEbV!BoxsQ3Eo}Xg$Lo-%-HM*`pg!2VGIM;9XHs==*MVVqHxepW#r#b)F~vtiY;e8a(X>z<(T>vGKK -u3QqCUfzm8@$1d;l&i7Cs7Dwt}dV+ -(F@G3J$M<&PNu_(yoD1ZXTt+kT?+UAHfewZc{I_Gd3NFu`@CNf8`*j=%b%#kTv*-gNO1mb{jC4-N~e? -!#FZ1hr*yS4EjxX=&Q{VthB7tmDMb%=qw$uJa%$!Lu09&1Cp(ZP?VVfNMkr{GQEQWDak7xLrm{?W1DB -OSq8zpwdmNVKd;oCQF0cZ+y}83{Y{4$nX&&F*FpFlJ2m!XAoecaR-s=hc39w*vWfwC}i%HunU)J9YPF -hsrz+{7iMR{-1Hd&|;HhHSN#(NDtRL{Lq`{msz&3T(ZL)*NZ8mRu6h -o8;kD(gDm$-}aUPpQ{{T=+0|XQR000O8;7XcS^{UMQ*9ias)*S!12jI1+#NUqNUeR^F3^WFLL&#pTlU8eF$2(i98S2n1T9Y&No_Bc&$JV -*mG>8B!u8%W0a2M7HMp<2OSl2!i+g`M|zhe`M7+q1d~-yN^K-%w|c#iy}$bime0u@|KrdaV!4U3f+7z -bz9e!YD5-9EXbs8l3Z2$p1x)%B)gx&C>_I1+{V8$U^sS@Ukjp$_x1{k`nAa=2RxMI^I{AaGaMnAM -UO`+$ERqK7aUc^6C1^Rm5(EuB%cH^h=170vF=FXn4jO?(Ej$4S1>KrbRC!_J`P4>hLF~Dq>sF*sNt9( -Ujm)G>?^fh_%ofNILl+W&O!~^Agh_8t<+y-dx>&ikRY10!dz}L^r%?HGE@TOVV9iKIqwOmKI!V_Cf`Q -S5K*+1kRT;20t}00AnU{Hc^=&hJVSx*NDMK`(&M3dhX2G;`gKI84b`Nx1woP$vE@F#;VO%taej=JHfU -Rvdc&}`+WO8o)P=qPHNVIN^%RL0DiG9|E#H4RTc-9izeNX6!ep%=k$@pks$02E=#QPF6|Nf+UkahvTC -5j+Z19KlbGwA=@xYLCU7NKSv9PWar9CGNCtRB*|Z`NLh$dSY<3J023qC@@CC($5c -WRebH+7$&P`nL=O^|Sj8=kY3km}w6ZWC*+s=fi6e82;_O61zNFRAJv=9#w{pK6s;AIA|QGi->%LK84@ -2_uIt*WL8F8H$?R5FV -BS(^ZrjY-(!PQqJ|LloKbB7x3_suZpvc2L^DVCBa6(R2_#38hySPUo&xMz9(prF#v9AO -MB&%h(VkDa;(UTCrcx&IXRfiSAr5A8qU6qw~pGM}hF&9Z4%hxdlL2VGziw*gCNeE=^4=-V;f1KOeDD1 -+FHBeK?{7Xe(3Rh|pI#mWCV1lBWL}Ou5G`=YB*&d&x-}nX_PXXoL<3Qe??|cVg(%Ft|u@FfFL=G%iZe -og$dK)b`1GalQqE#==e+U~@3`E!~OqA%XP;B15nK1sGRD$`5@RH8oYF=}bW+<#4iy27j!oN^5WV7n$}!(lid;1qEbX;)VDB_-s;U^MvO^ot5|k+ftPB -Ps2g -hk>kj)3J#ktXobw3I$U{qUU8VL}H!mUAesNfW~y5ZZsog(;i0o8?50k$P6$`q;&`imstgei3`QkhEtc -UTP;=Wfu$5yk3iVO|#O>gFv?1)~MrX6&taq=@j+MckRV=LeiM9X+Z=8Im>%XrwIm-Rz&U>ai>;o^|lI -=T9L%9%G}|oDEm72J{eUzzUXiP<>ILt3TQqa1Z4 -kxuu4;=6i}-i&=bxT{^Ci1%m4cz_bS{X;R(&b9WRlPH>yll8pH8RYXmty{cIa8A+v2z)C=Dh8UF^Nup -z81IVw{Fs7wdH7$9Le&bd{&aUkN%$>kj?ha7WBOVF&dcEtMuFc3PR!oq?&+0E(CY>uCg2R$4XfSkHdv -y&YGg)aB0&Y*|>QnWyr0Se?{FsO`1ca&a2=@S~E=>w5St2V|Pc4!!XAXn|J*ut@hJgVEt6SdI{hOmvK -sKs3c(3|Us#QhhQ -PHOId+))bAU5*LWZ;Gpt>*`tKs1SW|XrQ_60Nhph1;@%EAST_Gz4hz&$as=M&ByjYD9a56I}I!=9P2E -=E!&L)-oQ(4EH#34@!EQ}-Y7B(v3Fb9Cx~EH+z~H;z%=;=?0%T}y@imMboYVd^EPF{ -j&w+cecEt1_u3=ak}iAK=1krwM0k5pb_eb5B6X@i&6S2FFc%@ia~N&6rnulO7%?bJYXxZajf&H%K6uU -6pML4=7od^3IaaRzBGG>@{sPH=JGnoxyPG#ROF)}u;=+Y)_h4qE4OB}?3+%D3OZbB7D*XH9(5)FP -j>(?K`+tTRj2-%5?~=b8j`np2UNL6*%BPbh7kzsd|YTeecMx;UN5k47pTLYk2ck@S4U$heRL-FMNlW2 -^h1X3{F>)1%IU!zlIB4NIZ)v`s?9r-mEE6r0zcQFHHOw?y>}VyCVpkTGsU89?mUB#d>+}-S-$w$D_&` -9+AozuwI-mJu<}huMvAdXvYaNv~~o)aCrL4V6{629~y5=M)2OB9G%$@px%88VkG-*MFo32BvA^ynYe0 -tRk-ki$pj{1EZv32Vp6TiOrkknWk=zF@;7p5F!zNoC1_1V*c}B&$^8cY1dTv<@=M%-b8vNfcbTO -Kksr~qltf|%@11Ro|!3_%;6N9&h@m259aJrlt>OOOPbgglUF2|2vOp)i4Xm;GbP#_jzI`nI4+n;) -*M}2#I4p`#(@i0|XQR000O8;7XcS0;o_IViy1a3P=C|AOHXWaA|NaUukZ1WpZv|Y%gwQba!uZYcF$Ub -8~5LZZ2?n?L2F9+c=Wn^((M+T}7IaX*)BinQ@h_%Hud$?KrV3c4q3z=VBldk}#%7Er1Iady8(~@ -N#${MyPwWmt4Me>8jXIVF+mVq%i=~TCG(8&EMclHioC33wqkLfh$(z#6_*({@HAzGEDlv6V!4#@C==B --FCSPb{#grE;n<~I)g`YixP@5rN12!5CT=Yf2usQ-_v}x0#x -kJjogT8SBPe8-h3-kUM=%-V}GkPuGjpk7e$%J&MIoxe67ngm5Z?8r4qJn%S)tz8ZFCw!(dG$i0K=T82 -sJ-*Y!no{`ZUX-{x;$PpRoF+vzVaWnAfRuSF(+K6$BsUP@&;-tYop>K|7HQjn+m*A0?4i-rDmTNkPM` -aXkE)6rz4v4XP+qeqb?d1+BIC!?ljQ$O@ZhB1%V0#CWjQ#xNv9 -P!{sbi&tmwFK?sktE@Xmr5lMxa&72u7T53J$+>R^hA+PKY;D&tsq*P%>kAmhRv~pyr50I -J7=#tkA$S0M=YZRjT$6U%{!xb~Jv+Q`kRzBULkcQOh)m;NT-19>Mn0Jf1RAOy<{qKrpT05Cl=>5um*W -CA{=?)hX!`f`c@(WWBjWAs0{8sO=x(N95rR&-h9-S_c{Ujcyu^MyRu)Z)TNu2#j?}ZR04)_(nt#Xs{b -%;j2=@5Ex5Z?hXWP%IL#t#5>Y?cd%FLxWB(2(V4HZycAYTvyw|C61H87jMWNT4i7|H#y3KovUODzr$! -FT#&GBq9a8~BE&h{aIn$@8DWWBlLI&qLj(rzb}z&%0efMPZkF3qoW%4uGRT$`!Z{TfS3fBcYiDeLjl% -EN|CB2?jcuIa-H3@>23e3M#h%y^Ae$x@DcwiPu>IJcfhvS^<#rIa>5eY*fhDD=>%x)I$RVcn2u#3dgYA-~fLWc~Pglv};Zoj7| -l|GX}K-190u(Jp%~=xg;d=NW&SXkySY|*P~2?-j=}^@k1QI4NLPaP-l??l@LEopQ_|b@Zxa#_3nC3o2 -vmUNs#jgzGG73WLL}binM7d)@bP-1>%Fm-JtL-c>J&`aSb4^%Wpd -hz2gzl_f3(Z$=}=kKoGzPWgN8~uLvZhrRb<;4vM&)Bfh*is%J}a)0WL;{Yz}8o;<3;)hSRiJR~`00pNA -fV1NMhtNuE7xSsRS}I!}-<(Cd4^xyZ1bRn?A-MYsx$!jy_b(|9s5kQO552&5}G;DQ4Wx$_%xO$p9RZFsgDqb4Q$twM7Ov?JTRkGbqoz@EwoELB$Na -{!|ZF0drWFKLq6|*i#{e;gF994aYDD9!L5t(J -eVVqjiye>>`)#Nb>J~eCJaGntWljaMClMCcYx=0)EZzm>Pjev}Og?Gv02Bpo_pZCn{hfvk8=ryXTpN@ -dDElVa%_G6~ZjYdVLinn+LB;Kyg+USR8nPnG!9u{&VZR-i7DLQaraglO0xa7b3?Tw4boh7_DJ=_Z%~N -OHeQWpH?oNNW|0Xg8VG#bA%WUkeg{(Jznvh65p*-{!YFGI-g8rj>mS9wJoKOk&y2i-*-+#z+kp3Qz{f -qFjd{10sM}a(-mD+;N8V6vh>Zf4RBC;t17~d=s&Yn)$)7{DawAcTaEXL+M90dknWfI&^2lh4bVN6E-ZxlWK-y;cNT^tEJ -9h!m3`!ZH=?l|6;YnRTnLQE`#U)+h_argj;A$5On-yFIg`elYoc)68XFd>((8L{DJTX)CzUB&Ax)!HA -JaCPHbpg~}*>Tj_jr(its*9n!VOd06$u#k*jgwcX)Mu@fHH`==Y0vH}k8vdK&DrE-G*n70D0`-IJjiPe -ST(1Pv(D%nl|ECv_ki7as$-E(M&S9EL#=xZ*hR499gNs2Vztj$CwgXR#E6{x(X -a+>^2Ji>A-KB+z5a+I}Ts$Q6oBo2f>3$9*y3SgmeWv35$`d_N>wS?-Nz3p;;d -m&-BQX@Wu1+gpGe$#6QPBK3^=@^W*0yhsQ4tkAIo`clPYVz+{L%#1n*>amD@wAUXh%Ns1NI(*6=W_}a*7}z2+7zho>B~h@`&6AvF{3lj!NefOLG(A1S -}Y6J!JV-nYb8dEd&Jub=JmR5GT+wHhjj&KTR3L+8T_^;yjDf8lz@lYy~03w6wx -qTBa37w@98*BD;W*OzCvXRVTHXMaY$G=m7Q=GVv#_JWTzwh5Z<@6dYOe>&>58T%=@KflV8H~_M`aZ~h@F}t4UNNqA!VF`__9k(u)Vr5cM)UfhQo -*^MxGEuCM`w~G%Q71+KoOWO=%KlR1V)|*^p+!J_K1rdR>ECbc2uf+W!LMVBX3rX2-CUGqPIp<*;sZIbiklLI)@;}; -H%DzF^YGVQCDiT>TunO=KttH138;h$ugwH4xB;EVR~;)eK!zWWf9wx2CVEC8@)%H?gf^!?Fqm& -)WQ*x|8GLl0d^%+x0Rl*?$Vin3b+!CCm^h^BS;I}9$fX1#%-l<5BkmxvAqJw0%LLASF2??;ZnD+IT@zu&ds3Eo)FhOP(uuExh+3;qS?8n44!Kmc5E7t -MZf^o?5ZX1e$;w%@zq(3%Jb0tWe^hDj@iYhTJc -8?m>Nn^&SGD#cw7KI!rtBIrb9?NLpH}XklO^T0xp>XgdA@Ta~0Uh#KPx8-DOQ8vp}O(|X&k9Wu1TWEeT{b=YKowd3jnW7V)h+Jc|78=@ZP4s+ke+Dm&t4zC}Zo(+FOx$ -3ko(mZ}>%yYl&!Pzpd9u4n1aIR9FlorKqT^bC!S0oTEd_P!jCkN9$z)4pIEjfE6>*h%B@Dlsp!@(in% -=zwX7emRJ`Pc6xg3jpE@9+rNcD3G^Qx-DbqYtLN0utk>dCFv<^yLcx2WAWbwpYw9rhQyU^MR`sX~*ny -oO;?RCuw`ZT{)#I^)I@4|11A)zswruaW{aN5;stJ(hUATHQ3CwKT9jm@MF@W)zD$=C-?u;4r$jG`;D7 -oCevW()DIj$t64q$4Q8OD%rt4vp~GoFz?=;hP3izY$^G0syf^adxnKHzgq|f5N&MH>{ -xIjD9#lxc|#6mAwnZzf+7PH{E^cvZp2+AvUrtHl$1#l{sK9-OGBK4^_lXIJj8f^pSRC9Sewm2kb34Xs -Y0`&V%qurwzf!kky**BcnhkaKKfHxe~hKKs;JkLPIHXV5CJVs0=g(7guQj2y=n6hzCQDV?qRODPrndO -dX9Q9v&~!`Q6>S_@7l361}12YS)qBoqNt=AZxw>L+SuqL+@4 -?tgT3fT^ZFubi0%vtQ>&w=~%SND{vlljSFTK?Q}{*amww!86t7!CpaF1FayKx+1Fst#w7%Do6eXi&55KHxlG^%EoQ^F7#G~juln$rX675fV -FsF+yH)hi2*v6+Q2VlN)1Bga0t)fxKVXFg&o=xo*woDr{n^itF -?4wP-{DoOldt?J4Ci&0u0=wE*wMJn8H5x{@tY`nRGK^rvj&$ChekMH=|=(QUq0v*67AeIFbC}R@KRd)TAL#WWr(49zzZ-c=eGHYAf8Hp8Er3P3 -!Fli*Y0E7f|SrSvtjlp*2{LucfGlXx{H)LEb;WR8uYIK -ekT>C-zGGZ0MJrCc`8IMjkD#8bNBd$eCu8whycyJ^6N3Rb?(pcZ{Y0vgB&+(=6v6G8?Q0Ppw)G$2AJ^ -QznjmcEPKTMf{aY}(d8Q`(Us6v>}VP(V^cH?YJ!ph?(oUp;d*ozyeHNd8F4jM2%`!@_ht~B835oqwj4k=2((dm&2b|#Xr3*BzwENj!By3JI0PKnFRCeWyqqOm0%FNmCu7;l|W^$s5gs9cQR -dereVUup$}S_YUsMnA?_5>1JZ_|Ma^7jaujmbQG)RR6NI9H|m -=TxQ5zISMVe>_%74|&9?-}0QUGB#G86g*2i^gdslEr|_B9bjd-@fvh{38zwP_%boF`2dKtF}Wn{N6t -#;Pxig>yZtv5eY>PNqTc+V*Nq;xn^eFVs9c9qMY{ObvA+OfT`@QUb5!EJF5@4E|9<*vBnR?}nq>?uA@ -0$x)Aq*|qmyQvU;=X-_U(=Zb?OGK2b3~{5TuURI3ZZc>U;h4iJlxHM)VXaWaD`#!YRALW}V -Are1+LTH;kkQIrwNuQ!Cs{f4qYATf$P;Oa%PuTaGtNgQ>XGPn+FR$S@lGx5!WG&F&T8wT -Q)WgMz5M)&Bh+2u6gdB$KPgM*!szRrwxXIhUi;zbo*si3;)8sS8;-W_<|nYe*2U@1SMs@jvb+-5{AyD -JpS2t{T&FVdF;@`pKD54e#as;s%9CgC~Tf2Vd4)oR|Qg`V{B&DV)P(MH<>lj_Z)zw^C!C2jTpn6wvn3 -VrKJjcli_^&1{MDt`V98tkvU^RdRsT1IH&72?*-wEH7DL1I#9-me+?hFjr}-NQ|J$&>D(nTqTtZhRfz -UKzt9H;1UCOU2z*=%0f^K&3i~d5h{(i>#ve4}zOb#1t8uPR*Vox(wz~S-tk^$R*Yr3-m=9E*x&mp24; -@W+nB#)`e$&^AF{Sr(PHvS~mB<*z9aG$G=CQWfwNCTYW$E6*Xh6QEHYq2y&g(R>H~ARydb8a2(SDpNl -PxQ9dVp<^6Rn{@xi;(Th24Z2CMl6hJSH_ED_y##8Poa``lNXouPHxAlhz$@U6hHSTmd30O%%zr5lGdV6WiR%I8+{4hyRI9kk} ->0LNMe3YzG5X)+WOTinelcd^V4%@UrJS=0?>*&t}y-Ez2NLr>saz?!V*mlIo;df{{c`-0|XQR000O8; -7XcSw6z-t!36*S=??$^9smFUaA|NaUukZ1WpZv|Y%gwQba!uZYcF+lX>4;YaCxOyZExE)5dQ98ad1B* -25iGknkF%t0bPh7L7zrDY{yarf@8>oL4XldH^NTZ_ -yr>P#e4{2XF#CEZslZqaU(USFy#!;o*TwPpw};C_V=t0Ykyh8n6g#mpKISp+xt_kX|&MTFYG1~r1xaw -*9|vIP-E7(uWl6<3OmBDk|f99xhXETwgt=+Dtnc=Gz_)zP_l{W1tnPhXxM&5qCU)!FRq^f(TVj?bg$E -Sw!r2QNs|p9qCPcpEbQ$#oX0h)~TzMg&UQEukS40fvHKtHK2l#-d2*!75TBoOJ0;uF)6*s>^tpDS0dn -1RBNKFjxT(LQ5p&Du#{N8d4EqP8nepDub2UfTbuI)DNhEghQ3Za#?7M2sTXMPNmf~1xh9fWXj4ANlaK -L8_NVqGCQzjuYx6m#NUt-a1nR135o}7q(q`JEN|_K9stvv&{8ffMWv3?_aPy*6oF{ljuF{#NS;J7=B# -s6#E$hjEWgOStd>1c6uVwx5!u$RoEnM-nW{avVokSANEq}%12sU*dU)%9foe@Gh0Mn8*q|*n;ImMF-t -z0NU@Vu0RaIqC_NmfYM_qteDxrQjpi*3^+=rfoFp()WhxJh-Rhr-lgHwPTm1A5aUKxo+3JpgC@Ut{r5 -|IE%g+s>YLX -l^XVxeS~-96Q`IHyC&fSQiJqYL;YVICSUak~A_S6NkS1ac0eF}VAMp$4EGPeH!e!*vF(gKOIK(Y52)wY2~KHq& -9*|DE!G0e3luQY3!1mGMkuaNP6@A37b(Au8XdT5Kpql!&yOzQ)mU=e(voz6mI=ZdYCWBB=JeY-fXh#P -;Mjg5p-9bK{kVw_^(ID&g_-i^Z4N7k1pS;WlpIY_PKiGQ(k0aZj?g$ZKQ6OCaN2LrP@qS7x}vaBYgTC -s?`De#LK~fX(>xdP(*1(#mQRII%1@qg&J}3=8d-6ZQm4?nd;*>>)2D7a05P+Y|L%(ClG?8_}kM^Pb%I -(!!oN?9#+7L? -*XDDjt?VfC(ymAvZoJ15>rGgxHKiM{Y!^B>(%Uo$pQnjV631Uc7Rub8c_`ZqN47X9Y9kvqb7owYjelv -Q$@YWKu2@2ci3N(O;h($tsmO4o!B|`;&(#i>TxJ -mP*H~#`qO9KQH000080N_fRRxPi4U%CPS0RIL603QGV0B~t=FJEbHbY*gGVQepMWpsCMa%(SmZESLIV -=i!ceU;yD(=ZUn-}6^kmL{cAX5K56muX`Nm@1J65JH}tTw8-<2iw_NA^vyH&hMtshb=kZeSQ9XuP&wZ -R4H2*O72*0g?6>Ep2(_JP=WTsOQRD?X_8>QTEv$n+)+#d8M1^E;O-1~<#v;-sjk#5{@h -0XSJZf^hCQv24*1?!?hr`hki~v}hIK;l6ZK|??-lr?aXvrSkP-d~Q5}U+Viyh_aDpY9o+~?m{}^K_=U -P<2`6@}0LJ8+W?_Z+);8Z%>ZgghxHqmbGCK-{bsP2xidd%}^O^ -qi+L5aN;-}YvR1kNawP8zZ3}X*xxfkv6 -mIJd2)9|Bm&D`-&lrZY_!GW3spBvAu`}L5(_xz+ClVa;u)*W)S -XFx*&>MZB{ow7mML9lo9_QI0V#s0Ho0wJzPOsVdvVpIegE^cc$Cg{JX!a2ad6*Q-DXC*yq6j@nH8_2Z -hP1Mm_IF?cK%-E4?g)TGFPEdA=nOH@I=+^(Yk(ya0Xpt+;V?iE+9YYZ39nl(5WP -IC%wh@)uA`0|XQR000O8;7XcS000000ssI200000Bme*aaA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFJE7 -2ZfSI1UoLQY0{~D<0|XQR000O8;7XcSt$^~&E(QPq0u%rMApigXaA|NaUukZ1WpZv|Y%gzcWpZJ3X>V -?GFJowBV{0yOd7W3=ZreBzeb-kI4vNZvst@qO`_gQIVtZLMMPIUpKueTOSQ51)mDF4G-*<*0DN?eNYy -%{*NzTmS%$W;UtJOE!@QP|KIwERPv7U7m>q^cPe(z~{q6emu)oPU_yzPb5q!EV$?+!^VMN9O#htI@ry -`@b<_YKR)EiZLOK5zwpKhc&|UxyyoKlf;hHW|5Nuw_=0QB}|Tym$cnLgu4k(40&5&%h;XS*MjV^JQ9l -N_5b?@iL!;Y~il|vI^m3q@LntV7jPSO@~Gotb5>6bkB+Ad#ad|zYTDFV^YDtOR|6pe;rCE{eJu!IyAxfGD)^B&^bW-VAj&Yc&a -GYNs^QeRf_yIGUOJZfwR*o)ay+`;OAk4w7G~A4}_H47{c5KXm()ehTI(i>ydVqN~}E~4**1x-OmFXBi -bb&xl%~c?MSx8`N-N^(bWxTeM;cMO=eo0O~iK%rn#v-w~GuvD;1nY$s;RIUzh>{dB}nNjLcL|wycZ1) -Z|+bnzUjJfT5(6jA~ZcnouYpE)vaAidE^Fy!rituDuY=ZlnX$5wH%VfMlkmf!mm}6K7ec1#C_la;!cm -9he5tKYosjQb5IN@fz=FqnKHQOoH!Maw}b%Gmx~#G8n}3Ifqo4E)ylVN*e*Cq7Yqk-Wn?zQ77JS)3xO -}{$Or^RTRv9c^PYqJEG-zIzOjBrX0woMu9;S?t-aEGH}K{+Sq~kEE|oY2S?FR*`$hnFIlfi`uXk;DTT -}kbcBJK&uc;zVKLqtax1#m8puG^kwDiNI-o^`MW28__fni#M|`D4WE>nT=@cTNpjc0nOxU9+u*LIKW8E7gk76LU=6Aj%7k}JH{ -$V{l8)cgRMotuK}~yUM5_!lF+d=dv+6?ptN3hba}f6v^BIfhQ{6Kjtd5nv9EhgH*yco{x-H+m~tNkdrcI4i&+=mi$~RrC-rI&{S7nmlTFkrrD&7L!Se&D& -T_X1VC;#Pw_CToj#wJ)^c0dKQ$}wsSG7!i1V>LL4oXCzuX^ji?gYzEl(`n}l-q0JQ~rNcv;NzH3QW8( -`kg^(9lI_;uATwmGe;G#xnzmexyU%h=3(r;kjs*O(KIIMGR4Kj9{eitB3Y!sFl>yte9D$!iWbM-UWxO -X{m}FTpBgpkiu^{$4NdI_GhCSFdNhbjaf63eg_$Al$-aAp~Y00&g39zeQ3dF&>C7b`P=B -R5KzT|!-FL1YQEHt1iaG}Ch+kU1-8mTN>m35G@Cc2j1*WIo}a+1ZhQIZ0f);5e6eTKdC*xX-VP0_wX5 -baScp3CXcj`Tk-8zDVHhIV%v~9WdzQL6zj0pE-u!PCI^@{n5t@M;{NUd02+gkoB7050mM(!`LS(srNXZTA&5<#ZDjRS(o_T95YDmb2G=Y>vHzy4kf6Wt=sz!NqTdaNutHK|^armbq#cJ -nk)l1L{tI@`vnK>RA4k#`-VI~-k1-pETn^_)ky!hdsI?Yq{vnnE$_%bfstQ#o~rjZxC3jX&f|MW8Kd+89yuNmBGWH9j90n@ta8FEi*fy_EbT2@3(L*Ml(L} -nC*+VE#QM4CYlK%iuO9KQH000080N_fRR^~jS+%*aS09Ymf03rYY0B~t=FJEbHbY*gGVQepNaAk5~bZ -KvHb1!CcWo3G0E^v9x8ryE$IQHFN!BJ2|!pg$TV6YDcJXma}T@>hKinh~v$OZx}(TS$As3qwnZjgW9b -9j+RS(4rDF0ew8+SK9Ux!>q&*K(mq!Rwk8s^X1YRA#B>x3^Vu>%MZi*b2TQ>d?X}v8yk6qiEGIk&<7k -LZ##%48BmsVd0H}Pn(*hK|4$Kq63)vB!dGin^2jPRo~kx1&u7j5Jcwx~2&5N(e5-Q0$nZB~` -RXAlWa#x2QII+?bMErgGNYSAsV?)~GQgg8eHifC?q{1<0_YCSDMDDnmyOP&sbSSy?G9;qlisC?;JbQw -M3ds%D)ofBW^-m>o3I?snV&fmgh-f~`4NT+W;Nup%4IYk2vZ*3!P+OC}~?wp888(@gVmxoTI -vGwKrnB2Ga4WchRNmG~w#2kXB#E8ldqg#)?h$_Dba;9pqtzLyrFeR^K#T_rFh;rqa_W6gAuRbV-}#mv -gQ^qfH&Erh~d_aD>lHFCB_KHNel?sfOcyiD}pEf<UM(8QEEeuGVLn}8{?m(gRiznvL_G^5K -q=Aqk}fK*Ql!5vmS*n*K6(FE`n)eM`^;U5htAIn`MXOf~Y%2xQ$Qhj)JrC=2D^DiQ0>Xm2i;aK%5Iz9 -(x`ddB^v4Nl;{D!wB0|3TzI(7hnwx;wO@TXGtK<9tft1qTKCkRe|Su*gRS#!8jsQA~|_rq+x&+==sc8 -OO$|sO!$^OAmMjZ!qIS&J=~{`8{PncVGltF{G+#E)JR&TE+vt;TQ7BcEw0>(XoWe&xqxIUPP|iwG*!i -&A)Zj5Bg?i&6DZC@b6ee`F%Vi5dvGj99;j$^Ufd24(Y9q2!laWRQPqyg%(qG%g#)(>!i1NbGl*jp5S0 -KK*MYU7;X7P8dLYt2YESq)Q~s&MPteytu5M0-8V0r0`50> -moB{cyKO(EmhiE+$p%6=M3X;jHem*Lh;(iXo6_soEVH$j#(0Q56v4HR9$?uzuOzt;v6r~zr;-vUrWNp -e&T^d5NGpxpDc-0+BR$&`5OIY*)>Q&t!dwH^}1$4J{{X*VA4OCDFKqQ*SrYjz#v#6nnFeMaJL=U=-vr -=D?7pKBxkmKh;{e1hi_M-QnEh$L55R}LTyS-h%(@i_W4i5`QtU-T&{}w;edtQ|%qy+F#uGtDKnFjtAE -6>Bi9m}%eEFun!>10?R!)haa*pAIIe?b^TMChnHQ|UUc6oYPMOIf>i0vB{=eTi;!GSu?47L1mMd6zT} -)s?f?fi!OBxxmL-j#cC7k_?~d{it^prV*Cl8L8%J-heu6W_HBL3xPrlgn33yfzMZXntQ%261pdl_USG -2Wx(lVh|iR&Gi-U9a?n|PL*_MA35X*O`{@ZUx=Bu#R``^xCg&kME4ZF12Cs?y15BOJ4d1J -|K|;KncHB-`lR6OK4-_TW!Z_9w5JSaJcSLX0B;Lvb?VT%LxE-9f8)K|Vr8+Cm@BA27EEQq+oqOa|m`4 -mdQmgT__VPo#V^Gjjz^Nnm~1J+1c)M4Xb(?69usZc|e7xFV0*o-#O_i8%2zfFltPLpGjF^lUI-bKIXi -uQBt|94OyWh2va3n6>kCJtbQm&A0WO5x%av(V*J^xe~v+dAyr-RZ^ec6fE|kQ#Ytj{K*}TxyUwp(uf3 -o&=ftd*H8Y|=V&nxeFSb9)dNghb?3Ttnc*=QN*fxZ$ejF=@7ld`Q$kIJQ7XYGkan}_L>mRxe|CyBHdxrsg!KF;4%cyNsys1I0_g1&61q^+Sh|6?MagA`aVu-U777qY>=x)o;{Wj^ro?*E$X&vH(Onz7XF -IOg6<4qMzA5$XO4=`eg6hgG!X|?dKI9w7)DT>OK=_7t2yO+97Ox%Rj*M=&>hFW}j^pp%#6WayO%H%@& -g}byV#8X=Hv2(PyS(D$)5{N_Vqi!sx|<&Ry+8z2JE$M3cX1g;AxlcQ=-BC3lc9TrwPJF`!BuhLd^^T5DK}BKH{SG@O# -a&y8Hnjoz4f{pULWAIka3iR$@CgUS=z?7`}3*yxe0t|ra!ZJD)FYxhQDy*1JXna)3o?>qT*&JP%8!Id(B^4Q{hdXFHArfGX1-(DsZw2EM0 -Kv#A4-$$|J@!DX_UNFEILSnik2U>^F}hyrNlU0V!CEdW#l@jdl%PXR&LHc|d(XV*^u%ES`rUWrOj=xY -=&#X_sta4AVd(=&xl(!F6D3)_?TOH1F)Zs+pX$L%cr$&>!K(Wyh<`DyX~cpmOvHG8W|M~gg-7t>j44b -we9^m1KEaFDV7c?Ub;rWsG|Pa#gfkzFUjL>AyJPB(mz^y8lC7wvNlFtXWOSsFXmupbVLj)U{o~iqflX -tCAFpeB;T*T#-tOzL?d^Zx;Rx$jhCN~b=C~icK!A6z-jTol@IC2&G$TnXn1rKKQx~hFjYf%Q{mdlpp+ -<{?Y5om`2)SOn_$)>)(?g=>Q|T}$fpx?IQK`{f_iLWs^}B{);dv|=6F4jyXxMZ0^f;sUO(wATBfEi3+ -h_?X7(PEoLyDt+HnxSvJLfp?jfDJ#pj%^fO>XcTLNEReP)h>@6aWAK2ms(pnpOx>3gd7b001y-001KZ -003}la4%nJZggdGZeeUMZ*XODVRUJ4ZgVeia%FH~a%C=XdEGs0kK4AE-{)7b9t4rG9%bA6!0udli?m5 -@0wigWPTB>Ez?E%!Mjctw73FcOgQWP9J!#Mdc8z=6u|*z|=l!BOnM~evvMoBPL?PCt>br8e>&v -DVo2C3jE=0GMSv6or|j*3D2sk*_ZXTST)Qs8>4{-SAdg`%22D=H<=&dP1ubiJsW>uXrVeBG8?*&kY|%nyzIOWnYxtFuklYy}L#o -#`h}0RBw8=w(+dD>)M{;fyo!gI@5Ar?h38FYaW$Zo0fJR<{K%n-@v<5F7we)gUeqgC7d8lIc`GvT{JNf*5{aV`6W8R -bzn39eboN&z7e(TiPI8Mu$T)lGRPU(}oC$h@koZ_SLC@b{6S`x_}O^q=udYH-cC&)3bqu9{*!91|$~M -E@wenHc^)2Bs>0KPiz -%@R3@|GDTpApgJ&#AH|eTM7zDC;s0^Yan)SkIOD85Qp%K8(G1w0ts}Uqh65fvL{s)Jw#L?H;iD3SGxi -EkamUV^lc_UfEB1T{yIKcD_k=hC8X{b@ay=LZK+n_c~n~!heccTT4CUxKnTs5ZpyV}YU8(38RX)rL7K -Xw=j-LR#X)AxEBJ18*!Z+vjmp3|8~;GNO3k`kSscQjXJ?2R;F`IyNja#1m-JhFn)lYE)xvI*zlP2(qm5^z`E?x*JAG6QZ=lIFU7KHG?G_05)R7)*0NRR*;HKoSES!AY0AX92 -B$oO96bY^QY;njyr)A0uI_F4GWdH+AogW{<0B!bf71xwShP~Ek?k*K^mAq>4d|PNxSB;6va_a|XyCZi -!MdYnATzw6xeQo{BsarBh07@n5rYGnja4jd9+1pHjoX(BFGIaQ3>TGvz|H4DBDp*iF1F7PTlRyB;%YL!Ql&m -&0fqFro8QcQ&2^Q$pU0SE?7kKtQKmdMldXBRJ1^6%fpxk(n@PPhIJKGyJA3VzZ8cdX;pECqK{pH`^+u -2}R?*YsGs;Q4Oy6O9ta7O?f`ZId8iM@1;t^WjdU4R-`439VHR;ip3tmB74gvfy)R)5ZY)tP~ET+b&={ -|UG_RkH*sJuJ3G4SHrhzv_0HrOw5R4eA8rKae(7LbY;LZb~rk_>H`MSXC5NCyVvL4hP>Ao^|qDW>0>) -7@jUPg)Msmbv&Ef~DD=M!Y-oAk8%LfN%9WBM^rr$p-61Mh4rl0e{%@`0R8pD%n3&12+2xaNBQ -NL~Fe6ECg%j>GK)#lAKIk3DJz=@iG6FGq#HB0#!3Dli39|aw{Dc7hXaLP=8qv3h3{{T`V6ul4%i=I#6X+F9QFl2im9gt6fT~kP7u{;1R4 -|+b1#UzE@D*=RsFM&_qy?uGH1Se^Y8!BqeVEmJw548RVSXIFer0g$Lv+Gv+AmG(N=&+RT0=XesD3|w= -$s;0(Y!|p6qvpqVK~7jC-$D5^tdxC1*RCjm6^Q*%Ydp7%r}-QhgC<~>t&7^!<;xaR}=6H|1(DH+xFJH67rh=t|Iiv?&qfOQs|Q1*Y#1O&Y_RiEChL6Mmvsh| -Zrfd`fZ;!5aKNFl)-cojLSLdWpmFiGfK^y1ptpr)D+z0o-b!E@{B2(Ke)(Q=8jZqd;m4hs}M1G_FPGo --zfM0G`{hNT3i0$i9PTK9!X*^D#@Nf91H>ed29ucx1Q7s3(3aIFW>|1Ae6-hHRQ4L@wl=tbt+RA5C2y -T)ENUGz>*b`2edkJYa5Kh?Fh3-5u~0#77cS1FI6pb7oOc62}t6r6E0ucxFR-3;vO_-Wr&OehfSdhhHd -U*P(X8Odj>KSx;GIH>Q^O>AvXd1w@jRzSwG+=g1koXYhwZy@h(us;%$I_i$IH$hp<&&B}9$iJ>U?T{R -uLk%Hvy0o0JFKP|9yzCY -MNubQO*HzGzef8JtyM5v3zn7^2r0jnOGKVta9;IUN{n+Pi9Gw-ofG_Q}34sb7rK|NAM96+xhOzut@H;drq1BPSh)QuuI#~9f_)|rlw)YJ;;yrKPFh@nUDy65I)ZCi$)2i-TX6h}UV>FBHW0!Hn=sG)-Fo(H?n#%s^ -A}3HAy#^f)A?ANkB2)oVA$@kIjAp?qSJF3j@Az)@l@XdDI=RM2KGJ%H{@7{K;_NIlh1=WC#Qjke!;{+>v(|?(=4^ewr=^12L!@e7$!PJoXTfD)RNEMs$5t|e#MKJ>J4bn -=~D02L5trsQO^T=?OjICtYC5`NSL_`ta5TwPoh!1%tuvIV6D{0T?It*j(vW6<;ReIM}Ex~-95phf0Z0 -W-S=n>U&|j#ZRich>yAsVeLcxYwGxSc_pg6_i|kw7~?>4k@ii%>V$V0X$4{)`l`^cST7RNs;w8rE)-V -pl#ey%Id7D9rAJMEuw3;)nOV^10NPO?_|}$X$kw0H(4su81+hK{z&5XY3x@zu%cXy55b!n6Tk-+&CYG -QDVv6y9y?D+v3~=5HxZP$5+8?2pQe*D7hRd=g_%2fD!!VZmdZrQ=9Ca87xUwKCpJls4vBqI!YJw+O6^ -&KuwF#;jwFx(=@7^hFDG&%H6&}b1FMA3@ze|Las_VmXjK|RerzzR*lKE5a?JGu)$^3r(~?A9LbK7THm -PPkbp`eeq{*92>05A1lw{>+6I5<)EFV*NLGFRq_!+Ha{je9c1r@zM-SOf@OAJZTb9bh&zNFX(~A$jWZOj@UwnneQ}DIKMx8@!zkWUJA4~U}c -a&ckOit%84^~RDXhf7PT-8;!M_#HMQo2ZnT>*OxRF)uK2cR}YG%G;A%cOC$PU -bHWFe~SvlO26=+GBz|v?}o2ExH^iz_@d{14OVa -L@!01K%d=Jdy#{3Z^UUFelCjXbCXvmqFOqBD*Xd*9)}5Zc9ZA>MS*)h2+Rnkls|XP$pc%NeHNi6H(?W -pX6+SGV*Hzig?gm%YfNyR?B1Lbr#u&poGW5IYC+yMog9qxofHxo5G%Y`%tNt4!FMGwdxn2VL$~}0(BEUvNTug2y=i*I$Gw9kM=1`sO(W6J -m@U(kU+HfdtvIog!2g^`S6w8J=W$Qpe*4MEs;Ugj+_%+uh1ThP){j$>(#;-g#MG&`9Jqx{nTd;QZ#dX -uziZ2pj%Oa}7?4i|Q=+I;U>ZaTxO36SKU<_7hrn#`pJW91;WX$GP4#gavjcD2RIxSYOS%P@ag{vuq?b -`R2=BpP-8OkH=wMa1WY+lgy#7<}rx^^**+AT8IT5KfdI&Hfn`s8D&_@f=Je#I>8J$--a^1w;Gr~{+5T -<#Kel!>{3a6u6Soq&ukH$YOLUg-Lh&GID8Fguu~?pw4m=r-v@3LoMdo=k-o>^*gT-k*Bqh$@wNX9eti#wQw -MG;)Df{=yExO(7tR(Kn)P6nSAm#F>3P71%$9fJo2iGP*;)N(0bl23v=y(5{GOk^ok8{YKrwUr{kDolgdaN<7FrNwWltX9iD=&Lu;uz^Cn=(fBXc%@#EhjrMyxBQKv|5)=Q>P`n&;V{TZ+p7eV -bU!pQ&c^hF!8C!TFlG^D!{_^O8}97L5{5@A%~mu#c$ZIq!HC9-MMJMB#@_jI9y4Y;SSqqS1dL8b$ -!;fb`YLTsrh!^YkjxwAdT?G!VaeXN@mlEn-58Em0l4Q=vYKmFENTn|F#pafR&k3GX=Oiu7N0uJ3u3FuBb50tf!FY`rp|B0*5v|2pNoww(1o6F3b0XBi= -_6#rA&t|HYW6ob*HUD&Uv?s&*;9}l(7dPsNo;TOj{__E7E`EVhCclN4ig) -9Iuu3PPzO0r(KXRv=dFH2n_n54k*O7;#o%4Sp9V_}OIzlw&RMl(Oo$)4;uu0HO-m(BE+elde}>35(?)UuT7 -WQu#46KmwR^5A*DE(fKw9iE)quc_~sUE#$PG2t(NO#M6=`W%_99uTKc9h89^*r5XYmsYhYbP=jzm)7S -sYSCiYE|(MAf=fhIfLdaU1PU^2imPA5YJ;=Dd8U?oDWsb(Rl61bMq4u><{uK{&u1}P9jAM=Ls7uJpc| -Efo$SDonZ6eP%sR8t%7ao)UslGCcVXGnGStT2kYSfPps*2(tChzDjj@yH=dst8@pGb%e=fKoyxeFtSj -oGh9y+>BLy64+1+#Tn;NDr&m)_lRF0*=`A%09o&FkTFG6%LP<%qwCAKUWAh)LIxJlv$VH`=@(e$0;2U -Cq&n(!;`g6h3l)=0rOQJPIGMpuW+-oz_^E;+A_L1GQdIRfv<^*vCBrm($*z*Pd;Qxv7?RyXFmfStDSP -VEV?JDP}I^s@N$x#Bdk -JT_Vw>^+e|1Zt}sF;5Jg>-O1g$2h=b?61xM$)qJr0Hw9jBo&=d}+@Bw5l1sJEhq5*>yCY+CEBsqYh2w3R+x24W}&H~kklGs?& -3H;@k5yh@Qc*~Yrk4;n^r+|R!3%yB_0N(yw;Znk<0KN=(hZw-!dcc6*XA!X8WxzV(9Xwf}%gq`10`+C -iqmWbYE+nXjkQ9>vk_MNW#5Ps)QpJ&-CJ+06cQ6>%P#>x)_+I=is#k(?aX}1metY3myPCn>i576)H8e)&`KNS5uy=GUoMCD{skK`Zl<#H)`Le9P?qaJ1Um=L3z$texIj=3kT?Y~3^F=Dx)%+_qEc#gXh=mC*ocQ9 -fufDOLT-PazGR8wK11KVx}cj2qRBfn?*=qR4Ptf!E&SbtXVbDyAREMy4^kOQIauX5a^vgwe}YVBlCv$ -HL$dN7HatW!D@Jbig=09^uhpHs(^>E{L3DK`h>^V7EXlJ7LL!Uz*lI=G^f1Yp5TB*Fp}8H6}?3HtXvL -{RE^=Dq?jR>ub0@kHImk({9~wqnaIAbHVjMi$RgRv^)Pel8yOTAC@#4~WFpnFxh=N0$*q!p^QaHEJii -rx`HHPq#N#E<<@YQfgePn&9#k?iJk7F6PiJnse#)#p!V2JX%ZaU}gfg2@{%-8Xq8~yTb@_0fl07i -S63n;X#);zkwHA;vQp2n0P>%6fW5hqNXQ(HUM3pgYVL&D0+fWW#BvPW4*UX%|kD*Qw%gs*r>;Ub;&@Y -{rsBv(e-BD^v7uHT=MqzOD2u3x3!A&Vh042ZGDmF(zEwIfpWJyq11MsbP%<0mWfAY)ia8xsI-c!lxk^ -u2rg68`j?wPCNExQ^NX*cCa~|BoDT>x73kD%CNnK*(m4(G_Nus*f{F{quPN*+tb9|iZ$4_w7RD#vM0vn-WX~D*v{n@ZrM#y#%GyX%D?D -DDz&G)N{rtf+(8I$3BKNsUkETINFb}5aJ22S5r7j;mx-R>h-4gE}K57qb@u)4^N2O9bsUCg(^?&~LFa -JAUm?7-vd18Z*obs`Vbo1dox!Eu^H?O12Z{&w{c`a3+#hWDWw{6-T-ais{W2AMkdkI{IHBkc;-?FSgP -siSfu4EDQ@!}QsJFwpy1C}bDe*{68448m7_|4z`KL3b6e44l_0WVviE(PYL`%|Vm1{T)sxu%Ax?oJMG -<|75D3&6<+uX5v1A#9;Y75DB%W`Aw|E2-hu77{Bf>WuqzbT3*T@jQ;-!F -8==!;L)wK>hnim@jThr~Uffwh}bhy@mElye5FS7xZ(Z^9mj?`!&^54tWca~}6`yr>af`9d477#&er#g -#{ooavi1HR&Z7+%-x62K6kW9C_bC>`(95{7$q?go-&Sa&L-`u9(ytr;1= -D-4%#pl{k-T#|2&*B4d8t_V)~iHPbfm59#M`gT0s-OpzekZHak2y=X7LVvbcV0&^4_L!Vy<^t{6~D>O -Y%ioRskIIbN+Zo|NZLpb@Dp*SW(`-8edGn3DG^Yy5R4bEymSU{0E%(^WlzMz+%C6x7EEEPi{g6Sy3URy2c*T>f_702R; -KwQEqcmKOt8CwZCvv%GBQKd?Z8X>Ln9J7hf=lyg7R{Ohg6di0bVV8^6ffdIgWJ77nRy9D?N4oC?Wnow ->QTFb?6B621roe85$EQfxvGNIwOWxL?Qjq?_?&r&nmkY5a -Huy`*%H^SrDyE)+L7;z+^N>7pv&+R<985E0EX;N7E?Eex|{jG)UEbTB04AfTBbPL1Yiq6f~xDuo<`ih -b!gbz14g7OWjw&9`}*x06)5}j`rv*BiJ`X)164ZSed-ePoT_O7I5=e*cz@4nsc!JX>N37a&BR4FK=*Va$$67Z*FrhVs&Y3WG`P|X>MtBUtcb8c>@4YO9K -QH000080N_fRR;7-{^nnEc03{Fr051Rl0B~t=FJEbHbY*gGVQepNaAk5~bZKvHb1!0bX>4RKVs&Y3WM -6c0VPk7$axQRromX3L6FC%q&#$niLOVfW9?(9lB6YPu3#zDC)Rw2H8aXpgVmh%0+tVf>{`-E%o@+7zm -XX?I>~sCjHF8^O<5;GZ6FXPP*w7mycLvSH8 -H)HRF5{5f%X6)b6Nv(J>W48h~#5ZG~6wW4rzm#Q?O4w#Vm27n`3Y!#CJv1V(@qLWch%fYq1M7HEG~`# -|^+tTDq!C-8+!%A^B-A*uEz?|@);+vmfGdOP`^kh55r&;N&?IZ&uKih@riyPxnocK^$v+*mN&R)p6$j -ZQ7b{kkId>uz>M^Zv)A~Ao{yf`owH9{HtTR*g;_nW+#RshbRrmjXK4EwqH!uT6X`4W%G=wBwoUvQ}DA -*$}Dg-RVW+NJUu5uQX(djnvEJ~|X?4)%-2}YR*@2y^b1_JTalUT^i(;#&2!@Gc~bqE)MbVkZVW>VGqZ6blYji9&aqKYjy61_tERc3z!T24jQLov53bGr^E#KKEQ1W4f!zgjOCpcsv)=?C$k@5 -B#M<>!%i@kQ-oG@T|TcbkE@V>v%)HAl{!lQq-nKw@ZkNiLSvI*zWCbdneHtH_zRhIwnK+jGaBSwQP$O -j;QpsXqF#Cm@t+M}~m-8fvZ(`K&;C4Fm*w3VVv?EnS+%RurqCx$BxktcfB?YqaU(;0B->N$m_HX>mL+ -C@HOI8sIT5Z;SxS1599O0Hjl0!xBsnVG6c;gNHdfKcVT8*nUA%n_$9KM)|9O_MHcAfWoZbK~oy?^LAD -*Xi6_$b1N==cg5lT{g45*+M^$m9*AD{1^4%dn($NrvqErHm2n?PirhY>N~qI-7KOQA5xf}WLnnpy8-R -D-EINtZ@Ru+DjEN_yOp#K$>dK`n!`BpeR8xliBSx`p#4eYZRsAfe(M8)J1Cq~Ls -VjkWHT9YJ&K}Nd5&>CLe88%D8vNhUHR3$nHD4Ru{V$2VFRGSvyz1%DNhEI1k(jQddn#`j4y!%XwbM!r -?DGR9rC_9nlh?`(Wvb8f-@|Od&uHBHH>y0Aqx_AwPMmSKc8$^P2liScydoWV?4OplLymyK@@wMi>1+P -BdkRwXb@j({ZN&D2OvVjr4@N+{?UfvTa_+_iaR%aqgs{6L(ex;1yj#)osbE=w5T_bw{Yx(c5ij1@{v` -fL~uHmqtUvBC+O2q5PkdJ_jD-;K7s=6?%Ve$2_b6{pS8vfTe%0Ik4jvt7=#FMcoKhLQQ4r+_%vk}C4m -fscI-4*BOJxWhr&1hU{*4cbDmbJVUO)A!^{L_J3~(A+E{F6EP6uM^A!s2^QdyG7k@>gAw!IOg2!kF1X -ORz4U9{uK_OpSOMXU+1z1mXe0ZcE#qSjVjpsa3|GtWTuLE3&LO8$sv#g$9z8O&Q` -9p0`O{G>o%nd-T05rWyk;wRT?Vm!q2IEIS2d_QUhd%xs>}F83!*vKM?V*&OJ~drDu=UcxVA%TIqCwobH}-JEtmS4JKE4^T@31QY-O00;o!N}5)F@PA8Q0ssJx1pojl0001RX>c! -JX>N37a&BR4FK=*Va$$67Z*FrhVs&Y3WG`)HbYWy+bYU)Vd4-fsZ`&{ohVS|ngm;(?xCV9@1_a0s-MW -v%hGN^@P%I{9YfFM8r_H|~CB-MfT|YNOMaNc;2VEZ -n!UM6vwizOp>MsVG#Pnc?(niqz|ppf+${2k=bynH0Ba*-`43pzDgdR`9t0yTn->; -e7rSH7ohS5eM>m`ixp0rvQqfyN7YCc@lup7*VFLh`~shPD}|8WymVyT%0|8db+8Tx!MX6=kx$IJ~Fse6#H<+aE@_RpD!b!eq~%3#aeZFcw2BMvq98a!~T8T~duFZb-yoY{9=)x;N1NUianH -Z)K;=CYW)kit419iDepR-Oy$iW&Tu8B;yF~ -uv~~EJ};!V=9r^d@_)$6^W0Vo)%+5?*7zVjVElO=j+5l^;+s%f4v%TI$NpI#zZIkwPnx-+TxtS-Aybt -#cZT#L4RKZDn*}WMOn+Uu9%zbYWs_WiD`eeN;sJuoVK(4;JM|DCJ9O(FhYiKHyCGXltk -#wUNlu%8KT3++cx|eSUgSse93!X#G&mlc^ZopSdI7dUWpAT5annkV*KqaPXDO5k<|a*X$4vqifuPl&#rWk$(Fq{m?o -i<7J|MzQ@Zj9w*ZZX*0-Qx_^C9V3Wrwz=f^N3!ZA|65*Q*^w%H=i#*u?C7D -%l^(h=S5tuT4;sha^gxN{8r)xiOCEer*!1YufC_pN>yS;yHhK0Kd`Cmh#~TT%r)qP$CD~WOH%P|E --@)pk}*frF@V|Y>Pm6X1U)8pHjN1Vj4H7>#dXy@OwxXz&BSR -LLQQBL>zTaM;mX;660c8HllHxP8uGOW$oW_c$PqA99Xs>OOd+=F{rEhk+l+wmt*usm>)a5V@6aWAK2ms(pnpQHj5H2zU005Q<001!n003}la4%nJZggdGZeeUMZ* -XODVRUJ4ZgVeUb!lv5FKuOXVPs)+VP9-zXJKP`E^v8;RZWl6Fc7`xS6D_XB~mwnYo%~Num}kd0&WO-- -FT8Uo7j=<02SiDGj?nzrQO|J(oE;$`OTX#rStsj|>gAw&3Q;X+2 -mL4xXTl{2timPw0CL?KI=2w~wUDz*3?XF|*bDaHxZEVnUh}_!YljO9QRb=2#TId0)z%-UnOBnB -pTaRux4dpd+l4N@T>PNJ;htrBRXVm;SvEoS{5!(3x;WY7Dsc0R++J7$Oz9&0n{**OL$IkXc{VBBF0y& -|&9&wXFwKAV#cpDF!FJOVR3k5z?W9(r(SVp!1L6(!#kW%8q{28_X-f0El)kp$}JvrbAEH;7lP^{7GOiOX}fFxXGwy4#mZap2Z58Q -&lEFH(wp;wDEN;~4B3MoDZDlD=K`HW&smRYG&!SG&2qZV+O`?Xi}^Q_diI4Q%audwTBHiB*^-rn;b$d -#qL9DTynYL4e$46%QCHTdCePUp6~$LVS)&ii%N{Eqa4KA^&mY~%_ni{`7Dp$hF^Qu-x>sUBTIY_B8Eg05n)ycj|9X~mqAK8tva%`|~cYH}d8JM{7oadI6iT#RJgj*7Q_a`Iea5tS8{PW-9EYBPg -QM-%(w7*2N%K8BxJz@t06JT3x($U@F#hT@kD5IBy<4KzMK6k24EX!^8*e&Mi0srHii)ArAbitKT!7Qq -?iSLSp%O>Ppdig9)SQxMio2%X~r2npwt%9oJA5cpJ1QY-O00;o!N}5&>{>5eL0RR9q1ONah0001RX>c -!JX>N37a&BR4FK=*Va$$67Z*FrhVs&Y3WG{DUWo2wGaCv=FO>5jR5WVYH42FOWTR{({u#g_oq_j|)kZ -UPIYmdE3WJ#6A-7cm7z53X7yqHE8X-4yA-n%AR;jxKuP?bVwh9-$r$wFplB~bWRr|B -{>uRwOSI9$^_f2(kiKSLErgLH3ehmeI_zPWsEETJQ45Fe-P`vygLqQZ76SQAHg|>W_CM51(1;{ENm6v -m$DXY}E;0~~t~=Qcy!kN8_C30OY;#OiRXIOcgYd-!ipd}G=M>Y8Xb7f|WT!pC!`%Z!u7y6FwBamgc|@ -AL3E(8{fh^?aK=lx&Hih+**2jz_4)-yeKd68k@F(22Se>8w9@BY{-i1Xg?e5?PIlByH6xq(l`5R4yjV9;2 --M|jwih+a)}$Jd=^49Ns7r?P5^PrPwXoM~*Cnhl$KNeFg1dZ0VOQFt_tw|dC#f`cWm_&K%JQccUZf~{ -@G{erZ39mm#h@6aWAK2ms(pnpW4RsK-76004;v001xm003}la4%nJZggdGZeeU -MZ*XODVRUJ4ZgVeUb!lv5FL!8VWo%z%WNCC^Vr*qDaCv=HO>dkq5WV|XjF2LMw6%K5VWsqtkE)g0Cd# -#{ECT~LF*dbLwyUcDz5ZYc8)$t2k3DbZy?G$|K^q5Bx2;eu5oxO}X^if{9S0wUDSAIRp%s@T9S&lk>; -+Y=4IPey(N9=8)@l80PZ`&vko7gMp8c&){@{j7iDn1k{j0Dxlw5!b<tJ8n9y(t~H~S$C&9T+

05Ege}ro3;yIz9ChpWIsXs;~Khu%NVyDT$ -@$9ACmpgP=8*W1DBUXq`|zkcNdo7dG1^aSAeLruq62{%6qnd^@ZrDHrrP4H6n{;CC40AIN88Qm1=aWO -H&czl9>FK`%VVQV)506#KKXXMAU%=%-NFGdKYztDT$d?TRw&HjmcYU#&yy)Z#3HzbYKu@~iWs1zaO89+b+foE!w@)_0#VV3){%YAtl)L!w -=3MzVsgQl-LSmgLt!x%u92$GA_qNWo*OrD4lRjyo@-*;;VG8mWP)h>@6aWAK2ms(pnpQ_lgCGF}008( -4001rk003}la4%nJZggdGZeeUMZ*XODVRUJ4ZgVeUb!lv5FL!8VWo%z;WoKbyc`k5ywN_1!+cprr>sP -QU3P^}nXs-s8Lz>-Q77fs%r_Dl;rIE~rA_bCK$5{BkclaTRw4H8Hpgvd@XE>aB^B%`^oP^YbiD968NT -_=is+<~qNO~zoqE8c=h&Me_r3>83GFmF!!$GQLo0x#te(~0xSyQG;1$v&e5 -KPtknX+!#JvLvU4vigVQ6CQgtZw9>{w3nPpQLC(t(mk9WA(ONkY32K(RC}vvEiMIml!}ml4?Pw96&$X -wXCjrGeTYGNs@HXU+$NnW~Q@*;3tf^v(P;$EuV|XC}us)dPmSwBssZzZ+`8pOPZz+Hu~aBD0jyp`sUy -@J@kx%cA#3!{zh$C_>$XA8op}doc`)hLDM_}*O>Hc81ej>r-|J{d%}gjtihVri0>-0MqG;gU2t%j0>c -;%W&`eh-$SeE3p~OLuq-F<*V;bbfB5US?}+_0D -%0>351;n|h{?>rY<}BZk)HO&q$Fe`PsGU>v%}^Jd0Kh;Bl**a(NMSpRP0DORb#o8iF{P(0bOQa^N@88 -hZXx#4d|Vvj}|+Br09K0=7`rHha1B(JU_D+d_C|9~;S$!x={ -0Y`*nI3#*zKa9=4h|Cg)cA})S!rK6D8i$lW+o@9$IL(bYz54h?8&)S0!%3Sq5l}hKR{d4FZVO5ZzE&n -5Ap;Y`-D*qOgXAA3nB2Pa*FZXe%9Ve&kmMH8vsi%|GSGX=_*}{dO1}63mtA$m>wT9f0-?ExiySIh)!F -3ZmHS?)yzhDE+qZx3)w#6tbbrq$)_kM_#4ksr~wd&GqvL|Y8jaxr6=2)Xk@(IJqBURW+>Gv5zmP1Z<`a2BTcy-gr--O1=*QBYs|lm8mXZSg63wn02?3!xfoKMNoEr+ -r&I3B#vu^>Wy!)|IcXH}hTSE5JJ`=dmVVsQ+it%d`AMaPs2d?kb& -5`hdACg_59o>5aX|uG)lfZTHnz{uw)LiiWQ(Oq$%=2SO2-={J|Xx%+YGf|Nq0dF10!wWch6Xz;e`96{ -nnT43W#+~{>va#w{U4L8|6@p5=$R^RG!e34e}vAJ9goG -tO>A5cpJ1QY-O00;o!N}5*T-4uH@0000p0000i0001RX>c!JX>N37a&BR4FK=*Va$$67Z*FrhX>N0LV -Qg$KUtei%X>?y-E^v8MQc`luFH*?OPbtkwEmkN>%}FdtO;ISxSIEpOE=kPE$;?YvC`e4sPE1cN*5guA -QsM#tP)h>@6aWAK2ms(pnpR%6>Yxh(00067001)p003}la4%nJZggdGZeeUMZ*XODVRUJ4ZgVebZgX^ -DY-}%OWNCC^Vr*q!Y-ML*V|gxcd3{t}kDMSBedkvYlTBtC*B@YFADZ-`$#$Exk4?iea#ga(rGT^b-xu -&}oS9t{MeaTKBIg{;vg`?3UXK)n^!%iNO6@#XihGHg8jCeJms43lL0=sB!4zhs0?we&yc8tMG9r6})> -DOTD|Jg6i#_$D3GZ}H{V=f|S2_I!e+SStkO^j_DVWqAY{(X;K`OyOpO?BXG4NHNrA6I?_V}n(!xt^&tHLEB<3x8XFiwe+b2jcf}O62B2Ftrn(=7W`9+9T?NR2gZ(s -5CP4i0$XG`5E`yec^X=UC$1PKQeC-n`rCQ?XMz|Djr>=x#9yR3?BQ-=aKOTCnUg*sPGR#?B7Ry)18|x -qYM2?B;l8_wONYTWATCQ+Mavs4=S8*Q^(zSGaIiHnAuZG%?Kn3+(#OyA88ws%9_;pQqK0xBD|s6&yV< -u#5uExRou@&sAui;?8w9X(kG``wv|VcDk!~UvOZPNRLKRXsc*uSZT1RJHo1Zpl>4VGi#7__|Rz{Bmfj -_d)B;^f}`5NBKTkWSCOyi_hjk=L-wXnYdCJ$88u!W=kReWrro$}RgHi72dy-D9)9IeB#TwA2nruG_-* -VREd?2-#>`AxLOzUNv5@?2eIX7pY7BVDVI-Kl#M)w{OZ!;j=YP)h>@6aWAK2ms(pnpO>@$-%%N002{K -001cf003}la4%nJZggdGZeeUMZ*XODVRUJ4ZgVebZgX^DY-}%gXk}$=E^v9xJ!^B@Mv~w4D<<&W8B8e -1cCy|SH_D!4D_PaXkF(@Wb`=)_l0y*@2p|9`nQ=M4{rWX80F>?B+N)z#EE1UM>FMt2>DNr6C_3BLb=7 -ogRW&Lv+b%1Lyu4Idxm5FQUM%rPx7I4US!-QHYMz%_vr~1pxXLaycH3lKau7w)!9l(uP>ZT4^rFkFvU -QI(bzW!y?w*vLe$y5C+&*cq%~$^8y(_BAOTfhZtlFf`y0!V)X!EUIZ@b)%(e5k)H(65xfc9Y3R2wzVT -K(_~8AffJqRm!1oj?3Smy2qtxsl#vd68^%+u}r}?Nk2AE%Ht`T~!sWdAnF=c{x?9ynr{WtZ4OA0ZD;G -HTURtH4;>s#|H{Nr_ZPK_x$fKPSVGJIeGlo(`VoDqetbAzkEYfH!U9n9kY3%`PY+t(ebzMbg7%Hs~Y} -!3P`wS^vk~cK5wPdGktTutEJKN8rhZ={Oe5rx&?}8^GkZ1Z)*eeRSC`c>moyl6Q1X9c@0FcRQpF>e+x -gS_~o=*RR`Rv&g&$-*5$Hlk|iJn3{Toclh>W4=o$TdnqBE;e;?$z>2RsLRKLNmsV=)_H|)it3v8f%j( -1sEmH8qo^51k?W*hAznS-!4K$k?nS!kk>?RUzHCc}p(O;a^v-HK|F1-%f>P4-LGq?^2if3J1Z!uzql8 -{K8gtjj{F`36Mz3CzFA=iAOQ0jUg9-|5W{xLo-mjzz0CT?QQ{qoaZR7cG#sfhC;6(lEn5IemHZ_&j~} -^857Z$@!xvkIo;Z&mKKJnSuaf+gD9-3%qu*)*CAiXCUTJPtw1h{QYbSEXG%3eThHG%FfAj&z8Sr3*c_ -rZR&JIg4O7{fM@%mZ1Q&DSY3D9MlaL0TUOg{s&v`HZy--IRqL!>3(z`iy1d)N76!X5QJe;Ada-R9L~y -&w+AHQl-ljKsx6aFyX87BsA}6g1E#&BJ%2Y- -Mao3Jj(&yH>Mcfa+d_`e#N%jOeTvP1RMP;SYG8Mb@??b+LId;jT2ZW|6{Ft7e&^x}K@%CH;B?4XQyqO%xI@im`XMcNH-9Tf~gBPwPHJq|eya3A6@7J#Z6GXbvC|R+c=v2)?D_pgpZf3C -ab^!3c`syq7;2zD2fm1t#!V`pD_N4~VEmh1r)e?m166iNog)T3<^@R3u97Anetofi$nuE7-X&+ZdMtk&TFhTOQK}cE|y3uJrB(SfZfgb_1)hRb8d(rmA&Q>=gVdRi=Q8xKC?dn`8^GJD=3M -Ze5iM)dl=I!ahe`b;OUUxyttrPfQN&0MQ(4O@& -}QhQiE+8J3%-dfq1@H!;Kkd7iSQ8SMw&`t3q-C|tj4erpT2I=84{7u5~u(}_9;{m{XDBxSSYSfn$5vTGVfAYs%cfGFCLx$C6;G1>nR|^UK3M|Cvg$%UQaZTeuGO3=9`r}Wq6 -h~nv?*jJ%mjDC;OJ5tHpUsJk{5_$I7~BE9kBjFnv=2xILiRc&b3(H#d2!$$SX)rRXCwId54L<*>tnDA -w>gR{DBWl~v7=QE@ -dX19ZBQ5kz!_~0zfeA6)3dKrQqiBLJ-W(!I)wAMaKpV$vgI=N;7ts@e$Z-Jm3Pq}hxG_s5Au*_B1Ulz -n^U(&wgc&eWy~HFJZz35;3B`Uh!|YKk=lS8s$>5Feu?vmwL#z==x$HjW8een2QPGaoi|m<`VL1HCD+z -P-WjO2_iLHdDT=akn~iGou4P>x?m|-#2s?k7citre20!QP95(R^y+INsoQ;fvrm-Yj)>&U$ZNm|_kLhQ -3v4)Mt$6YkIirIN^7%OW+FaD9OpP&Al_p-@D_+dxMo>LQet4+aIsw!c3hG+BI)mf+?gldM5u$7H669{ -xShQ)!nMOWfq3gClzmVoes;@6kWEDIf}YNXl?TH+A}%3VTu@L?8gf%xBNfPi6`wRDww?02nvVKw!zrh -=DycO_UOv=+D3ZJoQ9^Ah9rSvK>h?ID7g{4ND2c9Sjzbdj;e#a@kpu$P?7PoEqS7IbzH++>MxnuvFCs -te2czDql;AHjRENW#v1m6B9H=^-Uq!WeVF}Q{A*oCiyY5LGFuQeCGA^fb3AxmSHd@@F>9OduGP)f&d5 -{H{Q(n&1m{02PTrfA)T!=pewW_TLl;c+jd7v1Q%l0BW -$yOc<@KDFhSgkc9JOE=?Gz@4S~Tp8&8Oq`)XT~y*i~ -TV}5`e6)aRI#H0(8323sDMe8#STY7;~xoBYYu@;Xu_r#tE|;P(Q*X$*wknjq2*EDh`d_+{)0Z1T%>2Q0#+gT$&9u%cCWlbg)S9p5fQyBNtwd9E6 -BHb7FMag$R#6Kze*GpHDRXrL5EaISq^R)K@4UZa>nBYpdx@4m2RLb3AyP-vcxUv`*o -G00>+prn5)Zt -1%`#T5>-@}m>0v?$yIB1HZv321(yxL;|L*aqJB(hq?sV^xAc8h3Q3!8fUBLmown>X(p1_}?9^KQupPr -TcoasPF+emxY(q7tc(P`(Mv0JJfdd$oY0Mgk-vx~7g-r}-pF(}4LVt+1vofS?-+zIJ6Z -N(FJoGU*x08qk0$gRx$;5y~&D&`Q6o!8q*xrnSpQ-^Im0l#x6m;5GL#hP5x702zUg(c^H1ukj -(b3-{ZYd3cMlluDIy)gtixmvj44T_5gpY7=@!pzo|{ee;B4=|?y=xL^-xi0UOHT$&x3xS2ZKJLm>7d{ -h;J{k`+c2U&b!(0P2QQCL$>HyNKwlv@bFS7||@H*IU -ZXk&Re>qXg}G6|x#^!Gcmi_wq(wLuwSu9C4aenpW(P#X(Vo?>t#qY+l%wXsrUcnR?+!l`fUJt2E&v+a -P(1X4G5TV?7bd??4}8`uo>E|%@V#H&FTjIgls5%^~?Xb!s?nTB9vkTuu>!Znxlz(j0685L~Zn+AC!!J -<0?3Y|2vP|!A~;AM*jWZhK1fG^sDfsJFWa1%x2bvW1r9dv7UEjgTvZBb+z(2XLDK$ikW -uv*sOOj)O^<$Mu7Ur>nx+Ext)5+yPSSO_df?9O6L3@)nbik1&{s0hxp -Lw3u`G*Gdt+s(S}3uD5OV!oPP8`iF#JqC59i;AVl?wa-^iI^kQA|{($OpfR!Tdb_}`ofZ>`R(C5j?w~ -tj26tB*x0CR9N7HPVDgbk* -SKJ8FX1rU>WvA717j9KeddklB?#D)4MM!b@yXg!p8yy~>ga<}7-l*Eleh1vOu;2sc5Nby1jxFoz}J`t -82bP`{BId|MdR!#G>s>OfE(eRSHA)h1lC%oDWFc7a!)}bL476Z>~Dajk=PfkKu9kc8!g8IxCCapSjP< -_7XP&TEdD8he1hGkinNa8uBshUwpZkxz{s!y>y~ILYo*cy(Vaj=zrcN-hrgl0k+ -x5d(VYTj*s*o{@Ff&E|96TKs<|6E*2O2Zj;ghhr9Sj=U?_rbFAOKCw*RX{|Qs6z;3cC4&{G+aQrNnYP -VUX_+M@syD{V7cx{M*Wu?|6wy^6tbCD6-#nw83U8Fc&#L!^cVR_>1dJ&J7uoHg#YZ7iCbeqTx^8cMSO -7#m(OX0w#25gW>1as-ci8UMR^H(ED{32i{meU=9UvrSe-`4b`@*w;j(AW6w8J(i{2>xFr-_pt2?~QJQ -VJu(hcSY_3-oPo1)#3hN+E2~4SP_;3-dL9xd%H$^pPSlruo9w5rxuw#b_5%yNVUe}jwE3uhE5yhg)mg -M`iYnY*rO*KasPQ@S?2?s^$9Zs`t3yeNi+sn1WiXc9J0x-5sQRMT_ea-38Gz{JV1=Kg74(_5+sW6uc3 -^g$pm3aW#-DVEvHpZDcHc2Vx*q>3NUX?{&UKwfy%jFJcgE3`k=vl1-a-uO0Orb^w064G7vOi5x)yeOV&FlXi7EW*#-9M_}g@_j|w)M?1Smm@9(4J)4at1jyaikwp~G|cyKmsvX{s#e`RWPdq7ay(b%D)BxAOElnIKcBs-hst(J5h&EKm!j{~H}$jU@I9-JBsdpbXXnoC(2 -LSbJRpC*omA=e1OJ@SF6Y3e<3lJp|4y+e<&_uUg7EFc+}ZG*{9CBo3oTsd}lbO!TrRLn>;9f|(q=Obw -BpMhY@No1A~4w_ozEGvxxPIfZS4vh{;bmC7w%>ZiATATiJXO)VPjpqtya=wtC)jK(f%*V>`5LdG`K(J -OzvLvQ7Zlswz85vMjjzAiMPQ^C=bql(}oMJQTNwT(1PNFChRbgVQQuHHPTPDLZ%&$}{v+a_7-~u>)dy -h_JZwawz-ElB;uIWr)5Dk;ghHiLHgHOoH;Y}({vUZj+H@(6<9|}x8<=A@7ggoP_k!{Nk5ubIE*@)J`k -m3}Pv{GcweS3gC7J^MlUM5ELcbz_z7hb|aqSJKVCm_%$uRVA$9q7AnMY{bFDuP -zjJ)Tbf9g{DtBOlhZ1&{XKQ|g%L7OVC&Od+Oxg*b_k;E(=mqIB^q%EuGAVWQD3Og${6_=ddR8z5LWQ% -wYyUn$Y`FiPAFvA|sD*n -q>cg*)&0a@+J5o&dHfN!g`7tOUg!lG;~>LUvatM$uR`ikD60^Q~mb^@?Ul5jP9ABKvU!eoC7Wn5`5m2 -^HnOSOUoB)2tpVTWR;yt?<-Nnvy6dx5mc0k|K{0r#)wS&!|p3?Bd@-VbgKc0~?8tXn#>Q{Oj -ShT8#!`-Hw@Dsf%!Bf;2d{O4;<=b~NQY#5qS!g7Av0VwB4Yd@(G9~PDP4?3gcAF~@hPz*h$qh69`sgd -1&ewO7A&kkG?%7LS{OnV1GHXxb_wvJ&IBSZr{9QOcy&fa`U-fPe(b=nX-BFbL2f|{1sL60@AHcY)vbr -giqpkHuh=K1^O!b9kubBut_wjDXWsjX$!L^b>{iY_$7yqEusLB`q$tg)%OPsQ%eLSwP=>eyRTbWGNDpz*DXMd$j9oNid5jvV+Ih9>pV6n0mv?1V%SSDhM96Xgr@Wu&v4Qnb~{FF1{7h8ndCJLrjMg -3QcKK^7?T+tm)X`@qmdB2Ena@F7jybR4rCIQ)wIi9A&om`aYjCG`Bi1&Xh3kac4MzkU!2UADiq5ciF! -1*w$YGm}nh0Vm!9-%gGRJ_FX-e^t37t^ol2=Ix^zjxxBV`^_XEGh8sI+Fg2@~{=;+mBwZ&jB*Knm!< -lylhKnQk!L>U+(V#OP2X&R2-g+QKzbE~&@4ATL83%Z3&inYQ1CZ}u?L#3c0gQhxW`|!mgM#i#*#phZ{ -{vv&zxQE40b2I4DE3cQ^xJz(IK3?Cx)MwIL&vWE9SL^xGSIwY7|f~o&p`nFO88(I?NPG_4&BkkJED&~ -(H|LSxG@dIybo5^`F@Cqsmom6(tT8?jJD?H#`w!6V(edJHB1r?0$yWD&1rAl$Zv@Pc^aVJEz-8yHVaX -@MBJEGy}j0x^EQ-TpnqTcx&W_M(TB?|ALZ6z5X|f+rplnPM{}_Zy2xs-Uhu#fLa;*vB&Wz)i?U?`=9D -RyW*o7>{dnR-IpagKBgl}5wOFj6vo`0Td!y^7T5cDt&6aw;^-Es(3@9I80hfV*p1WgbJ*$zxD#$>PWyGAHuYzXlQpSm0Vb?$ACpWg9c8RI?Yi^o3u-wgJR9-eMk2Sbj#l1hwO-mnUh)Kxt340_Ct^(qK>zmSxfy( -LH%$q5$`VsVzA=fqt>)}lGObf)!(9MQl3<-L0jn`BW`^EqL~ml6h}+R{aPtOhFp=`=|xRU-CkH91LS4 -tHgRt>n9-O1y~ywjeopH?NjEx)Grr!+oB2^X=kFcT~kf=*vCQJcXmr|8V3@z+!W(-bT?oGXqmsXzFDw -g6?8DfhvdhT00ecyBR2Mf#zLQ`A=c|z{eQt!>|ghNAuBwW!z`Kdv*G+6fTRCbK5afkv8v!!5#pLYV5C -khK~KJXKNz&24?#Z$v`G7-8)lb1>A7lUS`u2VDE+8AK7#m8*a~3ryxV{Dw+{z-c7uG`B*`MGso$Ip!e -U$cnj_Z6ecDCnpeYg>%n?=wU2|%K>?Pqd)32-57mFE--8>kO~K`VyIcMf`MSwUm_uWY2}>Kd^++=E(@ -**C-x*da^$cNqAO5&C%+b{TE#b1S8MtGWo?`vjXQ1yFYnW=hqUhUnj0(O-z`KNL93*$a0Wjqhx0sIHz -`IR}N*d@;WE&VPOhNl=Zze5uH5}3Dv$OL@-+zDdGV-pY?J*#PNHlVfR)IwnK9|dA=Xkj1r!wlVE;+8! -1K*n`P7p62dU*eyMAy};m)|S8=nStHHLJzHoqkM^-TM!r%f6fKC!sv`2-O>dtAO3JkW@XSJbJmO2`Gw -RT0DMZFBax&q`h3nfS!FUMhN=yd}b`r9)U!C_QpZ``(F#0PI -;8zUG3j7W89jbjvcmFn592yI-ga-RC76&7!@g=3pCn06El4w~u*;Yq;C{u7>FiG#xCF<+1(dMH4v)a4 -dhPLt-4;Z|9}puuG1N`mJaEyjN~|+IXz`+W#QckIAeV#x6`|==isNFA?u!ZwiBE%&_Cu5O_0I~`I0384T0B~t=FJEbHb -Y*gGVQepQWpOWGUukY>bYEXCaCxm(+lt&c5PkPoC|(w9@c087ybwqT3&RGIybX;|+vRR0YRMzXJ!wMz -eM_=r%dr!(u!iwPb*k#rb(&uXr7dZd5YSq#q{;YnB-HuL9hnjL}K_jRhEf=N^_M=TMJCK&*Y0#-PJky>Fh=_q{0~Ak3uHlMclK{CimI) -EDe@~wu7I16za^I)sxPv&`iIG#>(!zk~E8h=0a%r?_;%hE@Rm_L!UUBS$d*mCr9 ->||@nam0m$?MOG%VP0Ue}TIx%5p(QHgo&pb~{dIFWg>|)mxMc%P=o=?&27puf^gH>wYz^sJ*bQU72dZ6+TLg`}?Tg(yXxwdIJS~N0dhA2?mP505xUat29nI?NCzRq&Y38>r@P` -_GZDFwFt$(=PwZZ@4nl+Anhs$0nOU&4|03G%lj^POh(52(X)o7ObZY-glz2dv&<81EKmIgo2{dTj~kx -{W70nNC9-)PZa5dEJ>Vs)c!JX>N37a&BR4FLGsZFJo_Rb98cbV{~tFb1ras-5YC<;YANSa9!Sx` -h10ZmIplyeIV6|%!>*&y5^d{N78Oz2jkDPQ-kBjOk&^6nil#+tBzu-P91iC_Lplh8zw-1pFLx|IRE0Q -*vf)iGOSY9YdtIuA7sWT?$2PBNY_8ZHuXEWdmP#0{+q99jn$6zs1`D*sX=7hC?Ejw($ZC+WK`@&E>v3m=-0fh?_E9SPtroLwEf1_YRz_0z_GO+n3-)EM;P2NJ3XK;F -_N{=&w=KwW!M-cu#1o6kYl0Z9EARpo%rVX<~48%q>bOs%qntFS2O8L_jXwgE~!fZ8S00dmgahiOFq~1BJLIsFCRSm#c)=={~;`M9=A&hg_x3Bt -rw=6e7v;Nv`X8ov`iXooJH!5?b53=*X;ivrihCz`Lmlcd5G}09r73HJc>~(3m7_#ja-zK7k=SA^roN1 -RP0&n+O&s06_fRV1-h0r>ti)v|4Z|D{HS1^)Qx -3{{%7fPfY<}>j~GS0s-76Lq7qFQxg-oUGYqPNr(!P)h!p{QX7I#?ya(Y%QS6cE>qcn5Ai|;aJh -B&zglP#kltWw~m!Kf_F^h{i#6f6jWWS~75MJF;R6KXEWZ!-BrSrm&?!2&TNbO%~=r1X{TL^Qm+wT`uc -jdEv(^Sh3KG+m|kNl>}QMy4IEjT0y{^ -L1A2m>i1Xd^%k~GZWOf#(+(R@GK$B{DiawL#9$rPjT|lVvDU$Iz6}CYG_xut(Wy22I9ITN&_fXQ%(-H -3F$W;W*D$Vh;zGH}9-epsquCJ>2~k2yB+^@;8IqW8zK7QsjPZbjH9Nw**H%qq@Mm?SkR4%wyjlj4YnS -Mq1vx5M1moKPdkoS9Psn%VtnEBlZD>`FA%)({;W~@as4s-k@V{o4J|4$md5+1U+M{u(7}{CTG|UvO7K -3AIY6+pZ#DKGO`2z^1WUvh$29qB>iS!yj0r~6!h8_bCcms-bt0|*YrI%u_8R!LZ5Og;2=-j}bAt^%zg -UArX?_^$v01;yhRG^m!p?cQUJcmShlydpv2C`jSeMGaw^*N(7anhT`EEwQ;-7vM6Z2|DWHGzpcU?4Mx -^qNDoO?knpTD}9n!ayRN{r$za=;cPJ!i|8yT%skCQ+TkOevINC)-Y>e5X7{R1sIOHu*+Y@q~HbZ4Y6d -R!7U8EH>uhD;c*TDyAT{uYTtHb5UU4!3}|2EcaO5I6PK_c#`=plUPOwVZJ)D%PVaRTMmGg%A{0)pJwh -5rxnqcbh!JGGI+ZHHyyZ({{swT>uB?h3A(^<+(lfZ%C{Fj6YsbSeM6yj0|;RBGbg0|T{|0CF{K&4WvAm5d;7D0qqw{G}(p-WH>!VpzOe9jx4Z-Q7Q -yC(`E7?l|e-8@Ghlb0=NtO<_BrwDWpzW(A{-^@T;Y1iNhL*gC<&@l2wwvjgpbb&^&zBevPc=75A_61w -{_7S`+L4j!l@OqewoY(1MmMKfd2=(2G9 -x0Nf4uIb_KYx-Bq90*fiF162nfU<)!xK7jZ9>1DiZ9(fMp~HwF|wJ82;@%#5Xh%O`U)l03&}>^nN4vz -%nV6$?vfVLP)T`G%!1B#_+@siqYcVjF3@1V#siPyiN9K4TYpfqe5aEuvds<{($jrJ|N7*7~Bg4S%#f5 -3S$JNA&fi6l<|n(i3lf2r`BiYjaH2bFNsr|`q-28l%MVbfNrNudA8pCsg#W~v1xZ<@Iv!e(>H%l&C%< -ONCNNFFX3fd$b@G@U$PC5C%oRZ6#O89VO+n#B6lj-(Z4}Lt;G=e)JFj&m>tccTXv^;67g#ASN2`ROn=_}6s0atmP -2UF$>khVE=roJ#*J>)F9nFUQ*5Q-6NF|E9U@CyN$96;K%kkY&73J}T*D4__(Nc&_1Pn*d|=vq-B*b7D -Q4(F*oem(AONL`G^oj#t_1LbE8(t))&EgrQGA$ -qv7iK0C(AfRgZNPq>KT$K1=P2bd8L*Q&!84U2pQf`C^#R;Z$585Rt0_oWXq)d6s1&fQ@w}z`IyuJJdsD*dx~$&Y_3E6mf9%0r^<23R9*M4gtOn1+AY-=aHgUSfcp>GjN{ajzwgNd+=vSMl -ntrvZ7%-CB2N*W+(8pdHRB!WrOTH4A-Ga-+@vUqja|})2#3rx+g4w -Zs+eyrvwAjzinJ#?an1b0fcSb$X+?8stEO&WJWjG>9R*CdUn+l>QEfFT -jWZUJV%ssqSU?B{4bHt}holvzPTk5&Q_xr*K5kv5{EmJ!EHzW@c^_jF;&jr|<^8{G# -GurokUKF6L0(0(0ulMHjH|KBP9Cn=GQNjVSuP4ODB=_#;nEbVr`fx4c&D_`GrmaG>*P#&|djH8%?LvE|MI?jjP#S%M_9YHY?G}n$|RNNI@}! -9^TAxSH|e3oI4rLd!XuA>j$0#V5IGO7?qRV>`0fioi*O*n2hW!=SNjT?K90ri+DxRz}dr>i!^S&_Nzb -XtGGdo>3pXsY(!u?&D6K>P{DJ+OTmY@&rzofr`fjBgTpae=_Pk=tTH1otJUmkD`s{k10(PsANn+;ptq -Dpi{kmJ%85do$bE4z6+T@0`whMUp99-Fy62as0;jXgm|)PGe&PtM@+2kX+{CNJM1Qqovb=52aj?f6YB -!}M)f{Da*NFlg{dA#=+EndTe9}`^x$&BVhZ{A7Dg`@eLy#rDd-HrlOO_5b_Ry@^(FNcSpQsg$6RQN3r -q_Zn8M*57=xPnI*vE_LO1hkfnmYMdvF}erH9V6^w}O;f$~$!&V*n{+|Y4{b#N2k#2*B@fXAyi(P_F}q -kmGugparxMQ&)-cc@NmOMN@{!%;41?%?8tbc-v$qaJ*M8sYGt0x -X{>YpIySK@JTWsD34b)V6PeiUm_0y@iSkkl7cRdTF% -Fzbw+-!kcaZjXd4Vu}63{c{#^*DFlvD026ZK=EDZyCQbp2-0f+Q4GL3<8e$j*L6982eqf(2ihQjjc>J{rMp -Sjl6x6ZfTOe}04LYsU@4MS@-n@xJD`%st;q3y8BxWz+3C|MnSQh=ZU^L5~-wt@ZLP-iGe4;VvQD2Mhmn^-=ucwT4*- -10>WFF};A|$nIqgincj2o~BUMmYDUX91l|b2pZ`maOmW);bDl$b@hiwo2CWgC{?qU<`TBzcThX$Q*LT6-Imnt6+HK~MMr;h)Ai15RgQ|^w>B0|p$jg7Zgmh6eLcYE+h0m^8x~SG#|6g?##GIiHQc@~`d>P3c;e{f -sZNL%Oo@_^mB1Y#f -l97Ntj_F#Vyf*<_-50#EEQ`UI@QP1e5ZGR`S -Yj+Y$KuCy-^DW1^PjiojTPtn&Wi3U#0}K{v`E8v#wH-_&56K|Lu5FIx%TSe!=dfzjl?k$3i9R=-k5!S -FIGIeET2C2r>k5xJ<3=saPFAV&N!Gc|{Co9A8{1Ftg6Q=u}4xdaf)w!HVoF$z@Lbp!TdAx-5LGa$^OP_l) -vWI^W$RA_)65NY$s4beeH4M<;;uiMn>IPh{%^by3PrkeB7{h9f5g?yHd9$T)KT6HrS71QY-O00;o!N} -5(~yNQxq6aWCwMF0RD0001RX>c!JX>N37a&BR4FLGsZFLGsZUuJ1+WiD`e-8^e|+s2jO`77p7*<-MwA -lvD-$4r$yjw7eq^+UDPv|U++A#x}ph5!@;Nak_;-}gS|2@GX9+wF%%9Fds!ea?N%a5|k%-pGISMJumm -)hV$qN-3JWRYi3*nL_QPxNhpU6J>pMg=PA+ZaQow?YlDHT3e$+_NlbM=iBH%gu+sRS(?2kv!{_FVFk8>(|T5b8uv%D5|+;ZfVdqJ)q8=YaYXL< -rTzhP -4yG>2gQU3`4ngvc=gAn$jTFDO}8_W0k6(AR1TT3G@eNKgwNtOW%Wtlh>=Tj1&to3+kdNDzHMpk-JR8m -1R!}I6F*5@$iT&S+SfR@;VIIe|uMug7Kv3AZ -M>bMC$R5BrNsovJVQb|q6=$0Qlw@6&^{t{tC$CSB{|X4rt5x2v#7YA7nE#HCj*i4>w-S#YKKv$qG>5S -sKYa9!I9e5`0n*9QtDkW7F}(c8$sb_--@X0n?MM8MAbfZJbpO8}?mx*czMj4PG(&uy{`utO^_#P!AF| -gcXUDH!oi0eHom*0-X*#!hHf1e$ae=%;oahu7b0A9Fd{`qtbZwsPuCHpY991C7p(`+)8rAtcJDw2`sr)9m$>yR1?&SaK8nVa2B!Jbuc!7^SzqR5re8-3MSx@ETo+fF0$BkmQhN0yCo8GC2dGp~yjVWt -E6#p6Iz7V$LEEHGW-0cZky5TvWTKs59yC5kNogx2g{|QQl_gn*!jWYl4wGdG*b}7DR^HCa`vgd)$beO -gF3Z@Uz(>h)J-2Tj&KC%et0`1w*m5B*>$-GRAhuFvsMQC3oB#~FXq+yr;c<>83oBc&X^3dA>PosE!1X -dyb>A+f*9$du&~zsDzoXYh0HH5$q-*S3*vx|xnt5+wGY2uWaxY;c!`Fuf+Tj=mIW&fO2^)D(Bk|qafY -`W^-Ji<1Jt5N!$c4jK^#ZL3SD3d~YS0eAfg;`$KS%6c^e{^RsLaM&ql++j&%#111)#9*8_|Poh`lzo8U2;P1JAXV_6)p1=tRNIqiD`wme}bTmi~A5-robif -vdv!05Q+Cuz*aSor8qc_j&hIHQ)fQPd-C6OFsMKjcjNGj+?|$u^U?k8?dc`-vgg+=FQ5WJY%dNMLq=Z -BWVL>Q6h+%-4h7ykOE-bvMw{_%Lg_mPUYE*|arqrb+;$&R7d19KQEu -1>m#+HxidwcDO#|`k!mS6N01oy=50R7mUM>C2TTa7@iA_F8zWWiLWC@81Vt<%BlwwW#ArSA7i-W|r}9`XdR{Eg%Y15gCkhEWF$cVN(9;{-A=pQax_3HV1a!k5`Jg#oVf&awY=e>p{l#TNb!k6 -RB^w$sprv9`sam<i=V-JG -So#JvgG+=r=IGgW+Q@xdc*5_NU(SX^Pr^%gIcpcFgl^VO|B9TlQ11cZO&3}@**{sf0w*QQNL`JK&#}ivIL=^U+(a9-vEGw_Wu4` -}p0ap&jQj~T-^YOAKTZFiF$X?ouk+9tHt;ZY=zaHDEYOZTh^H9G{!GLW9XUt;rv|9C)NFHSt_>8j+q8 -{i!QmRmh#WjfZ}YYS!z$!}>Axx7aN!gBiT!=-EiU^GECQcDc$2;@$`YeAyrr$uX-JB(=5?qG=;4-2Sn -(tuLy~m~+p(4XzJZmme9MKP41-gP7|#sa7(XT~9Sy9bQ@F7rcdz0@4_jfFP*$sCB>rnsKxa_Qa7m}xFbFZ=fXtkp$8Q3MkF8`+>cQ&T5ER -Z`6?|8!YVnVl=X?CoV-~n$Z?_j1zVpk2;9_s(TM^m?1jKY|L?%65)VgVI2SU@+t(D=}erLvuzv*feNPu}>psZcaa7fDh{ORe| -1Ctx}vbg*Q|jiFwa26@FUZX*L@Sz>CVd8m%_iUkVC=nC@trCwi7SuPPh>QLo#|4}}7&JUZlTyqy~mqw -NRU(7>O9>4N;A7veL3(e&fMO(i)F-Zv{$he*Y|2XCJ2y0m-zhW#mu}!>Y<-QO?E(XI -7~rUQ0(}J?&~}%;D=$x1fN-;sRjxKR_4D>M)Cu$$6~Zz8l=NyVSP&}Ludswlet2_E;@)yh3p(IXqDW9 -l&JhM8DjOnpCO@4+j+!hj2eE%=8KqnL;B~dRpw8WP(DTvd&nOHv*@4bC_0?o*F5?Hd&jjH+O{s<_D2E -<)D=dO%9tC)R?oMb&Rpgd)TzEiDscd?g$)?`9#8-T!%?AohY>dvG0LB7^@<@dKU%?P)X$l7=7^v=*~L -K=upV{>&z`+Fjt0+y@Z6bQg4oyk0``h6NL=MRog6UO9TLQ0%mIn}j6(x)W*_#(NCdOK{8=tLlnq1@2X -<7ri%_ZNFbwbA7D{UGMG@KcH0W#7wCoFFtOk6A0a?gp#ME}+H*WG9473WlUc+kG@oyy`Lx?(rZ0o{cT -WUyJhg2~p*0HZK#NX2~|?;M=H4UUr+hzuE}UMF8ZI4!s~G1P(KbHdN$l#uNc9PR+F-K@k&^Vf5ut>w!@ -erya(v@QDRrMjN&EffQ$phbilnQc-8fJlLs~o3)@bOYWS70($G| -61p&BfapRBB?@_;CE4B$J`y)EP#ITe<9aW)~cckskj7fY(}yv7PD`j&pr3AA(Q89&to$NfC^_Y!^@qH -hH}auJO*}g#Pr{{@P=b0KIe+JDy$`EIGc2@#y%VbAs+i5DfIY4Sgo_@Pe`+(>+c@<1$bQ8E4k#{9cc6V1|$*B$Hh=*&(&$m-#LD92=;Je%qi_ji6m7!M-?Gc0#9y!4tW1eE}pz3x6!e -uX*v5WcoZ05PT}`fFC#(}&D$f0?QC~K{J(%UaE_ym@fmvLmJsuuUCbQu7PB#T+(WI|F~>|7k|WOLJOd -qV7^*_jLH`0Bn9XgDl2gw(Nv4ZDE(^A^S(pK^X~A*E)oW?AZ3b;GF~4e5ub1`=Fw_k_Tzv4DN=D%8<2 -9pwl#HMO_UVwfwjobAbx+5)MXp4IE_(u8Q}ANfvZ9@Dbod0HYjs7g?{RgLmqnm_7wigudRu*zDYT3Dz -;ruf4#v9T;z)7Ith$H$)i -@cj3EQKG85H3ue;_hi1@FwX(`mzca4`EuEV;SUa^5*+*rPSNd!J}o}hRJ+6}41kW?V9_~v63CePbOj< -qmu7tEGSb`&4RaX5kJt>uZQ2IYe0Db#71<+n&SgX#+i<7z1((x_ -3@pJtfvXn27*J742VE3iAV{YBKylM4tbm%3xrjQB9Y?z{VME8iX}npC)zhYKl83?R766h>6&ztUckk8 --H{NN4vyaT>qgljBEx+ntt4>O+(uK;<}$zE8g1e3#i -=c3&*(x*Ww9oaz93&9s76L_+q}`kPyh_q+5-f)m9Ur4(s1W%GaQ&WVL`X(LUx#%8%t9M?1??`> -h;;tLR@bf0H;tnUy}hIEv_nk*D4p+vfI=v-GLvvHncc6xB?;TFY$c&K|{By4sfW0LMhnY4j%vZ@$Ws} -Alz65OaKuIwhib;4$F-dYpc0AdU!279Jl*8-+w}9Wsd4;OAhZNy>%Cm&|Rul&Nc28+i~5tV58-7 ->9M7DKo249q#+BJHdH!A!^>IYb4%>ugt8{=M6q~jHJ-f|3v&`T4@%jmG9&~j?-yb-4dh*_Ov>&1X6ln -eU_AP5pcjYU+#w%UC<&T0K_i1JryTDsv3Qq-Cl+gx~m$&&AL#}vp4DbdvR~xlb@vt5I_x0H5Mpz7DMq -N#fQQ~7K03UsnE{1;ZbmT{_&iqCOi{>&*z-NfWmidUYf|ekrQV(?=9#NLuHDlN5hJ|DtMSS=?Uaj=OVIi-Z -ZtG{UOrI~3T+K3`?5X}TnNGRaY}n2tQgC!*%n-Zyi_!C$lfC!F(Hq&6g#NOO-V!wlGB7+ZDU$|U^$qB -Sn<5wQYK2}CbbF_>O=l*9L|YYxugJS$w=O!mcfm7~4ztm|cf-4>?{M>D1tz*%%%$Nix&<%eQA%Wof-t -=YOaAH|YB@Yg3qEDBf;nKRTamzS))n}5rZH=>sE<=|#M9_Iud-SKe9N{5QxS02A&80~94=frtiV>^)P ->Qpe8QYE#IXP5xVJBR&OhkQ=^by~qUp=hA_b3-?tSy`kA5ru5Z&RM{GchC1MG8v&Axk==@tA$fsf@TZ -^4uTrvcF&Tm#>0}X*KDJxh6G(>B6Enu>01zrhYCcx -$$bUsO3~c)fp=B{lyrqU`d+t^Sqj+H7mOA(t$(7yd<^Cu;HM|j#6FYy4kr84>Xj%Fykzj{Wo)!x+cQNO0o&3-lc%FjWa4p$%q;nUS -CNIGY4&qMy6Az##5*lpUUVNp&sijRUoc-K`jnmt3ZJ@w)Q9EJksAFNNDz&}g^ZJK3-J* -~`ZNvV1hibetjYfXP)h>@6aWAK2ms(pnpRjy4lO()000hv001BW003}la4%nJZggdGZeeUMa%FKZa%F -K}X>N0LVQg$JaCy}|X_MQ=mEY%AAW*qPu1VN(V#hl%owaprRHfKn$x60XrGhX(lY#i-D&9kBz#MxQBKXm;FwcB#+x@J%hnr^p)Ue(V|7YvuvSU39D -Q5Q^8U8(QC)`xA~h_h|q?GxzoQ1pXHWZ~b6W)cIJjmHDdO_qGu9#_d@n6W5vl&jlPlJG0;PO$nq=ER$ZSRit>GdGs*Tv|6cTi>g%uc^HhT#fY-3bu;{wgOY` -hh)8Qb>dRtrFy;4tJiIXjHado4zXuGy9i>CfnmHFpKwBSuD2L6&?%>p!Tors2lw4Hxhy)=3rwV=}+(zt*^5|}IFjPDt!9&?}W}~bgYsSt@k2Kb&tYq -d1UHZ>Hx<^7Q)sKR9J%=OukSCfU6jg4H{@Cq-{_czS!g_cp#>*HmprrUOpIX_k0{U7#_z7CNlu}LJ(TWFJnq_Uy#q#C#mO6=+G2Q5bI-*GIJE;mynwpX0Z%*sh -68TP0WwrTP21txl{r5XW&U8jBI&U|>doDHROEl*eFPm3j{F_3R8 -q7SSggCA(xmOkdEmMNZr^&zEOsXJu2szbV;uo -+Q=oZBlEV?YNuyEV;d%{*mkc(~_6F6+WNX9PNim|*TDXkZcxGF$uvxJSLXhEiHh7Lr&b}XPHoKanZEZ -E!Rfkz}@+w011pXrG(-id9J!>ZL|o-d6sRQz-7zi`1sw8&30Zz3_(r`)Bw -^n;axXzOc5Hw+%NCGwG$XG1M$Xnh*tslD9sw9Ots~*d7Va*9dn1eWc`RI>UW$ZbuS`QuWVKq0he=%Qo -O?Oc=IZM%lGu&asb$AHoM{_2E{Oo;gBVBH?|6G_6D&|sSWpBAHO|eHhzE3HWN-oo6&Fi -qY5RPb4u__mUo>Dqdq6qOu87kNvD(XI{Vk33TsMXjDtbB;usKwgbU*sUL17&7LfsQ$ftWBbYM@3Dr1dfVuNC334V3 -DvZsuix`)FRsuRR$Cg^b3$1`3bR+A!&uEux8nd0uc^rkp=0{9j1m0+yPd&MHfdJj!Jx2(#<)Mub7+OnvKmmY_8Ub80ljv}@5jrm1-^n`7V1H9G0<-Uh|oyDST4`byx#OlLiU1 -ZL;lS`&TvQYAo=O(Psx{`f1SL3`NBpkrxwB7kPfhrV3zJG${O^&>ucc2Ksx0^S`%yYKv`)CKO&qNM_w -c>zv}H|^8uhsS%BJ>bXz_k&Cvpi;{C`ChZRGYhl$sg=TLS%u=+#SR>V;|3o3Mu;>`7BU0zynuR$IMB3 -NPNs=IDcHm2nyeZsV_xNi@+xJasba+6OmKYNv)8@WQt6pAv?BUl9dUG!tU1zD2M0S;CT5=N9IKf9+84 -i}K45f4+cn~EN!5y4XfDF;p(8kAsty5Lr(5Q}HRZjVExjS>4?7LG8Ws&p2 -VkZl7Yq2^h8@kK`9e3ln@3O@J0ed0;F(4XCzkM~Tvtq`?&^0ivtXVT(3V7;1sD?KW_NV4s95u)A~fr$ -K$?y-=M4aZ7v&gRJF)@fEteT{JEb12ezo%3{!~w>YRZvf)_1Q5<|0&sKdk!x21XL-l4QejzkYwDNvB -^aOju?t}JLG+hu5&5um@fWsP+u#Q{i0j`kUdqfx+=o!@63qDgHHs;RGT1#MkE5A4c>gP~!0v9yWQGZ- -ofK#%^oiVCFHLM<&7D?^#KIT}zqf%XGviURlF1&P03gm7Uy%^cM7AVJ6(bN_G4@gdHh!o8Nhq3{ -Yr7ZcLSsa3Z0j*eefPpZG#a&`VNUA3RL#8c8kmBf2TIO-;YJcf~;^cz*`a4^oM)NA=bb{6|TDRYO -{wZBy(l|LKTIF8WV#*+7EFsfUC~T9KG4$sd7CV^d)~4sDqT9IwuBr}Ns~`ENy=*1&25^oBC?2Ctrtc}My1g7LbC2mA1qVe3 -G9@73lP$8LiO?6G*}s1T2y8T*8(+HTYC=Yo8d>-+BkOq#XLNBFT&Y*P}6Vr0`TN$O-}F9Hbtf2M%BIz -=Wp3^{TW+EHm~Xmac3EhDry*(6x0K8k2yN#Ij?y}NI?r3pzhq1>{VfgbYrUCF3sBXVx0Om8SGOAXK?< -Q$p+~+H@8xGIfs*>O@W)6-}SfO>Vp!hVtG!kh&<1fdt#+e=W^xRm2~T+86E@9D{(RHW`>xi>31!tEbE -cwz)R79u20-zCrK`{Z?U3B1c^K+$_s*@Vq|?r;Q6{L`hok>yIVY9^Bkef48@D%a8Rpb9>-!6aw0$t0c|-(besOep{w+IY;6Gs2q?8f -((<{AI$=U5%Pnf&~FPJ%%A^F*5MXr>yk6<(L?Gu{WXiW70D(p^CXh1VXConc*%OOaMXy=rnN|_-z&&WJh><<_|RbkFqcD#4wmYIfdWKGC;}99)_V~Cay~|Co@fNAsPYHLRViVn@#eF;zd2;ikjl3jMyMOJ --JCYL~}Oq=hhH>QuK0ZR-;u@+I6l~eTxOFusKJCnm>a9B;O~{cUN^Kc-7JH2s?mwNl+IA%Id|)0=_c) -xvde;(Oyk+U{U|ba9o+d8wBx;bhQlVo@K3!OJQ;wpquar+YmA}_{B|1y{G3qid)af>JM$^P=`{D90{p -VGiL!bvD~&q-Tz47GQMxS>vp~Cx+;#?Q-38Pb*7=S|%dPgsAYNT9Qu9n{2SA -93DK)&EsvYRbq610|3w~YnRYI6tG`nsv%a*b)=TQ6m#@+)4OZHJvETy-cy?eHe(LN -eD*<4O$6Pm0+`#Bt4M~ycJXIQq&)p0u;)!X&NYEPIO)G-UxX?=p|$u_YG>8s?;+htZ9(8_Fz0>yyO=)wYND^FUJyi3xC&3Z;U1dx@sE^(Wyx+GSO9PqNc)}a`{j8alA34H48^ -KTN^=M6UhWKI76mg=6azfF@*W5GJ1(#|$=>G@J75HId6vHW5bHdRa`MmLL5MyIWi$)N?dVL&o&iJ*j9 -w$w#5P+KSoHq3L(%?mKLhT}D&$d4HE++F!jG<=Y}!dwy#As;xL@w0J%K$=#-<2@Z=rs3!a1G+IJB~T; -}ML7BbwBE%qK~-qoPW!`gi7aYDE+7JTMlXsc38qGILOeg)>#H_1SkR3dj2cRRsElu%2-WQ6)Bni7fBp -Q$la=%-Hb;=NTTltAjbr*I1UUP+rPsBktyqSjkf9xbs-dyzT}G3v*F#@Qfhn^mLm@lroT%L<7i5baRB)^+;N!{b* -Uz7*uo~8v^&l;1NZ8T)wFi1%qc9)=N|A%u-If*y=3#2fYNHow7irwsr5!(y3TiVwG`<3oJ@pMQONo;;`ZLnVVEkXa1K$;*oV2)w -Gu$_+Ot(wlE>|k`&O3wM0o^v6jaisbic)npsTcIXvCP&qT=Yt%c{<>AZ-OTpq#64Ua3s^Wt7z5k5Pv> -5{jm01=ZQJ`mM{)lUz>MrzOM&mAIe=TxQmK9R6$ba8A|WZ(4n3)ZIoG@40cXGzL@kBFyY8~A?R8L4($ -pjOcb2xO_-^82;2Z!!iqV=LzJr2ytCv*x5H3ZSP!z1QHW=486zbjmlZrD`1kN263ds?O(61#Yl=<}eO -FDTh5B4y2DH%XegaDPv-(4FgahX{e;{_d%_pes6g#qVWU1#qQ4H68?5yjZEtYp31qYmkRus{Z*ISvEC -Cy6cW?*HvR^on~+C8f=52v*r|JZjf$;A -*KL|@b({{%_aA?s0}ZTfeN$6_I#hb)x=iaEqCK{zf8bTpz_5-X=Cpn(AW9@SG4V{l)Ae&HPe2=&IDQD -0oMxPB5KI$Yd#k;n=AbDvO+d+k-&^mIPSy#cGw1D15H_+zd9ku93I7c8L(wU=gDab>m^j-vn0ptLyn;;IVx03 -%aLhN$4@b{n95Vt21KOrPbSm8lwG~{W8?0p!7X{x}o!Kxyw`Qv(Rf%w^Ws}l7$uLjPsod`Vxs!qpe&e -j58f}@rsS5aS_==64HD&(G3ZyjhV{Ik73ssCrccKG9Q@gCx-{j)m)Jg -m(O|-h`V;PP5GV+Z9pS4ZoO+Ualugu`5gFao&iVZO~j4Oyg-;@7S(`;W%z$Bu>u3-$XYxvsihIjSE8g -Wn331wqus%}=5@PCzxaLj`^b!zr}jR`%i;OET20u-koX>$0(b1QD4me{p({$+I7dwjPhXJSS)^Mfk~B&Q^=eZc -5_Tl6erDN!6D$>9a2%eeHzWU_ONCYcdoBVClgnxz{`l7d4SV9af0ozxwKP4Hyp%dF50-JU&P?`<$~5M -2K1tXN(^^Hb5ml_~lxNJ{A1Aj5bq30ZRTdLe!<0AKOd`GZuaI#QOW{uG{n{hv3QWdFbxXLmE@9;yojz -Yn!UW0~oNcnUx~Fdg#V#K1}c`wJdp6qas^lpp9TzI|h^3E{sNP`$MSNn+LEA4_DEKoO^;`oeOMg3mGx -&D~mRMEaRtS=279rzOp&Y!_>?VeKlel=QrvLv`(DHr`~&NR -TrzlTk83y(m&KbF;~8{ri)RNW6+;8~-@9au6PA+Gv -;F@v$(hRu?l(Dk^IbT{`_Io|Gni83VW -RjL}25mVvVp{8t$gs>hbv(QG}U1k^JkJO>+JQ(ZvjyX#S;lv5BU~%4Rv+cX&H#co4liNEf -j#m#g~)=rHo@fsh3E9brveeA`Cup|hp9wll(mAu}vovQ_ll6MwcT4D{hh#-5~boPb$iJjC5Ujnp%O&K -;tGx~q5Nd)}{<=RH6u$8%;Me(8&e)QUz8MV-y~Nnh$TjZaXCokrW!pgP0Qq9`v5pGG}*r-+Rc*A$NL6 -&vwt90YB?8Iuk}*A84;yNixFlE|y~DPm%XP9{EgokfUgOBWqxgemi*!L@;1cFKRFu}ucNVhV{F&)h|i -DB!lEiF`Ha=S9FqF7%5<#NK(6pC`W;-o0^XH}n)`zP*8?;|eRXQHKul6+x1xNqc7O9+i5)Q%mU^$j&pHkxoWfVf^0s5O1|)Ls~(zlhzV8-~H|JE6n*> -aYZz0SfQYDd9C@Ocj$Gi6KGX)OEA1U7izRW-M#JF8&k@V_xcynAQQ_}x1^zG$4cfWH)++(51=3jNh!CCqLb(I -kdU=-oRCN$JJ5{s7R{8p?P%4QAPyRG_W6#xzA4k&{?qR^%1KpnVNNc1ip*(m-auNv3FDscmK}Z-|ANa -Bwh1-KebRVJ2zQi`z9;s{i3Iu`oK!6Fk#b@9P7-Cj`Ve%vv0k>B`&&n68o;*@&Xef2|J;Qm0w05=Qx%wiX&;lMF`Pj{~BAMCKqs$*0=DKZt|NCXx7(&_@@3{I0 -(xGdVIUg3B%#3Fe0X;#DIK5E(Iyf8JnDgRZV_PNZXK57G%(WUcFZSU%ArN{8cw -gMhRG_lI-t0e?`xM}VF&2M{V}k$92uL4gY>w8on*uJOMM{I5utr=(-LELTks_N7ikLwT^Xp{HKnx@!TtjsWuc&=Z*~q`AV}JOfCueTu -}}74I0+MPy8s7)G+9!Mw~XMoxf@Oe84BPx`&Q27WpqpM|3ywSv$XW@mnn`g#J9%HhcQbz@nubStwEcd -cR(Sw$4q0N=;O`jLCiP^xh8=QI^T5)ESDVL}l=zV!wMGFGa -T&S#I!~@YW4-VE;5@@!>2eMDJrEDE0pV%MGqBm+zvsEQu-bBqM_zBS(Kd?8v4Hnwq1@8-cW}k*qhT9% -*^rrXW19BISahdb8;5PB0!E_f}&S-H>=TNUR<-+zh+-uqh6vo^ZFWGyZBAO)+=s0)C -W%2QHsLpTI4w#%Dz5~+CJ%A{o}sj$4lgjSgntk##39b9Wp>760b6nS?>dkL`#KuiR0Kf19Ho8fj0P`` -xw`Dga5gY@8dD%<=pU}ApDJ>c)28QyjI-NH}jUc@R+*Tw7K(cb}QCI-P0bi8OP^z$0Ex0H%otNBk*Ic -e~c5DkB<(xuZ#cw5elQyR{>^Tekyrbd%@V%G3SkNDvMk>~l!Zo>xjN8Lle{N!%+2W!4GDJV-q_Vog;nPhoY -Wx@%kMRohDrndby0A}Yf=3j39U)X`FS$v(O@1W*32kh0jTf3IyoD|!z&Hv}-mPA=Nl}({MG04IrN(>b -XyN(XQ0M@Gjli1Psw?Sr6!;Q_pE>5qgJ9gi@;yau7X#IF?aq#;9_bE5nw1}^>K{Op*pTuM70GM8DULL -*!p194uX_Mz8*hLif3(VB)Nx#9^cR9}5tHV12ZqX82&qIp43pS={l%lt193na3MJA>3P2$P%%2xpD&& -`Q)7$h0`7(r%47^>*`+$tu*Q7Jn6#hhkR}!kK%`XSA^gjD$O#Hp&*Nw*zE?h#`WIFYUW9WBh+A1g;rHBlgMqaUq2HSxr -Rz0;lP{Df%CTNEF#W6-78pNih|%@Yqp!dG*As_L=L&JI(^_RHdBEm!c??fHd2_~dpeE!iT(8@1eF20G -1g&$};Pa%KtRy3RBWy|jKJO+BZ#6#i*TN2|H)B$FJj$Eg@p6N{YckOGh>YhnkeaS%{%=rA0|XQR000O -8;7XcSj*ihDMFRi;DhmJr8~^|SaA|NaUukZ1WpZv|Y%g+UaW8UZabI&~bS`jttybHP(=ZTy&sPk2N<_ -&A6pE052Lxgz;H_F&ZZd7nx^}SLU6s}TJ2Od>I%%qMi?pjIp36CBE{WRJ)&BcumvlLeWO(~~QIaj -8*mwJyr%R#Nd*uaKGX?N%acTGMUguBDTLd)H%l596W?={X>@DHGzX&Slb5$v#c22x0i?^c!7S3*A64#56fUByDlst`$L(-jN}^Hyd`c!Z12IEdU);cv -b5on^<5)ikh{rfRBtg(IylqUa>O=cd|@-dtCyo|p0OiPKKKN^?G%utusYG$U!H@(3UC@ZLG=vUU -2|b}8XOg)M|FHU#03|37n2=@H)>GOMW<52sFVJEPBe+OU^iSMza+FU}Y|2Teh;%e(g?tk_xv+kLY92| -D^Z_|gJoIT#4oVPHCtv_B9l2o_e@jS5!9N$hVo?{3IzXYY~hm4^;1`A}?&z%V(s4fwgRRfD?P>PZ=1QY-O00;o!N}5&}O$cSu8vp=iU;qFj0001RX>c!JX>N37a&BR4FLGsZFLGsZUv+M2ZgX^DY-}! -Yd96HabK^FW-~B7FoJyIRNOZDWmAdoQ+-)v1xt+RflA0u!+w!<*N`z#_6v-tiYjj@!_v;7V1U*hR`d~ -{W&}cOJjRvZH*Y=~>9-7VAw)JpU@q^ZU8&2-mP1|g%-PyKp_ky3+)jB(jRjq!CO|iL^IX1|L_Rw!6Hy -%%2)$DYmFPqa+d{xwSv99G(yskFmQv8=}WM7PJzZ7pr_(re3sRnrUT{l*3Q`AfGgM^ec>Q*A%-2YT4Xtc>SS)_21=&-9S%Nz}MMGDSY>uY9)XE$fG{%rJecI=C8NVg4>8F5 -jlye#_NaLF3=<;%MxeGND-1aBujNC~q5rHXB?VVws#rVH~L`KSUJ1+4(n<*|5}g@vIP0Nde8Lt6stHP -C})MOmiUbTN6&3xMy=&MbqddBOtxSyBH?&E8S#q;`fB+5B>%d7mqW^#5;!1i&Tv@JA6e3K0cI5^ET!6 -!84ro3Flm_j+}##@qHVu7F{#HtqG91CV=;t%1zKTym?2nRpZ@`V>eu0Ty(|eu0RU~=m1fhtnGIfLnk+&7L}pCfXT -Lf32jyi30bbVpByf{Mb-8Y_!}3_7<+nI3}Dem+eS^4IV53*R^Ssx66{l7!R!?@;MhJd<)#LTmbrSVgb -3t9w+6Tf(~8A@*a3*-tD?a{46BI;g!;JDglFBXNuMPd(~_9|75=f3q!H~6YWjg~vK8)>dVvydy8%96S -QB4%OW7f!509^2Jv@5jXMJ%bUAg4(?qxrq#ChFuo}a!F=|tcY@wfIM_SNndWJwBCj3^?wt^i1L3efGo -DlSDb?SBrqYV5^o1&D3rs+aaj)2;ydK|DO3JA{*+kD&eKTLcIBMEnJOjZ5((Fs|Y;aV!SQ8eorM6g!B -asRd3l6BC&f23as`p>9EjIiX-H&anug771;!=G!Irv%{T?;&B(BI?ARTP(srLZCjwqO8~WPoMDEpuEr -F<`eZ}(2hFz4)#d6>*WRlbq6n9|d@69*P2xj~p!-Zn?K~v5+T>twcnV-Db#Q@};F^pB+CThZJu>bg3L -YPfA~GhpT4SLU?!Ia&aCt>@*soEFn6m6XHF6_|p@2nnIw3={70@ah6f)}9i{b*GU!YE>?)t&l!Z*^5; -|D+m)b+XrWNi1PsAX{vTD$?D5uQ=+;THT}z=+6&3Xq?Y2%8m^oo$;dvS=cBP5|;FkpPW40xp?~OK~Sp -ufUUbmM|ehDjch5PU&PNGvNGwWZt8}>0ytyx=WLn$--Yrv~t+u3I>X|*WY1Ai^VnSFFiN?!5Ns -YGz~jx({K^$M`td+bU3}qoLaF^?urZEvR@Ajkpn6@M@GMb6}7uw5Em+L!q9CbRYY#ZErgGa1SJIg28x -u&D3wY55j80G-501;Hua&jt^yjSYOHllGnP+Y{Ae;HVKr -VRDEQb*yK2N*FrRbQia5V`0qaxs5O^rEFgJJT5Cwwb6cQE`b&4~|zhFV;Gc5NZ+?%91&AJ8B_TBcP#N -?n2%RK|GUc-e?|PFm+>K`|b!68sMX88Mlur?Xxb3rEHGE&Iu4QkO0RqUcPZVV8v~KgR`uIwBl1l|Yxj -;MF&dp|}N`Rn!ndmM7p8Sod3yu^M^B?S@=dHRyC3Nv!LfT-F&qq1z0HH4OGtEB2myb{bUkrFDm4-p8W -8U9KxdJ&Wl=mfp+4kR7>JJCR(+)^`nv9ibo)Hctvvf6HCkNO~2v@ --pDni?)7%}6}{DK01~XD_5fjsVFt5}xJxPL3G)<@wUVXd(V#fyT5cL|ffq%rT7t?dP>BB@C}LPc992# -?Zm}3Hl3SK3W49pwLbwMW=!&RrSUNKL@ygT)4nhicbU+Y_UNyjzXu1K|t)<3M9G`&s* -e&IU9n{h28ywllj$Uxbtjn$1p@+Eppm08Z(?x`YtHnhULn>s;|Xs|%vq!oE~Kg`=Bah}S^F9^5dgp%S -GCD|am4ogtj(92^G^PajWx=1u4{8;v>NEzg0e$2=#O8^f+7!!EvHZp$}D)3&lwr1f`eQ@o>~C=` -!n)C?a)zy9QA>aU2EVr-`t4fYf1)$>$3Wu`l+g?sQQN0~pJTKmF@x1R>Yce -jn#yJ<#YZK0G=Dq^%0%mk{0@>Dz+sGiPBbU#eWCf&&~3gB%DP5CM8H`w$`Q2*}_L;}tsyys3kJ0bp`< -?T{09|IEyCS{@?plC^d`Fn|?dUO=lHCTH>U+KIwQ0+@3^aWUl;-&eg2&1{--Ytuq1&$>jbf+;MbNqMn -pyNax^5+8I{z}DlQ8=_-5hM22A1(B{=uS|)RAD~c|Iev56dkzKfiCD7Rm7?e71t}$hDgN-vK=qe-!chUla7_`y^`yfZ2zBQ@R -jl>j@)Y4MCdlAhpO4NRAH&@7-xIlD@HwlJQ}Go>V9g0)%W9;&HLm$&%sDFmv(iA_V$_@A|2kk1^(1B0 -N|SdTSKR@PzW)9P+k129Q7r_~qL%|9v+4=lQbSriQ!anKGgU+@}3{bgfM+VSp!{ql;=GeGbFoXLYJ6kQ3=nWmr -b1j7hzUF?K)CquFWHOlu8c=y~%FknuE-N&gRJZ17{avo(=Z`|MiyxfY&%>v~;m?w*+FPv8^E$UI}S6bNfF)y__kT}f|JTwj! -7be|@FWuU-VpA7HS9{49ivJ@{nN3am6Ub3a#c9|O?YG2i`rCc9&Y4T2Xb+N&rKN*}+{XwDuV-Ok|7DE -{dwAG9R>kqU(G=9TLJ6U@}KA{)%hYQP|0QoTyp}crVjrsOpN->;MAl%*Cs1y{8GO(29ua7M*jN&6 -y+Y`gC{~#t{0f8)$wJO@qcQQ(zfd57X0OpHtW!xutBIL#(4XN_uPX}l)F*U4_8)16jaGLLW7wEK?MH2dTl*nO+8oUc`O-8VpES&=sSVQ%}Rl0?+x0mH`fmKNZSYAps!xMO3G+3!y*8}I&yiqY -f<%ZC@yoigxI2V3<=)p(;V^X<8vzY|fKFpkEi2ksxXsi1JKTa2^-`d%J%R9{Rj=0+wa|L~_cNH|}^Tm -(-L83ad#gMF4ITw25#FH7rbtjnJFWBu{imwZF99n?WAFIKQ`P@-oh~lomQbbzUr2wX;#l@vFb1botI^ -()x*H1!6aIRi8G?~4fUMTdFefIhFNG&1@hv=9?i&5K`OAe|=P=_;uLF{nep&(z0v^<%hAz*KdM09C1RLFEibap**`#m&caTWQDc-}qrXM`=>7@6v%+9;lj -&3$X`xdLFaL4~k!|KBxK(DoKjqjyO-w7U*3NmvvFQYxc#0c)(K?XH$XH96Rf_CJ2hJzHYX7a=mn;Ns+ -7>#T3eFdo<0I=vP;|6B?z6t%~3@)1QbKl!-luRSbOVV3T%KWG)V4o72gVe$S=vfG8=Ka0D_UXMy2Io*H(XPyhGC~81;(Yz)P5vY$V_o-_AXw8-vtNi5dEPOItCd=taj^dzI -v4=)NLxtrm&YEEOz^K3g?Gcui@k+$wXV3H1)Z2>ekeMPYwbdAwUOCIYh;|PP-t2y*hOw9 -lN_g8mmUMAHirQ+nDf2yT#ZX06?^rULja&OIVE^j0{pg<4?*5Lq_ASE0bDV8|Zv@na{*J3`?gpld55T2h`OPL2nK>@a20Z -(U|oNnVbKt5F|gdWuyEJrI$$sWwIZOjZ>@#*~j8nYT8zk%xrxqo~w-J*m1kRIUG6GJrw(1Xf#XQQ6#A -ecNDCl4R%Clj5mqMwEcbtNb>CR@-@+g0MdLqUrrII};D)xPFHFc|`tX7|Xg^CyS+sy#-@2>K2b4R196 -sgU8=#b@2QYF{(b&GJqQ~3C#t!02IpBFh*#J+B_bYE8N){74zQ3| -u2;6;RneJ(!iXTg=h}DGV^B5b4m8>fP$lO}yoZ6d;s-zTO27_1W_7`PE5Ui+VCbg8ML&5q&pFdW=5rh -ns{-=GmJgoK^MPeYUFiJL!@V9}e(xtS+d5}%xdW0v05KE6M!_hi=q>MrQiZeU>t)<>%q7HHRUr51K2Kk$tl^=Sn`5O7F&v0Cv-ZEcN1a9iXd?;#D%yW1hRUB%fe`qa1-A=QFKagmCrzR-=}^o>q{+j&kpT+fTZv;yAa -dT+LIOk#pGpR$X!291o5AL%^DZ|N1DfPQ8-)bdW&#Yl>g^!16n9=Z}I*lC(QfgX*3gKG)?&_8D4E!oL -Jm=PQgrR&>YK+VTa>a#sP(D}FxLoQH_6r)t;fsgXIdB3&9crXTSjIu6e?bmRm>v}919ga4JCWcYo1o(6hJ4BZ7M%#BqDXZv4H%a${TTE)AI*%zc!Dve@dkd#18Kqbr6KM -MD&UQ5s&YWq(!F7^n)&T5**COdDW0~*y9E|gHSGkL0mP8nGuy~fE#!jwhz?Sh))-L&RwqB{xtK0zV`Q -KEmywfW+vE+z8x-X}goJ+-DQMvbcc{mOph`=t%cdHAn^?VQynApAAN*}hkrpFAGw41pl3ypUQ(pO<6; -23#8PPGni;4-ft|QH%Q|Xl;##1!I0fJVn^>Cv&tWgvz@fF@ta5zDK&<8Ct?rrQO -Zv?1i;izOo$9m;=iyQ>Ag1#h)`d~m=DpHiOv_17LAQxeBjXQqgs5TpcLqLF9Y1xsUPSu<-6pr`{k9>n -T!2P-%+|%|UcaK^oOBZC;0dAeOLIzvo`rh_c>X4&wz{X#Tv3P~;qFl7A;~dkPb5_@>^!D9q-i358Dj? -C_qC~!=iCS9E;v=pusZWs-FXpRYjyjVYLe~x_Rvv{Q$UO)zK-ffLM+?%*~+Y+3!QJPn27<&!pCuO7U6 -fqgUW9F(soKR%`7dc5xrg$cAB#DFx{IBnng;TO~n+$j}#?)1!Hry$f`z6%EcZr%+woxaM{M -MGE%*!HL#jObK)i@%h(@O0A~aQ|U+L2=cWv+Ir4z+C6YRiHYrNL9E4;(}uw{p(LOKF%XA;3)g*o}AXh -KpyKbV(8eq#}5EK8(!fr2iAy%j_AxZD?JN^J9(oFy_S?#-532`)$9gv?CyY|m)o{|zb<+Q8s698L7@N -}M7Xs+6DH4g4HnM+^zB!=I*xL(5IDEZxmy`aS8(j{Py!IV5y|`a176njez+}qnPlRBz~jT~S&Mx~cll -6*-n4k1h}K0fe9fof6YoM9Wr-$7*(|XY<6V6gs8-FW^dH=AJgOp77!%6~F2cjVij&+DMk5(cHDW{{X6 -vocz0(Y;4#$`x3#ZhrUjt^QZ{-r?Sbz7I*A5PFQ7fC3Y42coWJkiH|Oe_&(ojoSU}Y)`{Iw;2Y+g)@32hKhFM{% -aH1ZeIsJF3i8o}e6U2dTPO148n4Z6=2jN{2t3$8M4cvwal87LB&_c;9W@!~`=?^2w`Xw8MUtLn^1wfJhHNS@%I@&NCEuEO`06 -4<7F3JvVlr8u?Cf*?4;G+2=V*7FgO4*D3_N%2!Kg6PF^4==qU6^mnksLXGoPy2P{+lz@R~{@UE4%w0h -c7fTr-RnP9GCqcJD&XrVsnIW`mt8sajJ&gMtBUtcb8c>@4YO9KQH000080N_fR -R^=PZss8`~07n7<03ZMW0B~t=FJEbHbY*gGVQepQWpi(Ab#!TOZZBeCb7d}Yd5us(YQr!Pyz3QvOu)? -p4C$ezhd^mdax}&$_Bs)jy~^$;rN6IiW4FX<>4FX#X=Z1pW@RJ>A-uKzYRSy^wS0!eLc>91(qF?1_A@w -}iX@6aWAK2ms(p -npOY+0006200000001ih003}la4%nJZggdGZeeUMa%FRGY;|;LZ*DJaWoKbyc`sjIX>MtBUtcb8c>@4 -YO9KQH000080N_fRRtC=}GBO$f06<;<04o3h0B~t=FJEbHbY*gGVQepQWpi(Ab#!TOZZB+QXJKP`FLG -sbZ)|pDaxQRrtvqXw+eVV#^(#6W_(lRW3~u-K!wpV*aN-zeT;dpxbNS#MFcjGuF{Vg`P0m>7^?$#5bh -Dq7C&3BWjfd>6uC8}gS97^szK|!`R86nnvVobuk99APvK`>1fM1b`u5Hfne^RKEEJcAc0Sdqqr@s45mcs_--4}h;NTo!# -7iHJ(o4Op}k6yIhkP#&Kb;CjSkF}Db5X-6?ca3zHTnhQIlqW`9iN1i570umc0;U2M53=v;3Q!q$H{Om -d-Wl!58&FGSHnZH9(G45PF)S}fe8qEKMrFrGXQfupU$^J4LuO)rlSoP&Gu!{D7jeF$5Yo2qUrAMVG -;AEI;+LL?~br&(*Vt3iW2%=CHKYH3>84*G4&w(q3fDyM0qIcmfsEM6XLF4yx^%XYUJW8m{tH!HsbqQ! -QVe>%r@dD34gvDPYvKlP(Y}%`~j%j_1UQ?KNR;4P?VE;U&~%y7@WC0Gc(`XXYN8kMA-u(Sy_}oNIm$M -gOts;_#`!S5~T_Fie%s$sfPan)ZoqY2AO<*)v5ucT2>nx@S;Y>>_~rJcf(7P6ngVtg*trK_gx?SsrYX -Vr@)EMu-BkEKggk|ilJ~G|Je{3f{>kQ@9TJRoxW+|@jAKryvJNX -ic|<)LWmDhC4vn+KH`a!?03Lvpi_l0yPTP>J*;V|%k5P}!w8S!^(1n*^3``tG5g;T}M9G`TyTfPA~Us -fTku6!&U&N*0ebQ10cBPvSQZpaSg5As_oDKgb3cXHAZMgR}EyMl=|Xwq<5A$|;Z@p3YA>)~Yn)Tku=J -xBr!3L`X+q@V=X$8yO_#zBV{2KasvI7Kj#T(bm}749N05JzM2@TO4JcuNMnYloI`ptX??&1ZFw5^F4? -YTg~?|Z}09Fiv`$dkux3@3=5HA>BTp|{9CaDe*j36lL3JjH-9 -I~#9kiV8~*oOL{NYtqoXFLbzg(w7Hpvm4(K0^Y=H-VtiewfguFrdn*HrkQ$gJ@fTaNa8^HzA+gnia;u -vh~x%lhNfSbcWqDI#MrT`!S9g(4k62mevg*X~APGYPAY^tleQ|GoslUssVo-sHBNI+Ly;3wm$!J6UDfrFxG -E78b7LrJO*&V|6T=+VFpqPPcBip=UffSLGa1gL<9hE?;T4FroON(EFPQWCGOkK(scp{j#%>WI@Fh%9l -W2R$o?u15_eNJD?Vod^)3w#7}XP#Ck|)tcsTTp(W7jWph!yfTKx(gBN1ihVZ$-p~?qy^gV|RqklUHch -_OG(53^jrY=3j;;HL9p-JzhF;k#c6Jj-XoDY1iz}PI?6K%uAgzzoQpXhHSuYMSu|WP3JP~Nbt$3!E8^ -HuG9?5QQaG?M}-YP`EEvo@&jz_H94~jt7CCmk-2rrp?QHo)A}9mx{|vw-194(in6yaK -sutGGBX8c7pI9jxP6jZ(12(C(&wH}loVq(PZNbS30X$x?1K -E;CFSi(z$PSJO^H>;vS%lP=1pfDF;ZK`S>XT2GEhKT+U@>hfSn4Mdi}60{0nb4q{J@!Gy2J(|uo5(lCy5aEH|A+z&=3L -OJ19mSuN$z;AR7JT-`=h=n5v+iIOn%(V&(8UXG$LIqV08J{JjYhkId50ONt>aU&H2|C5I%G^iqZ~uBX -O@Zv~ivZF=_$nB1rq!-BvaSW7x5fH&uS)_pbcfiKbD8TUWQONmf%9{ekpG~NoI@YSGvFtWkNgXT(MpE=$N2w -G*olCwpItH7ZWKLqC4Ukn}Kee~oU_BDZQ!!XK;(4SBRL~OOIXYJb2J%LNgDnU2Cm08dBjgxewIPQyIk -pu>-0-CCg-a;MWc0YeW7~8fpfG!EaW0k_VWQTOisF*mDM4kF0R(=eFvV3wSnST?*IzM%j*BwC{+ikS{ -MeS5cD;E;u^=n~$%I>Qp6W}*14K?-LWI2FQI|z64xLgI7z5F;P|9?05F=uiSUCmy4e|tRrgykK$o3~d -$zpfr@+`~`kgrt9*#?|mrNv{Ler%b7B=%iKDK(Ai61&h%z*I+2bNP^EsGXIMoiR5x0!Nt2XTrIJnGPVO-Yf5ZnZ85`hwS)<=j4k#?L!CI}LLM4*Tih*N+F53tYiu -cwV;#PA>gJ1$ -XLr{Tdv!=ZQwd|U^qA^L8D{?^S3QL!Dm0M2UgcghD!XvOrVUw4CK*vMt9M>iPj&=ZOXYUBwK>oAbB_hj@OTc^1e%N@?p5{I1Q0n7lPpu{p}K{!g^UbGK&-?hZuW6^)WijrN7)%8|@gw-sKe -*TQ5L@?XPbl52DQPxz-dw&N8!Z&<@B-LC^DRBQKM-pJH-aBG^r;Dzs%83DCr;}&HsD;XlI|-u3tVsq7 -SK<{5x85>@NrcX^7|O%O7KZV3+OC+n){o046Sf&m%{9DL$e+Ls=;9P*R*~(s^{Hpz%M6Cs&(t+WbJrS -6aqh<6WnWN}A~YTR;?h(&La*cxS_kAO^Zg#o(`zpho(QTB2bsH5RJGAQ0fdx1Lgq~TiBHwJ=td+j_8` -a@vA}?53 -^cvaOsNz6Ku-|sjFxbu7#}g`9NoU+r%MZ=AHPh{8=2Rdhts-`X&64f%Io);o%bNIF?}MM(5(OXyb4B> -GP!hRzfr#h$+~`0${Mhm!(US5dkMUC5Nq}r(VEJCnznbtk~6LR=~Pr{0!(7El}1yUBaI(?f58#_JA{N -W8bNk>^WLf(6Qyyjaaga@Z5s#IzhcZ6c3m%F`%WpgP#-5l+sDG&Mk)ObabN=P|u1!l1bUQVLKU4jv|} -{Y;1?R(Yi@sr*j(oB`hL^6LZ#^qh|>AbR6IYeXbUy?T_mwLQ@ol*zzO9Sb!`Ce^Xc$$wVAyc|-0vRQ5 -K2+BSoD=4-8v%l})RNj2s%)PbVi4>+~lbXw^#6Z5u#5PnI<@P|U+E*QN;KDq;(%=RLnOvfDCttSTj^z -zIU8ZL~~`w&1jor#IBw&861(&}4~%ghlumD@bQ)Gc2`eQ$iuONTEj6GGw%%;yaSwp%=kSzk7I&bBrl1 -vZiDC2XGmm!t7?65VzaL=S6vh_!<%wjO9C95{}-AQpmoshbAlI{v9Dl%Uzy{?txR`=- -A;>JS))0nw0xK2$6YNd07WV|!tUiYI=HEDh|6uX^@TY3QC_1VX9;kNEiI%q*y5tID=I%EO|8p -otDU+Hb540fl1`zVXANvsrIRWLaJfFwa>`a>n+|z!@ztzlyAT>d6mvkk5e=s|X_dWz-=9_4Zz&R`$dz -FV3zNBV{ps`dtysoW-HNQ>jwRd^Od0#eshuUJPHV8R6y~ILvIO&9#U}~{;UHY#_ge^o^)yuH!r91%!e -)+rHMt!K-3~i_b>R!rJ+IR2c(bI0nZBbZVH8C=aWUp9M%5sQ_35!Z%xZ-fe$9K^AWYkecl{{S+ce%yP -}`C(J&MC)tW+iDti?aErm%{=qEo!H|GLn*@RJ+{P7F+PVGM -A>lhnbv(*yB~MJw9>!Czk^paLxq>#Nvc(nx;{bOwn9vX6s-Oi98|9VUFo6eUt{K7UT&W(RXU?2B$P|i -w<=c79|Bj!bm_b8~K328*#DI2UgBGEG4C-b}c5Zb9Y9F(*+kwqCG|^>WQ3yaRGPQoeQNlXIFYR)z{M= -K*QuvX5x8kBRXztcj%hI9oxx@!oGbRav0xTjI`iuZuW*w(R78!1KCSm5Cr3r>KkI8e -ugL*HSRHs~;jvD1|P+R-CTA4LRr&NHTBwHUCL1L2FpSPTg9csNroQYa(XRBe9kRn}cYWGs8st(3C0e! -A|9j4rU%`<%0=Rcvb3p*0F1xU%|$^$qG_iTAKcK&2Pm#8~3K1-8KP -o&ydsn(E_UNWBORn@+o`amhVp{52ZwQ}E}0i6l)62@SO|_!94diLLz> -cW9fLhfuODeXhzMf)N4KIGrFJcvi+`XQL3<$tso$WY1g@4gBg)qPYs=577J={BCh(Rp=SmmS{19eRCLpZz&&Q|y_*Zhh -I<=>2c`Kfaj_u6O{0*HO<6$(Ge$zcuSmBzxbrYV38i38GrCNMm7jC)rGD*IBEL9z}s4y-LQcQ;qNlzD -x}|Vy1Zf#)-(i27sW5YGY?pk2KvXUfk{<0c!$rpx)WOg_I3iJD9)PPrb|L4pNR?Pm3#DoyPVTd -pb^?%5lFOJ=O=ISZ;5?r7N);>jrO$)2*%z2N3o|TQ3LXYrPbh+WnknQZ7ldU#a9rP=g+?WN~6JB7nYo -6niXi_$`3PT2Z@!RGD}=_L$Ke!K7_`Z1EzzzP-m70*fW+kgE3q4P10})g&gcSDIY@tmx|qjvx@?`lgrzkhYQPMVNSr|L*$wzJ|ykpUw$f5O -^yYWGOn3Gkj+>xPc*8-H6$bmIbp=h=2>87oXp`S;nZ8x#bYU@T1MBx`#iAANX!0OB)lNOduX=5C)`03 -^4mmxwUr-#K#4VCTJ^{2a3Ktfaj+-nKlxT-!#dRP+vo1#GOmbg>Bk@DEb-;Sh}YYn;9? -KI9b(0;oX*G=;Ww;lcfKVn<-)3>mBrZg)b0xDv6oqzzQ!4m?~Pb9O)j-Py$N5k&~Ck1SD#ci3*=#Qvx -k9MYC+UleN&uZik@%0JSElahl-Z;~$cPreaYaJL`4uq^oKu{va16$1#wUV{6`$?>{erI-tz8+w`WdOn -DKQm)uZ|a65xK4v+EnP<{R5yYHMo{m+DbCUK_ADY{XKuh7swe}4PD -GwJlnpLk`qzJp(#R)O41a%8MeylDu8$okggPg)x^#W*tHhyKG}VM -Zb9dmvakH1$oPpEHz5+rVB^CNG3JlVrs7mPWbEaH1Th<6_Qc0hDu_YIOOV1~Sg+sBz82`q|3dxWzHzW ->d%`ZBi_4lqV7+M3z?YTEXJd^S#?nQk0JjuDSFn3qMbENvpvh|c+36xuBQ#E_M2uO8R+iD&!MY;(|N* -9;M{By*25|T$cEqc@k6@0mlZvE@5)Wz)9ncMBi{H=^bUE6B%2CWnpcM#5sk}^DDff43&U0yTA3cnKuU -IJS{oUaM^Jsi<7T+q=Iyfh)jOgGQ$LBte_=yOR2%{TOc4;$u)JAgHk-=AcRkO!|mDfP)2A5L^8PtAWeo= -rr-v-2st>XlqL=VC;2PJlY` -_em&mjq?lhvx%s?Ij=oxMv|VYUHA(%ELd+7DNxjzk3UDG9KOwcY$E1O98Iv+#Ut@I-)iXomalBzCPDK -UcN>2X$(y{<-*ZZ$wN6irFYI7t%QWWmcYd~}>oN&J-;__RC~oK_eccFeOy)+2avrc+$E(LrFo@JRVTK -x^cah%7PjPufd#13*bE*bv6m>f$asaObUZDDgFH%LrlAow@e|mFstcvx`d>!HsaqAL8#J^l%=o7icUK -*KYS8{b}l|VaT{Ahz-bQK3w+Z3qiKyLCaHn+pD+U>Z`={v=#Ccs2i_XiWTZy|%#6)dlLotE?(|55|E7 -w*)7L}M5TO63`I`rK<&2GHKlp5y6uJ&3;0Khk%)M0qap?5e;L62RHjK->PzcebqvVlY4-i)cIDXLmmq -ebEkb?(~SuV5Zd$+t~QbZKvHFLGsbZ)|pDY-wUIUtei%X>?y-E^v7R08mQ<1QY-O00;o!N}5)~03zQ=1pokK6aWA#0001R -X>c!JX>N37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#8VRL0JaCy~O?QYvP6#cKKAXH$G0Zk8JAVYz -o!2$&7kfz%Y!;l&2DrO^-3P~k%i@y6VKSWWs<0YGeVL^h}l?HIo!Y|{y;$+;BYfPV -&^lM4-!-nNjFPn~9h(>5nJePJ{-4&{XiZu+R8a#gj!VZpJz{jsbMSQuceL96?iO?6Kg3lqjwNHA#YWW7s-k85K3L=DoR}3=! -b8sN$_fbgsRmLwl2uUSnsTncgDcjU~`u^8xCq~VTq -IkL9ckGx!t&O8q2&9b^U4AU}6k{TM)7(%p#KI^3T3YDG{rDaawPc5mMj|y7g@^VIg{>5CMCj@_3L%7h -xt#--$NYK6H#QU?$f#}lRjOi)F0_to}0vXIqS_BB=-t{br+@{}uEWZC(riIIWNINHKo)%vPqBtK+= -$x2O^8-8PNK!+AW59*+VhcwVqVmF5f_od{%#KuMjRN2KM7 -t-yTWgVQW#Q?6$OWj(IDuse(U(Qsq?U^x+bZRGeWB>g63$~G`wL1w+=hrEndQ6*PGUu>{3nLD5!br?% -{s_CCxqQ$Y*j --~o|CARACSyDat)@3nF>r!K&biSTe4vadt9}KntZvwBvr^t5$y4L%@lD15{ejxs7GL2%Re%mmDX2jE@ -Z78fFVWKbKQjGk^NywSWcq!{{Z8ODB3`~#ZXUlt4u`kgi`?PX@M#v+LneotbqLHvOZ_Lj^yzUjU>=|Y -i6ZWoHB?+UPvqMSe4tlov_a(ks+zEpWk2vCdF{7dFMN8m9U#kOqw; -s4Vy#4kvkB@7ay)VVphDMsuLP$I;b+)Z3sVKg--44E<$#Y8nYi)AR<*NWB#?Rw)q;p_q4wRV2aS#^?o -qYt}TFCD*o5lhw*tu2v2gydGJTp;kYN^HFA;Jgr%^Mqm-$;KOm^tt`x|)uJehC0^^O#PNw%E!aR2%#A -r(YGDnGCsT$a-qu#cMUQ5bVd!ap`Y5H4S^BxZb*QVgO-LX?lGV8Vl4r1=Vjj*o5zsa-^uaZ2w&sw%2b -Ql`f)XtTd2bdbS-Ni`v0_Hy$(n}zYjDP|HS;FJ^#9x*e?A`1$+*E?rGwL!JuZ^ya9UiSW!zEV}bHQuS-8c@xk0wX;TQbZKvHFLGsbZ) -|pDY-wUIV_|M&X=Gt^WpgfYdF>o)Z`{W5`~8Xy1w(fL!^RGR7S~=7$B}EHuC3Z~gTN4I-f>UIh(|J9Q -u0OcfA7rfn~#%Z%Sq5yA8g$|W@l#SJ$uTwRarMIFVD}j;(U_Hk76e#>$=>sW>>*5Q^Th}ogBqao*g~; -$MK85hwO2&3)$1U{FN84c@whZhS$k5=OKGpHCb6CdB{%N3J2a4@Hu3wL^Kl#xyq_2zT`z()=`zLE)qO -HYMU$<`nVTmy-o7$SDwB|wj6gCWs$9DC@x@VAEZlO3pi85`nUY(9-b9|FCZE5_bW~ao0F##20zadu{o -;ivJUCvaUq%{&l6nvx?NUvx#B`N3;xNQBu$#+xL5(KOfbo{ -K2YiVMB%Is6_n91$`9rOhsr9M0Uc`D(*?u6O^4ABGm!{FewxXzF&=ly!$KndCzZt76<7^E7Md-iN0FJ -wCz)JP6mRJ^CEQ=~qZn&9@^Yk*q{1tXMU1Tj%kH=M}fuIx`xNi*Y#HOsw?ILJMB3qzD$TOC>we67EW` -e3BGt1{Vp^X?|6r7BUC_kgXABBgJ--t$kgZ6XzuOb%H$K=@XvHkCO?iD6iQ<>uPk)o98q(jR|ZV&n6Q -TB!dYoCdGS8;Dg6`&69MexXV+sE|51D9I1=!O`x2)gJ+Y;0egH|W+?+XS?AfRK{IicH5=A!I6K*$95b -nloCPPlW>XeHG;!8RBZ2$yMQo -d%1i1Ak9mBw*uew*8inXxawHKysU$Eh=U13?g+0{V4ZG})FjZ9~d6^HxW&j@J8!#;ZILf(sxWkOlsMhWrEbESUJ>&BPh-024u~fwl0`iGI0i9lm%BT-6j`29@6CtNgMt)R|crz+bSns -4`?oNy+1AyLgYx{8UrLU=7a@$3}|I~IMDQ)4S<~`53LPc0NAdnyFhXcOd#(qMM@&D5)v+~g|R^+HuZM -eOKO3JShQ7@XFOe)Q@vrkdR1<@AfR@s9rK{Z6|cT|_-7BK8nf#%QR19)upV*GL}Q+S$#c)tV|LwnUM` -b7E~PiLYyEM%eght|zuF!3a9C&OvEU8b3gIE*PIyv|4x+3xuy=4gdA^0ccW=V3SIhiC{vK!*?ru5aN< -S{#EB#soKZ6GBm3~x@j`)v=sgI$?5~cgUQCz{>Z?nb_9aD7UNY?QDA6(q;D5>$VsHPB1N+H1C=Dh&(Q -$+S-ZLhnJl&8CK9b6-}kqPuEuKB>eW7pnBl;;n@xJ4gv!SEc`3{NGIl1msv^4LppOJGdIW -v;pa-(1yi*Dg7P-Pbbit+5pf*d5>-U0}&H0XK++fuy^nJ@ZPrD+obhSg^#zxPVd1MPno -2CaEDlC(FI$7#k-t4pb=;t>MLGR+oj$4*(rjaGna*l(2=Zd9&I8S~#BR;4xwto+84StRtvld>P>>Doj -Jc@L}@7wk6;Pku08^a|qVU`r@zfDU+5(a+ANWN{nEW3ewxE&M5XOWbT5IFyMy!0d|>#8Y#ZatE5i0${ -`|#We!q^@`dx*NqAVma)Af)9P0Gt>_N2HE@i(JG++14u_ckm-9Rty3aPBdHulx{@wz7>C@D -P6C54amrJHHa_8D^-C;Lqr6b)gCM=kdxBCt3?83{-~=RCbeHhoclm<5rvH&(>($1Yt+5@c!{$C0jngx-3Dw!lclUfIm9@aQJ*<=~p>K*zxq*G#AW$)O_-G -Y=xf5E5RAMj+MzC!mD%jilcdK{) -(mh*-Q_6Z$Q0D|H2Wek*3F$=A0xaNI&O#ytIWNR@j)m_`+k*g;SVydbM|HT{&;WsHf*o+TsO0Ma8Ow) -~l3H!qefq@y4y=V>2GOiK`!VDj19Gn_XQM%xa4;ut!9Ah`0u!MD;rbA@{f(p!Tjv>w^H^x(H4@`rXfO -wsy7)&wIE=jio_e}8htBY8-1!B`cSnZS@8TQx%E((PI2?C>_&w+!wqxFVl9V1Jp!b!KkS936!#j|LqG -xdcG(K`y$v0KEOp$>_E`Sw21_l3Q=06_=+af?oWZU8xd(QL2w43Mp7HRYFGExcEf74#vhjek>XX2WY- -BxhaPdxC!(S#KaD^WY4H7rq8rF3X0S?XR%}G7lfz0XwP7OVk*<3avfFy1dSJ)Re>+so5kAxPTTtMApc -Vy#uI{fCMT-!{0Zg7%Gctb81|W?P8FT3ryx9z!sbG%8Rlks1o9TFubsXDh(=L$Fx84R#Mr+aKnq@@P{ -O$%Z)wlMdHuCNRC72tx0)^*zZ$vXGdH~+BdrI$W>c_WnrV!++a8nFi~tJ<+ -MKXt%_M1|+zTu6?4^F>*9o1>I3+w*DgMxf23jj1Y6NR~ekLFfXE{G>zQ4YhauMP3O2=J)g)bFal>p{v -%3)AZ@^4AUz;i6NlGoGNW)<4<99=yO0WUdUGxQ@a>f`aCtObq>*cs4}JLsJ~73KWX2>ff8b>jlV!fjA -6#Lox%|`L^Kj~e1eiRVCPO1AGJ%MJts#e?3=ItqTWWZH?N-i-ZC?}#<*x$a&7*gj#YH(NTat+k!$uXd -_W;&2%27xN=O!la|Qil0CeDanVbHZP427?T~RaAbmJ-%moAH4UBDMBGAbm&^!gl#&v3W1e@J)?{N##Bjl>aT;`a%tXkp!S7WF+K{!o$2Ph> -l&EL^nwiwANS{ft9-mWBG?pQQ3zKYvo{w&-Q&_mNereYFXvweQmt-Izp=>jgwRXhknllKB?H9zmYN9W -C1|PsQT2Zu!iFGrh+-9~;sj*#E(Z=2PW&L~w6-pwS5#{@^0+1=C&eHezg^F$@c`71_}zXT45nr`JOw+ -PMIA!MB&(k@p7oB*kMr8C8BTtzt8wTPgeAN#H+20p?h*#w<9{EkgElE6giuU>}5Ys+u4u0l%U;H8?8B -av6u=I^RVe7_OuME`n&0eL)D{_-VqCV0cV9y)mRJ@k8sy!_$ioV~_33_HL -m0gp>h3R8xUFiVt*n(ODf7_hX}d7Y#jn@7OAbB8K%kyWt*v0#C!M_9yy?q&By-U#QY@pcZmYcIm=$6thsV^C)h)gMvZubaBjBX;=5`$qYG1t9% -TzJ?hgS0|aXbA{_*igUwSa9 -CY1mLIn(UH8@Jhj|FSy7dMDV=G1lPpL3rx%xnYu6KZjtgJ3+Mh66A -z=9IoDk-!kHrdR}wcqSbLPf}ceKq@LSS>pTgMnsn2O*l8u;9QDI#J*y*p)Oke%M -inh`v!SFaS}SE-%IAi7I^4+oz5SWyK!A`g;c}epj#u_smUli=p=QXgfJ(ml09gZl~8! -8xhlEtUG_EV=i}zyWH5%qWy~1D%j*H)=uXl$%+SV{YkewefjBt_8ZQ@j? -hw2vkPXfrl2yp98hYVrp(r(l0kS4p@d4CVWX^YWcIeCj;tYc9Wot+KD^>DeJ{o_q`Z`ESt&rwV};GE} -`yEeB=&*R;t4W{nl__B`{k-+s{{T=+0|XQR000O8;7XcSD -t&gR=oQbZKvHFLGsbZ)|pDY-wUIW?^G=Z*qAqaCz-L -Yj5L5lHdI+dO66MN@Py5zyWtU==QRcnav>C$sqA=E^rKnl3EsHid5K?JzAgt`&CuHACxq=i~F<$l2~M -Sb#-^WtGZKfcU?cQW!Db;!_d@=i(0-}@7v|jb&b$3n(pqdZtpJEeYa)9VF!OR^(nt#@Ld1&{&o54>({ -TodHe29Q+oAPy&U9UZ~E?Uy#0ZzpKk}=SBr)_zlN@tzrL-7YW3%8hr`Gp@2V|dUGI0g(|5a}?%Jx6zk -cAq?RmT8`j>*>w7)*=_+KkE#GZ~FhB-vEZkdhUn1F`eFZ{T4?38(-lXOab|}YwIPwDqDCJL+ZKcng>GthP?RqPQs%a| -x^1AQ!_Wzj=)v6k*w=EE*fZnjk^2=XZvELzRzIuNcHeLHySXt;CeI-nBdlPup?TUX;E6vL_{_Hiz@8# -P!^fJ|Xt8mjD{#Xg_PH@WZ_)xC+y4p8G$=ipz@7jP$EU<3H8&NcMd#~Yr3x6MJ`iS$=ZE2FJ#@!CN33 -sB{^?XP><{`F&)f&yMyIh)J;7c%AvY5^T)k4G&T-kQ;7{XoxY}D -2Ihy#5sfeXLyI(MZ-Zmk404R@zzWLw-g9d6}n7;=XuG$QC%*{dx-mItQmsCPCU;Wt6N{IKfl>D~Mw$(i^9T7b{BK>SHQYj_r{FyPSZmg= -mwM}9AB`txd2WY$i9Y7Pi_Qz`h|71(4RAgD~y*4auvbC~j -|oa^7{Vk^~cW^`G=}=50Wswf|i0fd5r5JABrE2Hl;tgGSD;pq-qIl{e6ML~`Z93?~7kaF3-LMl%y&h9 -85z-u6Lr?{~N`{%+z5`EP>u>FtAV=?@n{_r<<$R^_^?n>{p|NvrcFvJY`rpPqxhWP_Nc)s!qDcq${=n -=1u01|d>VNhpS_V=z`mjB3X;Vx$5`;F-4gIHYf!EFAInb{Z;D(@za)*>BC-Ziu^#)fdi~d -~M+2P!|yY)iW2foZ78-W00#B*rzx -@V^#IJ0B!5o*)-~9UupJW@Dzz&NM!73Ui=pa~JS3B&q9^k?pG=Mpy%l#TV6rD~)Mr);nnT6RXbMY^EW --xA?m#xcI&O>1u5nd^i5t3tISeszmY5`E$YFtYW@tRl0;845PP2g1tdEm}*|Ha)dt7@ -azf?+HSD@tkO6p8E(t~x0bfaC1>C81BuUZzya2TT#TD#j*}<=%w;5W6#d%|!G>6Hq}7n`#w;fMHjBM) -XXdGGvfl^3MdINp8_BU568ji!5cyQ|Q;OgwA?D89C^f*S`p6OV)J$p0*3$l*lNdTG+Ri}|hDHoR$)Z* -`!PkCsPw1uj&ZoBHM1dk=j3}%?{6`W3K2j+eW7ChvInb2p<}?jm>syDq;zqZ2Jzucv@4osD%n%HQuu5 -(|Gh1i5Xv*L(H0D@6;N}cqj8aGmUOUjVp~KcqbqA*6u-p`${+D5>Hf@o4+x&w4$PGroe1Hv!V=GY>9K -^E146s^tT#9mnS_Htp>e@^A)B)l>vKRWS)g5?UMT)pk&3Sn19W3+=ePs2_$h>J!S$&bs5wW{VdgFj@a -7<*K$bQU|(C}$I!i^Bo>^<7TW&80~NXm2k*LV{}#q$R@x*9%{=&cfBsqihU1WPO~J~BK|ptCc+G#NMY!HV(QPsGj3+Znq#@TTb=@h1>0A8xbp2_9eRBP&DFWd4+GtNwn!%VzAl-}C2l7YLs -ecNt>g$u3F4$0uQ+SR>&mVIHx5ll+qOu|AepQb5eqJx}eQJmNq92Y@B)o%pywk|x>hGgK(f>;!f3$IgKO64)NazO(SZh8H8=R4#TC&>MRVMMGWOKV#=ufOhge7$d)13`P=cfa!Gz$kTxwh>!)eUER*SlZTtj4%|kH25B-&n-BO -FUHVtv2H%MQo9m@_k*>3;QN$iHgCa*tk6xSWGCC=L>GY4>-X$mKmRxDEu)N+u9}}u&Rx)ji~*c5snLU -{7a&)hSP;f+5PzIzV$;=3YLzGazsj!X|MDEYG(Dn(+ -_MSH!l#!UDMxLBM&o~5iI$Wb4d^`7XicJB@KXdt?__G#9^R#_830CpiV;P{wiru%}W9w)yO6?cU_SHk -QzV#|MP$ne4Lgjb%0;U6Bv^*S%gTmOrY0i?OttWD;Pr+)viIdT{p$ZlI#*)4Y%Hn^@1qb1l2zBabC$& -|1#Pl`9HaCC8jifN0Zvx9A-X~BuEk@NFBpZpi4Cq%o%%7tHkxwQU!QPVW|M%a|*iTh^4~(Wsno*GpWi -M7>_cmMz;-<6$cmWhAlk}jgcR-y$BAPw(hq_{y^Z6wMSquN2Urqp0HIN2hgaSZx4F?!1KM!Ls4gl-mA -?H&T=H}G*IsV9TAqpL*S6@hL;($nYxKP1D5ZQ+bhEqKPRhK}?|QgtTd?S2hVs2{0mQyP`oyscsa -d?_#ZV%jAHILOn1fT$WQ1^ZW7QLXUV}tbk677 -q{{*I!pkNC#N)l?~>MGzJ(=FZ&xby2>v?XB|VRQJTPw$oF?5q+Of3ZPR_E45W4p{tO$of^8)D3)2;8L -q$mVEfM8($gpyaw1*(ck{b52Zyn*DY?~iYL~5Hy|PqLs#_p)327}N$HE$7PzCJ6WdnO+iKoLd3TTu`+ -R8Ahfuv_sxZpZ6v}M2ut?%l#YDgub$Bt}FI(n2Fbt2DBhID1XjmkwhS!;q{CTWRq)E)E_wfadbZKbfC -_|Xw3@OTkA;cJuO2|%RN2jA_=T?Xm8_)H07Dz6-^$Rh5!>z>Sl&ojA~I&}72o+GOBHLUO5sGD9opaAdJL -!3pNqkb-K)Symok+?q93CHLjfOCS7NF~wUR-M2%HSb9s@_KPyi`_TSZY$FE0Of?FFmsY?%&3DW(P;x> -}_Kt^P4lpwSG&V5#CHyw1QDKRMa+S1vrw%-c4$HskzDU7&sfFb!`jVwp-B7$dn>&no!qEYp{V -P#N~tky;;01>57n&#^(;5Ao=eQcO_7cqDu1j2E(Tf9SR*MDI~>Ur<_~}br5oir0YuMB>WFC=m^M4JBp -v6#k}*iOtyY`?*)H!99WXDkcaP*vY$v^#e1d51Jz`Yjp!<#m%^2dIkP2J+0d8drkmzy!A&@rDff@iii -mPO(&$E(hD0gNO|9edxmrDNo}IM(iA1}BO)?|pL~1MgNZ8wHl?r|1b0WMF -?$4+o)-7BsvqF_Nl>RQE{KzBV>2Q6nM17c?CFW-Ob6}YH+VOc4LmA3&rr -}Uu03kg8S${JqwWedGpT}L3~? -}OaKiDnGI{j$uXEf+HvthbepvYCcFLZf@t>e#X=;j=c)Q8zILJ^2^;e@2sK%EMn+n-Bx -{!}N!NQy*bNU-u4-^Z|HK~nt#33~+=@D3k*|}4JmRcS*jINr9PMap$ICV{@5JQ(|EFA5Wodn68t%^f9=b(-jET1sO@xGxmccT9gT+Sejd;h-wqP{q1fznA;7m5{9S$M*Ks2Q-xhUA1eUF5-r6Yq -LwyYYM4hSQL1_o&T6$cryty{1b>!r*FVAyH3=jf#%qF8!wqG)WWw_`O7hC|#7J(4=>2ysRbRAwhZV)# -%YQ|ycCd&x#BkE~ye2kYnFg;cIa4#*wLZp)zq$J)K3Agx|}st%7>Cr+q-*>e?r#~s9*^|+96|CaNWkc -TKtRox%Vk;p$7NXH7cDF$iqEZjO(&nuP}Lj<)UHr9q7v6;PhYGifBF;glU=}m>VEN;h>CQY}f8ip6B6 -teDEC&b)=(3EvRp_knHm;ozba-l}g62yZ73lbF#6aqgr?CeIcU)TozkicWeI7^Pg89WYTN(nWV#qs4Z -Nt&lCIZm#K!KVOey@hdQd?ATt5$<16w}iw$3I|z7;g{ySDFFwP;ya`uy8&_@KT;3{rLEpI3IfRLphqe -WYPh?>IAF^kB_7_k0CJhwR3JYyEIDU?1oY%@ME;Rv`eWC-QE|XV-Q(s)`h+eF<>;-kZa;X7Id%_RE(< -;NTI2jmHS@sx0a+<p^Bt8VtC^ZrnN(2dokuHZHjWv?s!`uO3Tv7f -7pKp~k|seD;9_A3y8AI2y&qs_QU3Kc8|L1Kk2cBS^_ZLCAkU3v9C+khNy!rgrb%qM3==pqNQuWa6$-V?t)ht+EtkdfCaDsR)g+hp@7RBjjd&`Ih3FR#R5 -WJfO%2eANpj>tXOfl_Ju~>CO9?jr$BI_jBv5BFnV`#T4X|!t8mHh0Jy4TDqJkKzKF2!?jdg6-5p)!{e -oP^d*FeBX*V-Q@7H3E|Y{ZW(EF+#>q}Cr|0^|u^FfJI(vd&uykZLKRINM>t;P@Kv*P?@u0WqBr!2yk+ -z7$Jyo}si$mg4HV8O}6ao0 -mFP_sWQ5P1kXp}`F7N$23M-aOtGU{jaZCi<`$PvL?WY>{Rhj6U%R@^$LByvfecgQ*;r=n=)^#WpjjbL -31TwUh;*8cPN<47>kb$P6Urp1>E*yVO#+-Wefn>+sh+0po1BzqgKK7>b3$H_Z1^x_ACv$5`t7^x8T+Z -*Q$-J2$J-sn9K0eAEe#t?@l&B~yqlLYM-`*Pa#`X7E3c=zHnd~ygYA*-{So6!P{!-qg;~< -0|v^7QN+Q{5YQCNgbKqR3EO-ZYKoxSU1A{epqj-1Mq)5w7&Z?eE0bZye4Rb!>u42_UDjdkNmTq|HRHw -<{{PF1%IG&I#Bn}`?2Dsmg2YZ6hdic_jWIYFTkq+oSZ-VmjI_Q=U^RqC4kckz=msTYy~p&b=)Qz00RT -sS-Ci&Kd;icD{h>9zO9)BSq3UJHze3)(xdGh-z_9gmO2fLsplKs -l1Qr-=q6%#R4_`BAul<|Gd*SD)elN=qf;ga3H-84L3jPj~by5_VtElq7TPvH88Oe1y&}uEXJ%Z{$0t)SDu5Qc*PsP&x8F={x-3KmARU-}dDX_ -_>Oa~j}$ybd2y6&6Cjx!E5lv1RlGTiB{wCtV98DS66S%oxFSet%agL(@MZ_f*T%^>UU&9kC`m8l*-D)*$Cxw;Qurgj& -xxzXsg-xuiQ3?rr+CBK1G3rd>I)e0GnSD!$>1;f9$x#$+gDtGk+a|>s3*GhJGvx%1aX?L==3282f2gFy)l&QKB2}XePHTdAWFmodwTPS+{`)hW94%v-P -2!>4zJX9-p-fR*Az0*yritCd>skj~ElFjgvpB(DxafE{F_q-TOBKfgF#_cju;87)BeyNl_%eQkKNDEz -7Se=00jOsRG(DeS40z}Lrmgz9&BB-0m<{|OGg1feD3|105B&jrw^^e77X=MSoy&SO_z@mf -1YSya+sNWYbP0E5qy}@s+Fj#^AXBX|@;!Ej>M34{_C)=)B%^lMbW3F>;ufE3Tm_zA{jg;FrBSJy5ggt -=z3xlxPW*By2_VOkE-)eS;T~*ZGOWwZ3idiwd9J*b-6ff;GuI&G{=Vbut#fn#$(YZp0?#k(+XD-}{|1 -VHW0|XQR000O8;7XcSDb-rPyaoUONfrPAHvj+taA|NaUukZ1WpZv|Y%g+Ub8l>QbZKvHFLGsbZ)|pDY --wUIW^Z+FWM5-pZe(d>VRU74E^v9}SWR!+Mi9O8S1go6q(C7Mm!%75uag|ztkY)fYMOk~2u{`+l*1t-U>4psX_*m+;g -+b1h%I+)mf&YNHah`hScSMtcOut!bfpmGbH~ZkW-cx&R-39hw7I#stSd!PP*}+-PPSC$+Qe0 -w-KIBeXKQ?OPx2*7_yHJE=%aURj57JDtphk^tX}I -f_-h3dMKYD&1A|));LT;_2%*XFsFTo(jGC6J~Oy1;a`_*`35u&-&Z@lX@g1}Iga(R_#KT8Cs%9{1q4UZ2mtWP2HKOhX(X>9t7%C7>-Ow8_DL%m| -IO{=F$Xn|RV*aJ7!AW{Id-a?@G33HEN=a$+*!TSDag@BBgqb+ugX>+huam1%HySyOkI4N}G0n_C;Lqq -gxLg!dV3J4q_DEbQr~+Y8KJ{9b%*7E1ivA-A8M53q(Y4UY;F~{ef -b_hxJ{rfIJI?!yOYUxUbz{<;V%$T$x8n?SZPKer75beGF^6O!jdh`k4F`iqf$H__ftA~RMipq{R#w%} -#SUZkfeINxJm6sL^)ayjyVuu<|MOKB0m4DX{f}#)!!>Z(fOfAUTJ9ZE>=3o7VZE+4CFRHA7Q~^@SdRv -7zlPNEuUN~G?(I_&NvO6DxP#%o%=))(>>;B9=Un4XoeCDl@P?(;B|9<)hK -8K$Gj@^Pq|H1m<;;+5dYAXd0N;vhhdAOosS+1lypbt3vNSC#Ch?_pz#<&4!+J?VsU}(;^EZ?)FDn!S| -i4{Kg3Rt6zPHD*_T8d$3!pS342fZAX-8g9}FQ+LyzQgKax@8r)9CnAJc=uaMm%;>#)MvcH9PKR7P(lC -}X&@=@G#Ui?(!rOaK)%6C7j%VT1|RbIEl9Hc2)qHd>f7yXFOPsIcwJZP9l%&qAGTn_4*uju1|6xCXJ! -hJ7&2GP1Tw0a(kctJogTK?Vc0>!wT_sxou6U!r-JxP}D;p!U(POrz-($DO}$b<^tBQ;)SuyEh -@74JXz9)qSLU6M?@BwA9%y!&=TE@@iIXnA|AzbyO52R-V6b+4CeIz%#%UtvogDrz@5MTyL9ASh(JQ8H -VM9Eg+7aMWV=c~7Pf(8&Y!A7lZu9&A|f1Q4Cww(tr2OMsME?Yez7Xll_OrbN5ewF>`utSEHy@I+gHMv(MWF)f;26x0m=mjUoBh+)=Ku -}P&R(48CD?HAJNB-iCrhXvdh=43VkB~Lyf9*++z0UIIBdx;;juitdXSs(LnH^-bDZl%2@Qqc7YWE`V! -f1BAeshQt~_gOk#Z#N)*PHn@8)694B(7n4k4$PlVvsugb4`X_iE{r3?Y@sZ_BE){z{ihczQzuypho+n -K-pY@3@?tg!6I0qSPW*i|FMWz~ytj{mx5?+F8O#sOSz7MGjnThQO9KQH000080N_fRR<*OmdWZ}F0AM -Bn051Rl0B~t=FJEbHbY*gGVQepQWpi(Ab#!TOZZC3Wb8l>RWo&6;FK}{ic4=f~axQRromyLSz(RAc_sCAv?PpT@6&8%{!d{U)eWwkX=x=_}&++D6*W97QJ2`|F+Y$cs -)VP4Cs(1mQ&OuUA`fY((s6Ys!`wrZ!UCR|##fF1gGSO5O$`rXz0{O0G|?|yunU%$C}dwc!u_0_v@Wdq -vA9$NTs{m;=zZ~7{mvyi_@v>U57%96T1c{e=9yNPVq)y7yD7wR1`qKG$nB^GDy+$G1esLFefD{uAw4e -5JvWR5epX98gNBUL&z|13PC(JS%RkYT`T^Pq%PC9~%qbS+k@c~;85Xw^95U%@;x0m^g$G@X(8%trpix -|Gf-myKQl>^8wAv=dSkfLk}D;gaFK-pnTO(;CC0$q)ukSW^;7TyKmh@D?^=@XMQP{41OEp88k=e<1%3 -(a5l}63@myif7$CAZ&?vqsoJjK|^Akh%jcE#+`^`lGnh}HJFhurB)c_X5>%e0WS#10&%N@C?#bAumY< -z&xT|vl!SD*K?sPSn3&0TRu*RUKaxmDt04VGSE>-&n~CC+nDgXjVzqCC!XpUE65{P-4dZExN3VB0K!< -dd$UVuD$h8Inrk!dYOhJ0DL@jNj*ZUH=MJz$K$l=Rt2(e@am)hkH)^i)JihOlg5`#dI`a(eG9cQ^!O< -t%Pafh(cgoiyMx{?Qvp3|iT$1Ee?D2p>iGC=2FIDb^h5?9wSvUWT68M@)%TB?LLX23@DaR%$)un?<5> -TZ@_Kd7=G>q^o`t!#5>y|UF$z|1nb8d0N>tp#G-<0Tt^(u!Uc0VAPu%0B6}a^5b+MSD-=8s{zwOEw71 -)>gqh%1*PJ;9xX@fj9?XfrCJKf^7(ejxX&OoQwfLxecPB{1iisuE_z#9!OV1E -WIBH>iZ{_R5iSF^g`RiOZtUl-=N-9mBF9eqmBsI>UsBj1&mPz2^#_=lm#v%`U%&bb^M#;I-tdX2%e@P@yluQtA^zRP%>lt&%}8 -@_Fj5=JloTu7AkkQrC2ojhQ{^jEp+^PPA}H@q=UXZNv?Fh&1qTfwBYu2T@ppoI&~pPEELZV6DG^s-eJ*-GkBjm+#(fh0Cz$RiqP -ZJ!M&kuxHLQ(-sp)-@V$cp^kZe7D`KE|=-FaZ8rj^lNZoLng(xooH7Vt8RmeF{s+q1f)94r>?;IxV4{ -0Zt8=H51+C0?yGcygF1iTz2p>y~$a`DIobt!c>U7d5%lTC>yhUBwnxd;7BWHIsRZde@vxAXU1yp=k49 -PLisLtl6|J~<(dQ!FclIE^2V&;^VQ7TVGN?Cr$s6OeJ#H6>_kiapAqM9oA&MF+(BVT-w`X9OM}3YrC@ -xgF=rlR -2TeE)A8nFz*dYR8LPEZC#TQd4gmLp)F3(p%xdIZS9T+(22sdQ0#dWtBl~uknBZM2~bX<3RX>P*Cc;&^ -iTy-sq8%|5Q;JAl$U@?Iri`Ltr99Qau`DUoN=>5@&FPC3;X8hYZ -D|%LCSwF~C*Gu!fNLoQsuhs`K!Qfdt=ytW=Zskgsx;adEruMmwa#s%<58YPrTxHS}$2<>ueW-#R%c?IJoWpN`E+*Hk_vS&mT=%wS-(nn!3XdDD^EYnoUd5 -b%xEz4=@B3MkD)+=@RA4&Ra{p>F^_?p<;K(`W)Y(J2j*B?>(=UYmS6xrO48*1{$aCTnuc -Nnjz3Z*h+pLA@y(URIkes?ph%_NWS$E7pbj0E^4>UaDVR{}H!S)b$p!bpOu;E)Iiyii;hDGeae9iL7BpuPBajk($X#0&qS~x+W_3#UwN^yuj`nrc+(m(R|G2^pS*ll2Wp-j0r*$dGydntz< -WA-U{fG~>RohP$p`T^m0%yhA3J2$5#(`bKEqt87^UEEpe-!SL#kkyTI@pa59yi8H0-qMGF967C>`X>W -P7!{SPenvuXcZq&0TtfFrQ%~6DaJv7B0du1LT@hor;!tgxiYoI>ijpM;oqsUHaiJsJj`uTqh@gpt?^FF`0_mrT -6I;vA68LC8_~|^CN)?x(nL-&mOr~i*9B|s(Rc4$cvYSqaMP`tE7e^;2i^bs6^6@@$E_%zyWHs64=@U8kcn_HkDRr2p{e@(@=?(0hCE6|V(vlRpVCQ -R#Jv@?A$+=zgkoP-3xbY+w7pSxX=(E@(GNlyMi<&U5{ewP|>$U&xo@#&C+ng=Yzh{RTt83ppB-pUsf| -y4XhRL!=eSW6Zn@6aWAK2ms(pnpPe4(Bt6)000&Y0 -01ul003}la4%nJZggdGZeeUMa%FRGY;|;LZ*DJgWpi(Ac4cg7VlQ%KaBp&SWpXZXdF57JYveW*eV<=( -aS6<@Q-{!(Vn|_|un;KQvMrR7E=FTt&!~|luOufOLjL<6`P+$S+qCqlCd_0c-E+?UlnZN0%8XK+d1^)Zt1#3xDE*Ip-NV9de1sHHn!}Hx@RSK_%| -4_9k{<2jz4sZooT$oTEBlKbS`t@c}pMoQ!Oo*tU;n0L3BBaTc@cOC8z0TwOVCLI7dIps>fbWi8jfK@W -5|MQ>mp-)3sw&Z0PIn=)KY0?uREVL-ijBS(=$z`*e3qE0NuaJttGYZ=JVWlG=ZSs7XZESc0M%URttq0 -C1`B=@cBMkHgXMTqLxfErcgRa7j9($=roZ2u~&0WTlwy5!)uWrl7}8XA_qv@`j?9SUDpgrPNFh2bmpu -fPkNwvJzhI0Q(^Qfs8*O*f%#4famqTM)tDL;JV-f*baXdHNY-c~e{l7SR@y(*A4Ho_Y6g*W%hw}C -Zp{aJYP%-^xYAWUa;7K#*!O6;+dztf+P&j}htk8d~vmqqwip(K-X%O+iPv^&n9C5FmD;<$VYR7`Jc`eL -`2>Dtbd#r{nsx8v42ICXlCDKRKG#-cn{Id`8BTc4iIx$v9+QIRI`4j5t)@M|yKf7h|vYE&UpZ!B`fZy -*3_W8yGwCsA&j&rw4=WMiodvyN`wzxy$vGZ$@pycqc{gfv;T{k5^+e2zws^mp)bY?~L*q(^niPrz>X4X -^J+ZcZO88$1&Ct)#V7~_PSFxKom+=`ZDW4lXkim%qa_2zk9t+pY$kSb}?+nen%2)X!le1_pF3_5%FNPi8e2>Qj0doyRjiLLjO#{#r|sa4 -(H5nq7G+5hV-4L+6FCQGGS8vZQ2>)ne8x6b9b!&n5lEDWf{Rm-pUwTtRtGNB-59UU0|XQR000O8;7XcSf~+vz>;wP+P89$EGXMY -paA|NaUukZ1WpZv|Y%g+Ub8l>QbZKvHFLGsbZ)|pDY-wUIa%FLKX>w(4Wo~qHE^v9}S8Z?GHW2>qUvX -8xNSG|79|jBtJgh64t-w$OYlnRZ0)duJF&m0fNGgeI_`mN+$r9z4q*+{Gzzi6cN#1kEdwK3usH%jT*G -YPZGOtupv+Ralb9tTU8Z%ySR2q0$SIWSr?aC)Klj68!W4P#rK31w^f`7&QBP%h6jLAy!%q^vomL?t)m -j;z&B2jp2zqFtY6JiVYq5b1o_Hfdlh4~;i@sPDq9k7F-zXO6o(W -NetL+uHBiF1u6?N6q{Rm}jtQ%+APie2gt*j%TY8Lo*!@^rC!s%{olCH6FUl{4Q_*Oze5Q_rqpI&eEXz -%mEwm=sYiIEh4Xc|*5zCt?UbQ#9>g26iI`Ss8ln`7{`FL24n02kg(z4n7#gH0=?`eMPC!gic?(9{pRw -a2hSWzLYT3;Gxq|h6g%7VDibCqYLC%4MnlfqUnM<8x^vPlMSo5XDbaC?=RrTv!8+k89HuoJ2!BZeAM< -wD5b;qnpTVKUpF3QPV{WTcn$9=d1w8RRb|Ph8f&JgwsP>t0ZE(|yp7@47?LE3;T)(2;kUqpaWzn~8`O -^OdTACio#1pMw -0^O*Opy1DPFQW^q>}q6rCm7U`G8q-Otz(yVMDJg4bbWeFgTGeZ@pH3<+++AP%CdUXm9eP=*d5vUGGd+ -ezfMW(K#Q*pqp4P{!?Fo?T7$3Xl>r`BL!?;&L{9a}~i45V!~g^wh4?@~JqzCAA@kPsHb4*^L`qPwH(h -kBOuRK6K+DY1WO8Z_CoMtc{%Qr9O#3u!FK5>)gPdhIOxX6LqrUfSlS1#QU3kXP -7x2Op>kjom1d)6<_VahUG_4Q~;9-H0}ltdfS&j2{jmA@b3@lCkgB`DfKw%Ix}k*O>Liir7Lv-sFQIcs -t4l+vZTylVz1H(zJylW--J?h9xBC_r}qX&|hgbdLxR7?o77)hUtGG!#V8xr*)wJhTw3Y+3bs;yV82Ba -ud9;=l4jb>-at7(C_=D)AxISR83Dd?;k;Z(bT@}J}+i+VuP_)hr-)6_;~ppY*ahq-Ne6hsO=ypd>44U -ckH;IxXjK5T{-l7!T*8W{U{v>{>jF6=F%my)IZIUP^7C;L|-_a5G2d~_}`$w??pu&?l}`0C;tFYO9KQH000080N_fRR(A -SN!DRWo&6;FLGsbZ)|pDaxQRrwO -VbD+cpyZ?q9(=IGkO0wP}Ik0OM4k-K4oigErWtEe?ANEiKVDv9hR&R5rdK|NUl$FCt}mn|m|RW-XG#; -mkA7%utqxR&|DL`=&HX)p{oFgIeu&vf25sO3${PIxur=;VE-Z-~Ii~%i`*9FRy;Q{^`|!)w+pKsmno4z9%gYCj+hx6xwf5pm-l#^Fyq5nIMZ*u`bY&;Bs^5! -RZv3L}xfVA9{}kPd-QakSs$9dc)^bySmXsU&q+?vOo7eu^Q!6uVy1q0)`4_Sir4iMuj<@^x%(4N^z%p -6M%f0Z^f7=UDU*VIfsj{iW2WKWxZ1HR7SH7`Nf1rm`i&ZN+jwaAq+liKUVmRgRJ*asQjd^27CIxijcl --|?Xv6E;ufDclBOy;M*1}9|3*eYuX{DcgTvNax_@g)C+aJ -|OCa*z^=e0g!%Vc(8QXNDg|%n@U#Ph!s0AZ?@$Ss@>7g{lR{n&Ez%>$Te;D6lC3>osMAN*Cv1-{+^K# -_dE}eZzHurUsdmhPl!n~$ui-JPADB$3;vgTTcU|YogU0U@E@UVImRRMxwgPjx_q<)+ -WfP6P!vAJsMh%95?fY)E2Sw4>mmGTQEyk_n~RTbJrx?mG#h~HH1v -kyM~vly!h0Qv@OFssyJ6~qKL{UJ1%%1^2~-cOdMyh0uPd}Pu*C+5dl;0vMs=d7L<{~FO$in|GsW#Isx -#xA)j=2S(d<<-p0!n7iIbd|@o?YnI$jCyxZ@hJ5t;f}Ao9RApvP84hN4_?D-l>(mfhWfzkgDVuuB~*$ -aOss+hUmor!K<~ph^Io$0{({ki)YHRLv4dgdod(d<~Ep5Rh+2o{uqz -6j09`)J<5W1pz7?FuyQKasq1FIHLI~?T=#@oJCy^67EI;Sp5%5QD%P0MN5-c6rL1@q_(k~sD0v%-7`J -3xE#m&pNKfnI<vJ+Pv&W#& -u#J@k=Qur#45zL34faIm?~V$1JLqbJr<=p0HuE@hVltmtSL4EH2C^Cen#84Y9kIl`05XsokW@c49<*! -z5>#P%~ju2I{yr<60y+<#fMU~X0oTil4;~G(RHdD2P2e0o!^b!5C@u`^jueHlz+8cJM-b?#~;43uVQLe -91|-;o7iF{}bHJ4jzfft1i_frnvVTiRynX?zkcDo7|(FvI7CQAH592o^gvOe*cHiJq}{-Uf|=c!0@t9 -S|Gg;sVCZ9-qgD$xei!H!{6feO(PD2o+qweQ7Awpks2taqT&+Dd<8IF9z{sbx!B1ebuL+2F-Dn)`rcae*(X7g+k- -wObGIGp^?)R24hhDAC9e6k1(ob^FV<)IfBO7%KzZ>mJMj><>jf)XB5Hhh$m0?vwI@{KwDk%+BOGhn@a -hZJ2eh|Y&)J|F@2hA{Ad0r9g|xC0eh5YKd_odB4j*#Ha{=V6%m!yGh@H#sfYwu(<5ZlCxj(%P(;Q~?) -)_C1tTLcPHEVGmXlAX^8kJl<7=Wy0Cvm4JTXB38+?wdzViwZYV&Cjjrlzw+#~GBn+NFo&p;Xgpux%@n -)Zg80pQhKeE0V1`Wo64-T?~(3RdiwMwY4)(}r@XxS}NYhT1;%^(j6NdI!gthUFZ!87c%w0k*|KiIsY6 -YQ?LFu&jHgK{U5V_V8V^kBEyex=)e(g~#?s_s6Gm!nk1{(UzZ<|7dQkwNR&xKq7F)Wgo2_Kb^{0Vgfs -GGkt1QEFb)O9=}e@{3OLpPe+Aw{NMDj)s`k?_6UUo0-S9AS3rPZJNaHT-%do_X(&0)dE_0G0J{aad6@ -#(Rg)R7D!LM^lHv_xW|@?pnpyz2CN1?w4Zg1u{0)r%gJL7yM;8ZZF&AkU+zHcnjo)nO?oXV88eTSRSNXWrN*pIOA~yMn5o?i)f6LND4p~_CXR>Smpw~0 ->o|Ot(h7Uwlo>YggD!ax`hni=pI(lY-D8D1CvCU^nm>mHXg7sKC(GuxLw)dOM#GQ0ALpzytEag1C)Jd -3kPi2P`0&03Gg%m4`NiS0B`uN$Qlj9&?bo>DBL0(*$&^ytPspN4*|d)h1~58CL{NjMccGjLp2gafFq# -nO|By#2SI{o8&Kr|h4JRd%3}%3&@E^Z+Kh2CTuycy35{5HWUaz(EMvb3x)wy?yB^rJF#?aZQN6(&M+O -#F>~P79*#x`>TdN1rK#Ar32E~VAU()!O!-Omb*Z86|X|$=hH}=kz%?~|d2FcZT-AkxxI&J2IkFZC96+ -Sp)aHc8d8A!FQ0c=u>t%(Y~71Ijb;A$CadaxuQcV;8vpzyrC8#J&+PHzk{dN>%2Jd7lQVH_c*a3c!`3 -pm1J>L}TRI6^bJj95wAzE&D>K*9FwVv^+&Nwi=wYS%%09^S)dz*k1{dQmt5v`L}edrhZu?*3hl?`bd( -h#c#Sse3GMK>-Uh%b-RRiIN -KMZoNLTFYG%+z7xCyxap;Du6iG#2;+09@)GSqMZ}bK&*K#A<`NV$blcRoN0Ezdxk=nBGO0hwl_#_$O9 -OOZ6{SnvH+j5^nxLHDIS2iCdwPUtn8xY=MH*7hg7W_TNIMig0hG5l!1mf~N98!Qxd)hTnoTH_n4G -KvvzHNPp0UsEZ#F282w6UwiG|qQe)8Xd!FLz+7?;rUwP$S}qD9|Zl^;0yt5s&o|(9>gCNvFw(tZSuOr -U5P*xeF`Da9A)V20a|d70G}H*dBKZthH9?pt}CXmr>7~Yw$?2WZ|B~H{f1^Q~40~nf}V{2M$9sx0IAv2M={IDGP#OyoO?;um -)fzAHHflBbM-21_R4|f=wd>#PrbRek9AAE1*)hAbh2F_Af6S>LpzRf5;2{bOUsGe(Q -U37vu3V&w9$&*WkG!B9lggUZ!FM3(K{)eO;noR-BEI`NMq7vl#qWzvN7JyE(!k`(mj>k2QxPEXag=cgIVR6h7YL5*U!II#g17Ie)#%0*9 -}t_C719vVP*flUOgDS`Cx&egdMuUl!y6?;CY;|6bW0R4C19~Ngstq`OO)ZZ5u&)C~Io49cI3B>U!fsy -!fRF!5o)RTY)nak;`7ue|_c!TM7A`y~+lXYZ) -&$vax+S`gay@PT28-o*-8yEI=c!D{Q2`PE`+UMj3GS%)GyW(}(;~S5NVtxAcYK%e%e?lg8D-z>|=8w)`0pw^6CkBT2HE`{y$no -)ZkEp#z_=c{sLXzHCU9psLN&d*9Uxm?X%djY5U?kp1bF@EGpb{>*KR|;fHE5heS55?0oWNDKRef@W)x -y6sD20n$Kk8bsY?!bZd)K1aHMod?VeTsWd**UDbwp0QYkQ_zFWd9rgSGupE2iD4-y*sndHrE#U)lC2` -q2}Pg|6pE;GaOcy|xZSRl=QTauqbbD{_U-_r5=(8+)tMoVnMm*xlQhB*wbGKXc8syuZ(UwLSbcH#8=A -g=epQ-EEV5L7)XhRRz3u*x29Ga%QBsm<4vgtf7XRB*BJz2q@Spu$z5{1hfv7FuqvPV%ygQ7%13A^%kj --pZ<1ufj+x^ez%J>0|XQR000O8;7XcS000000ssI2000009{>OVaA|NaUukZ1WpZ -v|Y%g_mX>4;ZUtei%X>?y-E^v7R08mQ<1QY-O00;o!N}5*pCX#E|1pojS4FCWm0001RX>c!JX>N37a& -BR4FLiWjY;!MPYGHC=V{cz{Wq5QhaCya6+fw635PjEIbeRY2iXu{ZB$cfQTP)fb+a-%76i_gh#@6i08 -r6&pIA5RBBiq>QC7Y)Rsx0;NoYS}I=}xC}zN)fD>B`c~=+&ZVNIywKbEB8^Nf?popph?4;CX2wt)%%* -Ul>W1Zpg0cT3eY@qiH5-#jnq*DO5#|wW@;$RW;I7qI?Xf#lTLlkY&w0-=Tlp<9}pyS&3OG=}A_(HmX` -sC7-47GF>ZaNzcLedGTPR)hm-p`{>NjtA+~k#Oi=(_r8G^RZgn0z;6^x%ViBMS!HX=bR~ZytCy1f0YV -{Q;mYjUU}dwaNm&<*Y-J2kO6(N1Ggi;N0{A6V5yPR%WQ7PASsR_NGK9*x3aEubh^RFkaV+)osps`|y~ -Yy4@*dUP-b9+EvKFyp@zE^2_a_~J!^!j*m?mM>$L|>I -A}pXZ=N}^91>xz&XfQi`W0cFc52dVJh> -S?fbBR~ZNR{*Do^aWW0>AHNW4PqYi-)|^u|p-z!wos$LHyFm_!s$X_AaT#)D`;op6fpj!)NddNICA2^ -vW_N^fX8{a#R(-C8yj}r=M5+-TfzZ!-KO|Fv3cp8Cz0N7DHI#0k7T}Goc04rn^eZ&V%FT&xFsl4zC -)+cNq^~aN&Bz}L9(#3cz1(e*{dBIXP6-%sQ5h~4O -qM`?mjA6_QuZtHbCjeH7|cnVX!^JENo4kvbu9SHV~q85ciO$Ql)3V&Zsqa7d(qHqYTsfW$`%7NGEbUa -TjIo)j&)w;A>fkMM=1s+c1oE|D&%}P;y?&6g6PCde7(6>xQ5V-1doxCvt3duBj~#qqQP -ZWwS*t~p6%Kl>WSKvpy-C|;T5ft<2DXu3Zdiw&M5%Ienp~WM>G+JGfVUe_q^$q$-8<;nrn?V*eBA4~) -!X}TE8QN?wLbRgcqYv8{dU8F@H-4pyQ^5~zizy%+}0!LF~Hw+l<6h+%da5qE&iJ$tugH`_k(cVRs8pL --wri5@Y^J8^1UmK09S*m0=|A8w(;*SMZIr^zspR|Rl?p -`~=uXdsN@i_*!b%$DqdXb2mn}LpXo8zua%a@ky%+W`TvZ!d;1cyg>#~j8(MiTDKJT3W -(b17E${`+1Cz*5vs4?INtw4}pL~rPk6WU&7)R01Wd0*TT;MD_%kpx)XW2r#?`<`L6eA2~M!<>#!{Rym -v&*U@e?lVNaEWKbGH3@OH7o%VB#tY$R=Q{q9=BrUspS-Zt_jZ40oiOn#mV#cp9 -Sz}&pKUGDBWy;l`}8nZqW@Z%sI+w%7G=U?yJ#?kH3PZur -w4`v*`<0|XQR000O8;7XcSN_aUx)&T$j_X7X`8vp4;ZUu%)`W@SGXz2P9+wuJK%|DZ6+3jGR?!+g8) -NLzN%h(+rghC7Z@GIP-fxWD)g@ZQWjtJX$%iq!Lw8flrUTmR5chn7MOeo>1Q7|u{BPG}&>}x5pp&iK} -)anG9#0+%086;(N$J&KQ35K`mo?<4JWf=)~y*6%QJs1LXr=IpO{`##>C23g4*pIUkK;k>fz`tECN9-- -=!S#cqmpgPHhzjo3H-8=ot%1kQ{WE)8zuY{(uHh$KT{Fg_32!kvg5?P{9*Y$NT3K=y;&lm)chz&&FlP -5y%Yel~Ov)wfMB^C(Ou*tvI=&~xB$Zo~hY~v5uE09Vwx~^OSJ8~c;_t_FEMWNyHdc!JX>N3 -7a&BR4FLiWjY;!MRaByU4a&s$>G)$KoUT9-kORk$R{#Lv9L!twYP;Yl3I$3gf5%w6@TWp*2O{5O@P@h6qQ#cO5)q(-Q+aQn -_g@dcBdb(zqcg@13L0gVlDdutBCoNl60Tc{$Ri11T?g9c`WVFPNUOlFXIEqQ|D$FW`yD>aH3xdt%REk -$Iu8D}bb9Kg2=djFlM4ilrw9@^MZkZ9-mSS5c9uNVqHATH`zzp5J)Ss&u9WzaNTCpYJt$H693=BpU^q -Pi=!DR$GoOYzFx~=hb=9Ey^G=IEvuPeehNgAQH-(qjW~o#>>EG!+l -0t0L}pX#(F-D)yO=dRRKA4Gjs7&cyFNQ!%n4$3Jm?uhJ1Zs*N}U7a6AS(SOof6tJDH6NE1_AS+v+a5Q -1fjY9jcvDIrHo*u)j}SsjI{4C^Y9ibMT&{3SAK{Bg=v~$_@6aWAK2ms -(pnpWgvjcert003ME0012T003}la4%nJZggdGZeeUMb#!TLb1!3WZE#_9E^v8WRojl+HV}Q+R}8cdmH -|iJW}60eu?14>rf^}{i**1u2m&oFjU-|zQY9(7LYjZ?kd%ChUrdUe%QgZpSOBG(smkgGF?*(P%p@;gjyrf5U%sY%MIkt4FPsKKpN(F~P -Fbs)3fbX?8$aD4lj%5Xiffm=j|j%Wd}bdGqwR-fmaHYzTIJ;Ne}8mbk?Ns1hD5mo}u}%HjT>gBN#eVt -@?N;Qc|NAR>KCif~yM3CgX5RKKn-h|G+X*rM_3qsbX&~>66Gx`s-QB*wy -}b+mp9IUXAZc*}WhZkd5~nS4(>k?v2v(hxmQylx{$csIlbCn#mzUlwh||=n69pgtL1e<2*PQIB+R9jyVtXf`kxQiGn)vG#w~%$c -=nEl52KAcp1UITp3@p;mPnJex$>r{~@d|_E>8Yu%=3D!U#u_>NWkq_UeFF_E*+P8GmzezhCL(H`s9@J -Pkt^x=dZ5u}$LXWsi^EgH0}V3vg%4O(}>_elP7qLvfS -)J>DY42ww$p|>akO)ATC-xawxC2<#MQ8!$Y(Vo!^qwXSCZepiGgNg#&M%X -Y_T=l!%wg)^{<65f7?#=i@ylpqZN8V(1Xfl@6aWAK2ms(pnpU>7iLrAA0003M001cf0 -03}la4%nJZggdGZeeUMb#!TLb1!3WZE#_9X<}(?X>@sCbYW+6E^v9ZSZ#0HHW2>qUvX1DOhO$cPTRCK -;11g`3V>qOw{^=0N2bV!ch5a{JUR%1UwO%Era7=OgRQKuVJq| -+KK=3uUR}I~pJh=oEv`f^^bS6=m5N6}5R68msAR37=A&gT3(&htlq+aQe-lcN;bWzRELlE=&rOx{k)2 -tIDo!@M%w!!`EWKtcTo`La?pB8*z`svBy_V%)yjBP@Hbc0*eMnoYa-Pt_cCa!loRJmzCQ@fal$zI7&G -9oSS-}rSH|~Z7OOq;RdMWDy5u(v3k?JO4b-GT_0GOfwF&QIr9@aq^zlf6X?`-(QfdE&HGQNZsIT7VjC -R!$?%%l$8(WxbBj`oZpj^jlHr|&`OdTOjWfsbXrgGO;^D$o-2n!{4mN`u}?D4XI6!D2HPooVV4f*}4X -MHv>X3K3`Q88M$;ETYc3#Pc;I7pJtfF@fSa$1jU%ON&m|=)6ZpY(~w($g;Y$6YU!MGmPWlSBaJsqNIN -;)eXxH3L=^X@v4?hrNXFRNVc_>wK -Fzgq-%5#QidVNfn7gi4@Sv?>op}{F0OfJSlTEpizJBQgGLH>aK&LIWk%Aec_BCZ)*yrerl7&(Oq+sZT -4aE(WgHDmsYnP-_88qYC@>y-2*K@La(frV#2eG04L1d2p7SzntxAFjri;j1Ncs?{zEN@Q3e?DTSUEZtB=qU3Row7OdRmqHJ!SnkvUOuo+`QZs|!BuezsZNlKW -RZ&)8|EvSfw0n*lGm9rjZGm3U=)W!MaRp7GFznPr5lg?qg=ExY-O^Nb{LMja&3aFjZyig97kvv77-=y -4Bc96>s2o-`Aodk%(W!lt=tJoYOuiw3+6w+Kh!!EU!O`efnQ&}n$eC(yDtH)j>E6n&hYqhV(!_ayBpIeY4vc51ijcj@BL1`LIJ8;Hxdmskygo41$A<*VRs>WSP+A!Zd(6 -?#!S58y?wg#OVWM^D0-JO;q?M}%{Jk8mE7%6TW1ULX$4Go|uo@{m*>5(gZU(eowoX7W@?O!oEguOoA` -+^o3nO3pJ1&9@en*q(LdX;-a-XnI&IkMs)ns0`C$zE_{d`?^~k+u@OV8yzY7Pp;+srov`7VR0|Gj?Qr+EG|a4Fg1PS8K!Xvcwjc1{CMi#wf1CP6DdQshgZH>S>pT`)i{kDe2r7>|F&fE;*-uiD_ehuM!dnl25Vkd -++0~M}Du5Zu+2rtr^X8gy6rQ9b9h0KDoQz`2b^Rs*l`(La#tAgIj;cyW4i&UC?qw6se}7OB~NEGY|S~ -FIf*~oi~*XcnFGJiAPX|(utSJHg)kn`$t7?nF5xjgEP^%rhya>j9cyNHsj^Q)T>$cvCJg3u-DTO_{>E>H&K{hq~_|u -2jHK3z++SG<(Y7+U=*3_7@v-rAJ&M`LKpXrd3U=ps$Pl!olC3;qD0X4@T#gA^*)GS2O?X_+UEeWkw%|uX-0} -&W}d!gyFzEb_6}_g!^OGp%V^oGw1pLHUEBt_kN)B?R^H}Pjc%)yRD^uBhuSF`Ug-;0|XQR000O8;7Xc -SY!f}Mm;e9(@&Et;9{>OVaA|NaUukZ1WpZv|Y%g_mX>4;ZWMOn=bZKp6E^v8Wj=>IsFc3uV`xTR(Akl -sRi5&e6Qem}?(2}xB_N#Q#GgcR6fh6>v`zORR1}BWdNSN4?F@`8ibIPKd-6 -f)d@8xQ6TNjpYEPn39yI5`Pa)S`%gegVwhc2M18s`?bl*WcoMiX%P1>0R%b*oy5M|hV{{|Ie43N*VWg -)_@5$0N1<-qHt9O9KQH000080N_fRR?xP^j!Xpr04ojv03rYY0B~t=FJEbHbY*gGVQepTbZKmJFJxtK -a%E#-bZKvHE^v9RSKDqIHxPZ_uNZ6|Di!h?=%Y{tFk-hgkj6pcA}xYoLG6wtHWaxfxpD+U|K1sLFO)1 -5El|HmBIkN$&J3OBd3FO^Q@0AiZ-fWAZ4_=%dk5YaCH0y<0kv3?1PZr@Ct)=mI}l6LdZ@9nSP3tUc14 -zx!HjGe>p_|IngsiwydM(=0v(6AAqX7GsL{QU!c?i-xJZ<>y?sMg4)D0ir9V~a*qUj -=(8c4!^R^wt_-9gYh9aane9WeLJT)mlq=_J;tk;N8RH-5fkR%Dxf4+7KqvffidVvh4Qm{fE0ZH;?xZ@ -5*04{#??ppYDH$1?0)i90-7{Qo=cSFPqyDoli0UN%uLOXFz`q36er-tfW+gD&59Bbx_S27qb7(Xi6u0 -1)qB8f4q7PZzH^LuRX49aFNxxg4Dt!_}HRzVvX~N>ed4Rl^=q^`MAww`{g?L1 -Lf!fSLYCp=%hYEg<1^m**KI$YQ?0mSN0wu&>BPene3<6_sd~(rUo<-}tH2<9ypLD3qhU8~Mrn4@=coK -h2gGp56UOLwweysA*_kP07?YC*c?EZIB -AM1g0{g&_Ak|Nt!iA|u&OE12ZbYkmexYVF5KTi9X7OlS4vQ_Vm01dPKGUpk*^6Cy+>z(S7D=>;?Oy5J -CFvZ;5diGViFG9Z_mO>;X1CD^g)KHpRAJPgurl7SDQIevvv(^LzO`7clvrP)bO42jl5(DU?jq-DbNqs -;p`N9EGb91{O*+rXu3BA1Gt%#iEKO=aiN{V$b&BV};Al2S1Y+vhZe=}f_HnQu*(B1r!O{{@Cr}pfabs -Fl(>d|CGTcrSoFnj1S6IA2^hHRnr9O6{M=ys(`&XzyOD}gL=a0iAtv!)Svubfvs?jMK?$;X458i>bp( -$}DX&3XN=|J&s&5p*A)Z-ZWAfzKj@`l#ZjFG|Gcfqfl!S10>!cpd;>b;FOR+ZL{_DB-J4bMc&-IE4AfdpqS!+fbp-w9eR>gXlf~1l?|z6hCFdPQ9h~MNEfk6HuaB -?U3INg27+43PQ!%`{nDasHUYj(0GMZ|hZZi=1)SvTHpslDu$ad_GwMPnI -I-fjVom^x!F6oFpvLkm#hVuib!^qH37a?!U*x+h~W{9KxxJcp+6dePlG1q~IONmWsB*NYJ4dslL*7>Ke29AyH9=irOmm4Fv6H+3D(bj37Wt7PwJN9C<$rX=`wQ}qlB -f&O{4AOb(9r7BygOan@Vk-NpN}D33_fB1Ndh;}7%Dxlt3-%>Js9o~PZ2w`}eip>mVAh;4?mO79Kw(-7k^Xu!i^qY2BP>k2jz7f|{p6g)BT|XaQg7xL7 -Dful9dGV)_dJKk#hwvpWry_ox?1XA@nhHQTnkBMKrlVF*-=C@237LYS^fc&AdtQfm8YW0GQBS&=ek7Z -xe_eF-7-yCZrq2J5F}&7}-$DH4<-=@o;Tc2^vFfYB9je6-)9i0hO9KQH000080N_fRRwj=1UF`z^0EP -?z04V?f0B~t=FJEbHbY*gGVQepTbZKmJFJx(QWn*+-b#iQ9Xk~10WpZ;aaCx;>O^>8D5WV-Wuox);4M -92VsU=n$ZM4!zQF2JKm(>cnp%|P2o7kp1t5*N_R2eXa?w(bYgbQ|2pU+j#)LM1Se(8mLW}@qrw(OVQ3 -MF~F+tu{37kyR;X+fhb>r@4;$tt0tw8fy?+3E*fHsT0RvQ{bk(S811w{AJgK9+_SuQ+Xme3{+-gzHh!=D36JCK%)5bz95oaquMJMvak+(Mi%_P|8Vgmj{m*+yU`X7Y9zo}FpvHFv -48M;5VnZ1h}f{!HHte*E;=iO8oB(pbK(F%#i2C1X+B5RW;F&X>pY<=y!bWwp{Bx3SmU)Itsk|1=a11m -RYxR9z=*Au8`GaVu!Ql5Nm+_cLBc_gbR9%A?_?*{{m+0A{@JK~~!ooXMQ5fyI~`L#^;y^3!M}{~+&m& -Sp4_JEgxYk*`vYLcKh~2D#%SnPYet_q*VM{6ybG*&j;C*c&8MSK2|#(B^vZuz3oogyn}8VxtCK0*&A@ -S$>B0p-(Se+77+t0Sg4ql5{z3L^_`kkLS4gZ+d`9DY=m%(n&$AG{&OU-Z4|k!h~nS{Dhf*#zFg8Nl2Y -`Aq+B6acThCqU2?R#BornMWqiM+hupFP{f~XGqlCwSxx{q#etVEc%*2LyX+b4EOBre4A4RBtjBe-?Z? -1Lh+pc?3XFvc3Gj$rt7OWGG0tq@;t?*WQE-gO2ivTt--RZXldz2%Y%w>+X0YjbU>}rbAK(A#tdJ#6z$ -8FLlvxWb673m=VZ5rCXNWAE-#ZwuQhH!dHIgSR75bRyRckQ4l9d^W+Sykdd*?c3!mZBZN;Rbk4M-zH~`2gt&BZM49+d?(GuaRl>BzI!rYgZ+~$vG;gY7h -(NXz=$Yv|0sXMNlV5Q{`0sG<=)in{W&cH$GkfL(MR9S#67Ig!JhP$qqb7$_Jr)p4m7zCn6eKOg;3PmH -zh7?OKF}&$<@K*gsNlqsf_F90^9p51~+nJdW3YjS&)_c504{;mK=St|fY`Un|>hxgrJj{T83eqbrpKt -D0*GkuioZsMym07ahuCAVum;#BXhjhaa?&6 -;cZwtTGA3qpqT!u3E+4(sUb6)ySNySYUF6G*}TR!o6%_xtm&5&IiZO9KQH000080N_fRRxA2Smkt8}0 -7eJ^03QGV0B~t=FJEbHbY*gGVQepTbZKmJFJ)(EUuReo{Dtct|tu$b6+L2bk?O_=FqNF~>K -?ETJ-X#APLw2%EJv&!X@J<59pQV*DIfctm|WxD&Gjnv8DmW{ -7W2TxfI9@0@dNpG0$;P-0LpYGS^)@X5@?q1<plR8p6Lbfhu=d4GM!?!P}=XB3PcPody=k+yi+Oxj`bf -5>By%MN5K-1|`W!rR5%J0_*kr_^sKXmso@=*yJ0qf=EY0YGF#)NTuMpalRK56}gfYH?V?Ob{xy&-l3%2RrqKG-OvP{MxBf| -C=_hoVjA$FR1xe%3^iR^j%J9V*x5)^6uxWvXa(mWz#XB(mmB9PP3xV_^a-*?wXsVFa+Xl+3^W@+-`2$ -c(0|XQR000O8;7XcS#v9NV4gvrGkput$9{>OVaA|NaUukZ1WpZv|Y%g_mX>4;ZWo~0{WNB_^E^v8`l; -3OHFc8Pz{Z}07i?t=DNgxzM_RuaJgRBi*_vDx$+j1i6NJf$g`R{j<9XDYyOi%XR=YD;4wm8&ETgX+xa -}$X6tx`Fw`1wuuPv&HTQmX^lQ!V5UI`c{xJA(J7#+cyo_1Ev%n-XtHvXkXz1jgz#g#{!5;0fD;5z^Z~ -@6Qh-AdM}@4}^|x`6u%Zn9K)>?c=hC#u*>xRu^0~#LcE1G@A|*pA~1*;flzuF1WU08U)Lir`PX4Uw&- -gmMDwnQLYZPsCcL|f*DZXBwnN&^Ce8in`4xIrGy4SQ1B91W7QUGV4bjFmc`&jrZE2IbdG%+gpj8_&p& -{*UgvR_Rw|7qY!0l#d)J!hwmLzIJ&-1ia@W^y429g_97lsAAr!GA0 -V%8LIGhu|7B?5qd6Z-)kd0Z>Z=1QY-O00;o!N}5(YWM%2m1ONc|3jhEj0001RX>c!JX>N37a&BR4FLi -WjY;!MVZgg^aaBpdDbaO6nd7W0@Z`(Eye%D`d&>ms~iu}}v2Izpa3)TW%8Z0T&Aq!Mmq9S$@DUg&MBg -p^0?@0Mq>~-A?1XifK@4mbH?r7EZ#(Gj-T5nA25)}{3=E*gKSMBD%l}l=CI`XSt=?5B*KPu-l`qX=6v -}luP(yKl%lm;};^0HNVCzM{h@bfV{j^^^xbiMFv+uIM9zkIsAPLkr{%f-9TH|K9ZUKE$-zg=9@8@fvf -pA;x*79MMUege~cA*}-=fY%1WzZv`dBR2Vw7fMIx`$W}iK4$@{5N&IgvMS`GmzrH1SUsg_Mrke|W%?Y -={*ij1pXT3;(vx0T@1~pM+E@xl#D!ZoDetYRhSEWl9Nq)ZSXIJe#Vw{rIQ&)QBq|G-9Tx&IrD -c`VTUm<1NisDl=LYElmaxjP+JaoJ&TrmlEW{iNX)@}D)~mjibhYvg(#^;>QdtU$5+$dHGodT$jPn5x= -&rF=>wNN~?Omj+xU9mu9 -IzGTnmJLba@PLG|DVD`}iTZWwQgKlP6BRVxLQ;-sX;``(?+W)I3Y! -cxh)t4+i>xK^SRI_%3Zv(s^qA-`fSoi8|QDOl$P5-gZm0lY~VU`+I8fNxmGhHCY|wKane2{Q&H7+#GD -#BtcugwzXVjqdQAuVpb;TG&+)c^iPgq4YZR*`>5ylO$X8DTVc(TW=xMNBEdH$#DUOxejl#1N>3;$$B?3xWkWpn*k*c?5K?R#R@umPEinwl84L_HGY;$r-Tg!F -91UjpopPv8@{T#LGWlHmYnUYpCg-*T`_sZLgzyDP(jU1!+w74vrBzFyN)SjwK&);kd~Go#}VI9GKLqm -50HP5y*~O9fUkI+b1zSJ1`iBd|jNi&_6pFwE6Y4`%2q6A4M*$JaO3hlxnQBbjKjy-5hoL^!;5C*41SC -OmSDGKeS**r~kcUc9%2}|271`J8(E -EuLC7<;2jjwY;0u%rMApigXaA|NaUukZ1WpZv|Y%g_mX>4;ZW@&6?b9r-gWo<5Sd6iggkJ~m9{_bDFb3 -a6GwaRAOw7msZ$xz?=z`nb8$9Xc -c8%1lUg{^kOWDs-L*(sM%6=7ESniEY*>BSMlzq_B=#-V*`B~I&WRvCh0-oB;3(ZUEcfB<$yoEjIO_TH -53!7I$aopK*>GN7Xh-zv@Vi#6(m9<_fmz8FNX!N#L!sis6yp`4CIveTAUZXY^an7CmQ_N6zgS_6x|}h5zG81{wiT>0`k7~IelHk@(>vx(G{XE^Fj3c{^b!x@6Eih#O2-;&O5 -t2eBD%A-70;Anx2^MxJJ)Um9%5@)0e%Eqm9(&B>@Eu`vZj1zjpClR!In!l-%9=M#he+-v>~S)_ueK3E -6ouc0Uzdz=stZA`_^i9V_WQ=ZeU?C)>tMTFI)(~B0g`dxR<7NY{}jkEyBI+nktBd*guwo#JC9D?CmM> -fC}j>juLVIuR_cq9ZVreTPr;;V7u6{vb9!d&szAG?I}j{-R6=7Md5tkbTt3I5vAk`G0~NxYDUbMH743 -*QX^;;{vdlnL{O3%Vb$)0G1RtzgKJ?$P -^^rD#06djHy5V^3S`^81D>CyoTVhvTXU+@6qt*0J4A4Ke2>)o^exrR$IR)qh7nkG1>KNMnYVY|sqFf$ -G-4pUHNo?o-sewitS@?~8zkv)R87Adb43SGT-G;pBePp6@WQ_sZPS$R&XyW<^&2|s2xKE(tV*F -t}D_kL}&=WCtX$2-NlY2$P7{Fc8{oWz>j0nlYZ5$7I%v31jZB;GIV;d+jBs64E_PhVAUEGY|ttJ;PC5 -v!MKOsE;>ewD(mAE0RkOyf?ATHH~{!)-(|>iI^LCbd9pS}5mXciVvs7(m8Zm9Ta(y4LptW;?LPhS&I0 -Ad>M1t5R(Vt@@mMmJLp_%GQ77-DP*tZnJgA|n)PZD_$!gWQb+X^w*iG$rx=eZ*#7diF0SKOb#cq1~v| -JJfT@!r<2q2h5$#dwWK!-+2$f-^+yx8WB{2dyPBL*(Y=AwefE7LlWuB -T*;k*~Lq8w6h9(`wM`HvhGIQju+17J<#V!bEy3M=yncbW86}eHxh*#$o-9yK82A`V6;Kr0(250s=4EEmjZ_WRZQx1YfMR*J6 -m10NyJjvjxM7?iedzlp-Mu{Q(&1cf6Q45XS;omCMCl)<8aA|5C+Oc5lTP3W4YgOTO?txh<(Q(is+&-4 -j&9VH{4@0WRj&D{m|1t+34w75s;!ETJGGi3#cQfhcEyjxirMc#y&r!h`G%# -Ws;M;U6$EvGB3A9+GmJRx#=EF2adGPE`JZj#wcw)VcceEz&>SBUNoMXNJoSI;E~PF%da__4D@y#Tf=I -T@h|qX+B1uyFC>{D)woM??g09(@X%iGaHi=vuc%^ud-cFEM#?TjjCdxN6qC5I$%YB?7Tp%iBA((Wd#s -I^W)JA9jD9zqt7JyO-bp@Z&$D7R^*S%~Cj)tVHtSd{R-JAA?KZptiGH&}9|qwLX^CXm~922*`(u2gI54E*it%3iorujtePMRx0O*97pBh -mvq0L^$L>Bg>LbK+Xx_ypSUo)BfkzDKtQlHH0pD?Dur$Wf84L$|6n%q80Bv&PDMBw~dPgc&|ocy>UvC -r04o*%YY`u$k1=5gStg^<5~I#VOn4@u}OXn}QuS8Yi*{X_1Y)sXdv0z+i}j3C(_(v?@uY9C)Zdp$vzh -A!qX*m;q*#{pzw?ir8wpp)%rL}JGv9usK7Kw_#0cx(sb%@mQ}lSob1A -Uf;y!0kSy0MytfER{qXMXr!(hw@ZPN{=__T5-odPAwm9Zoj((y+KYtnEgpOz_%hS#y8GwDu)!iXug>? -lTO}lp|G&y0VkT^F4W-;N3FkfM2#+aP!K}lS+ju2GSqMh}1|r>NUWzgEK?H#Frh9d5Yi5sj11kkz`+I(OVpf@^9>%B$1@^? -EEmtu;%_c&mkpU&5>A;KLC01wi_Hy<+an^@8;mwH_J&P2QzzFpS&yTBJ^Ywo{H)TMTGYMP)h>@6aWAK -2ms(pnpUILPc2vh007Ja001BW003}la4%nJZggdGZeeUMb#!TLb1!CTY-MzLaAk8YaCwbVQES355Pr| -EIPzqf3(QAh12-xP!woIlP^3mpHIODHNvG?t-_=@d=Yz{ja+mME`@Z8Sr9-KN|H%YMofw;PFO6n|Qc6 -f-O$zuY^$uj38S5d+GbPSHnao%$wHH=%#d0r|W2tnT8tXD8y*PS8K1X5r8i!v|IGK&#Ch!Q99rlWn=X -vjvp7ksGh4Z!xjIkvGJCu2D*}CY_E>`(XtxfVZ`F7s>?%w-CIT`azu%Tv$PDHEu -^EtPF#VssT~WEKZ*I}$VEQr|e}oMNENIJtJ7|v(6YZv$XibX{vK0wP7jwJW%Wn}UxBwl^Q_%-h7Qp=z -tc_9qY8aGGh0m>q$mX~s39L%!3JHM2#%L$E!ip_$j5VA&q2y%c4wW3Z0w}!RhEuCx@vvmd9E9xzCkzs -oFsb3%b)}>{_9BHe;vrW~kY7+s0|XQR000O8;7XcSQsq5WF9iSqCJX=o8~^|SaA|NaUukZ1WpZv|Y%g -_mX>4;ZXKZO=V=i!ctybS}+cpq>_g`^P23P`Q`A1fy&5!|W+7$teWN6yH6oWxYlud*ZHIhoIm;LSgNY -RecI2{Ho4~|6LeRn*5_Z?5@(~eW6q*M>0*;1kEnm3lrPIa=RoRj9Yy5}V^EUKDQs|3D_hOBe!Y^QlPI -ib35`*Si@i^9%SYlUiE;o@`|=n*k-cRw0)Q>doGBVq&QxCQp -ZO`QB7^AXAmJNQG3n(5vZMRIo<%-N7Sju-ZzOcsE{MovacBn~u(Uq -MV!jUPG+!&JLj>|rvS>@P}YjwvPxBprg7dQiffQ}%{@@?-Tbp~_^1TmI1CDSFaa*a&|uvRi#DP2>o%1 --k0u)MRjHRtpBR@hyaBl~*Z_I9V5c@h5SQswiisFvkoahg{@SBvFhQM@S^Z&u5yIxWu@e7Rhm6>OQGE -$3^I&-bCSwm(@f&tA>e%h#tq9ykCVW`|rZE+|41oUWoFpAj7#XZ)Jg{o}`RiR0+nsepf3f@|Zf3t{^cb31`TIrN-Zo|VDCc9x -Vd0_*d)kh-vMq&3%NR~@ZF|5EMR?@wLOtLI{v0C9hZ0d(i5gO;Eo`8_ZoE3NfttkSxqsjBL3yL#Xj7x -asKln-=r$OLqz`jJ|#BMzS<hsGfZZ+0?7Ix?5?xUCn -xYA`uisuM#(BWqgg@IAOw5kU%)#wa{Mg4I7y}+A)fm9)0C#bm?lqQPqSD51MC|Ii{-c7(5_Z@c8B8`? -Lw9%&1U;9aEopwe#dixKL6kp9P?$hnk|=!fAFqe58RAykcI6U4DA$iyrT{9b|&u@#jHw!GgJEJg?v(n!pZk6nuqMwtaAXc5U4=TQ -|S?b)q4mp+$q4zQbG$&#v^CRZ5xUR|lUGnRm$oq*BMW1lTg6NeXn69x=zvCy@#(}^e4}EJLl1pr8U_& -vi4?{Z%eU1!JGV8E;-P(R{J#-pwT+9ryq*8ZXi`$rxCfjED^yZ{4TXZfHQ3o(-=!iZEWHa9 -_Z^{D_4|g4q+qWbzMCO9KQH000080N_fRR%&YQ#UKX&0R9sI0384T0B~t=FJEbHbY*gGVQepTbZKmJF -KA(NXk~LQaCx;@ZExE)5dQ98L8u=p1CD^TYcY7puq;j6U~5vOS%<+eWLl%V|;$)SwjAB{9Bp8dtr$o?qQ%iphir+|+bDQjD^_v0pAh|G>XBo%&7g{SlCb6 -j#Qb -l%PsnX~%!IGUw?$B{ov7Ez7`1A4rGfPxnf-P&ANqb;>X?ILz8=+Z=wzGSo4LL@o?Crts6sc?B_JdLbo -J=N<*zHb$)gV6?#Rg!ZWsGNAg|aMs%oTjG5j)@UVk=-s8n)kwLV!}50FJf-W`i(%<)9&x}u*F3q~bG_-C6HQ*8y}!P>yuFBDpS^p{PFY}f{K>QD0Rg@(mW@->-*Mgq -$C&Dfnd7)(pIAd*((CY<&syZn2@?||eLFvYo+NW-%|2LZ#ykWpNH -zg&Pi)qoP%#g&1!mO)A?*kyIX}Gv2822cuhLO70o@AQ8Y@~Q!xzL9oZ|XeubEy?nHG60n>ry#RR8?4_ -EwL18!Tea5sq!!rMd*`%O2GWf08iw=hSO=A9MZ%XoO(*9+QnFd=8Q@l)R)*vr2&GoRx0b&H@}a=Zb$4 -x9&Y8mC_2>%nO=kG)+cXGt7eFOD{R=nnz6;QV+56t*jISpka$bn%e?8G7VCo*W;tG=&ruGeeWBh>oJ_ -al;f`Znl1VQP^VzAuExi`C;g&~jI^1wfgl_xg5~_f90pB`PyH43Eh~a?zjSq${!n$}&e5(&bf}`X`BM -2$&yM+i?*?PHOk6lB_!uLobY7%Gc7Md}79N7vqSv}}1!!-E4pbgkHPmX1u8>L@@>7-{cxfhM~p&V>bB -nG~tRSm_5cyL-&l@J>dlBgp+9dd15nIM4=l@s_F0bdjTmO#u#&wkSt6NA83sGr@+J4lL8Nbb0 -+j#`kNe7P2LEWf!wlO_mUf2WaL_U~FsmyBC_&9G)B>yyhIITa)B=iQZ-v8_D=xkHbX#RH&Cn0K|K4>O -1*E??}KDH&UZ=pL!lu&JP7InBDx17 -q>=xO;RQ9>MZo^o?UAYWv&Mqkg9glzbn5y<@;RVGl(x3!)Ej(g+7J^8NN;oL0^Ks*u_-ALn5UkH4mA^ -NkIjWro|Ar`dxNT3&X<3}*M&w{O$tSm|#)d>_^ej5}p2eaER(p;q6iR|cGq2YI#^k0F{;VtD(o?d8iO_7**;D$P=Uk7rfUY`*|yD+*|fV2rZ>HWus4PY|&`uy%s@jwE-`$>= -5vFFqukW85`~zo9Y;9Kr-P4eqNyMUscwBZ8@*c@C#hW2?h|`nh*cGKY@w%m1^lVuWbhUi36ByY0br@) -uA`0|XQR000O8;7XcS*MAYCq5%K^8v_6UEdT%jaA|NaUukZ1WpZv|Y%g_mX>4;ZX>Mv|V{~70Wn*=6W -pr|3ZgX&Na&#_md5w`#Yuhjo$KUlSZthD0nQ*qZK?~c+pwQW)PWNgQ`#fuvb>2x%ns2|e>tt}! -%7PnU#UzRpy6u@V#XQ_)#}FYyyXZ;}Y?Ky_)jK$A5(rQE<~1K2+F8x -Sn=5%*3y2T)@{BtNQ?Ac^<%8r+R&63Qp%gHklO4pPSp_I?u}N?)#U`EnHnf`mj#ZRQ_-O!Pqc$(A!>@ -d-OH29@sg%`=~4Ok?ro>#PcaWZD{eNqZQ=E6f9r&ej%ghH?lrbIXf?w@_uioP*ga5z -*OW1jxWj{8<0}DG$#GQWBq8wPD#NArtm0fV9Ux$FJUBjs>eDS#|LD5R!dt6sCQ*i>cSlFLWFJE6=osQ -X^s6GIREpj^R7R7qQ9YHr|=Wj1=u7<%=u_?uZqipP&x2GR3Pv4wepIw|MKV7{~;O*VnKZa4PrCQjvB3 -E@Ol2n$X5uPAX6|V%FHp&h>Uhpi8Myj4~%3>juLO?hZK)LgU0q)d*6lD;NMk6u?_PQ)SiTtWci<-az> -uFgQWqA5|AxO=l3290Y1X^RbR3c?^X_kJJ8$l~ru~^ilVoP|eR)Q(Q312|$nr&AS&|RhK!tE^E*t95`S -XIlGadZd)~GoN3}vVuCGr&eW>dvU4Kc9SHVD>A42Z!0yk7plGCkD}~sy1qJd_1r3RJ_?$t0I -q!^6pqFRg0H@`SZ(H&jI}Qn?Jq$&K@c+oHFj6;T_MEIfNOJO6H(B`9dH^!6#kO=_3Zli2RAk2{W0qke -*_FqA@dXco@`|zc%hWHjitbb2K27AutQ971b}y>-7ZQD^S8$BogNrXXiyO#;o~!+g7d<8zY!Oje4_Kv -8~K9V0^6vsTP_u=+*|*t18%Bn9V^gQTcejBV-7*27L!Siix$X5CC`~Q&>>Nt&I=ZJ5pOTtRuyjqS81T -yNmT6+PcZQ5^n@-@DcE@rwn*P5LLNrWVVwcOX+PX!3SjC)BvUIe>`&Qere2pLQHS)>jhezvk&Aq}zwF)oTS{R&93$m8AvA -t&P&5x}O_djncSrV~c769@5q?6?>;5sUk`TI$W`^IwGYaM+tk*!c -fVSjj!+UO40^-Aay+hg$z9nFrdAb@all$fy_!O|lCs$yG?c@TQH4yLRqKEWYB2^Lt={TyS$V)z74pJt -yErrY&y10}Ct}q$njNnVwT6X7npfqm@%~fL@g=u<#tiv;`O(rXnR*0!sbQ^Wm -%{%?*uT4eg$1agJm5&XC?!8kL>4b`wk>~Ow6;>IEsmS&s7BdqQSDvv#*JP7Ujn>2>zxbMX=%~t3z$=3 -@*7TAA#SQIlhp402Q(Gx%{w11$7H>-|j^_l^RtL&OEUHk;m`Kq4iF$x_tqiChL-fzwt2VF*g#7!8Y64 -RYhF)c8Jm=p|f4RB1e0w!}Mnw3E`fNpcT^vrwO|`X;@yecGwlLyv^W) -jQ-HRRt0)?jiHXBpF;I$_8=|T~v-S%&z$-Ov1sLE4D4lPgnzO1ACoXrw&OalpaTM8&g7iF(mHf#scTSKVVtNYh -Zi{KXYjY}A=cFp&aWD;4#afu6FQ!(PN51Y!Q40$-Yo}ryl=-pvxx<`P ->H=$@d~!35p1s!f!CHtn*}U1Gg0^V&5FjfJ%RgX3h|GwQz9-dIZ$F=(UAkoTG`d+<+mB}saXQg(_y&A -P$vYP45L*_@+Sb8WL$U;%VlRMb&;2S>0uRQIwZ?g480HY_PN5RQ-`q~NV9kmejs13D~JjG0CZ&pC$zf -p|IRN+5n5iS}}JmqgKC%^`l`pFg1Q(YGq0{_<&Sr*Y(`n!Z9OQ9v>X0?dfMy*gCme~y7SEn|=Vj-UMA -+svH>Tu@f0LigFb2kLY-t@i7A-E0ziy)v6Aol)h?hbM_QpfQ@ZU?ihtKoH0y2@iH!t5#%vcQg4Z_4ihG{bq9c_9_Ex|-*H~-OCZwObQE -jnt(|-n+=8lY^_*EkxT9)MXdQR6lR-|uFU;q6*0Z}w>R=4xX&T4b(HL&hzcwr|u7((zg-IT%fE&m>tf -BWR}HQ(RDImIWq~1P1+! -I?o^rd_e_C1~CyUB7@Fk1lX%24W>8LV50;%d4a?#H;~%Wb3bpiTGL(Au!EJ;^@0qwyNLPfbl6o(LRM^FbnA;7O9*$TNyjE( -b<&pN17XI5Wv@7sy7R)_QFJu?rUkybk=Na*b=*-7yx<8qSE1@LEA8ojt(A4;eFVIy==Eqf>f(+B0fun -M>cot3P5{0FM$qoINRQVCQZaow!F--htdm0kYV(cAljK!Fz&}gS{_Wgo_rtrVSfnfNYE?bT~Zake4Zf -MU9CMz7^aN?z4zON7$=@bp5^BANqdZ+J=xqJL;FKlW9;3=fYRtb#}h}}zq%cuUGIj>I1Fv$LiHT9kKy -J{6uW25y~6*RFamDfY`_}qt$s1%t&{3!yY*Uw$8)AdxnVyHIctFFIPaNt*tbI(W-?z`>RQSDkk0daQD -|l(&k*{?NzMAKXx!te22okDqU4OKK2MuEvEWHQyXgJ@$7_t$zmeC!J6{i=+B7VHLPl+X%Mw#Bx&g91n -1Zrc`;$ZaJDDC_`e%=r@wR?KW)kCgSgOx)%73H<{U%vGUln|*4ur|y-(p-M^t7$$E=N(ta2iY!dz ->nRBa7KwaO;ExrNrn*`leK$l?Dl)zs^yHd=ea3ZT(HF-6D)V~%zhz}p)bvQi3nBLL@%@_Q@z=onSu4H -U9rtUO2M^7IpXi!Ci(kf${sT};0|XQR000O8;7XcSof5j%F&h8?$W{OV8vp4;ZZE163E^vA6JpFUqHkQBpuRxibGnu97k0k9@TV<1`PS-POl1bd{_PidJ5+REr!R6>!e&7efvXNhE#c$WY#rxiaV1sFW9sc%+WzNNGMBStetiyaZ98s+?%?kU`1icnhV< -}tRwUK-><#~Vk>q(Y%ccIs)cr0gk}Fy9yKi7O_~~0&$SSEz-EanIwnOQcZF`j|J?M?zNB(sV(9P86&D -sn`)Z3@OCmPE41q|iKd4d3gJzn5CTSxJYEYh-y*4uSe{w(Kpye!LWOO~&jEKk1%vOurDK?5#SR>R@7E -RuOvZ_T($*3~wIjV{-5vVcX!smv32vq`c#USzj2ZILj8Vt`gDKsJt@8Gy-U1xt_Q?OYNWEOswIMv@{u -ttz0HIKAbL`Iaf4o)$M*RTd~lWAO5Fo^-$g+sCWq=dy}dSplCKo3XLT%_;&J1tvGce>i*n&6^+I@9qx -R)J>Ah;>MDxDGK1RxG7Q~QQN+^7ss%WI2KcJK|AMFtGbfX<9+nfOs#>QG0K>Ehuqt&<20+xn?zlkN9d -j*Q<~q4vRWl|tg>G%%uE5oAezj|E}Q~8=g_q?Uj=)H!a3ncwqdjVdXPRh^cNomdtM-n!6Puf -<7IFJq)#3}SDAEam(`wP++IL$bxLchzsJ=9aO0$OT?6#=fV=$#+OxQI9gnK*|IT5x>t+ -za+jZ|7&lqQuuIWEa?Y@pYo)so})SP;`EWT|IKS_jhKY4jAByP?(R)z1Ok^PNXK=1+;glAC2VWJD9HX -^Ags!m&yfkE^wUTSU(U4PtgQSh)US9zP>`5!wjX0a2KPW!F>4U2Q(oafE=JWksP7$qR8XV;2tQ+OyRf -hv;rxyKd6AFDujmu{^3rLRKT~t-qy>qfXBd#mfPK%=3Ls+rIW+6Giqc03BbSc&5~*SN(8%E`xt7pXiA@Gv(A47e^dD# -M&m%)GFvl(4Fv#>L*m}{V#l)NUWKTt+glvaA5Imk=%K=Uy6`?AFnKHIO^v4WP8^T};Mv|1+|bdnIGam+|9K65?X0P#c -52X!=*Kf~5^m|)!GrvC2cSpu?m-;z4qY%Ifwi_E)%ijw3Ep)IAx0&dHEM%L`jvv-=f;5}`YImHj4;~@ -Aa>H^pabPC_z}=A*BvSLD60&tYLW}4M*(|<)7CZgkD@0*KwHdij}NR -$0svb03Us=Rnb9U<22MY0FNHTf>EM_nY9aInPdmRtRLb}?z5|GK{vW4Q>z7E-a;^?Y+n|a -J!4A-Xt_}5+ROtqY(Csn;7Ys7biM>+3G;9aUxw23r3D$M)(!!fatWJ2?Q0AHQHab~?C9ue2mPULan++ -6B=l^E)s?VG-)1++Ixw{!Ab@&}Bt?;kD`+hQuMLa_MZ_52<$&W2ITiCwYRCw2zsg|u?cU=!NBg2X1}0 -GY1NRYE7g#XZ1ca<=gj1u?~yl5`YA@yF;S_J)q;(Ds>^kAXuGW1TK|&z%;=iuq3XE^^_0>DhSIowH?f2)dlffp|MwfnPVGHlInPr -2%+Aa9@HM-3I;erDbUk85?zcf-Ih>7^1*K*f-CqcWb|H4kfx}K|RVsAZIP~HP6ek0LXp$t3hZAbg;E(q(j}azE*M1P;##DaC{j=TCDDC2@bpyr9s=I(T2 -Z8CB59wg{%2Hq=ydk&`cQ!&c9YG8*Cg<2)^K8%=+5Xz;bQ)leFz;aV{wAZ;YQ}cA*z)$h`=w{^wYUmJ -sZCj>pN2*vO#lA@E;`X2>F+*PFmGL=hv|bwY|(-FEIMrpKv6=v4a&)e(~egS@_&gBz!k>;uSsQeVZkUgE-#ow_kNbOEWlp;T%sNFYSmKp_+bPFu_o3a_RQSOk8T1%4iPlpSx$aT|bJFx -0ugSlL_92QG)eEa>;q2%Mu`&XKcNf8k{X%#x*gli2b30AC=wo?!zgSL)BUHA?FuFO#~s`nNV^nQ%pw2@y0z*j% -j~j3tr4J#9YgOz622O7F4NpLH=93;V2iGRy-f2rNa%e+QfB=BT#nEjFLBLGP#ih<1_@)<;1N)(YoDwxyasO-l^i^w1Yke*T?u&{vPy1g064iJu1pVrCmi6Mb@>k~3MnC+%!$3H;7 -BnrN>(5+&zKaALX`j9sG1N7dCDM&Ds45#5z|aSAoUo%=fh)#UMzwN)^6#UVox45kK;#Ul$m6BRwC?4R -aBR&9CazUIL$g*Z~w|Wc(&;GVJ{WKY5+@+-=4k|PmaG3rdykq6dNh>vLqwJ3RUFtDw%J28a`x%APK$x -*;ZsJ=3f_E#LVCkVQ39eBfqRPSdO_CAy2$IH~<15A=)&{; -4gz~8UlN_T|q#0Ny5Cy;zosJ$&2(v*>l^hivPGrjL)lj?gak3uN4#1p+-#K95z|reY?gc}LXaIi$Ktr -Q@L3NPT85|%Dcm_>zt=NIX87A#Rw7o_4s3J -LhLRZu@>GEc=ilXH+-P(f)@Cwvl;(8LFMb`4(P3@IZTV5D4}zIhpS{b5{AyGFttaKqsduEs}3QPZQpDOHR?7vE9oW-Fe{|W{6@xVyUH`5oK3qSY6B0AzFWVD#2LJwtft&?S!DAh4>1!i5A2jF -I3+Wfq^YGnnb_+9>}3+bg$C^o;!`=95%%A^sP+>C1^^HvZ&ME=X06x1lc{jIYmnRE9@>M{$F4n<=bZA -PakHd*MeJbm8+vRgW|(0}uxYUnQJrA=pfrTRj5cK}@c6;hT|}LUEp@Q3an>LNO*y^dAxPJSVqn<$;^6 -V*k`n;772liY$-(1}{zd>pS}tTQa1rom1R|nEb{k^rM($%Ko9iCX -g-AqO_7GVE&fRnj?sf?=pF(qRoCJ=60vn8W&LeaqkAb{M8cukS(YLu)SYNZ!=}sbMsWDzcm<~=|(W*h -tYEtr|s~ShG=B`o>|Ks+lpYH4_;+BHekERTC488&dw(4p^g-POJQe7!}?nxIHKty!*4c&E5gf`ECB3M -i%lhqGZvR;E~Fr`%*b4*yrih4|R=@IZK0%uA;BN!_Q&I^-_VkRu);6eU8$J3P|6hhML%j;bz=|}Q90}wZvD#7(Ap#J71U68tiVrMvExj~O0~pFr=-g8#89sDWUhq|xLW9)edu8 -OkOeNW^?fEk0_wD2P5vsI9ja!H1yqMI#1>giXSAjg@`bL0fZ58fq-xS4w!lqSvc?l16t7S?7zD;mA8i -f0vJ$y`?!ea(cSkR?$94a-i;T*g+CjVVaA(tMp|>S`EZ(g~>~4L#-7k13pFj~0p=LzY!?1L8Y!u>fro -;$V$DnYgbbl%Hyxg}Yh!`Do1_;aPFQ6uUEs{VR3Q^JY^O%1Y`@!$W0JaFDD=eO_P#Ys7F!OIABYk7>! -+=1aj0wz0m^={gvlXQw6rC*;%}UpWG%Nq1lD{+QTLx@*EHjr-blCtvju9HO -o)P3(1#(1GXW}x9_duCYa7Z+4E=PyfDYtIt-VbT`JVXA06Hlb2MP%#X`#A68QfUB32tm>P1u6$OGO?B -|ap{AoZ@sI|Dm+kjJyumnr1MEUAEJO-;A4G0eVbvl;M|7f}(KKgoZ$7u9X#_-k-o*!eyu0l1(8A-llM -jgFo!6mKQ{`M!smaA(nqX?al-fSvAt#x;;VEZ_WO(K;zJK@15RKst9U^``FCnJ&fg*u;Iu$46xO&e#< -JW2W)7y*QTbFicV0;=N!A!!8Gb9<3M$NG)$am|bmVhZ+kS=% -ffdNcb9_HHvEvObm8P-YTqC>5f!D#@aP_Qu1%XDHbEa7g%^uft+GU~5Xo!3I()P{W~|ojKyNzSr;i^O%Nn;*z&xlY{g@MM4>p=Y_pkk3yO_j-_>OZ&y~j>opQPO&1CursU{<&O0JTu=n>3;#aYzdM -57&bX=TSEX8~7jVDY$89d*OnEuFfFpJIo -QIlyhuXhRTK(oJNr<{FqEb^eT9!gYF=&jj^6sz|T{&^I~0|RjCW8@^ouI4~^h}{Ht0@t4P0$yn3Xll68i!UnnU|I@Ig>pgvYgQRLIr(B}_reIx-NPpKIn9Sp`0c#UM(Kb`@MZ^!c4LVM@n3nAJ?ps@hw0HQARv&9i71@#=Z#E@Z_Dd;4qPXzRql=TT?|m&_jDBPwX=sEPS -}kK{<5Zacyp~wOxN5x8MXCR`*BQO@E~9Xq2Uy@IJL9)S)7J#-rl1WIl2q0T0@N -$x->R$fx_F5!R+8>BA#%h^^uf -G&`+)4KuA`et{G?XcWhe`^k3W~ -q!hIjM7BhCliora`u^c|glrQ+5Ia7xF+}hERK4H59gB$Mhs3c5?Gzre9a!PR{xIC_!75X|~AtYIF?$H -+(6@r}tRrf?c@+V0ec6mZ9m&N4x|rZzYF{E?fxm%w-qee)sYV-afRKAcUQkZi+j94WYrqJohdhC4Kqk -75b1}cLr8RhrjkhHMQbpsg`RN_?zx>x%crRx@LO!sr{mn2E3ta09@K^gOuYZOzY$j;G5&6is?+nmSL0AGTjCjyUkm&0*_|r~aud(_nm&@gdr= -N=)nSU4_5sTb?99jdt_E>5Rc*R={kx^t-g&84h?s(dkV~vkKnAG?e^LWLO#WGX7>Rr=I8zMgpuVfb+M -XEfxTfw8CFBKFgl(1*bqpamZ>kDI2-*I*0@TSZG=21zw#VZ*?5Cej|8ai$?)CFmuYNrE?)mHI-=2Q+( -@%o`f(DfbA(Tbg6lu6?9^Ogio}v$@W#=s^?)?J`0Al`4e{}7ZxE+hHz7i)#j^|G?c;~LWc3gdg80vf9Tn0*&6P$U|ep2{Hu0KubRyXzP%J -ed7)+v_!I&J23$E?|&24qwz>SwxY*(qek^ERTT`9m%j4pFJNdGu5OL89z&GU48wnnLKlI)Vis1K0cN1 -fCwz(_?sg5`+WeXYj;|MtHP%cUI|^44V$2XuH~zkUDGcBCRX*l-pd+ImGD5;+J7(VuwJ`!%gkD@7+#4 -GJQ`mCeDTq1bKWG6U?a40kn$ytZqW};EOpnBgcq~2_e}>K -o5M<_&cp|aKttZ3!D_)j)s@? -jwO_fbGr^*@D9kzjwqh>s9zm4C~5%*2wXaUu%sp@e^lI~)|?) -t*cl0uDiI7Gwo30zu79TEd_o!@N?$CH9vAoE?DMUAnoiSJQf!&S1z@J%^X!9P94`5XF6Q2b~wR$PwIc -qQuuPXOG>?jiCZZEFug^iv>2g4*kAN?4&lQP`RVYL>%n!mK!J;0@7e-t{KL244@6aWAK2ms(pnpQis46t_r005~30012T003}la4%nJZggdGZe -eUMb#!TLb1!XgWMyn~E^v9RlTA*;Fc5|JKE=qZRth~pC6Is>LR2hZ6-AbtOcD#n6KsRX?XjKyBx#rR! -VAyL_uiAnobykwwDJla)MTN;S{Y>;=%_;N80VZZ)%9dOP>)u6vaGh$fgk$Vcc?v@A%kbBwcKmW;A7~K -F;;5n9K7Q2Bpp`I)b-NhoBC5`%OIRUf4B6js-Rw`s&ZtYl)c;^UHMjeP!9GH0ii143y0(@B7|_7yb}W -MA?ISGpolFQaB<8dk`-QzL*X?HhJqJjsPM;=fbId1=a%g=_1(KF>`O?8v`#y~YlW$ -BHcjj4;Z -aA9L>VP|P>XD)DgeN|15+cprr>sJh%!^((Fv<-Twfi1cSS|C8N36ec^v5{zLBy(3HRg&_q^XvOaeOPh -Q_#oT-cr)|n&68?7V?9;9F1#^~OVqH?n7UTFp8i@+Dr;Kurw*$$uHN$V-KpaZz3;p-S~eTH>$?UEg>* -g{u5_vs*^zZ=tmtI%B$p&rV(T_^#1kk#xFszA+bhd0YwsqAkLR@{xiz+xjrzjnpD*4@x}I`OR~ -K8W4LNVuNfIh$i<4u?qGtbhTuZY|%a*eYr;?H@Dh^ycWn&U9>rVb)bea%87mK@@l6ypXn2XDluFP&=> -0W8SAtA&=vZn3tvb_6U$ilyEhN{ddkJJ?=5J`?`+T -c4{LPND~CE{6)pYq74^>tvDM1(wqPpC^XqkJ(p5WBaU-Pzb`jIE>--uRs5?j$?&^%NA`7R -b>nB1&&nSt1jqi=z*qDE)d!6)Lemh|gRoeY*#5170yz$K_f -;Nl2h&FkF%>%P{eg&5(xuw&KEaR2Q~KIE<`nL3@~Q?4f{etltc?=U{bX{c)COasxUBA^7V6^)16rEH( -1+yS{J3otXbGOz<fPR@A;4jG=_Zsv^=JU -vGKdJ=GAsGrcX?<+(uhKBxf7@Zq)!MlmoxcL&9?3RZ{vg+w`k41C4cRGyOw8yVMi)+qfnu72%XV~fK3 -IlbUJc&BjvK3&~^zS;gGw_kqR{wB5$ukor}Wq3q#*CJM%!WRAmP)h>@6aWAK2ms(pnpRx-VO#tK002` -F001Wd003}la4%nJZggdGZeeUMb#!TLb1!pcbailaZ*OdKUt)D>Y-BEQdCgaCZ`(Ey{_bCKQ&Gh3EMf -cVH3fzu+X{3`(WKaiG*D>iWOI>8jil^&!~Xm3NJ*9ywGFy23xZhIy^!}j_ZGRUv~ggMb|%B4!v}XTqM -8*(@4y`^sW#Ba-b(A1a9KI2l_-~Rg@4wlGMvqx!PQohx(2odi>|Jc>IhQpbtYIJ4$^Idz-e7tGWktA1 -h*9q(zK8zrYT4ZTcPq2bJ$A(?x5lCZ_GdNf?mFW=Vr-Apt7}TEGyx*7PKOFze|f-vtyX(u#w^!-aFK>Q@^A43H#~hWL&wzfSDDt29fZ06 -LyNY6%pPilgm(SpOOVQBp%Su-9DeyQGWr^k$#4!j6Uz%8C1+_)XF`8O+CfZacnUR&_TiwOkT@vUNdo6S8<%KRwePHJYVHAC?I==urp=5#9r8{wt -X4L@%oab;BXJ!G;gU5z8WUAU2n(L{R&sHw{P_)F>-6TFMPkfl#ksURA9WxU -t5q}oNbmqx1{6=4!B2U-m6IcJDaBZb0 -+my>CCGKp<$?if-7?)s^5}Q)5MVV?p#_Xz_XE*IQyCKzEX8$*>FxV)aQfD?4n=0gH1#3Ex6n+v!LeQw -yx-JSdn5VjSRqe(~3y5F&3F_Ui1{36GbOV<3jv7c#lWbFSrrTzCay#HDRJEjrc5)iBN#JEw2_tr60Is -Qs_=y{5H=ya6#$n?$>06Is`Z3RC0ICr|BN|wZfqGNGwW%o!Xr6F!Tc~KtdM~U8L9aH=^?RNs0PUQKyl -KKGC9s51wr!?D$nO?EC<*ptfHF$N(qB$O+-y>*3jKsE>{NXVpGcSKc!JX>N37a&BR4FLiWjY;!Mjbz*RGZ)0V1b1rasty= -AGOxeb4idlt@WQZru#zY)KEF_m ->~3lly}8`$$wsyb1=Lcl#F0K!?)QVT`>XU+t`D8Y6@(=Qmua82N+T=zSyL`{heRBv3 -30v@kh-sw)nZPYCDw$i5qJ*)5{G+?RLYgfv#GL7aP-{;%#zlNC1nJlExKg%8Bk|_P)?1gx=urkuEi0R -Q=La4?T;9CC{&+c$+`UGUaUC3sy|hJG|4x>rP`Bc9J(!V;l_4)q9PCKDkX*9(SR6md|TWvaye{~#3Qpc+^nY_{aJy+!`b7$Fta$ --p_U)tKtBgZu`b-I=~o=qU9iy=a~APl&Di-r;v3E{S(dpxHGmHC|w%{c6IL0AD05<-bx`VBkIP -egvdu5e6{EGI({;ZV@?SJvR5O~hTCbBzaeHp3~Ju&g{mz@q?Gnh@rN|rFK|s{RJUdx7BFxH7*O(}hI& -GM+2(;2&=aUEYBQbrx?-;?tLN+_SgF++@H!kIl0?C39jR0AI7$*o6v?K%@T}?`_`KkX)kb2YfYb$t6u -J~|1^!D7D5~y1V>Y0sL5kE28w}q6f*l~k4nw+ueEpWnRo(tt3C{b!*Q -E8!UV}z5Zl&-mJnP3t)-x#PWs*b7x6RfcLEY5lvsd?hOhN~#K=Y>1JGE)q+6xJ-AbX3(r6Ve@fgGn5x_6KWsS0;9$D5(LMziH9!5mOeY -}ybSx6nVL@qzr_UcUbHE!=)9w!EpZ0cvMNm?7ighVCc5`*DOKK*CPg -4ioHPp_R6}@B$GWp-?J`vXtmP6!~?YXh4wxlmjr6?FEPawOj>-dg;*9#NWp%XGd-%-B)}sh%c>e^*I; -`1q!#@iP1VU|A25bjE`Z0Kuoq2YUb{SFuO(zZI?j4DCZ6`Q2msFS&~9+biMD0-cih5C-Dz9y58mNM?` -*gn~h#KLbPB#(u9!XH1P?ci=qMOO{g(V8XQ6`BXHwhDga}pm)vr8>tS9+D?!Eq#K0^(cto4_O)zXMcW -?oQw}UmKR4t?fHc7;X>(j^W!WZm&4L}cYLLsQ(1C*zfkBV#IQXRYssY-L*Wt+6;=LsM`XFuZngcefN< -icVntMaV%!W81akxGH^TSs5Fcc}g(lCY{GL;WqvB8s*x_8* -AM?Sexjuu&E%v%jeBhwn}*@FvC;>?dcFL68;o(uLxsEZvximrP&g@JcC{{c-ShOr6MSA%d%RG3(k$o{ -pl86O+oL_k>5x@#SQj53;0WKf@c@-*Sm>>!!EK7FYax{?anvFtRwU3KnIQNGMqQ!h=qGyOhC~d9!w1! -)L3Bv=mN-0qlTZ%9TvPqaE2{Ld=^Dh_j7iz4AdFkj1xP3+U>mwh|(4AL4B8uu~shvon_owOfa-8cLa| -;k}AnwcPlR{=y}sl6BusFLoNV(^AXgFNZL0xihCAH#6|-hUi;;&)_m(yH)79zSteM?_oLQ&d%t5cG+nGt?&zT|af&w9Wi!Rp<2CC`$OkOe-Y}L -W4U;Of{QF8~~B;8(Y)-!#cwwJM8>358YR=d@Bh5LFdJ+b33;=NF>4zN(;bj^bPC| -09k}NQY{dHgs!fzUnHk%SiLTz6#j;&RkFq#cG^3E?qyb3*y%CMXC1s8q=7B1H2D4H(!#>0qyf!H;IaE -mLYl01yj)Xv4=(LCk`(3sJuGCx;9czA?A^df$;Aso -~2i<)3Nt6h}ve4tip6({F=Gfw%G;E&fkW#|8D~UosnImKqfK==4M;9I%dU1R6&ZKRVDj#as0uR -dHkp-`;FP9W0f^%-s{4uW1e!F+#&??C(Rgq41DPV2Iej;FgfNZtLXUkp*Sf8YBV3P*Y*OAd?wLq~|;j -1G~K3y{lFJrVchMUBJ#f#)>NbJ>K`0swP#cAz=GWicsO9KQH000080N_fRR>e9LRN)B# -02Uqq03QGV0B~t=FJEbHbY*gGVQepTbZKmJFLY&Xa9?C;axQRr#aZi*+qe<`?!SVk;BYc3t4-fs)Q8* -d`jVhYHcj>}1@;1gmMELIvZ#{u?z%zpw|8bp>S4*-9&l~-A(6%5a2~&TapkU2+A^Vat!C2wkXC4`RAs -`4N^Lf>-h`jZqz$**@Y9N2Q_4!rO09M*SG5%nwvub+*H;hHzOy{PO~T@i*L)+i+h7k3@D9Z1^&w%GGP -enPCTgL%RXSl;jg_kARl=?hjrg9!r|)X`GIJ~%*`%2S)*5Kiy_J%uTqk};I#`oIcLB85rW -Rb3reEkq#-Rw~U@Eex|;ZW-4C_HQb+=2dlAIMWpA3>g87?3Oq$Nr!mG;Q7mUFJ4||tJmKzqxD`^#X{6 -~Q9?_rH_unEviHwdtC!iu`Ni|qG7`;J>=yT1A*w~r^R4itZ&!cIh|@CC;vWm*1WTw+7S8s5I&1BJ)B5 -rQi1Zq?0P=5+yjqCT>vPN~p0mZ*onLQ|LBhI!Kb(6hkZaYK)LvEPCSGN@(RTalulMyoze@ -sM-T0T}EI;Qv>q^OGaODSvg*pOu6mcG}w%kQMpKrtgyG -K%d=$G5AnnikGcm8+j*c;>?_IpkB*|@2y%m5g;mh+#gfx2AQEQBx9$}=A=5L0je_4;F++ -Pvr4(yYlz&QEUc{fhC-Qp`G=}ORuf6f3eM*H%Cc*{7t=~;VfVV8(go8~jB+NleGs5Jz@>}OlaTs15qr -$?I95;cod{r1?2T4;vH;+6W^&bl@qASKb67aXWx<@+;B>Y(Kxh>JJ+}ZH7x5lEy?oligbk1p40@bE!d -bK9^w0{iJV87~dD0T`d^XA(lrv5+A7zlK)2762^G9~+faO>;@Cnfo(6(&XZyq;qSvT<@(g -o#Ch*>F42>Dt8P4OqgPFEdWo&6x&{qB9sPf-h1pJi!S+&(1#eUnSiQysD{wq)Qv%q|IZCd9`p2$Ulm_`a8Mv;Oz5w -1KQ6)#7IdeVV4QA<(bOOL}Pr!Y*ug&hT8lmJ-w-!1sUy}=0$bj%$UKxM(yjMH-4fZc-tB&^_K44RCPq -0LgV%Qe|2`Y*NwX#R0GCWV%i;~?#xfD7SMUJp)Dw#{$85~+!VN`Y3x>1q!CivCrJ{^7bo4lrjWdR?i< -hsHrxR+oTl8=Kl`x@HpfK*BpMqs7qc4Gf1uNi(Yk4Wa~RJZ>ckf*SPwsME|VWtteEDxl_ -1wjIF2S${($3(i&p_U-D9*c$1xwl{1cW7Wd_7trweWiAJh01de5N^#A4sw%Q32Ecl1+>~4;V2)`A~i` -%0`>rZBQy_0hO7(|-MBgJq4Ci!HWfHqWj+tM_R<~yO{1Z>YkO$p9o6j`P;ho9iWdWq9M~aYWdvCr&a| -%l^E?-(O)5S`eC(|H=|tZ|rtW1PEH3?acp#16Sw?^MoHHt4S(b(=@RL6i*?yrveLcu(&Locc8OyHefb -4q2AJ+%_9@-W?f!NN^+{o*jX?nM7dYNddWjVme$!yYMs7Kurhzi(@TgYh!Bf9jchfW>#JLbn3q-BNmW -g=+~sflG*|2o6@NSkWg2X2Mpb3vrj?TX7(@P^63_%QeQ!5{se{0Vz6z>T~jDoQA8k#nf7%qYl1=3w9i -!(bE>m`$Lo4Xu|YqxCqM!>*F`t;aWbt>4lfQr|#Xfx|vf;Lw5R&{*DQlWW;n1EZ?KGzhJhs$s^e^#mWBL1?G^iej8=iD`Ti|;PJzFUsmSxn)X7Lfd@o5pwI~2Gp769 -IQzlps+CY!G__N9puI(U8@Im2iUm^d-pg5TbXopO$tbbM$55dhe7S{(PS7*CR2b|%F30E@vEj016Otc -knCGamxkDbeXfmrs52wj)0;e&jj0XwaF*gJ1JU8g-|aIR$smoM1;_#=ECST4@-tHaM3Il%e|T7kbPQs -Qp;$EkQLN;%dO}ytJqUR4hcO5A8V)29#Feqq{5QvUWwg+*d=12&%rhpPUr};s33xZ@XaEzT{i3c@D~X -x9#|$Kk;J4X_Yw|PACuY>K=L~29ei5l7K@$6Ot`Tq7@<;-nH6qw)hQF2Q_GZKZkR$FLK8~qABqzGxe* -@?Iy#Ha<8H6GR>jSL#+x~mXIE5x*Z1BV1tzwfck~3O9elx!e7cgao2JXp#}Q$tHoC&o2;R#$%5^KOL!J0qC!v!cfqT4&nX^6T_+7uNK71mR -+iWoowRhmp}XvbxCN{@VoPt?!VCfP#o@Pe(S{ExJwg3ZG?&Q3i36+b``6;Rv}eJ7bqS-p3L2%2)g+gT -rm^>w5zFzGhS^#GrQg4XkGE#4~)S#Js3jS!xd!Gav(nrE~lCEA*O#F5mg&b+~P0Qq>p1t0KYI>0W>(rm$=4hZMt;i(q)gad^7=ZO6R6iI(nvW{D^=I{|IZsggA(RQ -plfx{O|2cr=YKJKC^(DsKXH&pKUEw()1R}6pr3kpthvZ{Rhq8tT>+Fj#pFo4C8!O_|yd;D)r|MQvs=Q -a6H>Q%K;)}@AC*JWVbcQaO-t>yzq423Hz36O9_3=8WI>&wZCk0LqYhXP5PK;etOgWU+B931yD-^1QY-O00;o!N}5(XgReH;2><| -fA^-p&0001RX>c!JX>N37a&BR4FLiWjY;!MlZg62^YiVw0E^vA6T5WUOwh{h*zXGMk30a+K%jv`&wQ| -O7H!FwZfX{69hiJTjeF| -N|Jyb?N|1wk;I$xT%%!}4;qlEuoumfHW)>l#=zZ-yKH+i`i54S@7J_x`m$jqpVJfWjV8xm8{}K7Qg`LV{wxTTB{q@1&EZx$zbqUsZvcX!xQKjHvzdsvo@SD -c>ebBS#td0?D+NR$(z@wa~eB)`EE4!;p1rNDj -Wi;>Vd-)T=N+?wc~J(U=-GF^pevnWO20s3XiCdsF0Fwk#EUyEW^wU|+>w?RVwOZ#Vp5g7(bvKskx~9f -Hm>v1DnjlqgJ6Z@9h;Blh?O1DjfQ5INroh=8^5WQ@qz^;)KDpt~w_2r;(iR~QDSWE#jNtPm&}S2Ewm7 -=Fl%79K&!#dfQw5e+x*_>Ub@!qlpu1x`p^L3Ag%;2G?L9u-#HtPdeh6-kWob`CEWR&Jbxt?*Br!?3Kv -;7JfQzkmEOusg{mg9$i@UBZjZMGHPe*PA1TOIc*Zj{UVefIK4xrlwV>Yqyg4MTZSrcRE^1=R#(4c3>q -EIm*=8_|Anu*IB8>i1-|-=U~VSr^z+fBR%TFCUub#Nu`Uj%o{IwN8B_ssurj;NJZoov>MGX=v6}?Gso -R(4MUrlgfbTKoQW%;AQUKRYCK|Dz_NM)qKMR#YKvpM@Yy@^&Xbm#O<5$B5=(glrhN_TXaa+ac5>>{tq -Lsh98{qVESdJ9s3C`Aq1EiFmP<#OuQ;fNAfpiMTO}rvNGvtgVSD6PV$3ZW2hYBB}CP1C2;)gCR6 -XO|3(Cef+>L1tTZ`TWd_J+*rL*AX!d=JiFFHJz1%;uAW?%D$i^vrEA!i?cYQ;t3NI)2qUmVk(Jk)RZw -RuTW+#4)xE7jQM5R;X(4=CK7an4eZl@ctOEaHPs@XYgUDA2056Gzte(i;Q6(UlLl0#J-h{dV+aL)58j -BJVZj53tUa*6&U4;byB0@~BO04RfE2|qE;KjC42OJB)g(gr0s&UJQ3i_sNS(GJgxFe>EPm`0=cgNq+X -hg#_|AjlQJ8fOyc~OiI|G^~Yf+sIi!eH)o35d)Hc*CvWuo#Lvto|N(Qk2l~LJS*g^-q3}PZ5?-3M5Eb -vY?&VC%@;Xn6a06Zqptt(U2ttyH*lKU<>2hiI8OBh$>WERuO5>*9g;;DGT8(lWyJC3py12n6TI%N;8QO&VbZ!GLg1KJU -3ky5_|S)KP1!E8fRDhl2>QaX~e!jg7cxp%$-(Ugb7XAabuT%~Yaj90H1}S~wWdAU;P8v<~gZ5F4-1kB -G+{3uk!^V_*O2hKDJ>Cq?zs -gtPBu30gzt;i!fKe!lk_sROFQWlM(A(V=!M+;0k#PEh3!y%O`+EaC}$9gRHMrh4fsEu$mhfi<@zJj*2 -;rjD0=(`Xxop&(1gT2zWXDpazRn|sJNHeaiwZ#zGjMqe?5yhnz<0de4hls)c8*Vzjxh&dT6^&H3EMie -)8dYYIEVxf^48iPJWqa)9pu~5dPWTM1)Q6@M3*f);q4(IgW$~rK91lr|XCb9WepSkh;s{R%>L;|gkjA -zfEJqzr@JiQpaf!$UQW&ZpL&j(0FE!vUXk-gBc5fHVF$F()^@yey{@sVNq|F*&kKh{e1p^<#?7pm~m* -8XXA^^=)Ta>O`{1jsDu*=5VL;nHl*dfBQiqpK*A{?*7N8VZ5Cw!oh@z>)b?-e6?DK|D^`VtJma(@ZlS -!`kT?<}^&2nBvu~OILT$7$j=l%K_0q9m06qWbfwCzZ9C} -w77ltAXdF=n@LVL50eQ_#nt4g{PJ#!b@xEmToquYet`@A&I|OxOc?Yb=)a+DLWe|W!W&K7dXNh~(!so -6!F`2kMx%){{n5&VF?i(fPvZf4LTYgSA}tX!90j#mKK}C*p4yF!&TWJcIwG0vJAxqC6t5Uv2!+u_E9T -vV{ftL|rL)WLMMaPThnUFSRXq?DJqYj6y~b}uJjQ3A|24#8JKEit$5~Now8MmUIti(NFGQ1hmxJDJra -0_`0qA4CSSFTBX#Y4{jfJr_;n;r%K-2(Z)9m-yX}Q5DR;sQ{V?hly8fp{Rs#0ZErk)YG`(t_0J4f)jf))VS3nP46xM;f<~VuXrxA!*ROlKI7Cgd^&-;n+Vi6Jvn_)#D%h` -#lRh=@a#_e6NW@5a6Uk&#tOUB^x;3mmOOsWUK*q10%|Y4NB{SQ&&n5wPn$c24J*a>m>t&u*$jGy`!Lg -7Xm_8se{k3M59uI&ZTGOdLD*yOtBf0aw{Ik*Uc)yP!OdlzQz1<)zC#27du7(yCORZ={u(*lllS(#GZ1 -vWr)+b!>oeg;oF>}D#SUfOo1xxZ_B8XD?fEz*!{N)rTSht20?`bOivfy`%v4# -+d^Knm!cbGkhDa}CgLW3{^zUWEtLD_DV^K!4Vj>^re{|3humUF0vs0J^xJ19>_Xb>jZDE$z*%>k-CHB -TEMU>Un;4yC=uZAb}*j3V}g9)MU)kyzKHQOJ2afX3@i!fHjs1NR-oC)Z^$6lR$_~G~vLa4}c -@y&Q*!&fq8TCSkyg|wwx5|_zS=m#c!JX>N37a&BR4FLiWjY;!Mla%^)haCv=I-*4PD41V`t!Kp7ca`Cm<9y$XlFkCkvK#>4lvt -a0ggW{uWZ937FOuQ}-`G5U9WlhB^ -R$JyAJ_}>jk_Tla@rQtVcpVp&~ZL}xVe3Q_wZ{`6dUZ|3&u4gu0z}77E4|>!l8o8cL$u$YCR&Iy&tET6|XdIz`UusGTCojMHG#F8Bs@TU6w`mwgOLtj>z1C#65k%UJn>mvjHodPJO((j7gGjb9 --IYA^|b;e=?_a8sh0H1oCPIksxctY6f4T63OWXH%0w}D;~tJ;y5D)! -}UV9>OeKUI}nI05!JZCcHnKgqaKC6-)(^Y$eur?+@DC!e8?)yqYaCUK2Y$g?i}PmK6i%cw`*B*tpmN9xM#2@@AxX6|qFW|{cX%i5B({{w4y(fQ -cjeMPQ{wvBvXDIq${$M23uf%R6p$eRhQhV47rjc -Mad49f_IWzogrx5`+(@9E542SO3@R&7-`y)4zvWht`<2#TdDC0`uORXGus5FF0Q{KP30*4OY!kRpPZG -%i6dAQ7m;Cd?EAI=99zAd3-ynqdc=*CVtIhar$zJvG^BIO9KQH000080N_fRR!z3%i5~?30Duhu03iS -X0B~t=FJEbHbY*gGVQepTbZKmJFLr5ibai2DWo~vZaCwbaZExE)5dN-TaZ^7;9&EK6HZ&;a4ngJ?#j- -YNQfxz4sI+vlxyqzKQg)4P|9y9)^y*gje5`sclkN~ -1U6_BCyT!}681ZVGQ|C$$n)6tPz{FmK(bD|AoJuu{lt}$xp{+l^a`Gj*Oq17qGgHYn>!1A -8-DqM+tpB;|=np_Qvs?C+svFOIK8_NZ9+Uu}@opfuc_q90d49V^|)kogoasL@|%4}GLwXlP{2Vuo+t| -v%7l;bT?fiv9UnZb4=NM&V#AjZ;}!V6{&XtzeQlNQqxl*Wmq%~wFsVnxtq^`3WTdAZ6esnCYt+je@-- -Syr&^Wj66%UcwMg@1bN|9c#qq~yf&Gek&`GALR(kB+cVku%UG_=5tfZx5!gwZbV^NIKfmR0Sx_LLiFA -BG1uUpgKTFt$2*%AbkEvO{*y^;nwNjTB@WEk}&L}BnWx4Gy9NLV8lh`*1B1(yWS}@QH|rUHRiJ1Pkj) -}MpkYn6|gth=%S%>MYR*8Prb99A#JdMi|=k<%+6CtJmqRxKRSQ<-P1{D>}_<7Dmlq!N`%ODL0Hb?#+9 -@4c*12Y`=AGWD7kftWRhCych_P`k%+C91eh~IR?Iquy8r-h#?Lv{4&K}>jM1idd~nLJv}{p2TUB~Vee -h-Jf{*v`<0F(r(IB62B%k25)e`LjGg=Tr?Ikh;goE80)%bovo#nx5>RMaU0jFUZT6!z3ToOuteB9G+A -BRD18tXiD1>x+Or>jcucv`VPuHUn$E7n6(ff(sWK(M|j3K=@9A~w;4qG)!)1T`ojP@P{|w$o-=oyc_8 -tK|Eh9`<(Rus4;V$A*0W-HQ>IjFJ=(TcI%atR`jG#5CJ%kRu^0$&GNR`@qEs0-;kA${rKGIM0kg*+YRT;u{B8 -bX*cCe>gb4+(r%JX)1FwEPI8j{A^3WTgLDALSfllEOKE&ok?8krY%x`GD8`Wkv?Z8)Q|tOICx -?zCHdu%f|iGQ_g=9crCC6iItw=nLF~KLT<)(}iC~p{8B^`{3p3lF30z1}`gS!E{JyVu+$qG*Bs<&($_l{Q89t6{Y&Sc!JX>N37a&BR4FL -iWjY;!MnXk}$=E^v9BS8Z?GHW2>qU%{yuDglbx^rMFcXt#7L*0e?2wZMYFpe5R7E0F?8#dQt;_ucVD5 -@n}N7X*nd^6q%gJ@@dGB+2`(ZKX0~)rrz@DKuG0MYd9X;bKj;+-%5p!&psLyk@$XB}p=y@y6QJa=nIK -vz3w!VGZSV(J-y)ni0R_%6%R0XsOang$-}*H@9wfEynaKAG)^ohTnLL(ZkAfTK&u07w{w}{=>{|Y+NUP*6uUO^knG*&XDGRtE4P!==CDpvNzOdfT;_Jc~#`oUzeA!AcCP4HM9t4wf~LUxx?cRx>+OQ;-Yz^Cn*=w5*)3BV0SZ?Bdm60WPRE3!@)N2F8;-6h*X(Fhn(Pl`13RgJ__x5h9{l| -wDO`L`aYz*@-GA7w6%VRMrvjvyx1Uhrm;6%1z8>JXcJr2bh}GE1 -)3gmuA333MbQ~>9iqBMjknqcS|_51_tcgLbrf&nmkH!a-Lm3zOg#k0<^>dR$!nSvQ4vtOE4gc4z8VUY -P;XNg|u`5Vx&<;(`0}u$!@#{mw4~!$AmiBa6NcQ*88oQNPE8-xgh61bl$I9Fq^J69Hiz{i8<3Q;CxJE -KrSghOFj-fv|AQ~2AK7`0PT3u3MA|}66-W><9_{agFz}LVB6&agiaY(px9aVlW?6Z%>Ea3u-vtgZ7g@ -C;zEyGXU`00wXd39zHdSgq6Xh!A4sk+1B23c -gB8+0~V;A0`V*0oh_%F(}ZVVI{LjZu{%!2;xYH2dw=)K9OB3bMfVg`U`gnbJzTEl>@a~2_PGquK^)VDwyDL^8;4n>NU|&<_(xiIj@b9$beK4!0|TRdkg;xkXWX1mYdxJ82N+Sg+ -{|a&N#m>sj1_hgf;+56!NS|mj>91u=*ff)PLe=u^u}thVk_u1VkB6>9a_Wi9h(5NsCfuuHgwWwoWdAR -DAo<#plD0vHHE6)>1&LH5^*4f8?TBhv&r;@34p -{G6xS&&TQQwu~sn+J?k9DIi**a3%ulE1jhmgd>F*tYq`A<@lDqPf+04S}~+L;Y31oV^G6+i?en!IK~Pq`5ld(OT@d+RJ3Rc -+7JLxLx>8&Y#G`vsB)N;ygC4MHTev_bS^lcCB#$lcK5ITY>wi#70|XQR000O8;7XcSFRk9iF -984mR00419RL6TaA|NaUukZ1WpZv|Y%g|Wb1z?CX>MtBUtcb8d390EP69y;zVA~s;UFZq(ZrKi1Bn+8 -Vz@44w!p~Dbm?@6`1IBVqe7U|B;Rk_0ZcwR&IAa-N3YaECIw!B3z#!yz|_L3B&VKJhRonF1dLCfhzA(8nhgO44HLQB+<7#9;PI^WfePfC(7)TUk3<}-XVBc*I)FXWWv01*$6)rW -BIw-Sz4{5v<7@6aWAK2ms(pnpXV^41lEs006%Y000{R003}la4%nJ -ZggdGZeeUMc4KodVqtn=VR9~Td97F5j@vd6efL)o3WAjzTj{@8^|Y9wbe@Y3*!ZW-`m!fzt@FYxzQ(HDa$`7`(Cwm{;SqX_Y(&Xit*#WyvcXoq?duK)nd6=A -iP|YO^a6q=CM$Wx -4TycJ_(NN-N^6^FbtyCFLSxDcQE|C;MkFtlgyfwJvd708W0@6M#cio_pC2y>fJJxAaH{!%GQBr3yrjf -fy(H_O9YMD+ct{8Hn%h>_WE-t@w1Uy$VKG=MxXnsh^WzAC;j#dNa$}v<6#?d?0eR80^1Gc*cb))|cFG -8QN(m6m=Ym0fP&J>%bD$mn0sD!u1Zdh##LGe5(Xzr6E?qbAl}XApB4;@g -Gi14`qx1EXVmV9#M>WlAku@$22ffNVZ3&t=EsO;5Hg2xeQirHsp4G<#dVRvpPkz{(5t``C%~k_qZsla ->ol$n^uc6>@vg-a05m_s8Z}pd*t{J0(7!E-xx==rDKC<#|$(`okX|w;IofqIWo>11yC;j&n%lE)P>t1 -@5p23Wbd3@+G*FjC}r1RmMKmriC5mmK3ZSHl;$2{g -K>is8BLbOEy$~gMNf)geoOcE_aTD>42WezpD>jZ|V0{aAM4bSmVWtsy(5X4}?7gBDLGdobB!H6ZcoKZ -(pjP%qayA#Qnlz4)%1d^So^C&cUjm(kLMeaU!8yhUUO2mup|E3eqi^0w8iTDooUpRf^dfQB4heUi`uV -E#0-Z+z{qhVj*-Hl`G=-FRGT)kfnt$I@WUyxGSLOi+c`18|U*YgM~p#4KWl{z5$*nfz-9CTeRef=6{* -DTM87zyT%K7_YIUT7$j1|c(T1D$)B%*G$=4A2tB0Vln$b2@@n*VkV~Iv<{L!HM -H?GIr}kkAd&ytbq0%tN02*U==?d`*?E|^7BsW24LK*BWG!<0V7_$ObRBdLF8D%kO2V}IiJL@w>mT-a}Ap1^Zxo2&M-T>MrFRg6}7wq?a(2h^ -Eq@sm`=guUApGD~?fVHf2t5hLAlCwD<8(?aC%DiEI|LCuuy`y-D}vh9|q@r1oeRl$>lV}sK?&+L-i%dAXeT2$-B&peUM7kkY~rGNjd$2!qt>1QjM#O^uOceK -Jj;p@CmiNtm(fq%8fH8hjYlJ31TaSyY|+@~z&^(YWjfTvycvx~C|e?jCPv7DwJ3g~XMPx_d@I5bMjO3 -)a}oZ0dUpQi-P`c&^wsJALXTVoz}lTmgl1OmeOSY2hM&x1>;Ze9i$m<7bJJk_12wU-$zp5^oQpQLZSd$jYI0t#VAu(hX_S;PN;gjrY?q5Ee2LjEQ^hnFiQq~wCD -vP!7K+^npqL&NEaJIfe3_L+fUJJ~{QPy_qP-87e7br*efebi_v_#P{N#`CJZKGrpS)-Oxrj=j5@kCaH -!HFzOU6uXK(;n8g@B1*9k3%{*fa5&Z$Zb9?tGPHvn9_1cz!ejLbov6^FGiwhasgB`NW}oL=F6_o5#<_ -KbXenBHuS!ZOSE*KGHn&FF(xY*N?|@)BIwC9KtSB1qw*k#!eoGn;D6v83*iNr79RGK4{PlkOpoWIy~9 -Iy34J|WyGQl&v^to$W+F-Vrf>eB4bPBSGp<{UnauzXTN}YWH*WiR)$z2KM8hpGM^cC9kDFO-&gSa3V# -Q7;g=ug*N?{Z>pS3>)*;{}$nuZx&QD2|MzL6d_-CI~h=jupR~uh#_#76JkJKSg%JCUkzSN=FhQ?m;Wzc&Fcq~5cGLrodGsKbxqTK?4@vLs<0#2ep`WX0Bep`pQ!NPiK~j%5MX@srY -&=u#he~bQk8sr1qZNpnc{Vm|2W8%armzBJ0{8w%F_G?No~5WjY|nFvJEs^~S~9XL*l*B2+DkCKR;p-T -^VzHxzuE4v<1=V7lS+YanjIg1|AbnDtrA6O2Et`~XpCOGIrAorzW(y=?4RMq+3BgLCkori%cKZ-z6R^ -LNB+G&eg485(c5ProrR3HqS$1yZO_2!g-fso*a15#AHLKAfKKreeq7HhCK*Y%gm%}XijGvF+-}PP`9Q -Q_x1vvANqi-e)dUSOQ3dA){}Myk| -zKUS{-RTSPQyNS%fkU0Wk2y$4O7xWXDaq4@f@1`sFATngZ|zq`fo(2jn$4EBG2M4QI=or_tuWYnO4u -Q!-%@hYi<5@Pf!YM3y4rrCvl~NX(FAl$8lOC8=q&mTcy`Dq#)IMyU|GhFKnJLLek$lqyMqRY|lxAy}n ->eY<>eJ#Nc0?tYv0sG%mHv!U_vG#be-p~OpAz=Q=s;HZg314f4PGPQWjZ|vNqXIgsKO|dYoLs&wz@Em -~QHQRw}y$MwjgRU)Tqg$`(O_-(0VR4a{&fA&=WW`~o9k65UyBWBnX7skH1R7QaH#|>aBYp3Lqm&T-V$ -K@o>>-$E)*S;FEj}kS3IY)%nYpY~|M -a%SoBdxxlnK?NsuW3$DQ{IBxLN1~G1+hXNfaqKOsfhT5Ct^{c_QceB9P|$N0J%3+hwU;;WCR#)#l&Zc -;0-;D*zSsh*=ihC+kI4SUQu^Q(X4X76#ztxVX>5f*Q+e7cfJvF{J>`8ju -G-y$b8>}-)go2j;onB?sa|8;xZ9wt0|jbkJ>7Sa(stIHS8_vQ{~~w^440VZDm8ZCS<&CS22W_Xp>Wz% -LHw-R-*9){3iHS=DgMt-{;AIPvrc}WC@F6+ngd;qnD_;-~d2_Q8jKP*eql~P_yMZh=|Kly;MyZf-6~M -`2k@q1P1Uea9R>4I#U=@_V);+(LaOeWAp}~v>;^_5Cfls3`|jd&&VE6VL5>E&0|oAhOkvyfwnL0-AjJ*g2p#hSV`=vsYWh>Ak_?g(;EgzJkD3 -_Z6@dkW5NylAjL581$pHr>b0l>#hw%=%8r9hitv3aI6V4QET~l!bnxyYtrES%u_6zza$aQP)D)*YM(f -D0#)a*^W2*H+2OVM~yRozNkicnkSmA0VTh^SeX%e72rzk@{lQEM|o%0_c|plqY66%3+>Q;1^ -ydYA_4!d6n}4bU?6T6dqe7FBXQNZ!n8+%fpNGpYM+Pzrd0Iv1`)VNukO)o(_4eGm#}s{Pnr+izqR?6z -ymwVKkR&a1V9fD{Xis0 -7zl=IQK{tO?twd;=#_PVqgk>S70{_&Yg_Iq$>ApQoxpSMQGmH`J>n9{!m;WU=OyMy-2tWH0+rl5F}u>a*yVpv{9=9fWoPUaJD(@ub^tt-Zi8RL+OA_1FVMg3QZ_}hk150TP -|;?S_4~3iPWJ!fpH1OU(*6s&P*w1(p-xp;|`&b!@3t5U!iw|%{5Uw@!V<@Yyl;UK$`0O3~d7Ft3!!WH -DCa-A*UU4V0iH5cBYj`=(v0Dg^Y<5mXVtHogFmUl{;@O3lMPSTq8YD%;W4(wm=-c2V1a1{PJ%& -Wjkey@>{@s)PcKehhZLl{fx!Lrqiw!BeD1a4JxSfR`9{r}H*-JtLog7Bnp{dJ|BKSiXgHnHSj)Yzq2D -)%D)p2(&L1UxIHWW}Ozm4P73^>d$R-1QfY+k~pe$ykbEb2%fUlR{K=IW)+ -5arqljeS`62O9UlPjV1V_uocKhx=Nr4)rXsfmfCK@RwP+(Qm~yM2@xXaqxOVuB3H6n1}&**LEmgxFNO -n-L$ge*l4}6L$R9Uc|^@|6)q-;VA?3Fc5|p67Vv?V#MW7gX6!pdOG#8sfxB#FpIND%}nPhb#8S!-w6> -bR_=&2ZrAd_R%IIDF59XcW=bi%06rI{UY)HRg=;1|Zq4E2r(u*kZ}DS_nO)~YFQ+EQvsfnCa-I&id_= -p|{|+Uw_eD3mgP$hWxJ^Pj>u>rXvobq3tr14AUCvq}rXXgQE6PP1*MkMI%3HS0P^Vtl0qolIv| -VF!^-XjI(#?w^_nqdT5KbFdELxQ&4Pz=|u`JiV2bPK1nLUK=?g(Tz8pNHqot%%`6X0bRT59&aOCcbQF -+8xvSDW^17bRn8Ca5Yw)sx<=OCLVzW?jBP-PC@fZ5*1k{@u!iAI~mxKvSp#q6k1|nr|IlZyJeB{=u;gLtvs9Pa^~q -IyzIx>(8~dfc>4x=)8)V$XW&75O0yp5@2;rZ;=1$Xi}tz4d=et=l&Jl#e0(toZom_hE{K^%Cq~_yAjM -TgCoY+j>jTX@P$HRwKL+@>&Ehf!?s2W~uO4(AOfl9?*8X18#YvEM3VpA{dT@8sLGb8`Z0q&^$HNm;nL{NbIze4Ub|T_Vk( -83+Mi|Kr6P3#+H83z`&^Ku;KKGPCbuqF>tZLC)Q8toBkf|M_NrfUN@?g#4Ps^#Xb|q+V37uBUT<}i~3 -0^dM))nFLb7 -XFS4)q37)qf-{{3HO8vT!B@Sb>l(`_@-6D$beAkA8Uv26OkQyAl6k0Hr;BJ>BLR)IrVy@UJRX-{zP#nk;l9?;$vZFv~bgMpp!3o -+vbXVXKss%)nPco0L78O(Y!}xOw)9M7MJj#8b_=(Xx7pJ_{E9Wt)oFS{762*9Ou5iOsEc&^|FqTGT2mR2pm0Fg<}ALEw!$B6#2HqRw2ZXLkv!yJ;Q!Cz$PB*#QaGH$gF+E6OE?r^;O8!<%H!Hkm3Y%}aL*al&+=P`kn-?cN-3cmWRLNN0H^o@TSh*LY -%J2%TfYC+Fv{^$$9=A@Q^`9iFR5-DLSE>v4^1)>rJzt%O&ycwH{X0sFC}qjwawa@z(VSVak?7;n(B*8 -&698;w~&7qRTO#!Mn#LEwGE^H>?bPdkdQ6&0_`66GhT>El=W@=bcs`$WBQb}8XP^_!#B?fd$R;j2WFEKfyJM926x*Vx5!rE -Iz*o=7nyV``Nwa1`f9y`A@rE`x+$AN2*?QHetiJcy8^ctN8?AMWsheHS>%P}|(&mD8cUHdXQuml&*Sl -j_(b=GJ8*jKfZ=( -R@;;Tjm%j0Gcmx1~J4cJ#JA?xAywmF=bj2QWbsKearQiJ1mm4_zWQt=ZWmpbJuPfH -BEoZ@uIr|$Wi5r?***x!lM@9YhU(dzzG_*wz5snl4@8gc-V`d;rVcAaVNsjjBKGCI)-0l;7a$RlQ0}+ -oBiB@hN#J{hzLKet0@!<_LK>~B6_L+3`p-;Mtv@zYj5>6Sd{ZvfN|SO4NxCa)&cyU$SIX&|4>J_(CS$ -ju+}$@kyI5z_AafD!M(RI-@3j*^fb?`;^Ikp0)V-5*9Gsy+?p#ihc9^?hxGsvO9KQH00 -0080N_fRR#DgCZT1BK0Cp4r03HAU0B~t=FJEbHbY*gGVQepUV{pYQgM9FnqvmTPmL!o7ujNALk5bhhuGyiFu%IJlv2SOpcJVVMa|Is-#`_e;;c?%1+tZsX~|JiQtcAAF1Z@E@?p=ZG -3*w#6yW!DQ9%P5cfG~-K|x<`c@4=j+Nz9cXSVdop4QdrjzO>#HvvDIW`CafHw~CdmR@z(67&S!Fb(Ls -J!NXAQ~a|c+Ng}&eCKd{hl~5wc!&biDM9X#?tU@K*@7u5D&R0#rlH;<{6HHgZ%Ggrs|cF*OzA_u3d2t -jCL5`_Ij#u8$6I05d5*3OHQCc1-RROlSdQT6U!>Vc?op6)v6YjO&TY3CBAdL`jy%y%G%*r?1Hak_m5( -=q)8iLm!ll;yYBqa9k2(S -sc^iP_FHnVI)WF>jOvdryq^?S!iPg@!ba7-45Z2X*PHR5CE3jU~Z0N0u$QDE>895J0MwsrUQd<*aoq{6|iW^7 -+$^e$GpOW;&Yu7KAu?wEd*Vr+JX6nvEhWMPmP8^uBMIlXYWmlI(NYe*;>JTnWm_1S*ea%?8y5S*;avw -^TqA4BJFi02hncTcjE}=6Lb%y>y_Hx8+fL1U6lcM!ZfxD#b>bke#K2+lqoBw#zpSkWn)BO}Q(tsUW(x -OJbS{82HnwlW~PPQVQ%_|&zF4mj7L|5|Qac2#2xseZvaUWL}OG>pVWoOnuF@(vrh*{TZkz?A -sF>IR)*dp5C!%XMfJnxqX2K2*VDorZGUl%WF{ySvq*y?ZLHo93purYzVErcw`0GCjX&;4CL#~DbX9q- -l$ntN(GDU%7-7tL1y%bV0UHM3mZ=T*DnPLUr14bDYd|)LMyunaf)9^xdB~H|e{OC9dS;GG%P|lJE0)< -&>jpK&$l48JEUzvhpZQK58ykEKr-NkGpWgP|W`})9+7zM36ypGtA^;a-WN+~|K*F0=#q04)HojsqyA|0>d$rc^kN?#uFFhTko9&uMX)XZLl_h1Qzn&4jLr=o0ovPI8{3}m2du`XO<4t4s>T -{UCMcsg_PuENn$*$#LPwR3nykb1b9+i7H&3b|$*osK%46!TEmfdlE?6YRATv8mI=8iiXtf#M2vs1IX>YY0yDaIkX1ndJ1_X&!ZZA{5dl%VYGd-yJtoD0}M!8#3=3OT -GGwnxp`rk*!!&b`@Oq;0J@HS+AU+bl*R&VFx5DIrzka!lpQ=Wp^>y%kAjKQ!4dVG4F!qbJhwHjyp<22 -e`_1QY-O00;o!N}5*eLzXUN4gdhrEdT%?0001RX>c!JX>N37a&BR4FLq;dFLQNbc4cyNX>V>WaCzlgd -vDvw5&vJGVoM`1d65{|@g=qp=b8%=oPpe38~d&;9F<;^D~V^4%iAR-3q`+sXZArZA9m6^6h+Y>fTexR -&dko^H?vCfl8cIDe7#PK^(56_xwM}Io2&%SNwqIwo|w@OsjQ~t$FfR!L9;2js>_T`^vW_V!ze8(CSWS -8t2C2gp32zn^(O@WeU~N)E3VjmHC5k}RF)atMcMSMYBV$Ciu?)9NNKgcDTM3?Z<$MFYTo -fy=`TNLnUa=o|^`6&7@=gdY?8H`UQ|j+OYm#p@Nj(Nfp(GQ$D<;Ufy|i%6st;<+kD`L+EQ(-NB)3I$p -J!1mvPdvkE?5YHlxfENLl`{w{OiAa%cp^N80gi4Z3ipGAqt;X6-#C?51T$E&XyEJQ>TpY{UpDFi4;Y7 -aOW6*!g~e7ul?|=;MFty2|E@xgMyVjvcvI)#do}}^pu3 -JIg>EqBax?4ZoH|Y_jFTLrTbahFG$yXT!8?{E|U7AVmW8kh9{aAwjy%F>nw?Al0IR;#zO5@%+U>4CWl}z0Y1#9-|E>L?@v>y;IB546}G2GGY&bMp?t#m3Ztq3S0v<6r3 -3OC{Y?mANzL3(SPdY?1+A`naC+I9_RMEj?t7Hf!eP(f#oS(ObIye=~oI&i?$3U7<^8LUIHdv`?*_BU;_sm1-B;7J))`G)MnCdD$Gb -%INz{c8dA$YN<R`e2$3cXV+`L(r5LDg+jii;a+vso>f_H+;nzT)y77YX4yl@r7$j3#&qW;6NeI2x# -jIj4L52f#i1f-_@U99GDDjjV%2Jt`)nAtRu8$;lmK<+u{kV#u<4{dEbDBM8T?*8ndglH-YX?v~$lnr$freiKWL$QF&F_8nZ;T7axE3Lf@M0 -i2qQm(QF{KG)t8bU7^c={}_7Z5OjXq@xZg8<~l8l&YARvrTk3hOptp%utj+@h~aYkST_3+tDy?>d0Gl ->n9qs!m$C3%a2Vbzx8M2GV9Xd3uh3rSS`I+HC32X_);C9lOqJOTaz5 -4HG((NM4JWVKM@Tq$cCDxZ+|z#r(NZDTf1Xen)DE>xDxP3D`pcIY7ySTUIFq4@$N)OA`X+&o4kuWvtf -Gxk%Shv-5n2ymlMFXBy)SsZ&b7umc`@qlZN0 -u8AAozyYX5n%T*v-w|l0xpbm;9!qmiQ8II0O2jgcCj33S -W3Dj_faR`*==d|?Ujzfh_vb11e6q*VS_}-`D)BQaDRCqzq^@fCHme%!r3I9(4Z+nX-C+<$X(&Y)>@8tRQkB$p!fb{`rIWXRo@{DpJJ5wcvH>9|etOS;=Lp;vfLF2 -Q`;B8@2v&)SuJq3RV0D$JN3Obtiivs1p0Jj52V7ku}(x08^k)6-rDQ4m^PRDvO$;K|4>uuqR1DKm-CK -^ln*90qKw%tW6NM-{96;hO|WuNMTJeD?@5h1zejshPeq-BDgIU4h7Q%58xg+n%+X%LtLovZw-LNX~mM -9Cu58?T-2s`g8Y@2I(=D41+HcJZ-z!lLG~iN0Fx;}O#og%PkY6pE^SP&i~!!-Dy05v%^>;>1q5R@DF` -%U+qvU8_}W8VVl!_xLmz1q!*V=v$_?K|vPwWx=kF<4%md5RiU_4S$IjiCq}Yx__8O+vD`8}~(X=u2{> -Qo)V?H)?&d1P$I`k0;p&lo&F -CL{y1ZGDKzE8mZOdDgQWE$z^dY<H3zkDQLsg<4QU7jXMzjVnj1z_{DJHNz>rf)(9Ynf4sSr70U2EYy;Be -X8YuMF?dId03&Mj&532K>=FbtRW!dm6nmO^vyL2C;tqd0VxO*o*oA=|OUKi3R`zGHzsZ9?!hg&v6BzQ -Z&sZD=jDg)Yb&tqRqfgmi>i0qJ3DQd;7ciraeXwXJS$`~a>l?QYPAU@AZq-rR4abk)Jb3NLgRLr@|Y1 -dxd7IxNV=s@ZH}Wh3QyukL`nyQewIWj(cPDL`x5aCsCS&BN!!7e}Wj$7jc9M2ce&mjMi`_mWEi<22G;mBD+#V#$5UWW5<{@AH6!=n>C_3M-4qv!L7PyL<>a(s%Xo=(a -9ba8UFIC}1!TE;T~!}a}aUDS_Cc^uAXmsxsu33$XeAD-#)$4=jy(^2NMkhp%c -E7FT&%7m^s`$pP6P@%ahk%hMpbv>(&my?s69N^NtGNzS9ZmOlhIqS|5=I6Q1`qxf -FU~mx8s-ds`xtt*u`p$%3ueSxRAIrtc~{&ZdgG8fnralMR!!^s>EcMU7BUKJOBR^F!6DtpXyv(+JEZ! -36iB%n_fLd8gxrj)ng2M>n~P{ajPwR!iuUGQ{p2PuO-~R&)WPPOnX!kt{B476zdhNTvXalD_u;Dzk>A -Ta-7-`)24r4TQk#TSe+|D6+B;g(7~Jif`fOJ4V&>vu%`>`3WA6k^JMP4vIb`?nr0)mLf>)4|P -q7i8o(=kCJGtGX!O%LZMy(pNVvjG+DZH@W>sfX`V7n>*+vc#T%c5$Pv^@6pp!iHz4jstEX%janxw`sW -NG_FTlsUo#WN&Q80=X@}W0G9{{KK^SAfo)D{n3{nOx1?GmX*HS*$j*`W*t`GzFC3&4~Gz%FTOP4i>r# -9s>@*-6SQe-Om&s|Yn=)=IwB4N<_Jx&mr<#w-Ql^~dr&#J7L;Y=b;z)A9g>gVz5DR&Etu$!m*nLXpJu -cHL5YAJXnf;PPd~@=;}gUW6O)v9RKH!to&Uc7*x9+qClDV%Wp*iG8{!@`(yfPh{_n -2OApw&WAmwJK_Ee(?@>m)nD&1MGU%q$LGLsm;{H`i*hB -T9C9g8cWZDv}~8QSEphi)$dU9%QjtFIE+cN|NN8ye=!QSYB1^r}GOoyW@=#vSx*>+eTJ%rn=ouHf@q5 -M@M3dm#mUEH=@3=w^G?Fwdq<>^>_RJMb}i7Sf#tXQT%A#$SrI4I{?AV``HnL-@E_){#ADV&8zeOdGq# -f3wrdT-s_8(qGVD;s_Htx%@b-}4;~pl`n0wJ@i=(s%E=o$dW@zcW`q*3e>cG(Xbl?Zh -t4L=C{9TUt~iRRFFA;#ia~^!*!bv(5`1>&HJ7oQCdu{WUMo<#r2HU$8f|YJu)KHh9%EvWbB}f~s^YR1 -wnZ8&Q_Le#bwU`R3|2+vV*h;~#(qNZC2>US>Cta=C|BFJ~%$isUP`Za46&t?g -Aja!Z)XoU>F-Q*zQ^oFc=!)WBb_Fltl6}8#H=q=MO8-06ZB37N-@W|qjQzm3@{Y6XA>3qs_I{t!*Qr*jrh1JuC^H9`bcwfgSN4*!DFLXw$a4WWngK!i%-2IQ@m^SL`VR3Z^7<) -Jd61lVriGtl{rF(ZHLU@SB-&b`tN19t*g=GglzC|KdfP^~72Ln^&MIXCZB2!Z?*9q9r_tlM+Y>1S0{- -$sT*iq(|B!f-YEsIIOTIG?Oi-Zm7}hUbGvQ*LzlTUVFk9J=)JWN8sEHXNg}0jhl`P0i_v|-s>0a|R;C9H}*Dw~*6a -N{-H$#4*7{XzzJySeyiVf<2x1*LQx3Gq`d`s4WKwVo*u2WxVa3ZXgJ(CD#!*Oi^!vrs`dz7zJU*b?Et -?~w)LG`>o3kDKdv<=ip5%2hiF%x4t5 -lPX2BqyP#f$bst{!@OPlWeD7jsb}{O{smI9$jHbC*sN^?V2y5GG6n~J85o$phu~_SEJn=&PKK}N!Cm8I>&U9D<%R --QAeCmla4lGb(IXJ%fdvDyjemQldO8WK-cbR(RJ1O){H<(Xqr8%fHG5@UGBel?8jd^slviS+0~(JEWL -30THdDM>FPL2yJp5s)hlO~a_AQ}}BNBE)4+W$Y{`ZEz(^dowe4t#fYB0j819e7M9S!-3+VMiHMS)9^A -dely(P+>D_$)!l`ULuQK85In#VmmqrOD=ne -hyFkVqM0n%(@$t{WVNzsA=&55-3|F!C`i{M%5H@;^S4W}j1#jI=*a)zPxA1@X*b)Zb*~_rOssU-*7&j -v71bN~DYTFn^3SA>jR8snN@|9B!_A$UBCGX%2(OiDCX#b)4^tBPn=U@^+72AD3CQKAYy>mlGR&GP&o( -xeETi-K42S&)ds?E$ON5i>Tkd6l6e<1B0KAr@}Mb%sQ15;q)BAj7|9^-`cXo2%a(GucGGCUwW?Ib*s7 -;50sGo}a$)YIjFBWspo+@0-kD{GCSsYT%Jv3A^(d>lm0IrCnrFWEd)^Y{125Y5sn%m3Nr@3e5 -C|IcZy;%TkI6zn=PF9mR|Nfp+XjI7E-dc*HYiJ1;#uhKws%wn_2mk#Zhe#c=Lt}N=`k*&JF9D8Rh3nHGk&t-{&t@zKd~?h1PldYB5wAuSpxl6sYxZZ9&AB93db9$7?0x*?MT#VyiBcO39w1<$(C! -BRU;W(RAGOx;p1P}(tH?^!i$^H0$Dl@t4#dz~+38`X>T! -E~#;Hn^*cwG`osTt7o3Wh$zJeUn&>d(d|z6Msy=V4FqwC_HjvWl200@OS+gt@fw0zDcDm#x`gI7%U@* -?e*|@d -ifYnnib%Jyew$q7ZQIPCGiV4>FPVo}4nmFOTnBk}a7r3H!88hhNL^yd2cak64~=b!RTS9`rEx%};N7L -|ie!iD**u1A$yXiVY8BYzHVlQ&9KJfI)Kj#p2Q&>cTw@C6I;V69{gPM1DG>T@RK5HWY8glmg|>S5Agd -6%A_w#?;t7mARBh#P4mkxzN>Ct33q#&wo{^Gk6vw-TxTRI%M%-c2(ngQ*r2-RWR_vX{whH3C9n-J34# -OoG;y21;EdBoEJ-8|8oXj|s_hh~Y6vD?JT5eHy{D4foqkI{;auKJGrORH%D0JE5b -QR9-XsED$uc*u7{Ac_fv-6FVid$b0sg0MkHF2_)s`VJjE(CZMlml=C^*|wMjZCl&XcfD+@gIjZ5p01= -K4CftGe;m$qE#LYok;*=gIHh?$^ix9s);5y`JKj=kfS%?w(bB}ZFem+B$4uz8d^cZNP#Pk9K0D$(#^+ --E4|L}b>_>~Hvcg5sk~sfe7~%CJ+jCF2V>9bjo6h -D8NES86|4u5Iv^AxxD|wG@*aIFFU~jf8j*ei;(Al}WGtUPOaM6gH!OZa1tLYz*c!iIS$s0j!Gh0Zo;# -q%HJNKd=ik*AzY46SG%^&i((=7kzqqjl&&6>gH)r8dCZ#bDav@6KY*glDu5QDLS1we}2 -6BBEKFsHA#Vlc%=TY#O?`-pkCp%X*Mh?`!?>`bgsrVt%At-=^(woX1;ALr9qGCx2t)HHu{MAPYj_Yu0 -p6R8Kg=P*b;>y)m)_n>3Zo%A*ZJWz*rAk1nO=^UZh15%^?2)DIoqhl*HJ4`4vju=5QVS)sGgbj`Ls+6 -~$lsum6$WV=_LC)g!AbXp_pIu~9k*&%{%(I8wPgUad7^O-|d0$sDFWnYM55(j(s(t8PdOoS=Xila#9< -wvqcY8;O>op0NI1Gk>6)5#Wd#Zb(>goyMrG`y=Xmxzl*AabO&M%aPB2#QZt8HxFxRT}k -iGab;nTE{vk+tcvmVH|3{TzuYLM(Qg6m@y(G7>6?WygE*Do+EaLdM08`6dvwAdNdQc!00MDj>ocros~(pOlYMP~Q9vC#lwLijLiTL@j&!K>tY4YjE0A1#XY+#LlyMXmM(7D2v==6LF0=xCZFrmT7Z8O2|56tBwBDzS(E*mk~gc1b;{JfIQ@0!#>0OYt_K(@ -ryUg3`re!c3})t*g^JslJFVm6A6cxk8lg^=co_%`oQv)l2zAg4@xm|>2%t;-z4Wd7Yf6=^rtT|+76nQ -4SH8Is!b5iQ!Z3?Qs_kzpHaj%Vava#e7o6e@SzWLQSR9 -ahJ5hvNhni6WmF7(ufjQUa1{goT6v@`l -(_;5Ux?MUf&6fhwem9U{6kfSURdjlAfGk;CL^a(kiP5O|={xM@mdKvb)*X8aP-5Ut^MqqB6VT&P`e2- -$XmAuTfor#SUhO#fUL%+bQ&3^Suo#s5Eh4%D}+PtT@c|G>WW_2VC!PpB<9=u3qHWHuPkRf&~Py`vBU$B6-ub}7Gi&$66FQ~ivDORgO%k3UnbqY^T|Gs~*+fkT7S4pae2&audcXw<{k%xvLBsOmE(} -i9GW5Iw&ed%gV%Gp6>OOpA>32-XiOTwXWtM^SQ)N)uEYj8F+VAeQzFWkX~E9U_`rXdR{{|+Zv$gB88Svcb$)zys$v~Re$LTk8ORJ^AWo-1UgxSb$oTR2PKQR -k_0nNh6aiJLu*GjnX22V6X)do>z}O8l%L1Rlg>j_vc_S29tJNOj;P;)REjRGFw7&rMi -AtDjw|NLt5)~bB0XJuJP^CiKM9?`|HL&+>BX+ao^k6buqeqiey|eVpgb#4}<>v%q=NbrW@1@Qz!{l`? -2RKl-q6Kp(Zh)dR@w%X=;H{Tpz2*?y7yNL*N$IyCKc3C8$~^k&ORq{{&0DOV35S)4#d&OEE -Jz@nuUx_U1IOYaHKSvuGjm>j)OsgQld0t|%}820ZNntp#vYPsc50{!Z;=q@-tx&0P^Y7(N -YZ;Lo;lP=@R15KT+CwjOEvOIGnaUj5>X8%D~-X7-Eu^#E%w2)x@90m5Hj<1p9Pv_B_-#dO-^8sz!<`f -v{BGwJk53Us?NZ~5;=fgcGxI%#>;K;*bTq4SQYrbH2w(AT>R*Vo=4|9)~r&6iM_PAq1k%=r5*ue1^KN -EPvv9>0kx%3*1#Nz~Gq%A?X?+hkf7$fMxlLsKziQT^AC-YQ#53}6gq*t -l_fVjo5gK@!(GJ*#DB09qK)f8MT-nPGM>Tul5ZcN9uBXA2bcGB$fZMI-bue8oTnt6=rdB$$j^Xytj!y -`kuk5(dO8%E_%0jzXEtl7k0sBL9)pc5g69@JY_S-P>oI!SUq#Ch1Lw??i0fkv7FO!jjt2<@!bB*)+{| -rlMKHIf$85Xxgz+}`sMj!brG|kY<3pm!Tkm=t-Uj7r@hI{M?VQ8^<}5h*Z5Z1Yvcc()(9E7h4|(+*>B -~@3aEB`H#~J?5KT@t|8*kU2G53GtNY<~~kC;j=96m4cD8ZOW9-%O46{i!?iWU^q9U#{eg%y62Z9jLa_ -zOum-Odxzc%w0idhlkcjVsK!AFmXDm{Q5btqE)HDk%7^Ra|o{(Wm#?Xh_=fRym#z-^|WL29m -l+P$DXx?#(K1A`);a;GI6FD~g?ZBJewOG-V%+#EmvIU!oIYtZ+D9-NZVuycMbNT=SOW-=8v*-fjnvQL!1(2nGBf=+?x_^AT51GU85>)=xzv*aHXK} -lB1zcBXkQ=jY8w7C4^)qG*-a{25kTw)#AB}?*Tu(Iy)^nqw+C(jP_x=#*DUh)X09L9e_qA@Z3ML)t|zVt1e6qC7TvJ>roC%PQ7ml6#CeNjNz -6Jdr>Anc$%=_C|LTnSHPpz9Sl&vukh@I8=wQ%`Kk1TQ~ty`Z7{}1I*3;$4s?euU@A-ESyUmWeyNE)cY3NOUS9HwC|b@P$WK*5amXc=_AqAc6|hUqOjMX2GQ#s0 -K8w__QPZcC%=@+I|TttSE6e+wx3**z2+{^jr9QN#5rM)JEQCsx4&)@j7N&@QX=J=h>*@zI^C|1hUSw8 -7^cAj>s403r?2_&5zs_SYF5vBp)TY`T~pm&0FUU(iVZd^?>;mTee{T5|sXGjD-DY7IZ2;?+Xfj$$sD1 -d_7GU9lWUbkzvgD(7aB=FQSe6z%r7pa}bU)Bi=;mteKF>y4v?GbRi%$c|bb5+I%?)YeqCB`j@r}MhTF -zJ+!-TV4l2Tc|(Vu2Im?~^-EbQTYfmCG1D7Ectur!$|l3jVJy&rJD4sqD~c@;!4}6_Nw$T%3-+JzHb_ -tSjE#ShAZW3SeMM~+03DrXwA&Yh10JL07NA5Hcc((*m!Lh7FUt7(vJCEG!P!_Vma&JC!9BVx{hO&#j7 -BVjyND~|pLkg!>w+f{5@{7#n!n=)p@uBO+Xy_TD@*Ts$_3KjBV?}uV6Zd|KX$~Mrk3fex8J>b`wovqN -nKrqW}W$878-PWQ=57%+$A+<08tP42VR&WU7_kP+K5)*PcH)Q3yEW~TifHw^wlG)gnh9)mT;WFqRRHN -(@W~O%)+aUrz#&E@8N2$563~*hJF9y-8X+p4ioWvJSM7?EiaiM;fwS0R~JA+*BaKYTJUnvoJleWe$uQfk#4?ATSauF=s_!Ovx3_)TIfb1N`=E#>WT_!conQY|hBJG-gm3a`K`R<~fVx1yfwFP2etchAyT@zy%I;2aBcl|cEV%3Mlx=kY;pS_ -8j1x!dpZRLE0apVFt9+EehI_4Y8n&(`4B{>)EfV2;7Zh6VP-(cwhPMLHC_X$NR3Q%xQn)mJ_K{9EpAP -S61_DuX+`^W%dH4^y8b{q+_)#)T-7_${(0YM!QPV#|+^>E;xqe{8>(sPM~QCYrFf|B?_MjNr^44h6y! -<-f^^xCBAb_hWV^6dKJvYMQTxRCX_k3iLeJv0>M^pkLcC!P_KKwyZI){ay1nRBpJ1P?EAoD{gCdORfv -)tuM{g7UDcqcHRO^;e9V}%kgl7P+QHN{!>Eujm$y$Fjo75ZKaQ;fSXfK%HN#oqj`!2yq?v}5gl!Tuzu -Ip83&#dzCej9+Kv>uUnnMnOl0~LB2y8k`Ebeb+kyT$!v6zMO9KQH000080N_fRR>a02 -crN0B~t=FJE?LZe(wAFJE72ZfSI1UoLQYtyfKt+cprr>sJuYp?2zMlNM=!068?+4H_Wmp&!U02(+{`m -YAhPm890|2Kn!OLrS(bmV;M<+QKx#nVNjXBD(Wr8>!PId80JEsK%*+dS{27U1d65hz*I{1O-clP<7pTxzQvf-1aJ -_(R=76U0X;GC4_TJ)+v~Ytu?jiTIVgvI!zWhURcVqZRa~nSq7i2v0liHGrIGX#pfjH*Gp|S!*Ao#R{C -mqbbFU1kHn?fHE{!h7!`i1P3MhuVpplW5|z9q;I`?SLL)rW+50H=$B^0?c*6#;0aQ-hO5G732OxOcQ7 -Zo8<(<+R&#ElRLJ?RLh4MJA)X^F!!x8Lq**Ovcb|J62uX_yf(0h9q+ -til;0@}BC}vlQw>ikf{mOT+=*I0(}Oh+NkOonoAfC-<@u0Jx-$l1-q`8v@THLS)!?%2fd}n0m&Hlojw -L-d99AR>4W;pf6Ryfb{9*;F9;hU0uD)F5mtE6nn;`U>AQchi72d$eNbmA#lpF)hY>8qOHPtq;R!Fk}J -|Ja=ZnwoZqmYR>&4d66*wns!h@97!Bi!18CF)1%S3;>7dHXfJijPqYeR1Pbrj_G>}&QdIu-u!bf@F(lbHOoeutV7X)zsnUhSHYO>a%#PJ8?3LaHTLNA -k$8`;1D1U19I6}%YCKvDGGcZE7q_S#^pAjgE1g5GEDH4P7GxheDgkuJ3vg|XLWfjd)FjcGd?mfOzV7{ -vS|7>>6hsTVz8-nv4Uxgn_Y7*UINBcdQ}L&2a#S1rfFg?GP(xfVM_*lw%yKMT2t%zM*%j^FI?{x(VIO -?JSjI<30U$mOmv~7iQP8jKw6p_G!5k4%!x4tL@L1-)1DN~ABTp#P2hj?wNy(+$1ZU>A!9@KxeGHR)l6a~z3-ws@op_pLs<5BEs@5v(2ykL>(-F -y2T9u2v)qDBrVAt!uUN%SF0ai)X9jcI1&QyBvFFFCU|u^|>u$cM0TVViL*ZT}i8rl_9BM)Q-^2@XhmsmA8=-+*p})MG@x}I~XRxc-X}`#vO6!QMoC -G$tXe7CkEGzeXH_726Qa53v?^aj%F@zV8hc-#X^Yp4Cnb8vy&+I+#1JCl=p45^xT?UnxLm1=42$oBk^ -m`!(l)U7n_xy&2Ybggd&^uM4_W83Hr^`2GhGB!$On@Wnc(v`4Y{q%w@7iTs2{dj+V0WA8|UW -O&PnIN2sG8jJOfRwaeju$d=4EKj16ywS)uZWY?)5=k?%2cI;;6zE30r;p0WRrmvnKM_2IMN`>m!LLrK -mgG&8G~4c6=ot6nn8!nNSk8~{46<`9?FA6C@Ca{iHevj?3Ec6dXXYs5^LYvWZ-rki~(JWQB4qw#h$)y -8noo?PUNz-j^?7FMdPH2(Y)`&dDna&nLcVJ+=V*G|jM4>XoKD!EwB2>t$Cyq@mP7T{fb{{c`-0|XQR000O8;7XcS()Hxe0U-bY^@acd5&!@IaA|NaUv_0~WN&gWb7^=kaCyZ& -`*YhilfV0~z$w!)l~3U%cG|nk)SWtx)960GPIj91@_A^Age=w+sq$f4{pSAn+Xp~`Psws_&Xb8qV0W? -DT`U$40x!f-yj&&0?K~5fHxzrX-@Jac_j>QOcrT+r+(i(H3z^9zjia3xJ1^iRSp;bs#E}S6F_(#)uEc -HPMw#?SVwOlL;+gQ~ZgML}B8!C^t;CY>MLf;iAPS;e;R+8*1#$qJ&4ExF&$0(MkpS)sH%((NaDk%mV= -rIGD04F`aTbI!6;?KvVsNQ2216>wmu?93fL+Yhnc^YH=5d~hM5b91ct~XgKwg;p$cN4jgGHdqKy(sE3 -gm!ro?eDwL`a3U@~PcF_ck -AZ~`K=^EY_HhE`9G@PaUD;4Bq>1BS;YD12Iy^bS!hqW0XQ;yjxfDm|7r#%&zkIq9pUzJ{97E#!W8m)a -{mC&G230#cIUJvk#D~Mv!(WaG>m2A{4H1xe6kk3aV*_*#^+~PnWOWws|mc0pstgv0{P4M@^~Z -;C*w;L%g4$2DOM8&3pnRQ1~AW#nGOoQsv7{o_s^Hd1xfMY`0xa%T_Q49RD;_)JA=XCa~6bPabOcOFp7 -r+p2-e<36|hOOU%(Mz^kmF=|y6X>~0?rcXnn87`)@m@+?oJF=)6v@#9n_{k$Z8?KrvpX#i;VkPjBlcyH`CKiIFK1 -|W^kshs5@RUTkgP;)m)rBLwTD`qorn%GRRh1fe6zwZGF;LO$}gJ>3ieSIws4#Xa0?{{bKWA@wD{C9iT -;->>)?T^IUA&6`y0QB9CfIoCr(XB%gK-?@DQF;JA{8lDK2E22I7lKDFlJS?*Gx?ZNGEB0sdmt-k+9M<3u_ud^0nScCyA^wxC+6^DvRf>H_D)#q)be7r$R4EClgJr!DKmI88-w -eeo@rF4pg~CL~*)DkH7+mr+l<4E=~h-xhKUL%Z -el(fME9{Tlw2jeI9bLcD3NfKX>U^_^K+z?``fl3}qD{>dIq&{ZOId7yiioO{;XigRG4E!D?fWc -%yIV%cvG;xRN?igl4Et)8#UorC<_+gWCPTap%A7tt!HQQsGgJ>{QMmG`$yCg?Qv@s2;h(9LYtt`=iF0 -}NefeFE09%k5xk%R-UadRa6~e+7gObASvD|w%%rRdPvK-xZhiBNheE*EP7m0U$oHhrwtK-*8;R#V -^oA9alG=^tvuMBEw8U2%JxeU2qsF3@Afi0D6)H6!Zq%#u_A%*XwFSD;nz)+ZvhywKsmi6fB2YAEy_u? -TxW0c;9t`lv|#F@n$^&x73{`NrmfcND^x&qNwv=J -T31&1pH63{Ayq5TerRE|bDMop;ZrVy$5Q~iaI-nbAhI3|=osTrEC3L?rEIPOEsRFuBIpVpZEQp-jTs@ -P#yJNSci2pcx?(ODkV1)}6n4xP#~1sr_rxrSFd{>A4$ffsp6Mn##YvF`6pmpwQNt*|7^vFc^W;<*Lf0 -CkG^|x)E}G|Hxc#C+U5yrMp~UL+L_9U9D$HFJKSU}U-N--x$0!X0OhaunZ8Z`vVNe<(rPL@8-JVWI*H -^%_*lMNBuO+L069any|7%&0?zpFu1F8%%OdS4 -;%orasgo~PK##Wh@09t!zv4-R^893vyoaF!EU#nO08&E6@dO-u3AFR#0^p@*dI`~HK4Yu#!P+;h8@M3 -z(TZJGL>(HRfzKRn$TRa=cY7Y?Lx(nOlw_@!OasZS&6UN*{k5j5Pn%B!ybY(h;TO5lNL2!BVw+N&Y3L -y-xe-5`yB#Q7E?r9rFUtot7_0Su~gc4kUC4(yK`@QG@zY4{!N%hmgHcq0nZU5xUW@BqbWtwE@vyg0GO -0&o*Md!c}%n5AWd-HNrF@0*enEhFDW_j0$DloefzBdE+zH}Z@)LD089o|CFgEh#L*pEqaYJoHw2l6Q6 -eZ#E%nM{Qg4|on?Lg)!PS(&6fBCQ=+dNbGTXx)+PS<3j2!x{6}P(7Y<8_)0^gBZ8s~|ph8t8HB$uL_a -?>KMth1L$Hn5*QGgMYP=gw0a*>(?6(bZLVv!GAOeR$pq6=4%J-AX?@b56%>CJXSLqP22~kfa8ZwYEWL(LJoXc7tX?6_KQgY;7< -n$uzv5sN1!+@|L4@aeC$V`w&Ryi(;oad&y;*1YF$8RN)#X>UM8_8)6U8#ZgeZxi2tzw;)gC$(rCjiB# -XJzff_izr5=egh&bVQQ}=VPjcl>-(}kJNL;2|Zna3HSFN39I;b1yGa8?Jl+45?wumj_BDw7X^N6Ijty -*Lad&E0mgir^OWG=|3lYY!?qPS&$1u7UqP@^q}T;WCy~;;K3$!jToiAFzU;O&WOiDcwtBXsS+_MQZQ%JQbzqZjh`ej^2Xe6woa7m+zDo$J4Iy&A(;N5W; -U_37QsSV-JT;>GxU-ZxhlE`JEY#bk3Vba*UlUZ8wPVbl9j2iyQ@Kim1C%dB{6Tz<3V-J|)2W}XXZ~jm -`sXSZd^`YY?x01w1cx#d|VERaz6{L%A{GnW^H -*x*h*GqU`id|xd!>I@HPP(uSw=dGBV~*qizh`O?&!}n>H>y2(7jA!Wj&|-{ywf)lL6IVt-5t*cUAlDm -fc!=&yx`R7RZ<=Jjxy#M3w{1E1QfV$4i!qxHB5 -lci^bK%AgD2!81cgA{&R>*jttJ(*k_l^vZTRCaaOxSP}W#X}JJ@k2^;TEQ&vM6vc%+a!j2^9BIDzc=8 -ys^%on-}Ed{gG<0up}nIXRb8%kcFc9^22Hj7Nbd|NXSjF=fZF3yZWO3aGxH{a_Ic)Fg3UHpml$KfCV+ -GEMJdA_+)l+yjs_piRdt-OtEcVk@EYGib&{@Ob%WtfJ71Km85<0Z6?R%qT%`6}-*620KY6 -Hggznw|}o6iH%h+sn7a8%=1?-b1G3m6q-+oLnHf2PmD4YxrC7#K(;?(LSyf5btwC8`PkRNNHBy(MlQJ -*VV6+PdswYOL_;o1;0)Fi)S3n@3v~st})7tdqqKZAR{)fbRyAb;NE($OzX#p3WPo4@N=BYD?U#Xe>{~ -%qu3IIxQne^8=;%JdOCK3TQ`IIwaxvy+RgWNBGo>>w})$ -q0?J;x7qh+J?&WKzqihs_XN1>)^7w3({qyEYu4@c5gB0~~Bu!U0O!JRJBuIXSLI@O!<%yn% -`nINRbL!Qcy8>Qx+H&h=t(YpXA)wA*caZ8x)9!rjVl3A5L3+xdE`-6~`0vfHYN*V%0`P-`Qx)@~CC?k -UZ_ndK^aRohjGn_Dm7#Y-8r8=x+tb7>dGCSm9x0oh^0Ye?X7kN+G3xW13d-2?De^IwAxPi&=I+;!Jeq>ZEAi_Li-Tlu9_|nvW5iupAT~8!cc_#$0s-P!z~qov?kIgcAiUzmwhgHoqWr>0runS -IgHR;|1&Fc0S@6IPW;o`Z$jfskj<68CejTTThTn6rdi^88PqTE4)bjO+)92ELZq&5LP^)}Lx4-p-=c! -wh7#5A+cEWA{LAMMzzOAN;XjZ6BiEbDXVUl_(f-)yijn;0^E?$mB@*7`{Z>5?KzX5bqkOpyHbk%W-uD -S=bR%!|EDG3nu3!L<8wIz*r_l|qyobS-9VyeelYicCMx#BB?uxuNi=-9yRtbpRUXQ8^G8@Fz=`xPK;S8}RSdXkZb@R{~#Hn|4w3xLjqr)Zv*9+rR&LI-omH=+wc@A!OL|vkHw -S^8@ZQ2+ZeaqIs$ZMKI2ZK*<58C*88bnpv>sy3^Z#D@{XnmU~SL(i9voKcwsx70;*t~H}5DCMGa(~rE -i;f)z*TcewHdj*E&g@G3e#`6O^vT9&YPs9~nya>JO|YtoZgT4kvGXHku%ILQ8bP=XOQSDM(xvO^6KP~ -B7gPL_4nITDUx}1Z8*lbUAmY6IfD$Ebe3#KSPpQuQz&LM1JUt_Xc&Z=U5VP#{7?&IT#>j<#Ana06n-Z -w17K!wH&#gWc`MOIOyCbnn^~MKP4Sr;%=((i7d;LUX?>6uajhc)VtHWj8^E!0(a1S@aGl~}Y$x>;Q+P -qp9?h!YcN2&h|v}fp_n@ttN3bLj%2r?VVSi>Fs0ity*lLyZYLw8D_v+Kv6@-+y4n%*qfjaC*a9jB -w60fq*5*e?}UPM=cW@ptDDojXNzAb*j>{Nb5tr}_)QJetONR%YGcu!X-?b=0d`!qR``=^?{s2%)18K2rlRlrl)`T -23uTY+>PKwJm3B8AVz8;0=V;-QiBBB^L)twQ0cUvB2y9A~QY~QsoLf@{+!KR)>nMv|TUoO^rNBA&hS5<4NjZY(pEHDnmm&Ng)Ny6O>YbAWq@qw7 -_AoIME%lC}InU3;EDGsslMTpU?Vrla-D8L`^!((i%#tZtG|fr>3**qiF$q`WP-4CkDxS`lP9+(f`VahaNkn&>Ww*Q%Udxh0T0!jW559aQ-VIeCrfgVk7f*_Y!7$U@j;uAYG2ZiHTdcM -U})ojT9p)!TdnO#fASgosvJAzI%JN`3wLyVT|X&h9yd=&Zh&9(UPK)f+_U^DK7&Tp8=TlrWLG!mDC21X5*pibS)o6EETd=} -T?bxIYbdaTHXyluqV6IdG59Cy17Q^E`JB~I?#ghL!Wt2%Qd-wh#>6H~CY6hgT98rxP!#agMI$Ytny(n -@y!@sHh+z#n)R(whneqrm@G@p$`(1DiEz6RIBh -Vd6)(&O$pJh|H{KDEX#HmSZy>t4T2^ej0W*ETi@8upJ3yK51x)Ne#W|qkQ{DE -fpL+aQ$Bu9SIJisLA4sILrh+}$!*FVG(IVX)y`96(1y^4Rvo)imLZ+33o~e}EA4sZY*2#M%+`fy0tBqrE!dti3$Tm+*Dx(xJ!!=cns2U9v>?5 -UUP!AQq|lxLEUjmNtN%Gr3^JozY?X^QOS4INI8=ROSI -wJ?T7(ZP0>DvJ)ePstd -1tke2Ue?y%wf&{Y}V93s%jIO@OU;CTe$Q38{!0K5=mK06M%$HUriU_^r!yf=WKq>kM9G|wQj>r7b&M> -DW+BsN5;HJBlUI{S)zH^yvfYo4^bu6aEDM+;o3VMNHzfKv<0X)rX?c)cgz7PJR^6V9MZ)cB)Eeg^9!M -WM<702ul%vL4(BCnWoF11mC9SvNjNX;csWhFqEgYgm(^3IHuN(G)<9pQ|LV_Fm+JYsN_=)5`hW -`j4AF&Izj}D&%yLrx~6hi>%^(IIg`u;u{zt!qvsH>^2wx>c{;E6x|jy=W~e!4F -(ky)uxp?7I7x8N1ZbI)sVedt@pb`jg4l1;(x|#;WY`|Ky)K3KR*6Afe?bTK%177B!WDJNbWG?2?yteO -cNmkt}bDD$d&GOG@_bJwCi!X1sCd=EhN^e8;)b)Qa6tNa^N -Amvy67Gu27rR93W`iBcN09|vTB_t(WUMGea_wq2oT0+#qbw3{0ka|XBY2Go)4%?($O-V-V4QZ?KS7b$ -9*9lv15E=VwhxwhOHWL5*pP}ie2 --7yq7G$EH>$7+YnEh4NHjJw?y4qIr5)I5q4feJ&nx~kGv9q8$<5;UrVc`dBExq_FxYrM(f;IKaQm0C{ -imQ@iPGL|+6I4x8(Xd0 -7@slRaa27Rq}W(iNR*vx>U2QQdt>+aYOsJH-nYaP_`8LtD8&56_ -Y|IHx?OR!Sl>_F`(2!<`Kej$?UYs;@4=bG+$DLP+tOVLK2FpxHk;TDTIxu4pDS5x(oxBrYO%evg{C!h)z8yQd -vxl5-F2Ke32qs~adz?ec6#2xH8!|yBI?uMLDN=oX_kS6dMwrcGf9S5cx$$>1UqwadtJLdwC|I_Vr>(b -(F_3^8)|HAaD`cp#BL^W9Rn}=qm!YbHzgr5E$^D>f|JTBPo^?Qh=N^4 -syLV}b4mrinG8+$gHSaD9W8SQy;VJM0ty2alygGy?=uHRF2;4RD)8&4phwDl{EvZrQzz}Wj$CoCJl4p -#53yfh?2n4XJWw2WxA~)b3V6c_QSqmssQJ>;Zh6cd6lERyPcWV_b=zgt&T^C9z6YD)&X*CSVP$Pw>n& -YS}qGGSQduJn*5$!zX8!4@HRLp4|?B?0*)xYoR$(Vy(p3K=b>@${lX8+5V>C2aTqp@+drMgVvqcKIOM -es`8sL|z(c=eN-J)`>-ZlIK#5(?iCf|Kj?_TM!jOgMb`hF89vc*Y@p1|4Nl>hA=Wb-3Ew>J?CHrvr@W=ix~m2!^n0j+kT -OQ0s24~D5#4C2={RKa4!S6K<|r){IbD%ftRE4{&t}@bo-jf4o&)##?lt^QV@bP2s+W7~a0q8VLba%i{ -ozRQ1X)!k3~MIg;Qk7_du_R-*`=UTIllAW7>pPu0M4S+0le?3f_AxS*0=Gu%})P{69YtbdmRg6HO`G^e4ITokj`&<3;Ur={zmFS@CxmpVTv(ujBik`-|vLU%FsUAn60oxWn -IpaLu@r>eY3#RCy3x()p(#uHXEsV*7Db3KbojMN3_YS6|@{V*ou2}7Jkj%VtkC%zL3UC|P6f6A9SNqt -~SL@4Yxz+vpegZOzO>8M!$kR~6nW; -l1M_7H%eXkyr*YvJ(PiDope^X%d}LnoDP;>~FT0o?*oFs*nKKVy?bBk_NAlYqVmcp=osU(hO{wSwDjx -lR$|`yirEALUB0;VqLG@E57AG~q@-YmNbFL}LgbL{k#{4KIIHR$dfFA_HoXxkg -f>lEUg?J$W)J;M8#SA?%O8Q}msMUhvUZ={EK?S~Y`}!xD$lbIkA%syS-qR@4^qn}2SS$nW#0P9&k_E* -!vj}eInL!ZR@(k+4V>{YDh%$mwfI)Cy57g+Py;AcnyN4m#syCP39oEF4R}|OKi=h@nf0`nA&@iNH-wk -4rDFKx~E7X!ASL+9}888`TrdL!RkfvrV4L>Yg2Ax^lc6-*Kbz!^swvz9wESpDdL`6GzO@)08s$<7;os -726mP!Yk`N&&0MmQ=b$(Wadl1Hh@QQ&z7_D-chn+(~viqAoZJO2w%O9KQH000080N_fRR>Li9Lj_F$0 -EI{a03ZMW0B~t=FJE?LZe(wAFLZfuX>Mm~h8zkUPIz+fmU_CCA&Y*>j!&HxRd(P(rx8r{WeUDa)pozM0 -P{yM9c%Y4=rRoO%yO;pLnrku4^wY24mvROkp^Rrs#b=Fq3`Q2RGlI`_6Z<4G@ru0ocF3Jn@>nf{D_}T -33?Mc#}61DmHvtUJu9o_1Q9On!jbW{aux_tj$aK-# -q%dD6^&c@omvU_m{8Q8X%j8FS9yZy@EzN51!T+P3Pe^Fa-DbRlZ!9@5eA~{atlTejabuOIzfpa-Gdy! -!H^A(=VSjNxG=3RX8~#GxDpfXtQ$%;%ReT&R(=UCEbUrS*RsWKgk-C7zHhpGw5rY`cf3t^$j8%t>7q#AW`QIz@#_G -=1*YHhg}WvghlXsF11t`IB>$4*LqrHS42O8>5lxqbgqFm8U=fURulA*cqTC|2RmDNUWG<6|HwJ?l@GM -b_vCf7xWU?a1-}dii|%?61$Cee>e`zqrn;x%$5PF$XHK2>KDov8Wx=zpq;L=yY%IK?1XsoWsfmJ}?K; -U#+vYI4_n(d%gGa`OE1aKY0W!?YQ3Ld$hcY*>`!H!6O_l)<3??na$$zPR{dXb(Lgwo~){Qu_$tcxh{Z -{Rtv)d3tTWT&&g%J1P%$rNKme+TAAl_sC0gvObwo?!K|DE?Lr}-_ct&ZNyBtb{fCYwpM3nu1i0`jt6% -3e^shSqJ1pXK1gv?UFA~Q6^n%Bb&X%x(*2n~5#n0p#V@39oTo%rt@px@j( -{80Cf68Jamw!y_RSH!)vPuJr_Z>}TPS~xs4n$!pSMe=Aw>m{Y}f5GEV_WiblQPM;a@7O|B$5oZw3|AS5EEc -_AF!X#0WrvIWYIv(LhTW&x{?nk-ocSyUNd|ixESMXFcngd1EedJC25u1c?En`sv6NP`TlkGT3nP*L=!u*Iqk3}Y&L?8ZCLjMqJZk|Sa` -EpDDKYwrCzgLe(*sUgik8Q`AW>Ume(N3l!3|pQo4bdL{Cc`GMmjoz>-`we=@2fIbJeey2^^s7WCs44! -O%?cN*@9FDbW@1vhF>Zauz;;n{Y6nXP<6cq0S0@Wq|5wmF{>`>Y<&qVhzgG;$=5))`P*y-E9LNT&yG6 -MmRi1!k19A<>vqV=Oy)_fu)pOu`D7b7I7F$3_v4mI~1>ymage{5PTM&Jr05ciw9d~9s9Uc!yq(zn21 -Y@%IO{~;6QtX@D6#HAO*x#hs-?HT -McY>X%gG%)|3GMjG)yB|vQ`c~70yN_NUTVv@DwFUVlj%oh!IWA`d}$>nl_*ak5PsUC=q)EuWY-K&E0lG^BQp`IQ@|u&IWq~$!l12z9s*OEm60Vlu{HOJEMXu@($G9ia9{{>apk2Z0y3Ay60!EOXgYuX(sAI2kP*G|9gDRg3*+P+Z1^NPld -Q;?AW}Ctf)`A_0mmJPBF0A|>g4e8sbN*03i_zL>nr^v_@62{OqdnD1R-Q)#W`6Z_za}Ex~hbI9`3&G1---Wx*j -GU5KEX$arhy`i@Ys>fGt~8sz^W>P|6LEg(RXorJRj>^#K2~7~Z%Z-GYWN%h#}gs&WZSI00UHv6QWB7$ -u^ZEGqp^v7h6S@F+7a3g@1gHS(EPvm;nPPm{p7%Y14B!YQx{VPb|O5MlKJbgQGz_kjS43uJX5BZ%#3j -(U2D+v1`ah?yUi|OphZX^!KYH|Nmm0|jN67*1+O)i($GGW=@S~X3*4CNKpH*ea -mewv82|mX!zI*<|Psh^R6IisT(B*@z9p*;9&YD&l0%qizj3~hIHj{T7?y=!DWo1}5*FlOwmPCT#y2i7 -Jwg71nC~LH%?BjD3`l)!ygX9U902QZcNf|m;aGt}99I720AWgr{^R; -Jr!yRlorB*=tM*dg;aM^P~gwFHivTfJR;fEidZ!Vh2`WiOca#Gb79~Q8y<{y9Z(Z`Ri0!nbwg)bS9;c -TAIDl+ZkQn5Rox5_GitE6S;lq=|`z<_$Z-K$mSmf4utxhqOEuc8*a>6-UBD`RU94GLwF7F3CCIC=)dCv=?jWYxtC|n&CIJAyDUg&<>2F9G2dF%Ll%I -fAG|Q?*MIG5q0Hw~e`9AIMG9%Zj)7+6E8qd!+#j+*)YiA=|>%}U9z(TA|d@PjWHY^zMB?Y6dQh~iak^ -By$qMtcH5k5DXM -<8{N=roh>OYS6)B%YeRLGyIG6>!Bm9iLIn9X7UY5|PiFtUffDJNXzTosYNHLAIqw4>~hwKB#BSc_U1Q -0CI@y*c%dxuGMx-<${Wj#g3a)$e{V*WNW8P|A8f+_UxPy2EA3FGrSwN>tb=unw(6fMK!5)be=$(0(Ep -7P}E0(^YB3)DHJS#?b+k$>3p+VT`R>VcmcettbWPZU={L;fp^e7;7twXsSl`A=8c1Hp3rNrvMb{~7RK -To$-AP#3r{?}Syl55&|`9gq=1|OzLJT2S(JHM9n#6}?d>g_DRxDZtd3&OIq=g}Wp!;Y=@g4C#Xa}LtxG6#mW%x187t}5J;R -w(S!OK7?%3qI5~f^MTVIMW8}Wp#BmPV#JasrG%c!#pwFn)K;rPrL~?!``%u&r+h@Lz2;yu%_jvyDOhx -w`k>u+Vt(d)nS^$%04Q~s@%8e1l4+yPY@sZ#b%k+2?+f3Vg$2WStOzY;t*MpGz3xxAq*`th#|C>Wh4< -Xd-ER}yVpZtDi1BF^ZY*m{qdq5p)SDJMU^)Ra$8S2P8`D^1<+BoY_qW8*G2vY(3x4oBka9mL$jbfew2 -JZjRu|yITvUyIcj%%d)7 -_VHE$p7Sw~QH24EiTd9I_Xwtl?lIi1D|p&@|WI^9e9x#v5C>JI4Vdl4tppqZe8avRl6+J~%~emZ#^Kb -FuAr9xEdk%Oon3cyGE1XhWN(TdZI^gTVds@yn9zd0T!e>+BE7w=e&8+x#3+;7zzd9vrb@&>4~&-cV>Q -yty&gFW=ARFn$8_B_W)^-e!Vf&b-?KOFxs{rRsij-P+~;uRWxPlnH65wgo>*JC;S44t2{d?#n*juUg- -)wu)huUT_xD!eLwMW0P}L#8u#{$b_-fBl$~^>$1DLLcV1i}b1S&%y1)_!m!+${IY26QZKu=)snwmnAW -MawV0OPtI|xx|&W;4)+gEN$o+A4Ay375d$j5YIxqqEEwvi%FQ+zilJc`NIB>*P?So&Q!GnuKnNUwOsD -GgbP8~9Zrv_K@(+~8#)+9rmyn->2=F?;M*f|Az%Mm#lvkZI(v-L@fSkYauA`lH_ -z8PY}PIh9Py}ht|&|o6l4H=D8`+E3*h;j%LDxrmK8)jyOXrsalG)73)${G&RIehv)ch%!g=Jf6}e52tsdkT+XB -iDfr0CF;C%-xJS0lT_;~#&=R -T=xw$QF0A=lI39B+D%d<#TM6DLDCIX)PpHaJd>%Tu&m7*u;NCJMrf1*2sweObYTqJ~Fj%D}@B$3+{|U -{^I&3&lvU(9>m8v0aYo3h-X%Wba=u5s}j0v8tlVtU#nGK-#mzB3mI8_)rfCAG$U#1eHk59{2XQ9*xN^ -YgW!yygT%|u143t>v;P}I!M7(j+}YdHV6qKgys*<0xm9r#`t5FU%Cb_UtUB}C@m}-9bG@=^`LwKPl -aS-Aen&WQ=;mX%iI%Lk-+r+@Y-9U63PcAqro4u{E?j~;)l7%XY~*5Q)QLy~h?xtkIQ -qutfa&IyM?8U)F1)vi7a-E6RO3%6x`}aT0p3YRc-Zb -HHT3LDXNrOfhq2{gj~Y;Efr;Cf5ne?LiK7hyYza3*Y9D214KJl>6oK6pDWk-thy+RUma~V?jAO*Z*lu -f1;TtYd%e%kMq|0+(YZq8M*Zxa#wis3$cIc`bf6@qZx0!({Xhi3+X*!|^5GDSXK3&Ma(c=5>)=V@InU -`5?jJw?n8rPa#ZoL|Z(1U)3hs|&tVY|IjEWXkzHPM4I7DjQM?g*ZV!sUTw3-p~p6UDFUn?_%)M`q7{ukK4cvi{$P -+>o#=h$ye+4I>7X*xqwkPa1DYohfaLQ(U>4a4fLv8Jc#HYxl%C3Ho_ay&B(gr1bDlXP9GSp)*~vkj?C -&}ZCwgBW%0`&bjtGgh2pojDS8AzyE;15G(T6A&Q+#rE&G0osq|xLjdAyG`g8Q*YN -f!JGwcmy`IdUln~J-8LESzdz?30|CHeTtN1J2a$GO(fUEo6vP))-L(7aR;#oGl?oa*fz`?ePm9XgHJW -BfO7NTMp6f=BbXAX1Q#@raqj4bTZM9;{Lbk4`M@Pvp@L?QoCAN+qQ^%)lOY5CO=`NK^19ubg_G2gBu{ -{x$md9|Xjb|}*`}H`v0HojGoiyt7=r-WuJZpS5gTyH3Yuiupx&af7r%U+4$?=_6o!AN}Gj>V^TgYHA_ -%5qoYnhtG9kMHh;>tK_DmFb9&i<}%sC6Q{&?M@uaFYD!PnCs(+tGTxEZ7*Id8^S}ezb+@%#ZGslIyl- -ENz0|p`PcA+*wmbQwkK?MBH~l(wJQ$B8+2V-00X9G)Nc@h*<{@-2L$MNtXZw-5eOg;VV3v7;mR-plKp -x=+7T&O~a;xp%@=tyA^&8#fh|^^VzD7uG#qEH79$9nvS|uxqW%~FjWoJOeb86pjv12*_kmeF=^oWA)J;ZO+nGmKXQX>Z;rQ42pZniAW>kJ6odY6$a8asCZN?~)$*5nLD7!Wp;?g@c7XmKi{pB9Ol*b^WdNdsRB)*R*-6tC(d9zpNv~NkK`*x -W}=Z42<<0YnQKj7)0d!e%Ckjayu2%km9j$^w9(#| -g8X4#RgQKI_{9coMHi?Bf9^u0FJ3xEFH9F+D!N5T-E)m3r0+ -OjwO~;A&li{C}N2mPzm?7QLB;Et0Ij}tEJg4C)4Mzq@*MPfGyQnEMSm+*JJebHlDf0 -T&7qFnnDU`Et&oK*!043gS@V&@L>ENaB@;0Ah)yUlkO?e5*v5&zl47vw{LF2Qk%!D)FY`C~^60S+Ivwi -v(evwo5HMOdb@{;UX0QPjvde8Z=nc$(4)ur!qdO))+zar-%VaF15Y9fo-8T1x0cLNGo85ir5nCHco4p -3+O3LM9l*m6y?p7}sLxnZFpeSI~4W4Du;!QqC9^dW&Y%>XYxs$;C9e@O||(6GhcdeD7rE%vs%7s!&I`ciBJ#q>XXwq3kw>d!1tTFQ$r6n98d?`P72P;WB?)ZyUJ>3b@0ac5 -5X;DSWZK1>EAahY1(k3k_eI;(Z93^_oRoHlrGL!^@9o6#T|T{Qo8QeCMV}#w1U-Abaj2diKmF$UtLb+ -?eD%|}&(Sx9Q9VEwAbEi%wu=#ulhMQ-&U!A|UHnAi3#0vug?b(;*)cW#B-oQ4mUdsI`a#vsiM;aK+P# -$r$+J2~pKz$%p;x)98Akj%R({(UeHV5as)p+UM0C>Olup~Is6XQX6fEvHMHY}u1cLSsn{WrNvg@#4wu -T7wjl|-uLHlj4%QkyUPKfAfan6q81(carvxc%Lh2wl>y3N~z7yH+>W$xc`76TjuZeVp0T1yvetBp3=)}`-iveWMO^n-F1fzMD+qnfX7yn3qdi_HLX3%T@`0wV{ds$tTQ@=oIcapmf2F0Pz8I>rR6&74PI!x -L}<79CFfBE|1?dVS&4yjd#yhzdhu8kh0*h|BT4;7-!MtDmZ13cbMRDb8tZaSze4`Z>3TlOTh9q1^GXuHb -QA&Tjd3eLucQOmN96`qFfpSJ`rJ!|Jl4Nkjym5rx!Z6pmooXNU4Eni=%_PB7X$@VmyB%jQ$1BjG=7sL -?d~SK&35JTp0-*Jv=LN2d33r<<(=@eGlGl_xX)EfQ!U-C_a?oI6;e^6Eh&R@yfL4mcW#X2u=m&fK2L< -Zdl%a)Cjoo#X1(dD5pV#Eh*ej=<|VQ*@7<^eK(OLH0N%T(GrTUV>`{U>gh~a1bmVun{_tJbx -H}jedc1F^1(BEuM*PKfwLVB%U+Er>m>PJtAMSX%!}o4iZS5G$cfW78Amb$VHKN`kOVmEV@c_O@&x?0) -dAtvtZ>2pOw?A2jnsp;kD~FYz@E(894L8j4@%XFM -Vl6_LZx2x_?>xSaKVD|%`H}(z20P=SX^hMqZ-<8oh-AZS`1=_CQZ@KKyr`=A@Rm}8e&Yc+_W}G0g+J0 -2&oioLKM#_xk;tR>!eo|E|1cPMdj#FNK7zgw#G@fa)*F(!jVv&I1^mE;vSTkQbN-JBB2c{~9Sao&X|T -i5m`7+Q9=~+R%~0=iZ$nmP8I_`gh!To7HGu~k%cfdkcrx0#CFUkTiQDoJSj5{S_=ZTLKa8fv#E{t$29 -pK>AmZR}W|jfkZGdqmWY(eWs*nLnxEFIC{K*Gnb6@pJ0tQ=90)U2{Tvav44UwvkC!Z3&Kf>T3hoTEERKv-U>!88Z~c3MPuSA@U2tYh#Z -!GMjKZM1U8x(2gyT%n346W^7;m%f$}!XS7^WjTFOnBe6RhIFQtbWJ9vGl~_U-U6@Qb4}+v}G-o55a(0=O7dZzcC4O^NC~7mO{FmW%_ -Kv9=r+r7SBR~1HADi1fS2WhiNv|Gag~sISu5$`X-6T^qO0M<(C58je)=4iZ2AZET5!0#RJEcyJoi7cd -Na;3wK$mF>4V?M>?2%IolVc=BGG$;8ocX*-eh|t3q&+3+&FwB6npgH*lU0K@PCEGlMV7rBXPdeKE=w_wg~P-4Zs80qXFWM4 -Bl;-^b!A3(a(p_(BblLMe)Nn~-{G-4EloEijI~LI0p3w=8;<<+NNx{ZW!G$_XA{Gi1;lWHq^f8jQ*7aK7Yof -TUC5JT71`R8La8qUF-(pg+sW{q*CfYBb|NQjF=gIy)_3%8u%-$4u>vdt*4LhIks^N5|Bm%-x*nrOXCh -tt{b+sXEFS1nuY_4W9xU8;{9OzK)8RT#C8GJ=8Ys6_3oEio~|LjtdV`EwvY`bB>iUOIGiSaaW#cCd3eC&w-fJ8k8Q5~DL9pQ=)9w?2yMYw^EyH|q+lKt@>>M4)3w@)0YUlcrm`_~9-9d_d`_D74b&A0?^9|0sGd#J)CmZ~H)nQ8$l7*}zm3HvT@Rc) -}b3>&^MHm?ckNzTiz1qxA{Zs&gD>GxiK>Brsw9AkSgC3KRzAGVj0OyD9r0O+M@9OY=*nF+n}ZnWiZEN -6{kjjv8@hHn>#U0%H?PYxNTq>lxl=P&+fGDavOD^zUQYr6rLtg~hkYf@sSbwr*Qy8#YpacY4WtDOIJ7 -A;%P5uXC3kga^w-9Mf~&FqHVb@kAm2CBC72V9RT{2!W141?4<*@LH2WjYCQ-8<(zUTheH8Op<)*L=_} -6Wb@36muJ?Hy2&erw=0zRG2no7xDp|ZVG-tdQlO6?g!Esb=e7Z2uNmAO`dg;2HPnH2ouON6+A|? -vg`@zU)r(r$hX)&=R(ShLjbivq=Ih$YPn80_o^9UQyD&AN8zN4?rBkw;0<{*T)AZ$EWw`1l8zv#6I2* -${uRsr|%y1wosgr;A-(eo8DYSB5h6v|CG>|Xi(BZ&!3aWI|NsAc&1=`k_FNb;0_@}*--@Ltqh}E>V*& -dOsJMkKs!Klg8V2q^POq+#>)Ajqg%1u-{enH>ZAaaB4*?4A3<9|@0sd@oI*E^J{gs_i?4 -xSrsrH|dX1_(3Cbe5K>3O+4X~!&wn6=Hew4cFXatcRsMKXcp@}v3_Wl(^fk&=WV7%zMn_6^aGX~>_N> -u~nTH&=``fKPrO?&|*|4UvR_c{SOSd+G9GijF!bhmTK_FJJ+DG)@j4sYBF|eB3iz#2llz0(8&JSPVW_ -76b3T)&sJkII}+*8%3X%gV!lWG}m?nDl8YLUQn6f4rHf>BK!`Zd-lcy3;#_;o6QMG -U3_OI$`ZgUHOSa@QQ@iWOpyutXkSFqHC6987tke!h!|24&Ki`XgFHJXE!nSzsckcYPM@wfGz -ufNA5d(ykStaG*v9(uEB7e1wDJg=&yvQCiAswmmICLyrsK<=9JV2Qw&*)-tNHpbI>({n=8P4jkxD84n -sZ^b$66{xRU4&eSZNJwKd=#pAUcSfX|SF@vcB&eRxyV6(KL3P@e)9Prg*s&RQ?-AR!Of$Z2*&~fA(N@eO`<7A-Mlj)>v{=?o!lR?Se&852`-^c -IcJB+?o7@q9%0MQkz+c$sx$v#x0)d8NG5U|V5{S4*%MDB*3om$`s+GozinZ!ey_b>DkPeogh|hmb6sX -y@drk;;6HNAiF4~xkR6z$EwK}!Eu7VVLYN)bvS&x&)k$yua1_}ShtXxE2vchNK13jSS|_4U4j#v|rfO -B!rcU+Dfi8cle(V=y%{Wq&UqtP7!p~oE_KlPpTQzC8Ro*S7%9OhXjDr*VwRV -M9{A>|md&ov)Lr-%3t%9mFp@r2QL*4y$VU&=)i$F@~*-0q%s`Sa3_=(15eQ)w6e(o)E`aS5JU)@voq$ -%r{KSM!J*2fFJ(j&SXI9(F7Ff;kK2=v9%mOOt4dqhTWpjw&vt-)xGTDe;tZGurRe%tia((} -h|QpS3w7}%XSI?b>l@O(lgr`)3)4j*3(njGV=n>8>0J4}Bru^Z2mqd)J*!HTUrXA>YJt=;ezO1*TjY$j%MWcQ*}KtJkzlb~6SFd7y0#qFz@F~R0*rXy^eG|G{rGaA5u-Vyf%9qE -*E$aY#Cfs7J-TC4?Rb}SJ)(10;K_Lu!O5=&-+$Cu*TdoPDGg-5$r -icmCXvn@Z>bS*cA~Xc0-;t2h$3N>fEbR%ekiJebGrZsc_WH`B5tzAzRSCls|Mc50Ka&@XZ3Un#xLi3^+ -)H5PO9{;(B1g#i21`2bPGihcOdyHG47y+KbQO|vKLRr&}VNPFL4(KNmc9o24=+r;9M5h;9<_VvLv@U`dEhE$#`} -GUoYC`4ig2;<}7nt9ulK;xW@Co+fG|}xqbS4X(le&OM7;FMh<1U*&JskrA -AU(9N8oK5ioH?q)lMrN@%DH5{=Lfgs==)`0(S*TQDL{Gbq%ZvbCwN17zWd=A$VlD4a$B9B}O!^`2QQm -n1sClz+Y(hzSShgEx+VF4I;{BL9s6=pju}V?!5ojGmr<#U&ZQmk++crO4;2#fwd941p)=gW{tb`n>0$@yo9id ->$CEUm~boQ05Fx+bwj1*#jEXg&qJ5z8sM8o|6pT!6l<^FB=O5>R#7Q>U9!8jT4wNh0dx+~X9>kDQcQCrevCy8(TZt@)96s{6M)!6Sr -_FOq*<4NP^Cg3>C>H{99(9B4+%}S%9+;8_*p1>CXkIDhy1cpg({tg8S~8cOTwA&qi7t6JF!Vpv7~3)c -Jak#&MJHt*s=R@?8&uhr3r_=g664Iv+*7$Zq+p)Fw42*Q6tfqXS@aT-hXkgp*cBqaI>h1_QkR<5Jw=$ -kEWJYuclcyRHX)5N%e2%(D%95j#pe1-Jb>x`CA+VGXP--@YUK{6%Adq22TSPhV#;Bg!P%Le^0PBCv1u -C|Qjra(p+aG4W1+PTNd{F6qJ{pms|sUWAgidevf*oSiV!LtTFaOyck;Wmb}dbdfAyy_s2kF`E&+v!Fx;3sm|iC`8%=hNUWo~ea`=~$?CcGIj0A{@ -rE9~gU>nD{}=E%xBajT(mvhM=Ui^-A-1h$)ZD_CxCSnOA>D}6rwkS%y}lqsyI6WatF}8ptenSuhT1=8 -axX6=YQHt1y18~Sa>wdShHOf6)=RFkYqQ6jELCLA$+J??so#aHST$^K<)f*G)OwkLOmPL>d5D4RU?0z -Cmu2zGCbyS?ww+(GEg3Mp0*p|ULA)na1A3d>p{>MFRIpGRv$XNrvy++X>H_9zh&Mdu7>A*{n&4602G) -`U<+q)re2I895c-vs+4A~VZNUc)Vq>veSbXn$y_Wb0ml_%!cAPIOkj$$ERSDwhX^3hJ{X$u22)18vOI!1BM@$y^r^i5Lg;dsx^peW1@ULK)!!8Ck!29?jwqLqPkI?wwv);vg_FD1X)_67 -+Dh|9h<-6Cph$|>4m4V<=FGI{_z<4O7wTEjqh#-%hf4XcxH+yba`Bzi-IwBV?sIr^+orK^G@3MeU&tS -K%JFk&FMxpwQKQ`SvM=d8dn=#m1*;z64*Jjxo*3_vRkSrmH>VDeas5@#W~!JVDaEnYS|p0e~K&+xh;J -fM!Ymz1-b!ei3ezhK4j3(2USoAB{;qZ23)NN1J{NS+Y!!dLs$zjDm)VBi$q-Xfs&za{tjZH=|BF_xis00=eu{uH>mVwtK>nD@Ej3=Tp0v-qk=n|NGX_imvA(Y?9PUyhH7 -VBY)&U)>vt3w%m@`txeff^|q;aM9+I@XC85EIp>KcO_OkHuPCFANgCljbV{H1Sn0M;G?%lz_e%E#Sf| -uNa`MA5`s?$etucLvWcQI|KaoJtp43GAcwMX~(>KJTC!JMiLiqWkP$00=pwHCTY4Zz6U0ykI7zf!R6k -R-VBa!NZSI@tF{_Hq;n0)=?58ovcy`__Tj|(q?(lw##i1Iabt(!(1Z=X3}+O34Bc$Z!92#` -Is`Sc&G`~Utd60C?$hW+bH*hEK#W~(}a@UdDXUzVY-vV+8=6TazQqd2MT5 -1&W(iy8v(59Nia;X0P6g?e={oQ{8nKVE-QH_LoI4|j=%`&s9*%0ch^;pK52(sa!b}t-;c`x0@W8cQPk -%M3g*4}zjx&C>@?n&jx($XqAq*%#I>wh*3f;5v`68iQD9oDbYP;i!;hZeHUtcZwJR_zybV^wY1n+?2& -rC=*-4NSxgvUk*?j+t&1QTvr}H*br(JU92`@*L%hN4N_we3F_s=Z_$Fz(8`Xl^ke=K7$!@T1p|EaxRF -AUtqtVEuHHccR(*ZH-?v#r`}$rm_WPG)WFGD*TGo}tBGn~cuysy9XMQZtV=?EXB>Hp3rk)ty2;8Jki2 -;^yLDkA}!)zso@6cncblEO>9dqxytcK!RTtZFqU!G=6mO`RAYe=6F9_crD3?ZPWv5#l=>$2sEwn{V%- -NRKp17s$IG~>Zdfo>Pre~Z}Ivbj%w~cFZhiIHapR=TCwkylr4sm%-L7h6I6*ccfO-;WzIjA_H9vv<^Q3X%f_`MXZP7Y@L(I9~_2-&8$$WM&ImyQM#Pj=*KAffy=tBS}fSOoR#x^2{3PXqyf{+9ExRFWvUF2RiE -7il}=5!QrEtKb>_YFD=b-T$vj9%vRv$K}d>>P}f%W40B8sHp5O6f{95N7AD!b$GT`M+_);s> -^v1u^cXmdj!uh+(`R4LN=Clvp0b($WO`|g_|`j>s9PVQc;{8zaN=d!28ug4gZl^TvDEKVi7UoT&*DT9Y1U_3e-j3%A5&_+au -$BHbFD@?I^yAMSjmF8(#k{>tKl%7k5Zl2@NL*S9Vy_ut1kJBNDR8>U&z7{qa8IstM&l)wp7EjXAT;w#)dN5Uijd`a>7W7jA0a#n3h5~VV7u3s5@u@bZ!TF|GwxEws(A#CGFsbiYk=SiKkjSxx?|Yb|422LU9hxY~oZFCG -l@O-@<}xcUytJO$Y{-5yi@}c?HuUty(aOj!A@tcDCyQd4A0dZrT2K<|uALAo^^h_WdfiS-?MJ4cIbzm -N18UZ7&l&3pdX1~o*-Pu_xTXc>+X-*EW9g9D0=yv#6^A#sMf`ZX_2)-C1u!sIPp -St&I|PlK08XLUxA2TRP99CiLAsU1NmiYXdsC{a|`L=!pL0u8nzdRN(oJCXSycF`D%m7gF{N)@GZd@SH -Ex*^*}>KbcA_eDkBr)nX3Uve5w;zuQlAD-i?0vrW@htGxaW-*=lT=Im1uKF7_MPuhEtgm;X%k^3UYoc -BYIFf00Dc-J7>_tch;>?iLq3`@E1FpBR01_~T`Xn>52Hnj~N*}DDJ{vjxMj*$^Xx;;Ddnm{WSs|GrTy -Ouv*T!B2dk@6P#jj`)1Mo)IR{#O) -m(@J54ZFku<}SBe`GITyjIe|)P&vcF+&th_TenBy{ZYvq*x-&&SxjeA7TT=Deq?36zu -xyzTJqLgjfv8GO;?iK0Y3@jBw|gBEgK)birAL3@|B{ZGBvi5q65pGs -%ppixpm*^98wcn3~UC5c}+4hYMmPTbhpI_KV8WBFsf+pHF)F2tvb6ho=tQLLVF|$+YVMG4NI*6!v~c$ -_GmYY6MRrb$nWeD*l65jeyv&PVgw&H%h5@C|NH261OpHm_=`>u-lpGQQ9j|Vd`RTjZfyc(=5yrrA|!0 -?pUfp())T~QfJ&HT`La<1KsHQ)2~Tpn||#H$S=Iqu$gQ!iHQj^XSQJb?h5$wQ|CN6CJB(F6tn&cPpsNUuOYs%(l3asPhbXvuK}XP+Du0%R)8t~;L!NB#5-?)g6F4qRA5*sQZ1|37hS3=B{`|8Ycz5Thg;wE2c -UjbbXCCM|JFzD5fT|xPuU;2xHt^b^HwDfINU(O}MjJYwc(Yl~2jDjaJZ!zrOFA(}sFF4o?~l6Z7wBve -Kmp-+zRziuBsRY4G@+>7kXEj>TPtnrxl{5mSPih@n0TBC -TGed|E;?0DrsNQ@lZ2*O;|!-TQ1D=76xfb123PY9wWm!$}A2wa6~YszH&v!n}xl3Zxr`4uaoI!D5hZpZan7pEJx5>A6L03j`J+K>>56zrC=l`ai -9+a)X}1OTs7p*9v7)mKSu;cnkjLE~^sX|Vxc9RBOy&e$d@9}LW_Y2bd*rmrlQ7WbwlVtr-M#Sg}aCm<3aK ->y2-vF{b^oNT-0P$m3Uilji>GsY;}&_E>``VW8zusjtfB8iRwe`Jbnm|_YwLProffEEo^Pf5>No=D40 -kEXciTh3luH*UJV)W_t0C=IDv|v)^T%s>On3@n0N?Sc!;oDvD#C3RRi8^>+4Out{TeqO|Z%D21jTT@# -+g;O~q0)X~EpB&hxK)d|&^{U3@Dk2_pJ`F0+>N?HGHFYdCr%jXW>ipjNQAPs{n^MPn)B3q=wGcc|h9<-^(bW9vRcIvhxO3PTy#qF0IzAujPTVvtTnXl(d*Cd*2i@hsfzI`q<*=bwdwufDjV -uIP2%wqYIstQl?tcLxjPGng$W3e4s`(h?~UeF!Yhy@s1VSn~6bB8!kz3v&G5Ghw+GM%pL>asX5a8q~l -Hnjw32+9@XYT`v2t;2^7pw*@r{M2|5^K#Tn)5F2=cI4fTb(}(-se5{yr)1!JCN_$A3VV1cY_VUL28>f -irM+@U?dR|3|CTbuyciNc(re-q88@3aj2)|qzDb#6jLiX8t>Z*2GAE -^Xht=;BsF@P;#-}uM5)sYAXc5U8nNpQ2PGatJ*oRrN;dCHp;PQBNU({4rCL7e#LYHE<`!C!$b$Z~ehNNH%La93vKjfyjwk8xW^+EA7Z -B3(E86+JGWyyJ>Y9D1}CeFGmwNrQE*vY+G(YAZ&BR0eg!_G`Z%7Zu=g9rVK6jtaa>@T&&o#xgld!CB3 -b;r^^k83QxK07^~y%bOL`*N57erECGZ!Nupw@-tj5Uo5fE$ow}trm4O_g7#p=(6boA@ZWEn4F@P(ZmF -(ni!Zv%P`h5*=t~@Wu`^I>>2wu}zkWIvkkI_!QQuhRWE$}rVC@&Zqo@k^VvCCTnW9J!r)~Zg7K4FHs2`?o@;vJ -PP!YHeP_Guf3aFokf%HY3+$K$$#PMnp$1y7L;`ZZK8Sld0{|8V@0|XQR000O8;7XcSO8X1gF#!Mo+yM -Xp761SMaA|NaUv_0~WN&gWc4cm4Z*nelcyv8b%W}gY47~Fd%=BE1!H={DPC54*Is_{=4Mr~DHvanxCs -R(Wq+RXmY~74!iX~AnrU9ivDJfs%hrOZ9TS8e#ZtG|Z|7MiIJB%5nk8<7DL|^C%6k3A3QsN1pK{yJO> -|(262ZI=WF2P?aY@aZZF$&(G5lfy{>uwb`(2M%FlaG@zT0tw;U<)fRqfgnG7Bo|Mu}%4yX_@pc{++ze -M7R9VYDB{C4Rc|vLBD|(lAps={MB=<(Yoe6J<799BNk(NVDeG&W3+Wccc3i=&d^qEJ%H*(@@{6-a;El -}Sodkc_*kd9r%2gXHu{P8!e{dox!Xa1n9CG?@VHC0t3<}Kt%WG?%y5De8_xb-yJ}zp3s~pNZVX4^UOj -q^ad3a}g3-~)yK=oVrx1ToO9KQH000080N_fRRsnOIw-5mU0MP*e03-ka0B~t=FJE?LZe(wAFJob2Xk -}w>Zgg^QY%gD5X>MtBUtcb8d2NqDYXUJ4h41q#hV`NcgDdnR6e`+M!InaM=q-fo7=zi&G8=3C_sw>9! -Gotv-uoVJW`ds|+wb{{547RtD&8H_7yYIcE*IqkK8v@wH_~#12~2u;?=8ia=DUhw@&`|{!gXWpk>*Ra -04R!L)BQFalW;&^H!KNvF_9dMB?a(iPJ})onf8i_N8}(}qwTVG$XPkRsbI!J -CjgMH|?AlpW8y|Xyvh(CQ3fq%nah?4`(q^d#7OGsTvMd1pH&7QbO+zxSb$iV~n94NiKC$kt0UQnq_t` -8140>Sad~`6p%2C?qkz}fMce&QHTwA@GSmoGs#NN*#jM{7le^5&U1QY-O00;o!N}5*EJ-LuX0ssJG1p -ojb0001RX>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eUt?`#E^v8;Q_F7KFc7@!D_Hp=0k)C`=*55zuAM#r* -9d9{$c-SRwMm=F0Kd$V++4r^KyDSU$d)NB -MKVif9=zoh2n~y`H3-9x9MqDmdRCoaaZ_9;3GaHT3~6Q4aM2{mQOS<Yk-7P)+u4ysM95N%(k2fS|g-?zj_ -V$?H1SG<17Q#kbQS%ms8W@edBe=pG52gqU` -13tVPoIoMgH82@MA_2Objs9hFQ27|<)25#wpI}`$OoXma{VcI$IC-yY5@8px~5cc54#rg4n#6O%95m%TH`29eXVmbPyPTZgg^QY%gJCVQ_S1axQRrwOHM6+cpq?_g_KS7 -$z64;I`XK06%1j`vJ5;(75Q{1X?=BL}XDTsW|Si|9y9)M19do_b>rLB=UH?yWj7QN6*;Z?e(9p--{fs -WO-8Jes4DLWG>j-<(uExT8Wf>=1R+AGMmht@Mn=iq2cwX3<@K50@MY&EP1+z*KgzHWFiiwREC*T3A*{ -%RYhu~%>BTRTx=(kostJuiZV_fp~$3)75r6!Hag}RFAXToYWa_w&F!TdtCz*8ER2$Q4yqBlA|tN+@Pg -g0zka#AS>J4uuj}hiU)NWgKU6#R)C5b46Ns`Ep( -4!&WE&P{tW_2SA7>p%g_`P0jRMnmFfl93XgM}KDKtq3k8cgh=QbHS%hIZoH92&0%^RKwN*PYK-4@dh^ -$HnehVLYQi92eHpdF&(LlvyS7UNmY%S1p*)oQWN)f!2(SVvuWaL;c0xH&o!?1NyseqUd-`Di%#YtP#= -qBoy%-$9zyHT04M&mJWzKFrelADxk6@N8jW{j|!dlMHlM!)vKAe1k{+Nk>wn#Gj(web_Y!h?Q}Zz?{} -z%@kT|=z9AR}(WwV8MRrmhFhgX)jKp1m5ERBMfF}e7YeQj|IcPcRbZ<_TE+tkeT6hFj0A!@f2^DeBEb -qxVM8o*|^|)2zlA9s}z4%2B7o$%70dGK-c-vP)z+*3Aw~6Zi^PVPnN}+TWHU_1n`k9Rgvz}O!GOg5Dj -RI4t!Wp@(MBd6qeR{ML3r3|iag~bdQ71j+0ZECZ -w27P;C2mXMkP@9TG@=DW?&#SogWwXcfc@%lhD1WOG1@fGPwasVzbKW|Yr8LwZpvbA8VVO7K|H{Hbnoh -`S%YHI3XY9%okQb-+6wnwGZrFiZB<7gaaB`qv3%D34#cd>I6Uae&^$(m-cJ<4E7mbns`6+7VM;T&MWJMo+8_Hx(XdEB0>r+t{8N`wr|-AxrlB5eRgHo3QnU-?ydQawL@%Qtbe|2q>{pJi@Q2V -hd0>8<7+|R~XF`AzX_vjZIgFJ*^IF0Pal{B4(fPMId1n2AXmMR~|VUhml7N2>yVI8o~Dbz)0AAg{}wn -05W=BuFy_zG7yYLnjFG|Odm-Nu&ogrT7f1L<Yek&y^#lu86r5GGESDGr7an{_eT)xx6;(ZS2>O}Fl2iN*(gJ>PF9%xrg& -;eZ?AbSShWJjlZ;2w7_N85FaaAGxg+qmS44!p3UmxCNQ`h%M0V>`yw>=yQPUlk9Kh3kUtZ<3~Lkz|rX -agPA4I?e~?$1JDE-ctk8whNnwO?cLfXzW|ZM;Fmrd}rwJTAts;ZbT~(%owj*5}6&yR(hUw9YbS(-iW{ -0c4C9?=RprCcnRVE-i4m)zXM&u3@>2K#Ype%S?zz6fNtm4iSxLBvT+RlnBn>@UB>dE4~3(9rSfw(8=7 -lOkMX?^ecSlO8P;3u?ERvicOS%K|31lk-JmgwP6AZGN{}U%ql(T@(+hdrJ1*Og7dm@KsR7kHb~lvsQ! -l~VEch2tO9KQH000080N_fRRuM?U!Ce9X0RII503iSX0B~t=FJE?LZe(wAFJob2Xk}w>Zgg^QY%gPBV -`ybAaCx0nO>f&U488kT5X~h95~C}yOMo8wH6TDx6iW`fC5lbQT4c$P=DwmR65Nj^S4 -k{-bP>HgRFhg5iHs>aGq;TO2~6S%tk_8lIqOkpOhGddbXgWx=qDQbt~X@=U%T%w)8O(oI-$5+W^6kS| -gM2i9;`ZlH8 -i|;L2zOZLEixNw-lHrAjylx5D8aXBh?_@g$0X4rPN4`k_OWk6?=p8Q^fNkPhL|_-V%#vj=O99mc0%*A -E`SPN*73fcr{Xbk~nY<7W{wROs>Rj8bJ>2=7H!B*IaQd(tn6ag?R6$8ssP^vmUeLVID!UsuECM3KsH- -HJ^l&PCsKJ&9CHot;Y -bf*FipUGoA)-Q)znq2QHVHy+(s$!)jNG1~<34%>IwW9tkIq@)Ft&*VPq7aN6NKvOKz6JMaMZ4 -6L&(lSd)8sIdeA+)m;<`a_NVO^X7qewYI)3XLk_Rc-FqfrN!m6gHi7QO4GFT%hBQoOB)u9^LNkLU?&Z -_7ueVD;u?F}N|KfAS?H#j|nE+LZgg^QY%gPPZE#_9E^v9Bl1)#-KoExS{S}jNra_Ds5)Vc( -kPt(VgSTec4tAv7U1z5V|K0(LR3k?1Vbh(DXWn_+4m?ipp1Su`;;j!`rsqQDxRC+$dly$QWU??Z9KB0 -AN#{^JA&V|zcbuaWS`zXAZi2A|cKc~BNrbn91oT<5ub}3#q(vGOf$)qwwQkLCQwMTHM-n$dYq?D*_C<5m^Mhw#Nge@h|zpLoi(waEo}3DMf;b&T -BtnIC}zu$+0sYM|E}#UNe!N1D9IW@^|I1~Hu^c#d{SpmvPJ*hOtt~x8fr(@=N}e5mT?dcdL9J6-7c4#}vsWK-=1_{qNV^07!suR+6 -h#)l4K3XaN2CbT@p&u0Os1+x$b4@{7FKm&s-;Z}^iuW2cLke`1$q60whADe`P`G&xd(KPC~+1fO5UJd -?>f;pG{7TZGY;&rgHJWa4?=~qxR;MgXH+h-J?M|>FFC~xJIxkrzID3SrtmJ>MxR4^CnaK{vu -r%Lnl5AssmfU=c!jxxmSeoB5+40G`%y*3M!XynUnWTd0mj!H{$D!m)`HzVjRU}2Qd;k)88PqEaSyqv( -N?y;r2nD}_Q)VKO$pe3%L{bw7B0Q=Yhc7Ph!HivVSPs^Dm&f~eFr6OjIf9o-m?rATYo5e)s*`-_K5dI=cIQdN%#ZKRJQl`189d{JQ;}zWM -))U-h#iKfr%Ip!ezW^UrU8x%}m3`T6qw)#uBLo8|S*+ne96FRx)8|JCB$HaKT>v=MQg!2~qI{Flq-J3@f=sP -1(<2HMyNJ5Kjp|)@8WafwE0uU+y-{F6iG)nOB8?F|d_j7s_Z$V*>TuSA$Cqa?Y5q9^SsZo9TJCubQu~ -o3C%0uRq)&FQPOQf{}19@=TU_nu472)gL^P4O`ygu_Z6pVZ@otncyJ$wb6AZwt1Dtj8rLRU=3L=13U- -KM|LllNtVdv(x)f*5juH|mpiQ48jP}jz~LKX&_Z%)hpUt??Smiz`zMg_PZx_BIIUNxvkUxRt-VO>ze -#F44*C^0EUwBl%gdb~rDDb!t=1y^1zsteMTP$D^GB3pRB|wJPs~rX}n>P4h<{2Y6yw`GxS<3p)Lz;k{b#Tz?60 -f-ReR2QZ}mUXN<;9uMtq6`#OV@5E~cAF&Ivi5QG!pULovt-y)KEYo5L@lfbJlr*l`iUaGpH6Q&VxPR? -|;$#Ds7Jzbb_%EW_Z-Ud{6lq+`n7sl2Q}a&QZ%sV?d@!;QvUEkX)O|0d~DK%6^v{o4ysBWLyYC`ZPsI|KhZR5rjkx2P3UwIZVw3wH|qIRF{rU9O>m#AKKmSv3>df|b;nO_aaPN%y;4Ehheb{u?9 -RtRmHlsd-;D|cIl5D<)_`Mw^mgRG0rZ7nP$6jJEOi0kJ=ZDEM%mk?6?wO%EnBqKHtJULY2Jb2%=Oupt -tw-$g%;=(8rAhSMpfY(lfK-`3?GImB%t1IK^7~h#;8C>H>IFKazah%;J>tk*Yoa%EUs5cZU(_!>Z#s3 -X26l={X|06r7*?y57STtudLRIj0^ylAbv=@HRrX9og-PMJ2GVI@LrGTgNz18~k|Ll(L#=lXn}0cVhBr -GrS5t2ncV~>_m^dvmtDdNj0Q1ZRU6;C+JFy1ms(}C0( -0cm9O4Y)$gKH2J&3P0Y@i6EE_yRNv>cSj~3^IBpVrB{y~9yWONzu*=|j(*swysL~n&ftj}Q-QO+fS`vS65{{( -;SM+$$T=_>R{yAJCrB%OX#%Qp=}R5gbu87tTtHcW|Ews52LD6cDso6RQB@KN%uOIEMaNa+${EYyd-(_ -mue~2~%|Y)vHB=zPT|;%m4tj$Dd~c-di0k-cp5K$@7szza+0XH;A>Pc7BC}8*$}meBoMA)1caXZXypm -+Tls>9FDS`YOc>&msqC11I6x#T*3F*qwyL#vz=(8rOHo&%_u%_z+vDLl+%*EqlSLtnLI{>!^F=~B6jZ -t)4KL&Sl&K6&~EttI|qVQw!Ra-k^hA!cKfhpGmijxWwmSUw`9t)G7K7#orZ~~Dd>cj$!t4qj!N0}&2_ -o#x&9@Pw;LXL0&vMqf|NQe-8KY&JH;^!SGhXi~g;KVHAezUuQqD(8Kui)Ksous^TvL(LiJ09l3!$c@3 -*@?}TNB8V;%h86>!lN)l_XWAD$$VqWtVLlq(xl0dT!pbPHZ-%CJ8PEi -bHHd)6GyOI}Bmmg;Fy*@o!7;Ab}U)OfdpjW5_L -MS%EoJAz##W%z$06oL_|_pQ~;rt=uRTAhduM^$^zLK4Q8Lr1{-&JWKn=j^33|l4oH4p*2&MC;I)sf8Zmm^`F>*HXG~QW@Jv`)g3V#hMOr#_r%i`l4D7O3cX0!a>NaUg -PYGDDs19Hj|IpgZR8U8c(kFTfjMOhW8Hb0586Tx&`&W=HMn~cTkjHtm#)(@90<|dP4`2)6Un*hwm4+I -!Q5PV|2|)zlanKp)`sYtoxv>Ok7CeL9JKOTQVA1laYOy|#+Fh|uJ%*M%$Q41-f`C5R@c{p46|rd7=XF -DYUT=23-81mDOm3At@2n&ss>%}d7^5^0fq3mhoW{lGM0fyHc^7IL!)dC%1&$Uc08&p7gfwIwfOPZg`( -Mx44LCU}$byss3RF9)^noITQhNnar4n30nxbe!$6MhCSe_=USB<`?x^)1Qf$A>YlQP286;-Jd2&dr3J -7gkKo}$cG;6X81=YZZ-{FRAvQV8N<1!}Blr_~`-@1lZfDFzJ8G4Wq=_KCC$bfQ>}zpeH*OblnV_Pmo?R%}kY8#Zwyj -!|m}>Lv%}Th2EP5c8S!QXiYX*7H~;&j1j=J9O6NlV5j5}J; -h^KCzr+ogF&@DNMjFF)^30w;+M()p3~x1>~~L5mxTMy0dJQIW$EqLqum2QxQzd(G~|qI@4cr-Fi-8vn -Po?Z@6VgXMhy8aEdy@PUPPI)+1fKPLYEaZTwiNYs}9MtyxMGS{`3g)N1OCm%6em|4zA%T&KWr06SR-V -BK?a5mL8CB>$o-v%90gGebS|Q@2$hj!?2-^vl=6@gG5}YO?mQ37x(w+QbAT_ZbD^*~pcaM -O3I(NFEEz>fj)Bvu(Ru+M0U^NkTYz+_<&nEkh$>Zi7AFW8!qn8m2g_AoS~@x`YaOf`G=wt#XtfIL%0A -Um+xhI5!1V$6JqEq4-Q0Rt>p6y=`OkQ@01G>;esy^Rl -a8{EqIHTb)!JB8zPBsT_r&F*9tJJwO3UY^d$lvy(j|Gqk+2SH8#yu^OdST7E05%RNl#^>W_*B08k*mEyHY6SBsk5=iq -xaBe!tcj+t{vrx4M#UQKw>smC5aU}DcReJ?L0yO_DfRBS(l3|sDix#k~vw!wQZSYfaeW9Ky@9o4`C*O{TJV -iihdj?LA#+CkGkEMnG<=+Yi29*zYE0A>S#N`N1kQPE0a+BoNwr2?HaB^PfI6Zc7hWmIJ&<_4Q|@*7vn -XirvV>Aa*nK#@LeN~i6WY-dtea4jl#K_X&+Z_=N3CYxgHIDskqk8=h;eAk<|f@E98qX=7-U(}~-rjAc -@H*6WjxAh@^D`HhrQo_`ChE44s-6ysu-HxP_O(U2_#c?}dI=SA4cr_Jug;E0;Mpu7gRS>bth)a47Cs3 -%`(x>LWP+y{H&BXgLBS}OZF(}k=i}o#B6QvsR5Sky$luR9&n%s?4Rnm%5$TO^;_p -OhggKEjvM#qie%kHne4qn>*pSSEUA?#Um4Ul*m&sDc32l;&Gu`qoM_k!AJ0*^-C&1x+XUPcy(D%uis( -DH|@G^QD0rzfWycXo-hYKr8*>-@edloL@dP2cuJYNjoKonRi%Y_FM<))N4(yOUJawHpJ8I#!SSQ@6Dq -fF0_R)_A+SN6V3uXY9MSw7c@^jbmBU5Xsm*=Y><-viIM)uuKlV&I88-whc)szS=J>5ae>jlr?+qkquN -tyRLtrG^*D+VVhAMx4 -3Qtg0Je(_VcT|=Wk=1=Z*8JzTD$@00B;JM;=QCbtl3iLu#!+t#%m}%sfUshytM7DlA-Ko0KHi=5nVHq -1qPzUa+n_)S9iw5X;1YTT29OK#Oh8&RQJDT7$bK)%mnJ7{g*uOqD7=GCt+iB$K7&Lw{JGCgZSwQGgf#Qb^G5 -GX7t(zhnhCSzoI3lSkz8#M;36eUD=-l@1fcjlCN9s&Y(Gb)*G${>9)5zIIy4X{Z9`vGyFVbYWNv7H#K -0)#Fz4$uYHG&Z@E+#Dkm18v%`x#sImX -juDAeH%CFl5N`Uiaj>slDO%_wYz3L@V|Ly#q*CGB9|pABUY*oAj`~yI_XCp&_ -kRBlBWrs`st=T#1l!u9Y^8R(uh=&h(P+|bH9{M&DwhSz#hyj&M)KyB057kGivx_o3q)u$+}AY-(ur`@ -X6pca~XQ=p{kIS-F&uoh}v>Ns -Oz|oL~=0*hqAc8@iBwj$~~5ZU0oiIs~h?7U}+RLuO5%39tpag+fasi))G$NGgv1eczC>Eq}B?QJ_9-*4FUx&CHt*U5Mu|AAi4kRGRK>yK!n+hZlM -ex8lRi&%cNVrwZ{TowsImF}g^`PpTl}>FQHSCa6l0yA^k>ENZ&?kll<%m9vcq)U*{)g=$*sg7_>ODqo -1dNVnnpM*Wkfk?m+SDzx-o+)J$&vRJXfHz(Vc+{7+^P!XoLBZ1F&JdS^#8(4~UG7-|*&XhumsujsxtZ -P-&Vy$2mhy=Zn+k{$~rEnxmp-iwsMyN$sRpe$u0%2W~5uuhrB=TMq+IoV0NLchvMHdKH6+Kn_9%`JS2 -v%4V5Ed_Nm2eVzHi}R0fFMI~Y5@!n+9X5sqEkq`%}^Els7vmoaa11U<| -Ep!jz3k&c`o==5_zl_&9s?@vi@Y_c?V*_6+i$ZZK;m=0+T9$T=SnPT3E+gYuo9Pj~JUsk*ln0q$y%CNmj$Q65@YKszjbEqe7lfJ -n3qNGMMf3*%uCf_+ggkkffNOsmRILEq)p!WTYw3{Ka)NJwA&9n*;v%=Up+(clQp-Eh(^^cKi(P9`L$| -;(C+IPC7-gc9zmD3tH;6+(4lekiB0wNDFI!MGYJ)x_Xx3HP{p4p5 -Y-II#qwp)NWX@8Jl0mT>RWR$K)tg)eeLclM#GrB6}?6AsVbXkgBs*CDk2_WHWCh0j`aO=~jime(Jy(L -sO?C0^5eEEeR&XLV@wg$%a2QoE6`PfJux&*Cr%lW~5g-!s?oUU!Z{=gijC2`f9Q=Ro@&XY$mkqrwK-3 -U0IiG63AgC5tK&pRJ+M&XC>>j69E{h(38#>4!}B&(T~m=v7aqVm=o)hh~Z2L(_)T?@ymXRGkh`%%UI -kyKsT!Ik2zEi?E$eJPU1yK2U_zpt<9-`#h3(=%>CrI|Jn?4PNw`FH!ZFGiiK_yDy(&sq?ZjnP&apl#Q -i&BYy@?iZ?~;exiX$y!~(pT>8^7pu!ofZQJO>gMu%+R;vQ7Ym0#SlbxI#B*hc0CO0#2GyVIZCn%;pIW -gi7yPZYf2f*x(u@lT%pktXpTbM_~yZifx=jZ(E!`;WzI}d+364xX#njVQC<$xy1tunShF4?H+8Jb!l5 -ddL%h^`g)LGFjKZ^Xb4fUy6uE>L#GYQy^%mXpS(#u@W-pR&*A$f3>QUz7%xMs17LaNcZhP0hETfV?|c -9VI8lu3<9YxWdF0G%lwDAhc!}=Q$=XW)oZ4G84}f0$U&Wy8!)F+Cz#>p@*%W1=>$7eta}SF@$*Qv1xx -wJPa=u2*zGGr}O-SnOFD@@}k?55uLkeYD<}Kbbj$ -vZBxszi(q->c9S+StjbomBFYo@c=zGV#DJXaq4``Te0m@wbzneKcr38%MbKn}vkpMDH5;$RARSy6r%* -?$V^!2US2_|B8yLsUaL$ld+B`)@6aWAK2ms(pnpR45Zh`Fu0024=001Tc003}la4%nWWo~3|axY_HV`yb#Z*FvQZ)`7 -UWp#3Cb98BAb1rasl~-GD+cp$__pdlpVAS?(`4XqajO8I~lchk?c8!B>C<=j=sF({SY9tlME%M)YNRh -JT+!{Z~y6{~1eLUwQ_u%5wyT1n~jMKNGSW9-b)N^{PXD}I!58zm`7|w`PB5&=r_Nu{WET*}lgZBx|HA -@+lGdLHtPpU&Fnv-So2c|H$XtyV%)ptl8+G$N^{vSS_et=Gd3 -BB$M13-D*2(V6`dvJQ%qh;y;(bnPHXbt&^|(68W9u_65UNQ-DmNn!$N=h|6q5a@X5LSu53;ZS?0%YxH -Rx7$UhF(*pFA4JhpT1uugi#uZRFO7}YDq{@0A~I+BRYy^t_A!tu1TyF1nqLqE_5J564+1xYvjoPsx85 -GAl+A~dqGJ_HwlMGYk|NK@eC>oJ|CUN;xH44Os^89WoR1DnK_SHrOK1XG2q2t`l@FzWvug_D@qTT*)V -i1rhd7k0kWrn6LS7A*I^#o`#&0J3(>;arW+ERPga_diR!b@=tSID^Cbb(a4AGp$O!GA;vTkG~Zg75+D -J(@P@rftlgBUrkUX8~i7(noO%fp36)`C|X@XNw3+zLDOBnOvvsD-mm%Gtq+=_QbSjk8(#ms`+&_&7hF -A;2bs(~p;D?-0)wSz}@4F)tGeN?@&gX%eYLZD0KqyUJO*#tevVrm-TbqBw!Yx+0u2q_+>b&^umm0EPy -U+Hp0>b<$5D`r~c`94QLEejKj~*Te&hRcVHXJ8;*A8>m>iYddR9z?+0V;c9ee$Ee#da_iQ8jH(iGDf# -l-4UI*Wrr1^;*HdUjRo -(|4e9ge$BL44ou^vvDY+3RoJroTFv&;FZJnH{xopC2){1v-dDuBG7CMNpIr>~;6*%$d}jA6I^l>@1!q -z1PET-Rq&Z|4OQ~GOC4&fdsPLv~#1&1(i%B4^SLMEN4239J#&T^=gY)TQL?xOn-x?9rf~M@(53xAl-W -%sHR}{6ajtML3>tXefI+4)mgy}O_h)wm0F+s-Xr5Aut{s|Mi`Z`OTCF-=&I_!>lRoe#Ws>!nnFZ?N=nz--;@#}}yiG@OJJYlPa3(8 -MJ-MN4qP1b3ul!D+Q6adLQq$)@5K^Hc&7fr%UK(@T?$-BoC#lDItUL=PAHz6~?+opDZVLNp&-U -JMfvtKk>A7@p4OpN6IcOkX`Y`fGbC{I+T8?gx@`%##ikZYg3q%&A^cc|F8FsYNXK(3lT%b&7wU;#0&o -jEiD#|F<_b#AR+1cP`DIhO><6Y9@%vWI9;Nu)(2SJqDX-v5s&pl9KBPSBx%|t%o1=x|xhdeZ1_O%hX( -6_hH|>+aHblFg5R{qXWE*N9KZ$2cxmIzWa%Se6VMm4`JPd{P#xpW_6R=Rp-V=!P_;9amyNID0#d?{<3 -M2KNH60U4iK3#n#!AVEa1Bu$yi<;5n%|XEbz$CgZ11^3)+|K*i*>42Q9VhR*d`iJAY)Z@2Lg$ae)fqXw%IsS& -Y27D<}W8vp<$0001RX>c!Jc4cm4Z*nhVVPj}zV{dM -Ba&K%eb7gXAVQgu7WiD`ey;y6H+qf0|?q9)bK8%!Vgd{V&Cd5^g4iRGhnM$p?&FO8`ti*_FW$*gysqkfBk$MdMtn8b?B(+pKd`rr%-K)8(UqE=&C -cB7pJXnS78maep^RKf(Ok1vHP6@L;$`-HHj|sWY7AR)Eq=V}{*qPq>kEPT-@lb|Ih(DTYQt(-XN#>+M -b$9>cBAhB`!IQ*HR4~b&_-w4G;MC$M(A$OYn=KX(kU&C+=@3cH~xSuuQoL|-NL`$+)TXVvnH$W2V|^O9@Leie=6rTk4av3uu_A~A|~Qv+L+tCV>?(vM -CNgggIGDdD#`3EkVp8s~{d1@qaQHq9{iY><=8s5aDVLUgQaSfoVyNul_c326vb3!7#ucbxVvII*lL0 -WfIXvoa;b0@&bQ8=L0-Y?rdpO_!`6Z{tDQhyY>$yzMXm$E3vF#!$kht_R4!mDvlEaYl+8wp{k0PltTo -?SQ)*$z)E$(OO|a0*l9VHOepJASZQVS$~ -X$%?}b})_{i@A2Wq3vg`(@xEBBiG2(RcXrSsozYO{B0GY!ccgr+uCgP_x*<_%O-?vLR4*al=lF+W*Bp -SWky_#p{6HQpu(TY=vnQnp2GvoT|2(uj?YlL=~)9uWmzVp@`zzKRUJ=F{JI{gXm#o -s{<#7!Q%!Tr> -rMJ_ZUAbC|*=m+Em`YdzR|hR -1CIsJPp~?Y$dwqGw{^aG0hLZcc(*^!KG}oi|`WvNGoZ1Pl+RYMctJZWz!j=!SArAiU^*guvy}fvG*B8 -0IULN>?)F|0=n<)v@sm!`B+X$rU!tx2dat`R_Ic;zsMqmMMs0g2& -D9`@d|JfRoF52I6KsBy~cJhSw)t%6##c3$yTk(4ZVgGDMLAHtKSjWmsUgju(Yv-Dxq$qc4d&iAI0v;7 -$XL#8_M!x(ed|~407t{ibv=milR@5x7B`ABfKG* -cIEx~vvUL_&UM5KJwO{9!IdWE=3EimbU_vX6+O8~@2d8$hjxKVAut?A)#}|#>OPMIK-Q>M99xm=$~P8 -87n793o2sN%!7=j3EK1a1Jtod_rk;jg}y*Q^vP)}v=Og}eLMOy{ -yoigcem#kp_Qfu~6LPoYV>C>yKFnHnAt0C`RIPYxMB^`<&0V^;tUWyQ^&%;Lmv7JQnb$5(Z&Gv9%coD -{c*BKj_?t2%a7a}eW?H@?IT^C{GAUo77xp_RfrM5ckiqSn8#Qvao*9a^KYj5nME+_{meQaMa -$LuV2!=7XW*J{e9eOJt0^}i{t#?&$~*E1zuUxz-=VHIGX@i3y>eo4Dn+_i)rA_W;pgpNhZdFwfiFRLw -ekRz}am!+*_MmiWRqt8KI>>OvE+s@VX@NI1;Uv$p0r3Mp$2r69he3&av+q0i-xq(zNDNjQ_x4Y)9^F+ -F#1UH<8r0m(VsgDL_YL}Lue|M=$bBC&t_fk>0Antj-_Z(}hJm))IPu~qLTvr~TNab9H5;9!qkj-dT0P -B*&Ak`>AnX*gPJ~P{-5qQO!&(hgQWz*Zf_|Dr-qSll2+)p(#SM3wZA1-LeoaxO=f@PD^;dIe(#Fj6=^ -L8`{q-pY)hW^0yY0~U3PlIM#Xl@|A_R1KIS0~De586rXs5%q$`^ilD*|~(BIoT6z$l289(yQ;A?C6-e -kUF$1$5`9uBckl-l=$@W^fYz0wdurEknO!3dvWM+5v1NPJ0YA;DSN}Cm?S?G}QUxmCji ->wnFMj@6aWAK2ms(pnpT_{ -e(b&$uV`TFs$arW!3X%^M6Op)&+>&(%e^A+tcXO^!h6(UJuKcbu#7nZC2~_KUBF@;uY}0Sl`>YDsu)O -OSvg|4z4%*anVi|QRtM^fbH#S3xj}^x8RUbusgUQ-gZJ~MY8umbXCXKrfz`>U2dX>O1EDhb2Na+M)P$ -ZJu1JiGn>xOBDU>7-z;lI3zTzpnfk@gt^z2)HKOu;L$3O -9KQH000080N_fRR*n9LzMudA0P+9;04o3h0B~t=FJE?LZe(wAFJob2Xk}w>Zgg^QY%gPBV`yb_FJE72 -ZfSI1UoLQYZH-L}f@6aWAK2ms(pnpQYKIGAk*00 -5U1001oj003}la4%nWWo~3|axY_HV`yb#Z*FvQZ)`7PVPj}zb1!CTY-L|#VPj}zE^v9RSYL1BxDkK%r -(m6j%3H6JroAg*AV7Ds2@oI~7fJ4R7l(sDOCyVGnG{GWj*I*7ogpcSvXk5utzRsW^M8Ib9O{HU{Oi-# -_t&C^OV#YPSXcHDp6!C2pZ)a*cBMtmZn-u}PEIB#p7>VeAPu~~DL`6L3eXGoq2YN2@6Xe-$wX`$r7f$ -tscNz6UX_`YT5Xv{={wCE7S;WJm=6@cE`8i7ChYvYxd{q*Oz(N1xs$0?s3kR5AI<$nM?{OS!N(_HDsy*ne -DW&kd(+TQT&{hTUEfU)9?kDlJ%bLxU|eF=BVkxR>CminlqyqNn*k>Ap?bDB1uk8S@X3)i@2@^Qvfup6)z`~gwi9*DN-k<9O4J2T72~xAUhEk>3uBGbyz{z(G|%U(c_(4_&as(vaKRQIOCwKzyLiQ~&g)N#No84ysaHE@_S;&>jUfX -X4Nr(RbZrYtqG-a;mT!byGu}};`+_JmE{Nf>zy$c*V)R`UIP-8FEW~&s?zy!(Q5eGMGP_$|FK=&`U#2 -1J$9{Aao%u`2z6e>Uok8_~#)xmZ-VBgn9Ahga*ZWsAe!RK+aR2RfeSW{w_7O^@T^5{6s?`B_QQiuu0b -$2w00)K3nc^}jOb~_1(msKGwb2iiYS^l$p$=wlFVx*}Aq}i2?6E`Vwl&tJ)mhMiwL@vnCHqbkW+NKLE -8HW)$t5(lmq$SB!#sAEkVbGt(7jbPF@!PnJP6Y~MtM8E87)^Pt41% -ec4Hi(Cu>a;Yb&|{-XH=P=#j}uJ@pL+Us5q&@Bcg^awgK*Ph45!9Wh>Tmu_vwtLf@pw}({WTmMJAj;YUZFQbfK++ik%En3Q)-_Zt^P -)~sAkJ$+WR7OPXkT?j4w}x!>@nt{ry7fn7GQH%INC}f8=?4<6S_8F(4hl!uap9mY+=Drs;J5fr8F`&D --EL6rA>U_OJYo*L=El)Pr+oKAUvR2H@cVHj8EppmjMna!k5>zJgQ(X9jvZJ^6bh>I0Y-b(`nFZ^r?DS -{(b8Cs6AG62H>9RE7MAG1e-fNEqFEeRgG)VCCuu}-Xzc8TWJaM#y!TOx0O2~;dVr!slVTiV6vs&z(L# --)#+WC#3YcMvMMIEV>iR(ekovLw%_4s_GgTbrs&IhX6yy9~01_?SCaK6~1I -BeW>dLZu7NRIzK04!K#ZDSUvr)y!Wc7;Rt_7wZ4MxRgJ7!;=PQ(;UC=JdzE^p=@UC&SDG5BF(KjwH;VNaf;zy^KyN5CI-&ae6#iuc9|i}B -?*y*i5ZoE6;i1zYVcm`G3Da2|L`19G^_U>hVBf2jes7C3)9QR$1!C+sud;6=jESTGcIxRtz~8AJmP@_ --B`>5zdhv0mg4z$5Q8=7>EfA!`bgYh$7UR*C!{D`1je-=W#M-!Vn{?7_4>m$IT-rp!^eYJ -KLEP_N6r0|jydRg5Yh^-zBEQ7+Gt3W*f+PXl^B1WG_A0FRf8KCYp&Nmdw5TiwcH_A<1KZ1b*l=VNE)a76tFP)h>@6 -aWAK2ms(pnpR%Y^c=wf000RD001rk003}la4%nWWo~3|axY_HV`yb#Z*FvQZ)`7PVPj}zb1!mbWNC9> -V_{=xWiD`eeN#<~+b|Hl>sL&Ziw%z1F7y)EL%VHhVJW2_us5U1<7B8J8EKr&{`-z>$95p8PS(tOPj5c -FhM(U*K5ssg#Yf-12HNfU7oK4v!5^ -TinvT1GRRwftePF2RNRdQn0Mwe1>3~yuybsxy+Oj&Lt9>XG!3Zctx|vueV1mrlxTF?v)V9L{@YGVk` -0&j;T1D%O@0C;Y*WUWbF)Qqf9Y1H@{RI^HS~kYcoO1j*as#S$^9Co(31>`21AK -p0%xFnpYjOJip>G;(zKoYfjcj`qa)Et)Q+BV-^}gmxC}Cb?Au;&T6&#g0{r~jSmBa+zzz0z_Mtf5T!o -QsW1AEtW*iVBf<;ue$p_yV_EDsqBX^mnvfHBww2Vf{8sfhO#6seO!tcpU6h$6GMeN7TJNpcFJy_pA=b -ctQ0R-9f#uR_D?g6<2T)4`1QY-O00;o!N}5*ZJOr#!000190000V0001RX>c!Jc4cm4Z*nhVWpZ?BW@ -#^9UukY>bYEXCaCtS#!3uyN3;@u(UomzTv0Xa#B@q&`NKhA3>h}ww^LvL%0T)FXQn^GsM5&!?Zx)`Dm -5m8u&p8BGV8tKN0uILQ^P9CLspBAdA~%uqGnyArO9KQH000080N_fRRxco};hq2h0RI3003QGV0B~t= -FJE?LZe(wAFJonLbZKU3FJE76VQFq(UoLQYO^(40!!QU%@1DZ)DV7osP^pJ*&)eoBZ{0AQK%HU|EcxnK3c)C}f%8Tatn`D?+D>8R8l3m598Si?SglH^2hLsRy@4mgzt&#gg%40m0| -XQR000O8;7XcSFVeqeJW2upAu|L39smFUaA|NaUv_0~WN&gWV`Xx5X=Z6JV_{=ua&#_mWo^v8S+k=^n -l1XyuLwKmrQ38*iFuG&JunL-kU$KAmut)*KuCZ<@awOmJ;abZGPA0??cB8384AbUaS-@g>zg+8zrQJ6 -_ek2!H(vjzTs2`(or>)G&1{L9iNuvJW9lj63q}qJ@Uw<6>zn00 -9wg|vsoW=+W#!!mJ35J3xl4M|*Kw%v8(FEd~R9v&9y|u*^ECfq7II$tn4MJ>SWR|1G1bdz&A*|q0tQ!z0 -HRbpxDi`(PxDQ7}Ap*Z4|4L^^AT -5@)cZGmCqTEoF#BY>~?~-YD&-Y_Vr9(;bd&EK!WR5LNR~(r-SBXW`ZBBUF5f0(*Gt(^(v%4p4|0nE{J -Wd1n2$1DYk4KM%HRW{7!CFf2BaMwmDVETIYFQ@gMuqzPOA8Yj>Q8nRd8(xyq#lb>1jZBox-OI6a$a+F -3-a13K7KDliuGX>a-Wf_!OcHtcW_NncXNGuXb>5^)+}I3%v$Q>hOLkW0 -r}9#=Bk5;St4$eGBqap-raNFM8x>xi9YG93_2CEQPP;N9TxAa(Imveb~Q -H%$Y)!MHLqp_Rrj05AYA -lQ*w;l~~dDOWJdt9E4tqJ<2v+zb33<@jgn%dus;bKWUVTYv0XLsetb};J1rkM78Z_Lv^toYqwhNcUWTd^+l -p|%=H;o>27NVo0KTG!m5O1xQlLs57XMRJBSTxEWM@i{W~ktEv{k%uIIi&SaY0RWsw*H5?&j9PKd -4mo=?Z(?oc1h~9@e9po#s&sD`&+pJ3Ynwsh(#D=2N8)JM+iQ8T-%Y-B6+w=MK9@K79lTJd=-8kgiyvF -ZO$$M5YcP%`-UAa?zwu2ZFc6XjoD-%2O7>am|mza0lnO$bU8LZrD97$a4ma*)$(UMWh^h3g*@$<Z0$yRYef~ -<3HE`5&h>kgkhL(KhC#bx+L*0sQCZG<$a*;k4KMfQWuZ<+iUt$5jGCQ_C@(r -E%x$(+FL%q>`v_SV3h=&Dny&=BEV$iEm5E0E%15J@(%``?adx!Y3mwvi_L1Hxlf4hNCW4S -{Z1TglerR`zeuo3!oc15lp9?DD+k7wSs%%a+<_XXR8a@B)X&I-6!fIldYoh4Qpuf5N#MLSu$DS`-=U1 -q<0OPTdHxbg*Y1}x@{Ljmq`|FxrmI#VoHb>Qkb_-;P)1$IZp(wjDVJX#8u1;BX -m&ZyXS)|LwKlT9n>)FC+%F0nIZ|!hp&dM!!`SaEkLt5+Q2A7h8yYtoUEYj(Z|xW)d29nu_YZsdhS1{N -9Ja^<+ji?p<%|UCJo$DxqxdZMdv-1IfJ&KUq^g1c=g4f*7B8lK4q83_et4JK8O0(hmGGE9H|`(I$N`Q-S3Y(<4EjD)98 -9rnKOHGyq4)|QxhI1kHgMk%B%=paw{!+~iuuXL}888$V92jWZ-Pd&%v>;Uc!=18ZOjHBjaCN= -&V*@9?8R=om`ZGp%`wtJVf4xJblqA>2>^e_*)=Rz~BU=57u8MJ~WQ0Pemw3Jdu(VQb+T9BTtI2nfl{# -!FvlYv7`k8Mc$0IM|fgp)b^jQCzgN&Q-Q_A7}O}GA;l<$+5yCgf2)BYKPdW&rdQ5V!dJ_A3SChm#=pk -_LMz*<@$w18eEsFbX!N)<7BPzXPsi;VSP4`O$Th2AG}o?^k@Y$bVNLu+%_vk(WuMHX`gZ{FwubJv~WS -9ZrjyVo!`VN={$?{QfNLSXOUlp99sqX-g%%LOyY5n!0wYcU&~0+&KFpmtOIJ(R7^9&J*+CT6?*e33=R -=Ok2QUv(9EBnJ4;1IVeiu5VJ1=eJ}2&wn)iEly$uABMJ7>O`uUOX#(To?p?cgoJ+*>D&)D-yzq%ytx# -qVry^84M#3WZ;(j*VdDPF;5^(OE{8f7Z4cW4rZaHdF3cpTPZ3#Aen#E;4^HHXe-+w>jr?-LF#sQRLA0 -6_9nn6%b{p>MMF@WU|x-`@}a!U_Jp89re9x1)cAX$&I>oJ6RvP#WMHP?ik72?(HAHwd+$VhkYlC1#m$ -fi(cT0D=Pm-T0R%4bU+LU=PN@8zR||{BI8;V>YItVuix*_2W0|-E{oGA>J6Q?gR9s>D`Y!GG>lN%g=;Wn{};td{d7;HH)kjtPa2~HgTwM3 -p5iM;wmX*OfohxHXo1KnwKBmX87WpPwh$h5>0kQg7Zts1q|f$h8p+jym!+9(RMz>~ts_VS1$kHc=N17Ba|=L7|J-s#aPd(8E&@CFh -t^yWm)mljfdj5SUjXI~#m%xKYtPRNH>AVGG$Myt#;cBwgQx8icbs>}GOZGG3+n%0nm+p1o&gX)_X-Q5 -H~j=*S;OZolKYM}Wsyu+iQyWVm#XRBB97RYYdbj`!08I@iLgzkAYpZ^ax^@`zM=wR -}Ww?lCLbCvy%JIT;QT`50`LB$8Yp()IJ)2jL8Ogg-%X#9(%b&6Ce|4-2cNlWrZKbXoIK#1Z9fh&+-y# -E<-PYb(sWXcW@O!gfp)1Rd5>0$nQjp5J4=)W@rQDS3cCEE|B0QPjq*@j|8p$9bZ3aAVivc@w#4?XgiD -A&`^#jzFAhAqOslrao{V{-pnQ@e0+m90D_q)|7Zz;gxB}{W(r{qUJ@kqK*)?4h>FzcC}mA -im9qziK`mw16umO#!~tN;}}uAhFCYaEe>nY2EyR=z1;1e)dhV}8=-QbdCCndHT~;aeCIZ& -$2=0S%d-3FD(l9~DW;Q_4*x0H-$hVTz2Q+XWtlltjM5=0TXQ6G_QbI@wA-LuI!w@Moac7lps$xQ8XBA -tuC14<1H4<72gL4Q)oRzOhEu3YmBvvo-mVJBMA|Tl*7aG77%$g;f@hQ;>s={4zW1L&9wVh^pfL?#=b> -UzN!3w$6NO>&+fP${t%(0GuI3j3{HH7V5mXU -`#7PpS(J#d>03iUV5w=O<#nc?fi;WkC7lSPpF9v5IS&?+nv{?E(SPijvSs79X`b+U!E|zDk{)AQ2?G5KQ;`xunDI(Bq6aHKj; -)ib4wm%DE=({4;vfvDUT;c*iYXm<)ZaL+rC$(|6n80)j5|Ch`=3x84sTZ_G}h^Zp|C8sB}O -V)^|z_hC@3phW@yP5{4yIjRBStIyyh7Y){`2DB-kZIEug8pkYTf3|g3j-{F2D6t_MSDq_?N&(Ek^(&x?!9n}EeHSvz-Ij`%l>n${7X86U@cG -T`Ew+7$p2a$#e(&&U>j(4#kRAW#p%VC;c_^ZU#4_Ltbph5+a4&nQXjjU9f; -OJ0Iw`Sybj+dW9ler==KdiHIP+N;iEd60*61(QTyT~5Kk-xy+oDK}M0~%i;?DJl9lPyXB76@x+^|Ctc -Qb~d1=sX|~;z`0xolCG62rjwXUBc~U=LswIEGtkOlJtdqo~rV3w>_*BXVE7`LccPPu0vaA5Gp&0Ze(& -@8Q2+)Gri^>NLi2hc17Hd1;pS&>8Bm6kN7Rya(X)#^8QAw9deaOB-L)U4$y!Vy45e&CNqjvd<;;nduI ->_4(h-w+FJjT=xyJu@2sc_Yyo8~{d!n_e%|k#@cQgMHA}&?3yWy8F}W8ueGNWoqAaj(#+eON9?a`)=U -bVU$o}1WGBAKh{KSOT+f(_Wt^*ZZDtW4HT-fGyP||65-ju6W6Mw{|F$!!mTyNtj}YS;5np2Fu)BBHsWsLZvqrDjy-VOxjbstMSSJ -@N1m`hDdZ*QRzD0ewjLZ8&TdjsQlsri3bdQbf$Y0Om-QHKUR9nxJkqCM(ACIhkAg{_Xx}YpYBX_vpJ| -1ZHFb>=EkeNsg!9#qGgkT=lW7A?{l{=la&WW|#8uZ^LH7v{ifZ1=>>LN-yKpps|ZsKNfK!0tM{}+dT( -1rJ7%jnM$?Jv3;`HC3;h^Ckgj4z5d2^T5=G%HZ6IQ23^M~jMG9MvIE$3RejEx3_oD2grKVKQDsJK!61 -x`~+$N^D4c69E!{EPsGn21h|lOfLii{~a>`ia!8<;7uAXe1%FD27n=pC4d4aV-^oIo-E5-1UI!17b0E -k;0vt@7DGSi00chZ1dB~PS*!?2upyZZ1N!5C$qclYS^WON3^?{{u}%FVwztMb3?YqsqX}SlI+;L)E`S -vkobCZ!4rBmsvNQeQ9z&q@bip6+Ww}j_2s3P%A8O3#<^f=^Yx=SlfAg-Ec^CYu6g>h!^u3D83+}dd$$Ijl7E3iGzu7@!5MQ -@}!$nd+?ofE+~q4rQG%r+x05q(5$uxqeWyC>)a8&kuTs8srdrR~<#Wuib#`dsbeEm3lpt#_MN86DM7G -Lt(sN?FXuYTeBYMMaOOPMt>l6bTO1?CJ6ogGT_t!!KY5HJrFpX40jNw8QW8jly?T%CO^YZ~R8B(?6wRG^-f8&^576>*{OrkazCT10af#}2)bA| -Z2!Kz^IUH|Uaz8Ok`$9Q;Xn9oMxjKMZ>E|cX`TmmaYp{YZ)C2V4ljo(7W(PhbkE?Rk`_!{Mv2(c=pQ* ->X+En-LXrJ6nj31Yps<4jDm<(wU1H21#ZDrdF(ef45uIN}YxnYgbVtd(INDCJ(E2Supadta1!!`x<4cBtnX*Y?BU`0;O-->!R+*8svZf(jJ)!yU%3sQ0dbDpbHriGY#aF0d(Vy1SRG -sVN>or)M*+l3~?11QJf|u)pl)jO0BT3GnlID6szcykk&T9}5N$;jB0BtSA|@RSQ?*eA91%7iRy0Pu_S -mP7nie{t*a<0%-kg{2G-1?wAiW{$u~2a2TbTub`NCd6B7bk>@GBSd)`ziQGzFfJ~xG3xGHRUz9ry-Kp6w}0l!|}_X4d54y2l70mHYvbcVp -%5^FH2g~H@w86MXy6Ru?Y6`#RMqo71f3p9Q*6! -cXX@kT6L?Ld4JgMNj?!J3mE!RX_BRzK4fpfch_f;8DLUVPD4cAOJb=7WoCx^RsQ%W@u$Bnzv};w7^Afi{k$!!t2!sdhhfZ2DT{vEK`0L;l;m2cqvPS7ua?90Ft#E5Qs3)p|r5`+EKu -_N?VS84uJhib~jTw&wE_%wVX7}c6G@MFW3&mYRhHhS$$@ZG&N+bXtTCOa);aQsbI*6epjS}(}vFiHptlf*Y&-xZKdybGTTy2oQ-s14GN5wsl -Hz6ohj0%D8@n#YTJkp8i~Byu7GFf`r$00SIP0Tl`hI-Jo`rC6y=a!Xg}Z|?ua8y5-h&LV=a-eb%R!{I -n$5p>Z}$Tb3P0KWv=GfjM$>r4v9QfzTF#5dPc&7VNh`=uD1!6hT=*o*YNp_KxKC@5$~?Rs?cFFmK2d% -MSidsj3aa1Gof^!PUxy#CFiLp$u%Z*LpY!8mN3^;eOnih9gU}Uji1-iAaYMBX6V?<&3bnXwxM8lC*8(i6AcrDLp6C)THo60G_sASJf4~-!D9%KoWt -oLtO-vz^XMUi*7G43sHT(5^Sz>ur>1pRbThfz{C?cJQ|Va=kzchLjC8Ms&SZB}%aUCVhqvpQu(wb%MJ -APdMnXNMQ#nnXz5`#|nGvMz!Im3EOKTI&rlT(b$vxlqioiTBZp0k=aFsd_1)3a+n&oX&%sK|c#-tln! -KsQ1E#^q5{z?1n-3ZM^G@IearH&Sr?WDh@u&KW^2@92{_&Z=SAR4##(fPA4DXBLxdTlV!uRF}Yy1_ud?l7MlO!M2V4e(j8^$GY+D$x|;sz=jarFcKugTL} -D(>sbfc-ThX(}d93`Vxls+r4VuZ9(Q^r#RtxE0m~S4Rn5}HBWXx2|1}leYq>#GxqBNt8#iCBRs -76vxH{j>gt{Lun#r4Xv;1+<$2#6%M6p70z3PDa@Ep7MHL0ViT+vNKb06IC3weIn9SL;e7mlF#%q}g!h -?ggji#MiHR?eZ4#%O%Vba#s#xmqioxUXr4-?Oa4-3)?)y9d*+4s!s}$>B*cEAxUFcYZo^Y -JL^%oR$38<;6qGYZ3hT_h}jSZ_u*ejQK4s!+xS=I7NRMwGX%pvB6#pjKP=a0}@+;?E=8FUcq^IvP1`v ->0)Gv(l2Qlk}kdw1b;CidNHLi#A37nv?@pz4@v}Y!ep5bus8G-uTK$+-GwH87m`4~Oe)caN*CfqyeMP -vnlTBNMz9!|TK-8;i>U>y5TiCkutZhh@#06Ju!Xmg;o@sqrb;%89S2zsVZ>k2GWlxpJg2zdX<6j`-=J -mlFSP7M#q^(PnZ=^IVE&KOGVNcWWr7Adu;M!ET-W;1vJz@VMM-MR)y@x(jnrf?IwF2~wvJ_+iN+4*Pq -W+(3Tg&=mI-;oL3nNl+IB>e -4T$M}6V-K#SL}u5S)!|y8R6ns@ytkm*A4#h2gMd2dJs@^hZ3mE{8>CiF0-=*bl3=duOG0Vm?M4(A)z$ -`TEv4#1R;)Bnps-JUNydE*t*;0Cq?WX4Ip!g^&pEr=U)1J7P>)LGGXl3M!#TNC<=%*tzFPEd7hfXCBE -*A8%}EtlX+hMhR_*5EutKtc2HaS+renCJZjs$-4xLDQh1Q5ijPl~`QQqT1=pmOC&zgF?$<2^O=+O^uJ -NsmlaBJVC=T0lMz)n;cV{8Q?M=CLxG?9 -&e-p1H+P^v`pcu#RcY -zFW(CEN9PL9;cxLA8K-Q0P1(BO$KtZG%5L-)Z_F0ZQCD$4%}FosW^{IjxR%P`tY6=um)EZ2E0SNqZQ9Ddlh*{62;u@Cf_Cv{?Hu-8e?Kg0yTC#Ym1YmsQS7iV%jssn@i&VABghPCnR{BI0lrZ -%yIg_9ePJ74{}RZ1-Q+4NMFMViSO6PcAd5HX+0g7Q&@&qjt?)#PV)&0D(P)Gxn*#SxYjDvp1Sv*6@`W -oi7i>uryQYLGtN84&v=*=JjZL~+N_Iao0^(RcF?>%KeDwudY9`ll+wb|cP2j)$c}pi!x|2Z^>!DpJL- -bUcyP*GBQukTZz3fwj(7-PAa_DwL*4t{v(zI7xecR8`Nx_v^qWSApGRy8m0R3N -_`-6eC{*!CiczWG&3Ilc@p`9_Rab+W9F5)vcwPZOsph0<4s -44}AVu<%1bBST{GzNN45)r49?Z5G#Eydjef{&kWnMlKdVG+an;$}9<_OtKgc@o4$5B;e2+I9;NBh?k= -fu-7H<7yZ2z5}cPvUP&_Xk|hg@AW{$;3;;4Tiqa`)XK_+^+7XZ*6M?rcHyAdT}rHr1mIJAwtnne#)+hjxla^&<-RNm#zCBd -<7<6Sw&PdMI{@9}sAPFH3CZ7nv}HE)Ex*Kx#mu8&ZxQGK6@1j5@$u -RqZBfb)~!m^qj-f$^!xGXsbC0tQo*g? -BxnglOd2Bi_^;qTb1kj8@Qm)Cd%8}(_Aq1#0A&65;xjNMiHJHJ(-XS?ku`rvrFc%*mzxYE~q>r8dXaB -tBNSv$vFMVO3%dAAVXz^WpJ$D*TZ8~qv-lMI=u_faeL%3v@t!lK9VOc94yk_Gw|J`FRMf* -k!^q;54@PRkbPnB>yFXe;o?~IDyaF!Fs$nI)G@yvsi7R@M^{k0KvYVjp2lu&R&#O3?I{(Eu=lh4E4BY$A7`sbvA?g_U)~L!JmY)zIFS=jn4oQ>e;Kfb@Km`B{6E9#D -zaWc2m-vzx`8qWq#RK%O<6xE`if8cwdxo -u=9mQSli2u|PKOJIkm9<~S#_$}J{gUFbM9gk4Z1fqUd45I2;!!R2(N?cK%z1^L?rWgxEU|<%{xjJ$bR -{(p&unI+&Luv-B_P_1TOUY4ABc}7=v6zx<8FL6)J&!a1PPd#=iW;tjDMBU_>QN>Q?r1!v7#rW3oQHs) -Y%?ijePd*f))bdOOR}6tzcP%7BC?coK;?wNNRb4;E1d!*y#tXi@`WVuIoHpemj@9cWY%XL*&K?zP>CSU` -{^oLm(gx{F)ws2XOP49cyUu)G^~+C2D2E7`BGW|bH7HDaQjLq5y;d2Jb%7J22~vCqi&k7fX=r=70z)5 -O$SEY_G+%BPlrl;j=ZL6lbQ$WX|ot`JmTE}Mffy$XrkC{J?; -^?U_vjHpf`qSV!)=M~+6IfCF^l(9ME-v{G0Wu%1u%Ao?ntyCAullyd>-EWpTP4#wE+po6V5C#orB&UWFOQzeK~=x)-Z4*WO&aopu>t1t)tbc*pnZxCY?2n -I)#RyhU4EBr&gYPlbdfs5XaLuxosY|@0l#0?R*t<-8b}iVE(gS{coD_v*ywthWxc|WsoHn6egFD(;!? -xGJU}vLM=fvVYsw|&uFmZtdP`~01jj>L%srU$VEpYFFXgBN`Z0YlAjX1l2O4wDR|M2^vm~>B%diWe*| -#sb-HlL^;}XvlO@~+@Cy=OG&P_BK*jO%yF67tD*N3q%7+4B$O}W!nHHixEp_`sJxv95+kK>R -$r*D+=;a{FQFK{2~q=dlqx(BgPZ}l;B*5n>#GLVaI)^y!Ke9Qdd>c-jxHw75mr|6aI -hxq%7yIq+l1^Z-M@mq)E#-YB+o)!c=zEULQ{(B6gqp@g ->CBX+(g)aUpwB$Qv<%XUzmp5{hs5}gI8^;T4mEp=L)FO`S>4XESm*9)IG^D{CR-|AudKm;&am$mvxCX -m`I=Ca->c-AXQ89xdES^0=&;vdfmySaQ8=97bERa*4voYR>`glSjx_ViMj8ntyF9&@$n=_XpD -17MOSwnxnTJeo>8E*?q-5*F$J~m-uZ~SUfFl|utJMoK -c|Xol_lHQ>sn!;>jHRwB;(QmC)<#G(_mYXmQ?lUGQdW9uy2uoFywg#RXw??}PPDVsBdGO9MGg2PTO|> -=9FFz+7u@*o#}AR2(5jGgtG)WNcQDSLErV6t^~VIf`c-kF_(trkq=;tiAo>M<7V%*<Bm??Od6+>aMtI5q~fttXelBmK!Tc|l^2Y=na0P-4q*!tL%ReD6BmtC%*4~LQxSDxd3UR%*T>bcJ+H&Tr~kfjxDVR2NUHdol|=cqshX@vy6=ej{rJBG!vCGqej1b -iIOeaR7@#g5EN~aT(k~WUGV`k4kh~%vf>)Ynyu?4?0It8zHVs}`A4s%>k%sVsmr1(dEeU`ZTM!WdFM= -OG^O$4==?X7-C5sC5T0DC-}=o{fe*%f(4U-%# -P646;Vrg28z7WQ_`hk1wsEM6bnlr>yZ2v6gOY&EEV)w+$Yx}8#D8$_HVxXEEUPDJT!lV=yUMVs*0vhY -+KUVKCtZu{WM6_JMXN|ilF>mNjyUOMInGDo&f}-Z<5#;e`>pYz4VWjL;vp5KgK}+>e9h}m;K%bZM@{J -@-BBVt-Gwqvs`nE+Y6jjVl<&sbSB73v~GfdI_`oLqP0Vg_LdhGy;UB&@+OcXty0Z-HCHNZA-kQoP8cf -N4T91l+Hma}iS@PQf_l+maqg|a))tLM-6q|Qij(x7owf -~Q5k+9b(3$Cl(o;|X*>o2cL^hz&;es2JFbrJn)XA;$WdU19j!0`fkq#FGizqeb>RC{bAb@tbU6=WEW! -qzU9MOT_*8D^881gn-dU&9Ns6}QKYu4^bmvD9tD`I!{uj;l*;H%lP5aQyNe$o?+=+k4eb{Q<>$qPv(E -F2ki+;aK_NBY}PtW~jL<(ADvp~1J3rfm6NZP4p8m6~%8r}V9=gYl39xruyYGJDW560M2^=;Hk`Z|aKd -}Ax9f2=&Dcq*w{&H%u6ylhKUq|fhnOG*C}|(Xb8W*CPWhrOz-xZITc)$Vp=!J@&KApdnVcid%1m%(kM -4n5_c0rGi)SKCd$od|6GGmCJ8k2Bk2y&>4OwOweM28DD&7#LALB7e!Hh0{7?ci{QEL -C#6_SpIm&pQ^BP`Yo@cn&I9m?tZD1;Kuc;omXMSz}Bf1nV=u^xj0%^eXs~5+KC?I8b?)WPsgk7B)dMT -`rg=uX@MD>B-c4Z2=#6)5NU_=bSe?X-#42JMOG}(_>Bc^Z4!S|gdfTVe;)n8XdQ#L2(*1+8UHU&_5sC -zGSN>qa0(%C3ZWPbM^KocDVjtPlA;)#L2#HtaFl@QFH=G3R~cV8TvAYgOa^d@Gm8m4K^7Y|^-2N-FuR -l)#x@lCC2YgQD?0K8`tYkTar}xpd}9Jj$)sc<264JT^)eH)xP5WJ1hC)0HkK@4y!3l3X`C!90H>GY6Y -wiRH3=3A{Zecxd6kMl7DNXc9_VFoVwzd{q;G|ZnZ$r5{@U~V%0Ib%=ARhCAMB_<4hI@#nS+SN*tZ=-*lPkE@3Mon`-6${6~a7VBQf&j&(0u;;z -JrKvbuoyF5Fpdv`Uos|1v9hehK?4&#sjs=U}OQ*8b{J3|YJLR+kv^V9mNszGnvD{5N0;{aEAd9=fJ3_ -Ufpm8@Rm^C%cgSoG!?PS;6^g0RW?P~W#Q{3})<>Vr3!sRk#5L3OeLL$J{b|+*jXfy}mA{>2`r@eKN9X -m1+kWPP?8kg(7=dPuSRoBP@^Q%VqO6J5RcN%z={!DbLGP4Dy@dreXxhfg@ -@;=Gleo5SQJ`dGV)^t4U1Ku1l3X=H0`uOOtDF -10)~(p**UYn0C>=|>Is~{{jM-qJ^G>;9=QUm6w?y2os*1wX45Ov%Db!<xEs>r6WXGkre~3x&M|#=`aT)Nl -UefuGDYH04u^`O1b@0UV!UFBah&~@wgl6B0CJgnPd0&84IHX2(p^Xw^9=b3-?h3ix#u;&igA4vYDdO) -W2DRlRonaBb(P(uJ-Hw0etO0Xj04~6oGVHDj~g+B(Y#IA_Lfq;6*eh=&QU@v>*|he64i>4$`k*0T3(_HTg)83}5IOlS@$rpm^ -U@Gy3`+0n9586#JducsV1zSgV&(3HWk$ieCJ~DEYE56HAc)f~2pb;j0`2SSncdl4Tk%-Qt(Q97tc#2g -8@ZDllh6Ef7p1e+ioH3p78quE7gK=G-{mY~?(5Th;Zq+tXLkp#qoxPk|;oZa>i{{tn!oDFjTqp@m_t13lyU8QxVwYBLhN$fyzLu -mnmBL_}vEIYdLYhmf(f{tOhTB8FKNwPwqR*YLMh^?{-HXON=SlRaCw|R8_}8{7KMQ|8TV~JZ7(B;VGA -_Ltw?_w2$-AXIVv5=ME1uYMstj|1=+a*Y6^!!@R51FcfsnNheK6>;%*s+6P0DjRcUW>r(}%1DE1=ihA -ty7*4Sp4wS1D$OPDS)cpWcEGgZ32*>z!{N&ebc8limvP*HEcCQdw2O_^Ewm>J{8MT>LVySq_V4o?2%= -fGOUf#6STFi|I)5R5;o#w>6_G3ZR*g@j%hoBo)bEw%qmu}suPPBGCQA2C-@ZP>tF{ky7h8)&7l*KM}a -k6!94$bLQ6p`LMIUU2gJe(}{cHqcMf4U$^e_mZm?J%ex5%Q=uf+yhs{h=I@_vbZuKk6p13}NU_XhPP$ -uj$>fke`E4Q3?Y)_P8D2g)x_nQp0|B{;Kcqm8SNHbn>Q%Pi4325%DTAr|xK_Z3cAaxm23T@YZ72LICj -lM||F{2aDSxm;FOVqvUE`YaRe&c)mnCKA-JLsr`dio`vE*($R1`+}7yPA=o&BVDhlOI-N?#?g2-R@TE -SIM=}k2IZVAebYYj^E~x^r?1r6gE6_`6-H2nA72NL>Rf3M!$}Wq*1C&p>3+X`XKH+g;(jKzI?2?_yMf -e`R2Dojnc5R8;G)>xUi0vO2(SfTD@=l_M7^glF#_rH??QQiKB-6T~%9VRqd57Pmt{9l|agHiy7Fc;YU -GR9mVQ@_Mp;1CS_?jplWq68_281W>>9MU@@zh3z^1Nm68HaaAExaMV>x41>Zvf@C$nrN~7hI#{o9O&E -VCH{u&OgBCZ|D1|xGzCqI1IxSi6bx&q71@NC{AH8h2a=QBj6DIWdK%;zbXtROTHQrEkU~r{9&&sDq^V -~5D^Qa0(``O`^#~NmyI@gxq&fkfnI`HkSvH7A21%hm;48_0u6}(utgR~iz5JazbjF=)b3y4IDOfgBV> -`tIJrntidrxe$Yn4~@(S$2U$qsmaG?Xit1^EKFC7B%<&mbAIAt8{z`g`(waiyu%wt~`rtP -Ii(baA31t28rF1d!YEZ|UhC|Cc8f$&gbq{)aPu8M~T>DD -X><3;Zxv*Er8A>!N#1Wl{;;>SDgF`EKTNh@@G`D)z$w;TsM&C=fdO9lCYgX(qPQVdotGS|2Ar}eCPs~ -9(2AO7hm+6oezUj>qMF%p;GAr$t6!ZT_+(_enNjhNfV{_T;?8?{k$lv&IVnl>z-{{^YQ$ETXna`n798SEugXcFP#73iNwBnwQ#a&I>o7hkERo~@%l}kJH -Xi{Q+*WB!S6N-gZH6}3g9@<&WOC(K<n|ka}HVd!?4xmgG(2ZS -Xt>#Z*u+rMKcO4mzE{>&>JNNb?aO+syoS-duWt0UYw{0FK7$PgW6+$f?;)AAS8knD#c+pJYqFecqQ+c>_7WG?3RRHStw*}&)8HjzE{reN$(-1|j&jpTN5#{E!H@X&g=Ud3~wL_vpU{I6j29y!mru%e2i~#Os|(hf0jF69}au&Y4Lx*W9Ts?jo{>!en<15~+)yk-Iv%i%{ONbo_i3huxB6r -MOQTto7AIe;!tfCkoQs-VOArK8i#A0@fh>{buzUE%}cuc+Xk}8QuNVuF(rhUz6O6sLJaP@8F>AT<>~4 -kZY~LCE>-JZgBLO{uGWllrrmZG$9VE^t!#9f3?7^ -GT2xN2{F>Ejjon~$hKyl3OU%Q3(nNR7Jmxg+n0CSYEYEg5s+}LR5BI*J9FxiPjoTVa(P~)jf)uMRBgx -E=BsW%{`+{)2SlXrHX*Si*7uJrJHFUT)!ou2k-X)`|T1YMSVcm=DUM14=S7})VrRAGk}ekHpC5`ZNH5 -&)cQViPVRB|7Rea#MB@&l|QeUx>Di6^)DRV|I9~W-Dj|}zQESJ!TV*;`eV?WKV7qrj5c`eeE3^;2Y2Z -`)(%*bf=Y!yb6lm1186;C7iAifs7kKR2*M+csVlIc!~!$ooD)Y&=s^Gz80>+@M?-P1)~@<2PD?5J>XP -xAekk)8Y^UwZLWvv;w3?dB1ZkN({+SfbMMAd&H8nny8{IYLX=gU0NO(^DlDIAH8%EQWc?-)WT1txw*x -ci-LiF+@>^>8S0Lgi{~Ui4FW(j5UK94cD|4{C%wFqmYSGtw`ZbGT|LAN%pcA6GJ*%&11cUD!T~tyncI -m6xXuAzdcHsyrXW)+|cBk{^!Myq>1@6SU#qp+w}mzAC{=)JVNNw*B@lm+bE40>@`*o$ -kfkAAOgPqEjZqP^TIC)+9DsfDdIC>suMJX+3T-$Qyvwz-+gXm`)ug}|%}>#3z;kLV>oquj&vVSRn@R> -ze0aD}c1Bz&gpchMQIuJqbXP-KYQ^>sbm+E%d>pee31~CRiO=)Rz^@PiIeQ% -23g|hA)_`?T0i==(ZkB;K3X&Qi!2yF1j$u -IiJ1A-tpdB6FdiC-QoWvSF(woU}_WPJ^1az7Fsu84m@6p#0m(t%m<)7#Io -~ziu4MlFeG~<$lG!Ip1f-Y0MM_`u5A1AuEN(0+Y;LXw#?Q+p$oZ+k{NJ7p^g~eh(b@baZUY}8|0QmFA -7!OrOx!3^d@gFC^DX+l&uMd)S!vSiH5n{Q@P2g%TnI=UH(_Ihqy;W!gSd%?gg>fAIJ^Z?S2}@tU5Hq3 -1G;p?ez_8R*433!zIbjyoKG+ExeG5Ml{}!cN7;#~bh~|@Qw|DW?<^9MvODj&^{GcneCh9qXQSiIj>0q -_+iOa1)cyr_Xwtjn5_C=2pcVA^Y$J*na{Qy$6jC)~U#k1d?M0koCB>rlpe)h#1=meUoiP$F$;ZT8>vy -U^BPRLVd{E6jl+ub|!R5Uy>8hh@<1U6a0?lV;jOD8-(t6j*6tmrdyc3^jCuW!kHxw2P -4wJE&@4y!nvR+YX>)4Vm%!wGZVYLS_ebG;?YbXRMeeJ&{c>Ilq`YeO!{REi#ALPEr4k1v>GnAL2IQpW-%XlbQY>#BC6(9OW`+ukZyv;+j9aa*jJW?wYfpI2zKTBH2i;EHmdvz -=f*(kVm)bp-@xO#u1UbcgsfZ-kvq;tYD1Pgx9EeJn?i8Wnq3;H6Eit`A3Aj -nVA|1=jLkMa1#0R`_2#Y;c;qHS7G)#b_&-|5g{6NN^nW&uv*!5%5yrAp$(x23}+wF2%|z~uff~fL!Z| -5UdUCiG^b{H-SpJx8lmm*!rgQ4{mZHk^%l&LbVLeH)AYW)GcG~q0WOnTo?%#RS_yOf3{?ntfrVi_~5XDE1B@xaznzD?C_5%$OBv -Bfved3veo>mfwM0fXo%o$3k@W$@^cFB#B83Pf?_(wpWh+dxWltsbqOY7s~Nvj$;R;Y3bz07u?jD6ns< -sj@2W)R@lojbf<;X9S)MAj?Wn?B(u9*wTB6U;Q#O3KJl`XH7MPT}bIc`sQG7LrG1kE5Qfl?H;5>*nV);JEqQIe!d6vogG>rb04G?0#=K) -=NrY!MWw4y^$a%zzHVd{brwr5*HF0su4xWM5C -Rl@Wli3!|D+9YiG$}`+4TMO>xr)xoQX=Ln}s8UH!w!M6j_Q{ZSZW&;6{ug%c&Q`n`}ES?9$4ZTzB0ukM3`@ -SL7O^gxHUj9_w}GDqMD4{yHG(Eg5g!OQ+d=0wc|SWuUafyD5%Y3qvv|9ag(*+`_Mtb0NAJO&@zJ{1UH -#6!*NAhUQ8wqcLak9Wn(*?%_OslY&lpJ-*pOT|J)bYSx3kDi5AjOk&mb?~jYDXt1{Tlh(~I`ZJ)P!x6 -hapwf5~_XUx;*hAPCnPGECY?Jh4vY)Lgz;ykxP1l!@c0SiXc~yKKtq;C9o^8|hKH_{hT@QU5um2|(X5 -s0YqC5L3SQ#2_-l?l8fmxEQqggdM`2Hu?I&=bSZ2Omow=Q#U1?oxmH_KAG$SW$o~)B -OOZ)l-}+k?9`8^%t)EzPUXUuzuUok*7HGom9MAzzV9(5ed)>?NWW<{upfkUxxA3HfAnO3dp8{<5Y3C% -g>fHVkDYVV>fE|s=TS3jhthNt_cZ_1v*%8EM2%lZ#aS+*tKmx-J6@yt=tBI8b!1HH#ZH_UA=~ZK^Ne2 -5+!5F*v2X=@s_@>__x3T;899=<*6rw8J)GzB6ceKZVJa|uk_jZ#?b}^|qba}-p%EvO7w(M6xDofaNx3 -HBR=N`5!}O?bqXqL+{Vz!mcnH!$^=05zQzQh@`-CSy#%pyq`#n-fL?E&)kFdIkU~33TItpdA9v -EZeXc_-in~1;cRzL-#8fa>)78TPxeWwI;(IRr*-p`;SKf4*zp7{MIwLqMGy>tK9F@Uw-KFXEDQTV53& -?Pl9mG8!~FpWYHi-&4OvY!@oTv=;u@VlQa5Wat8WM2mffg)cGO5gV>JVgk#>;hr$sxrpnpZ@3U~xpo@ -L%$Gp#-*3d9%LBdy!Iqr=o7pX$#X7LP4DcBoUlsnSs>q?38v8Ic3_AVjK3^BBqlxJ)tc5-)U&6HpEa0 -z|cc;QC^+4q<032t6(ZV(3QTFTui8dJL-bv@cQG7-e72Gv(pQf_1Bs3C7ZIc?&Qk~YPYuALst{lqo*q -cq)9^~@qA$MInv;VWB?`{#IT9q+0_N_QffeR!t>J?)~B>Cfj_5d3Ag9++d#fg;E(Mc&Rat*x=_!`gX9 -i4-9d*T%E7JqjA6#lIeomlKE8cV9zJ*U`^*G!f_zjjzf?>|0I8D}5hu7x;9%)>tomlbnGksElrZq&f5 -NdMOT!$Qc?}G#3Gdae{p4*AYmpxzZdThDT)z1CQ_@GWvn+*|?9wYQ^p@<k9SD`CAdAm@azsqGIdTLrLK^-LMS -KXDBnf&AS4?F#PeXirk&uAp0aIjh)3J$x@Jq6R+`3MZfw6e%SAe;0fTm!8V1?`AQ~P1@pBMxA{T0&lj -oBgykf#A$F#&BH6tmehZH<<|V}Jo$(VLPTOaR)6toune!-L;?H;D>hMAO#-fbHGH_0!i{oE_GX3P;!` -X^+2@kNe3v;3pqK?{_|g(6-^*_}GWAG8`LbOb>RBKl>1B3)_D6238vL==qH3eIy3{gAUBsk%4)$SzJR ->==00~kgb_lZo2;G6QY*K)J?*@stpuLYQ03`F -z8ymxyISgqKdp;)8|9Z22p3DNkN12NpTV%iTTgAi>*RmE_^ApM~C=_rbE5z~^l#@?*~w>1Q2 -dGQx`ye4`FrD7`t%REYB}5+AVWrGy1t4}tp7hmQH?jAX4hk^Yn6ksey1{%)qgBpvqd@x7W5irMxd;II -E8_0DOZruk^muGcjMvV@KYmaOXPmMP9;UFZ?O@s{uonI=Ka>QnNY+3q?=Wd8PDfxe%M|CLqZmnptuf6 -2T3IU%!@cw(2Aa#GKbn^_7WT5GJg*Y0C@d*)0~@RA!9*Feanfe}cf!7N8FbMQzt7IwX+JGDL1%OoW?O+9xnv&1cvzQ+vgE=IbCoOfp2232m$Yl!ag -{ZWiK45=?cNz)cBrp{;2y<0f=wU9@j*C?9}!u$K9R^Bk6WFDTZF+K%C~0(T+*03I+e25@$B9(+T`;3eGzYC%}I -tsDY;IZ&)#LQR@M$h_P-e8`;43-&;QS{``_>6C;a}09ej`BI6_b~N@Fxh!8A!SD2dT4E;1-W&6+T(2)e?1Qr0q21b -U>qXZ)NH`!)bAjizW@j?zm2~ua6aBUl}#ni_gFdaP%Apr?13xG^{ZT4M-Y)OJXihfmiBMq`%@FZe*xb -h<@VKXP5lPnk_{VwD0fp%#=@eXA^gjn{JPK+@s&g)mgjE@u+<+#DA4b&@pqR9{q7oncZtx?*O=8SEh^ -K`e=e2dO8-&XHmjEAgB~=?-g9S~v%Wuk7cMR23QDCpJ4>%njJ^dI -E`GcqpuNmxBa4M4M)w0tC#;lRT=uOto-AxI+-`1)WFsvOHF2y-)Agm`}v92#hwaeiER$MyU;;}UCZ(< -XXHb*jBau`vvaoeU9lk3(Xiy5Bq(>bW_?C8Xg5xmyys+xGV7HwCEg<&Az8>-e@|tq#UfpuIPXa&i06{ -gdpgsFTNp5%Yh~wu@pJ|c!}1z~X|C$h&9~=e`1#rU@hV@Rte@ZhfdkQi{lF+g;V8^tB#LZo5neKsJ?*j0SokC<&yyh|Scj_}CQ-P@ku<+e!c&&OI@&k?oyB3^}YtF|4$b1Y%9iV?4E}V9G{H0=zUUJ03PZ5 -mzW(TDo_bq!%PvGtP^f?Ke8h4);hQTi8W#@ -2It1c5YQby_|OI76>YoW{g_oJyw -p}t%xd7jlL=b5VhE6Ze=F~2KBMXr@g6a;t}A7hQa7MSKx!O*cRCDZo&UstyQdMQ73}HE+ -*8r!&%^5lDPhI+WPc(h>&`K%%shRcD_;(a`9q={kaHBSXZ<3Cyg)F-GqG24M#@HQ(PKNgGiq{_HI>UyzvIAsZ&aFqn;6(GlLJh_MU=;zhpU9sv*!v~a93`o{!=q( -EX0&Or5w$^nH~f36TrZ(i>!d=@xh7x>n8l5Z^`Bm+893iwwF)$k^NiEkA?3}7d~!mWpy*hDwcE#(N)n -%{NxQhv~u^Ap4 -w=ml;CwmREnLVjLmNcc}OA5%Jwov;39aqVAp8$;iZiGArd#$EqN-LT{$m`FsUPX&WXuR}9VP_jOY1E$8 -RmQbz%@7%@lW_PwtEj{vK(-mN$8pZLRx -;|1SUFwukIs-;@jKu_gaMIev64p9+3-ga0~P3j>JqtXc5=ATVtQTH|IFl9qnVc4us2>N(gOI;rr_ar= -;gqSi7Dwg!VJ7xHSc+U`yvm4G@jeq2j_E|{!z36Xn9hpu;tYrYtlhk|S8HVq%=vF4a(?z&gMtA$E9U7{OO3zxt|oNgwr4c5LiC73>97Jm+Wf58Bp>G{hIFW=6?BJpz~{K)3VQEG~bk!4+D+(Nw+t_UJY<%p)`28T!VKumANpzvlG -h#akIhD6^L&mnrff8pq&U=I&yuroW)&}(c_mA4QLruFLk-D2ZF2HPg?w9+)D)DGOKjdxW&p^X4l~aAn_75!@I%vRl8bOJ|+}!?_0Ilm+j{;69@QKH--1x+)wR&YXBU -ANU8qhswUd$QmPeujzSrFTRB&8QhAXGmGK5(8v%KZl7`TFpaG4#G`q7C6Bu8c~mQHo<*UW+*9TYfAZo -jd+EF61R5)xSDBK@c_&k)F*!wixLvCq7EKYKQVCYabvT}x-9t7z5+Yvhfo%DMfXbfoQlE0JPOT8SC!0 -h$l8#E1Q5s3o^#;qTTzC0aJxIiZmLHtWzI+b4p$4Y4K)%hTgOGNL>>vQOKO5zNW#_gGv?Li@vVvk0(u-J|h -Y^67bA0{t}jCl&T9<S7q8f25rUbUQ!$k`r -|PO0OJC9h~+ql3XxAeSHxCG&VUjCoq-fCfq_9TpbhXz*MFB91MQ_Hfv#l5bW|bYay%bS -(2_S|8d4*_=)PZ+R<=6IYED#tFJb(6(4RDul`YyWs^6POwEDu(r=h!@T1ro$X?iQb5SQla6XHz{kZJs -ql1G(|C6JGo?YmVC0+D%d7UU#^Y7L(d%*|pwUS5S2Ener5}}9J>}vm^MwKo1Wq?+GC8BiP+B{e6i;lS -6A1$n`Unb$8?8n_al6j#hkAk%!e|GH)nrL_R@^~Qknzg#!t4UrVW>Pwr^JPF>^n=JpiN(C#fh`7)W*7 -4$` -Gd3uJ7t4+Hye!Rk?&%7zG!J{V7vN~;rAV~M5su}#P9|e^#EvXIAo5B%E3RenEk9smi5RRAcoz%qT`bT -WZ2!5l27}D=k{m_uTGw^)&j1uhN#YOtIvsktCoiaS&FfY10p_3}4Wk{vXM*8$bg%e^}?s?{>IB#EVpC -jkh0v^BUc-Xy3R$C6H3go4j5zF>qvp7Hhn -zKeMHzwbPIj_Xh43W|qcHary1jrw~ZtkzuOY+Z;o>yCfm_+Kn2|JP5c^Z)`tX1tx -fN>{wS`kG8@mn63Gx=1dCOgtK^?%GuHm1-#W|VX&_p1_+#?TlymZY?8&`0E&TTP6lv2r9toSiiqnuff -_0f021FifSKPrc1WQ1IeryilU-jNh?Noi{2<|{6&F?c`m=7f8hGDw=N!nLUxVg+;@T9mzn>&F1d(Vn@ -jaf=p>)v*UU@$7zVg2i{Z}AMuZilHiA3ORu&U(RKH^YnCdz!MeD(J#dNye@z} -nW^KMDCpZX-;T9vC^aKIJgAlExR9RDap8^?U!d1Fqm4!!@oNAt?1R0H+t?YA_52=8d -!;`wXELEuQ%+Q8I%SUqVk5TRi}-XuQI&=suT*H$H@(&j^th9HVZY)ygOD{lX^y~CNf5?y9z5Ab!8qc< -3WEdWI6WNX3wK9lW!-ETKqj~Kt8h*5aRrEoTz^ty* -WJhR5gY7Xrg_aFDFh^xj2uAj^-|sQ$fin6Y>E$JPMMtdCS-LPo&`Kn~SPVc~*5MRNjhA;%BdZltq8Jd -C&O#wEQUbDxyPqXvfoSs;iYYNVD(k4BfEA#xUcWdK{TU*7o`93>SkmG!Y`X<~_lK+E9fFiSXj!EIgE~ -CmRN+9WJk%;0ebOL-xxkXC;McPKTHM*j9dWt90zO>z$y!Wo}UI<@{Ax8oi(r^wR5Oe1ycIxW?xC%yT1 -Ks6_8N!p3{SLS4%gxbHlq8RG|+4-6Umy4mUR!bXL8d!f*&mhr>*%$ciFIDDMHt+UxA_A84*)(?B#IK< -QWE_-w|o|nO?GmnWJ>R*iBD7S0btpELWybaHlqg -8tQ8t2)-Fm7wfTq -OF=iI>FR40fM<8*ZzV!DL=lHKB-O0{Rg}Z8#-z(02}-Oyh#LXa{wSpVxA#lvtG=hpzCX{DE-U;3lmJE -ZxA|$N^vg2X^wil3ZePy^`u=qOo3nwwKb;@W<`3I$!JH}kIMVp@)pl%it#1#nYK|>iV^;!yAjG~rFx1 -6$6<0^mTQJ83bvjO0AB$v!?H3!WgGUvlrd>UnURxmnjfHn?8@KfUl6pbHetG(BaK3~Ny*~cw@))8Q^M -ThlU3xte@d_Q6*5mX0BYsuzFlg;bCHIA4;+28s(zqacLzjp0Qe^w1qzrECcjw%ds9I#>quSRM6rJ(p< -eHsDU0S16)arh(?h&!idXMkB8M6x^nAtNdPNSAwqI#%bc%EPvQO1+j=jAWOJ4U*v-IKT)l<>dpv`^2x3fkeY0 -E*ki@{|=6uAGMBtM=8E~7 -p4Yx`veFqAV{Al+CFPUZG~DJ-W(*hq^GsH9hZ|S_^2slpQlAw82WypA(cO7J)7SCPKNs+&e~z6l~wYc -S26TG75u^kzk1I)(iBvjWJ-9<03AU+2D)&&zI)MaI1(EA-_U#gis1`xYM6SNf92L%=7h^z -y0%zfJbc=C|twq -K#At)Aj0Jm#gtOcAdz}?-ag@x6#OH5)-}m<;ZfVWf3ge)#0Fvyd}VP_r{A+sndOulZyA*|m$z4Ts7M^ -CgSpQ$LRMp0$#7cXwfo!~;V3MJGmpJH=#a!o;RdejTMv)NAIY_!9`Cb-Puj49^-k6h36<7xK^QY)r@( -qSq^9&9Lh(V>YGp$w!cWH?`cNN1JK!OCEqC}M4@epBZL2~VA$e1Q#Og2qFa|MuE@Pza^4*Tm=KWg@AC -R4Be!@)ck|Q{N!;RW*H7qo#u*B!TiwhwrpI+S}Vc2+?^{jr~0d}ZzN$u_FW$ -=b$G*!_c&c5JN#LP=XvcVvv~1vUvK7aEvE+A`M#Kjb?Y_8O2OtO3R&mqdVq>tN> -r+?-D+g(<8xP4_EC=4?z%zRw|bU^(CO#gc0FL3nF8~%VyIE>&Ff>IQTFa$;8_{W2iD~{j{Xg7i}AY6m -vfK$*I7-~A!nX~nq0co^zzOAq1eVER}L0aprl-+bbWtv -dC)&y-=AC_l>HlT2n?NjlA_d<5hVro1J -hUDpYn2b_B%^bNr@qRd9#~uiBSa8&}A*BaL0LnFQNfBxu1V~V4^>mGfTn`GZ -!31jB)xc72>EuT%IZZ7S^;O}d9mTH+)pnA+CBWQ>OZBx?S6@NANCdh;7;u60-Y3gb2N_W3vqd?lCSsf -@EG7&_}Q)S+q%#PD<_}$q9{r$cPt&QPr7Kd*E=u${Ke9{3i+Ez2Kb(TDo+X;Y!kWuJQ)Kv?dJW&>?io -vMus@+`*=BZxJ?LCuTvxaqARG=7ax&enRyXBC2+u6qn}54yo|R!kD2%5>-Mr0ym+)umFL5Y7mAa*w~Q --=XG1PGP?o()ytVxyxuu8LJ~P#Uyj8Z3FCsFF!v48qrK~MDMY_&Aecw=Sa5<^oR9x|5peO=*&Z4udpL -B5LucD^r^5SyJ9ZluI5RVqjpR;q$jb>rpiutgYq-y6g4^vSB++|{tN+I;vp)#sX`~su1ug}IaBhPu_q -6@ahcUP@rmLwFtQ?gvf0;|0n3CG!bwv!jp^_zG?ieVzo9Y?r0K~Dl)QEf8KXZ50=djF0ILg8v{dFB6H -!{C#?&PL3vAAa$_|LqGp{_npW>?aKVuXgYShkvog4}*_1Mo=(@uFy*`6v5yqiNXx?aUV=dY!jliHqnb_c+{7;W)4N+T6Ky6xiDFYUQv7g`f!JL3=Ve -{3sQ0Lg~A5IM_k3anF(GGI|lP7!<&4E65nVcN-J)S#h_@427v5oL+<1H?%^CdmVH=mvSBoiPI{@t6#4 -{xsTeXhJUld*{S7X!l2+CJMd=&70KsenE+-op=bR97ytnP-nlYIO4So9#ks1!CR6Bcl||wGx@HMZW!KNTkleE&vZAZLl@e}f;|M4bkA1#KFJ -jF(&5r6=cZf9$}#G#eWK6&#UUc}a1K)Jq1ZmAc%}6sW_>2p9m7-O-e*{A1&!T>Kahmi*S9dmmkhFPyt -D=$?n$K|nw_oJT1f_l{<2*+mh0ByqcTelMYi8LlC^uO;+1~*Y~Y$A51e|S)8lelgJ|rDx^ezsipe>S9 -ja48xRin1gm?QGC$COuFbREkom5sS|9$Ta^dYwW0tbI+l2!MUi|uZZ-uTU;#TSOUV9tyFC<^_o -u%p}N$ohxJZf2K}AtE1g{Eli%Rt)ixyBUa8l}sli~Gl|$cOb;pb@7^f3YM=VmM6FKcUqB -WItcP>c8H{_izTLXiy4A843mRtr-2WYaoSz%p(``CUr2l!A -VplfAaH{UdPQXKF(eCy+cHw$~<9Y}AU^VBB2L#{OOSGqemXndgobb@^W(K{M&Ng$qIfE{I<@+!&olYnPs007V7 -$Q)_7}=z`C#mYnd8u@BA#m^_lMD#`qOAk)TbR%L8+pRQ5P&=;U^imR#rt3HR|(X3M^^~Uzs4X(JaAO0 -WJ8{@F|Ehv;xxCg@*K#y>1hDhObWcr^!M=5Lz(Y4hC|Xb7+^5>;s{?Z>icdx}|F6_@q5ox;Q6j)TUtB -3SuiRYtDt^%vwc_#h%Q%oXS%DrR6;TX{J>LGp#GI35T|OS>#w#bgUw{!WigF5d3GxK+j50*_K@F`5}7 -feV(g#cF=lUboxFF^6}|%JfRLp;<+-K(sK2^?+~(nGOi+y+O`3u@xb^e{Kzp(%>_$863#fe9Y5(_>?Z -f%gu(AjAbSS!UvDyp*Mf#b9cpg|nA&u6M(%w{X8JB5y{gnU!R}c*ZN3ibJ36>dERa!On6 -?7u$a=deBfh8@)-Q}}q>ZeJe0=XXs31gz~#P4lgu;I=ZtNTQsnD!w3tG -t8_Eg)8eoro&;HB!75BY;9W!S$?@u|Cq3#iadu>eK3!04XBBjQ%w!}UUe(OR%S+?57q3Z47-jE42bF$@!RXEQp?gaDA?XXsrhQfGb_Yfund^MH3t1r1Z-Z2_n$1;)i^n7b>9@HcS_+;nh3VaEz;8?8Of%$a0U047;_I`{_HVdPV6UaYk4ms_TzaFN8v&ZZIN8Ot>If`vbqwoBRe&>EI=Aq5{fq4cY -CW$xZK?o!UG5q=q%FL?DtjtqYefqm**X*2#EQJI+6cO8(ukFj7^izXLM%k44@_E-cj(vW;K(XH>GZZP -_|9@kP%TAq{qltAkI7;HUK{`%j*nPJWEAuytp(DRje}qrq*j0YmRK8dPBIcZIZ1SC3f6dzR9b-I(Eg9 -KhLYsX94974b!#2m~`1r#9*)G^OBVo+VW+z6Xn6&uvxXCc+*RSsvP?+1yHUJ~dOgtY?6c~kJ=DoaS42 -D@4KKXS_6PwcA`2nHHb^kFEu&(Ms$-Lg_^Hyp@LHo`+UTgl{7%2)ayuRS@cyH?4Dp_k|wD}c-9AsvNS -E1i&AbQ}`gSN(#aSl2#yldC(g1JRjRPU3D1aEM;`3r|Hr4_)Z)9ZdA;k(hl5%uO&Dx|}JqVt@vFqi$$ -$Di(+t&OUHg|`Q>iHh)sUdV8lHq_2u-rFzN8qZwEIajzqoTIagQ7~{`gUw2pT6?m+BAx`VRIO&6U%iT -4(R;miNF2|j#y3&;c;Z;YgLmD)#fEEo9`S7lK%*1y7Fez}n2G9^Ntywhn547+aflSMShTmOd$oQ!(Tc -8mdo|if!gAN%1>>F}8NUNg=B_BA4}-TcT8Xx!E;ilZP*hk$ua=Q-q=O;#Xn=R7GQ{EXd@~|H+&BiR`t -mu60Ghs2;-w;mY|?Z%3yTn#IC)PhoP5FP^^){*mU?b$w`k=fBaNyL>U=XgqT}2;@eLqM#JPwI>?9b=@ -V@b;kgffBsMul1&`T=IBK??BBkIQPGDHrgQ0@KQ<)Ifh%3Zx>xp`rlUGzv-c!Gpp+f5#wJNK#gh<}Y3i9S1#+0U -Kh3m}3<|8SGF74PXQ0qoT2qWbuQ3}2cZ$bhwe&A=J#k8}E_rW=B}`e^~#mgo1e%{=@lC=Et -*#fAO?$1>^5e`Odr;CUF9V2ppp!l%f#~#%UZ!4-bEuhB0Wb3x9eXzL$P6^cj=+%qXYPaYk?$0%J#Qh| -)(rh2%$_MUekR{=6hS%tEN6kAK+ce+1AG`I*bXKeDZlkuZ`R2Lp6+bUTj8?ff{@hUs6Fgh$jSbezOf* ->T{Fe)L)pa`akK`V+w!A9doT?<;N`W7fLkKSj4;MMX4rn)_WF!{F`>0fYfQht9| -0{A(X0ITXa((eJnTuO7wQ*T?u`H8%wgY6ko9jN>2Q`P+?wcKOHJL4)tK_Uvjla-n2Bx^XB`Vv+*PZ*3-8Ts_r1w?BFOe0cFe)< -1=`+&%>ygvQ}dONt&^?lzTG<7{KgVzI1jaczb~%kCN*gqESNFsMS#uF;7i_r$x6SD5^)9rwfB6A$f=T -TpQI)!<6aM!%6Y3&5n^Ah!O<~?R+;E=u_ltWnssTQvmGlxR!|@y8|ZcKPP^5mOG6!bOC&Vn@|a6hk%w -Wl1AzxVOfea?m1y1<%Zu&gRFKpVvzsi_xGG}y^4is_O8v?y4rhs8Jo6kGsgtTDA@3f8SZU{2g|`)py|L_9qoKQD-9;pngq^ -kdI~jwUP->w4Vn=v<6R)gzT=2FtyD$(6!?pJnF!O%F1u!@^h`!LiQuosGa8--0-QOM@0}h9yW+A7$qfbE%z(~cgMPa~qXCg1uXQA7VpTqw7iWuFy##G`De;Y{?$x -4G14=yf+w*ifuNiUA^%v&?{`$^J`;13!uD5OZVq;e{u9Zs4ueQu2JlnSHUE+9Y5P8Dj;aq#uo$D4PyN -KCcx&wM?#U_J4GU(BVYHnW!6K}7oeIufsB}B9%p*QPh&IEs**;IPHt#iCG`YS&p95Sde;MKwO;9uiZ2 -d+XSxnn}`J+dsV=6`Z?31V*vwgM{!6kg;KI(VgRB|1 -}iGe%?lsdy<&|BduH3ML;H`WZy!oS^ltG(W)dmsAe(}Z^XO-}_3_OX$}OZxoS;u9C`zZCyK8Yy-E!AE -Jj{^*aB{lUNUYs{w9eV%#LaX*zu{+pNj?JVqXUgnRrNl!wKv#N|ZdVo}VRAPH^g?tLWqf -U#Djve%KDGEj&%9SWS&Y6%eG7;*Cq}Z#+qkzPYsqVdWq(2p0f*hKZV=A2ZFY1>e7x>ZbgW``*9eK=vA -MqHUJogwoPTA5=zSCYz(jNK`*$ci%#w>iPk7YoZpYFbND3#6oEm)c#e7WTqx|E^xF+qOE&TqQW!)D}519r#O?t)Oo*Z -1M4UPPhuou}sk&9d?JI1c!Gv+VS8E9wPo?hw7aRY^Oeh0xpxN85aj?>$?Hn07(VnS>F^F*KennZSmks1FO=1A5?UOEK~_!E~Di(XhnQJ7b;3G&f2LB$?hL9A_^UE~@R -9fOL1*np>YXeydSpCW^4Lw8TqZS(D0rl(jXZSqZsR3QsyPY8cZh-tIj8nP;>7?E -yi7e`=oys5}Zx6<2-Ec45Ivle#X&rI7pu9!q#v|+-R<2c|S&$9nekpLq9ib^}N!?i-lQ$(|#I4OqYA; -l^C^>G{*A~1}@`Qr)%LBij15wzypk~&DKDEK+NWe`n7$=j@-I?czyM4nS+*+#zPkisWHMun#{(hO-f0 -rZ$>0(H!i6WV2zu3(=`+9LILooS16+qH22G;y%UO?ntG@7lU(s0uWGcdx;9c6*>uto~6b<9OjAMCD~x -HW~7&G@bUyNtNg$RttS9Itz8DK6O|)**D*$q!{P5nsn<9KqPn5Wz0M6nB7w7iA9PlvTC-)!9<;k9u>6 -pbvtWW4U^n-)^eD_@ofJV1|O05vjymTS>tLbI%K)!61DJvo*p~+r#$r(9#oQ3i(U8cDWgX_819D33n= -nLCTQnc&Dy>c0Gm|d-E1gPZt&k9C>WzYul8THzkzkXKiAEYvhA9#sD3qI@V|H2-v$o;?j`>cPLG%g`p -{4&#AhBMJI>*VPYm|{za%;)$FlU$n&d|u;?EsnKNcqtaY#50ElPZNvY=n45AXwK55sKaPGfk{kzmNqit`{+W|IB%<)qdij!a9e;ARarjtsf*x~nX?omszge0ct0Ab5vJ*b)0t!7)_YjuG -pJTwkw728Y15StFFX6QQ--1)sW$NGHR2EI>c2yry;13~pn97-5{Gf*zNuS}>*g01--B#?F+@8PbPBj1 -b*8uyAer7KBx8W7|5nq3YSL$!UEAS(}{s~?kZ&tp!zbuQJO5(b&vWX@8u>7lmNW$N-M7R6*^ZNjVtIP -)Tt(<7Sd(n?@3;Y${{uSH;U+@+kXZuXi-HBp)@g3l_f`l-Ry)=|T#6U7kc^q@??0Qq>ozX6M#Aw$=r; -AYlt$tC{O?mon1Sgd(Ro>4P<vpw}+SA1}M3W@zX1ur^ -1qYrG@CQV2@;~RgYIIoNv8up$h`$^$7*AIz1_U$8uZQdquZ8_~+-Iq&6#U6H-&IcdOC -KiSRfYj3N&X^dvS{R_r9;sVhkEvNTj(3K1yDPc}>t7dP8 -WrbaRx7T%O^cmL(|q^C?)8MM&<0B*kx*8ShY-T%Go{~3V)?zR6CiDB~a3fl=_bYw#vGj%(R?L_i`P5L -l#+38{SaZJgNG~=HqSs(|Mr1FChAA=C-p=imVkC)2F;)RHg+3!QFNqrb6b)1zPW9|7bkQgV9YwZOA^v -N;aDJ?}Fyfwo9D@G4I#y<&>*~fZz{}{uEKg@CH0v$Jl(W9`~kr<&5z~2!a`Iw%e*(ZteuaTHM)SYAYm -q`5hNlx(pcSvk)4E_y?cQ*1J68~Y`@SmeH@UK|!Z>Ss=zeHu=U$Nf5gUY}kVfp8%JRHWGUr>2dzei=n -Ux9T0KKD24A2Z^=Cr~v#!y4=t=#dp2V_^e>RwY`Cyq)w7rwRdqo`5wJ=iJ@U2)$u9`i|VRD!w)|Q|QV -&xSo*mbZ=}dZllZSJf3`+Wapc1!&ZEX6(@Zl0JS`WzM7Dfb^Gl!Jh0_O$l+~@>habnjqJavrc=$?!_H -AD+un?187mb8is4L9!W!TXG=F#Btv}wF#26j29qGRA+cz)cmptZf2IU5}(ig@IU1$(TpKKG``dL?{$8 -*XvpuCi7E`?UNJ;zskolK4(c-z7ZnwAMt>}%&5J}82PJYO=N;at)f$KM;ijKd)z$2&kgM7B3t&o@C?r -;=)@Vxxr{FH%p`yXxMH=q0Jg79!?xzWdPg+517D`afjEqPpaa3BCX(O=fMYl&&vF=eeyyDDnSFplZG% -Aw}BMS{`}08VV54c)8|?fQqM^*~uotj;tQi1)3yLv_n$d#bw2v&pVgpH&B6w*-7QK_1~v5Tg@vAyfea -yHx;6u5~q_0XSc6W>ysk)5GrdtXD+X=cb>i)2Om=Pbe45@U2Lf?Q+7SS;0<`qQ=Hn%c!@Ks(bi)av49 -lHzszJ!DCe|3p>Nw3(T&TVx6a$BI#EbeKBse>t?WGoDuF-e-Yq>Xq>LrxNul2o*ulR0x^p;`TrM>Uon -n~OoQQk{Vr8xsqB}hzDB*p*axDP85LCOeI8krWZ4L5MP@#sk%pe+QBLWv8sbs6(J`t^aGu_zo9`x{0I -a1CW>olAR3{FM-eSvD8SN-E#kn!V@^~nxkJ52uJ3qNX6|K3Y}lb!zb>EHRF5fFvqI8Bl?fx(BQ^rvQM -)R!^(=$JLgJ`;ab^a)PluCYYAIz_!O(66$I}v})EJ^UM*^CFAW50}SW|fUOV*vJ5j((^**^mt%A3 -dpeq@x4JZXYA?c$_pwfjE3YwIgOxIHFA;gTKvY^8vN_3#k3}*k>ickBI(HR|0%n%AZ#9PaIn4ay*A~( -s!3D%vQQC&(eyarpVqes;-Z!dU1nou+Z1KoR|B~OvRiKUTMrv+8K}+LXx8FH981>oe^z*fuec6uX;Qr -w>n=3f7H%NZzlffY4?Oj771%h4AVCeG(vVoF)ql8_+1`^ww1 -g=z(M-l9|bfi|nOmW`7eirB@%X*cG#>=NNFh`vjX?^aHv3eG6NPbQa9(jbLY8HBYE~0m+WK-qK{bt_| -V9z$!m+#M5@pODCrRd$@%8DBR$E(Vw1N&a?3dQoLT>Yr|UEA#0FGLwdh)sLm#pd-Z@n8{7b9`nz5}dVa(Iq)3DwJ*Y!bXN -EHS`>x?Xfx>u^*_iG8bdS|JuFfbvNNA7{{D~<*2`RbK0@rINzAYxL*LlS1Xi})gMPjT~dShC1V!49EW -1MhglZZ|I4>APjOeD%6Ql6r;OF2~=bZe*&tV>s+Z3_rjl{|;donol>ut@6Fls@@|IQjWEH)_Ro&zp^# -z_FgQi_qJEBzM=V5dDa=Rz+$=>dK}i((||*T3ZU4)AhYJ_0x)sZT^}%bc(}Bvid4&#CvVs>JyB$yx3{ -coQ3Bn|!E5A;mq8@bK|<1)k6{T%`o;lm^R&V^@cQzdYcUg0F~zh+LWqb1v$|LB7^OAtbj>a5?;lnE5d -h3=oV)(MZ=io0V*bTTeg-kWKm9w1p>YzW5DFoYL%Bwh_)o_c4yP~t=!x!-uy5M*XSx9U9MnG6YA0!5g052d<8+-K#Oli#D`+}hC$O=CEsiBV**k8}z{RlC+Knd1m^BxZ -Lb2G62ZHPHcC()fi^ihDfe}>AKK+LGPhOs15gkOdT5uMJO>J5E(t`&HN+Uk -CA5yBhYhWl=f!87XQxAy~c1i3<2;HE;eJFG&PDZ{o9*{P0t15MzIS-?%%(dJYV{8;-JLVQKHcX-kVqH -miB&fOr1rwF)nX8-6jB~=nbZa}=PP~rs}J*tn$`DyO^Xl2MRrIyXht9LZwVGC0nT=jQ#dHBvn2W-JvB -swqW?#iGgb2?`TwwKR~0-uvN5?o`t#cf$K^BD1Ag8(}bYZaQLpCj|&3+4$B+aggsT)a2hhQ|3}`%)(I -`&+7+vriOp2|^>-zNeb$>sJt|QZlk&3Jc~#K4Wbv?HGk3w5qY@8;#AgxaM!e5PJj?{{_Ub%gMpqky3kK2gwxSu8kWL`Rg_8*(p}1bju~n;!mW5OeOcM>ReEHopAo`9A}fuh0D>vXB&wk_V< -hB#IqL2k=jOe+hQ%&(OzB<%mK|j?ps|I`ROZkJ#nt08)ob3AOW(pOcrA`fwfeASM}fOu+3dA%+h@^-g -+@u*UqDx+Xq}v^$O=ADXk@2l*9wAwM1|Xnstwq2%G-yt5DJ<9NBR^8gq85X3H2!}(R^Ox%9%h3p0iQkYVzRljHmmb`N{fI2afh_iq195-7pa1Tt#k1z0k -i||O{uo{T@lUAYGTRs8V*idRUmp8y6~Ny|m7lKy_=+mOui_V3P(O=;T39^?Uj7NRQ#7SRP{U5qfVm6y -=(igs(?rJ`FI0hwfWXEW%v{6`=jc(N>qe?ee{5Neu>n=0Q%%v?2F`B|cX!800`DH0m-gaHYL}^+dah4 -gRoZWz=9&}qy4=VrG}q|WWq2O~U|nYyG4b)dGFG!uumTFy1%64f{(UX9Ogj8Qo&a;bMnt0MZbfbB -^G?^JL04lq#XGE!F+lsm>BNyrcV0VJPyG|+T(KK8`1+PElskkjkdna0S3gkcoVHwZ~?nBjnI*o#K{`C -Bv`5nn@pZ5}Bil!l#5s`p5xvp!MlxYT+;SazzWr|qpjHJiObqmHH|Ktk5Z+))xaH`{aFR!GbzO~4*k4 -74NW{+`Zt!cO<;QR9~WCarpM?v1DoR>1b!IFF9J#P*}9=Ou$Czjj%D~UIA+sq2{g^jHOHw*o$PV4HJ0+iPx(G%? -%mahc-UGABq27R->Z(PxfXgG6^%8WvGcDH -r+DPprpyq^4LzJ=X*$yf%v_BqZ1lohPW`zaK)$q^iUqv6Q -7)gWQ_T*8YBs6V{NRWx_buVVRYuZN~Y=)I9!dYkS>8nC$hL -#rx9kIl^4NTZWx`S1`+7$6bUs#v3*yY_*=6Y(X&fU-xCLod6bsTlaiigjRfxk||y_rUeei|Y$f$&B+= -p}XAE55ohBH+1=ff>Zw_#5_TM{Pcnq~!f|WANK7BaB3rLw)MRLRp?NaO;9*WA9KQfm_e^b$en-M?-xk -ZQAkGtaq>*!#-Fi%cjq|{@!=@7cpn2*B0!*`4I(3S_HpD0xFQDk38OO>1~;jrk^r#|A{R4XN8TxasRj&`q^v#ML~2t|2w*kK`??~G(=JaynjN7pB6=jjT>}KRpI!@j~ -YG-44OWuYy1hIj^a<0b$SSRvGnKCBjM-4?B<5xR_Kc>l&!wDzCjsoX!gNu*z(L+)6E -2VFo9+PB8Jod-Vd#BrnS8IMqhIighd^`=(&j{Mi%J=o}B^OD5(n6`v6k2xB>cjLPI-1LPb~L4rXei_; -q7d}2iX!%O6h*h-_l~ZbG}Vxtvc{gd;-(x$(N;tI{%OpYAENGozbr+5H=x-|k@UNQ=%_@1Z>5ML_`JP -+903-CXBMNrFD9?dM*WF^f{sGT*o5C6GX(E*Lm!~fG?}?$8T -F!n>c9T*kMH*GUl{qY_>?gX2dJ(k@;8HHlq|~#W1#Mh*&I!5D!3_h?{XjoK=-rOE1|1eQUWeVK=n#&# -xLDW`}s&-W9AYDH`7Ty?*p;$!FSTo0LTZ!vGEVJ+GuGtS26tbhH*+`VH~KrE^7pjc_k@%aUuZwP9}S1 -$&N-wm#~^n&AhxGAHWShL~9aHl6TdFgzc-WCn+-$ZC -&)%7uxpKKBS0Wqr)cywbw0u4J0}yp_v2ZDb^Q8;V{z=;0da1x|E$)KlHdtM3 ->(0pHmflz?FN$6Ijx#;A{dVHOW=NS(Ia0<`Q8-5!y46(rRCY$lB8JYbLwx~luvF{k4{Ub}i_3IAnEbG -6$w%W3>`%anhnMytExW2ydZ-fy4U%kt>ZSa?O_%4;0q)F_jR$u#0mwjZJN4PzHjIw^wWMafY?N>PZIIh$AF+_!5^l2ZI>4+W3S -l1+JJ?AfIqW`55?=B#K(|=@=boZH2k;s%U-?jDr;+YZjhNrODk?b~&7y?`IKz_9QH9|X4G-f0_cGx5VE^Q`$L*FOaREwD&FsXpzD9mlN_>+>j -|;vOV%YQZ;?yMt6|Uo~b*G3F$r8E&xYu(`5%_t5V?TIhL6!I03#mN?3qzHnRFzzZxYc->XIB*DDk9a( -RQAHR^UAWt_W+iCU+wKN`c5rk<%^^Z{@&N6YETPOh7^8DwR`(k_OHrVZrNjg3Wh5<1T86yP~029-BVG -QyQ+7-d?P2`05L3U;5!Hhtc4d|M|uq|KojAZ!yCNnu9ftlOczk{4j_BK3&14j0WF15grR&A`OCF@v{8 -!5##(Ehdc~ixtNTi5U!oRwzHfkjKn3^{s(j}TVk_x@>g$onqWd9On+^F0zd13{J){sSJJfGsWKU71{MYg{_5{vgBI -oAP&KA><3^dk+)M#EQ6m4(lT>?`O_xQ9Yo4`TfpemJmLDt%)Y?KNeTH;uKoNA{oqmA=Sz+?khhLAS-Z -%lhMPBu=8qHgBG(O>&}!uwiK2i0jhEor*_wIHG0$R@s1h-2lHcx5RQJX;cgN@)CcUn-G0c?Wz2zzj -OLfOT?d)gq1%-S7Ae{ys+kxw@44oy3P?H~6_K7u~_4f+F@= -zn3qO5%z0Ls7Y}DuWN;gFnZCQFiDYDd-qR+^hecwBW>{@r1Gi+z$^4_#iMbeJu5uWylV73I5S-9@d-W -hngIA+kc6S*@27?>#uSX@*mK{^Ebf(_PyZS^tkE^qUuAUrF;7Z{=2eY=b7|3Q%u9@X6>7k7bkjv51H( -5{*?b39lwFy$3Vj1lhx#n4fx_D!F)wK54Kzn-@)#u%l+AEfq$~xpRE@7)pGYu>{sp+>=*Y5;c%ZgfQ_ -5;R>Pi*<>9Y=19Pj3Q;JMUq*M^tUPgKs!9>9~ePt#%u1e<$nOEfuihISLiNe0AYmjUhi(Q6t=^9nqD_ -T6C8r5gdFT+f(%YaR`cb)tK^s4Sw;%DN0z -&-Nz@Bu^XAUlHe4sIitBaEDuwja-UrtP{q2$6k##ZK=l>@cdRzaKD1yx!MYoEPCoxfVX!4@dIeEIAQ+ -Kix{i0%W`AL*G0naGP83*hLOHdsGo#~SW2-Y&R*wsdM+k>Vc}my{=4l$ -VTZ;R>uZ)_R(To=uwpxMs0U(&j6CV!o#M1feKQ&k`*cG=V*uop-4~Uwxe}fCUr$ZhC}&Y$vJYz`z}34%UT!noiWwXi7ffMf -fvGo_ykgjsrXTP%e_#uUH=ZnWRrXU8>I&cfNKcDBwq9i~5);9g#r!A?;5-lXnDkz~2`v{u1wcSS@`Vr -gz>KeVStXH@G8UPW&a7r3aQZ;9p4o+4LtFKn-AU#y2XIc#zM#&^Ll&7arOi{A=799`CN$;EEUFM>Yg} -&HnkQ(QSktRrA|L>OGTF`FCef5_R6bMH8S;hoghz&G~x5!@dD_%}!1zUb*0AFzCF@p_9`{0Fy)u+! -I1KD@E|a?*mgIUo%kJwj#eu5Z5P$_+*FgmwrLxn^@YdQuN;aRa7L5CmNeF*Syq^V=fqz!~#t8ovMll*by;nm_N!>@!X -X=g2$UO#FEbcZ?n(S+5eGV{i`xFvT{jIfK#^@*1PLZ@`e_XpVnHpT|1%6wUk!Df$2L4{rd+n$rv@&@S!_ -dJN^+bzBC`dJ;C|U=YKN)d4l#oEeb~+ND* -X!4@Ix87gB0~SdZCG<<4Jsg@DTEU6Ljtuh2kTimH2!$kB?=?ADMp?eK=u$e0TfR4v5VUPnToL?Jp5c{ -PZn}-`JVr&)ubgbOED&uELMDAA~H9zt@a4V|4iD2PA{PBj)xy+%fZ<*?|e&g5|kG;)nKx0S^6$cEE>3eNn(H`$g7Iig>Ne#y9Ey_m6$I{Lit|zq9; -f^}xTg{A2aNKatKnsaSYAkGpQ28p#M|Pcz?u=T14-^y+*sFm6zijxA63IFKigIiVN0ljn+u_wA$7c&v -t_a~$5e`;!S^pHgC_y#iRYQi`E1m||Y4$KhDABiMRkE;3Q`lXKbpdP2`{S-$%+>SQ>_Ncpo8QrZ(n9o -lF>)6k-NLDeXRP2GiFjhnodV)&)4YJ;8T7r?RVZ0tznKf|)?8VoBL8Q -C4JgvU^fp_^Y@X^Hh(}i;Pn`Ea3d+3zdI)*O%#BpHl|DJ^L8w7gq@g*{Ck>{ihmJojT-2l*;n#_TBby -*e4i5E+jNm%LNS@HFSjX -zZw^&tvEE12c|t@W&ZtJnwX1YjOB#Az31wOYCMUw1wC;d?rnl`Ro!=7Wzw{texL%$dNWeT7ZbZ6RGC& -i-nc!)0qrmqAIgzDlqQTRD_o^eb6G6?w>+C$w*oBiT!}Ci|z-+`a;9Qu)(ZodHO&C&3Rq&SCIlLqie| -`C>=$R4Q?^Z$>evvsK)#n|9u+XA$aKM(aXeYL8hZc8B#WYTZG5cL& -IJX$772n|IS*|oemb9Oze7+VyOThD)|S~v(kC+-8vR(Ma{#x{Z?#2j?8WeRwS}nPD!x}*w0w{|%?7fq -oEziLF?DSJGGXG2`gI5EVir5b^TtZChAPjbcm%54BrTcqR$JlBk@hg!w<>{ -kORIC@g+lc}#6simlxwCGET`_s*0NH#_zO-UQmXao&O;ZdA|aq2%v!I^#~@{3Ova3`HO1?tKx$~h-bl -1<1X(54I7zU-$Lu}bOSni20+8mx2+8>k2)d+9ZmhY24EESS5}cUXO+X1kJX^ZdmuA)$4OO{FTZ^}cM@ -U(nBD`XuGZMWU%m*9;x`=VhX#NTjN{ycDXc`fnmLGbS$b~HnWsLOe-O`^e>3iU{$#Zxwu3bgCLwC9co -^!)-7nfqRmMiwUMju!Pxrn4=Jqc#uU1BX*wJD)FVK?Q0xJ?e>c|5$ZQ^aBGdIhc!wsUQlI8|$n$hT+` -kkt~v7%XAsCf^^}`%J%5E+S;^>|FZ*k0Fg8hmpdN6S0?MK%Tti<|=o{%cPb>$5K@hBy1=Doa)+oG@R} -WvYjT+7#O%kZ>M+)?D)k!)R%_oI(Y#!>`Fh8TA2!=AA$vv<8o`Vd>W~wp%~U+bQK(nNte%O##6Co$`} -Q$!^dgM8Ymt;AmlbxC4K$g;?0RRMl5cuw+!BGN3!i}_OLFeS36lbB!zD_TVH8QoT4Qv2y!pGRn-IZb- -1Xjhi1ZZiF$t9#4;7n;>%&Lr@6?G;Rc=SX0b25LBD6|=8|gY3khh-`@Q_g1@!j(3ab*^E|B*oxU;?zn -BI}AsPqOA`xJ<*DX(42=AQ%;v(x&FhT%WB=J<&Gp(y+I6~_5LG=;(hiXuN2cK`Ur-)gyEyzsm8=ATZr -5T7Gi8G>4|0hO%%0B87Crlhw6cHc2_Jla -fEEqWsed%90FVoQ{p$a;LG<&5-CZ8Z<`cV7O*vCQOa|E5FM+7lRA7=vCXKHf)c8(58@(G-R58+LO9c_ -FlJCr@}=NrWSGTTuM4hJAe`n?J9r{dw$gs^^SLRju5q=3N=-&)k3-THVUiQ7@4cq@ckys_+?^k&q_A4 -BC05mMpo%9aUg98nm{=O4x&YM9?N$S$**hs*L-%m(~TgZ$lNGvL9v_}S99A}F?>Gr%I|Ua$NNo -?7~szPDUZe9d^rc@or923Ky{614Ox$qF0f!ools5%%~cr#9$WpF5)!VO8g=|Ify&+T!%XGwb|x{BHyA -mp~f8MXCKfp3(2Q*ONT^%JGU+sB2KFGcUg^w0OOxyZZ9QaUQR{|b^&O4Xzn$X=o`2KN*oOXu!cxZGWk -7hOR-r<0tUw?P2zg8i` -~#fR9+tUa$m`5(7mj1*`+4%_9LyXZC-TEbr{FyDbgO%L+~YbJ~B&@@~MSt$uJ#7M?S#B(yWkvvFF1GgLq4m&`D}h{0V!t8=>)%61Vu -IB9yo8&KiWosuy>-+a`_h|u2a@{^0!bvBCUA-b$pJ~(Hb9p^sRDlmVe;^Xp&LR$4Ay#mBb*|PWN2@Y1 -+jg1YH+gUB|v`mM{`|7=R5YR@(CfK -X#n;0dYv74vJp%GtWd^9Wuu6s#)o843;b7umybEw##CebRqlfLEa0#`RGr_oRz43LE5_%az%ovr5WG0 -1+Fk+!U;Rk>4r%ng<^@crq---zTg9!v_d)xFc<%X8a+>75!gO<)}X;lJqS{CRWvFcX3CV5$V@_%&ONg -6pa_#|*EM6jqRPyf#nr`IIlGtcT@#b;uA%(9vay10=2a>fW`02lMq*puEnf`4LK^n?}Qg4bcJPqSnlrLI(E$9eX%``VAE?|(Lbb~y|X-vCh99(F| -hzmSn(h0%P*Bi0V+VlRR^0L+IfNgI0DVChXdLXR^Ek5NwaI=#sfC;CFwsxs-*H!=9i{jLktY3#Mu?bh -xd<|LpcA$jExd_^K;B+6K5ByqGG@Ya^|>D9b$`Yq+#yKzeTm#VPqj3+0m&3b!Pv;~|HfL9z&SJ>XZb; -@i_O+2<-$b)Q-T=syqj&_4^5Y{)hrrTVq@Kp>V7y4?_ -1aMAy8n{Vwv63tROyKMsnV~lBi7-;L*1&|fC5fl&_1824W4W<8zQ)|k;n?MfCOt>#MRaC(WjPX`&%7M -sqXM>Bw05t&Z0ABY9xSg+7p#fKir3ib}4sShS0;PCQ%onN?SoSrA -T1kke>xxu_D(0S^$dLr+g!?{bEBpR6IJy#+{%AMdON@fXCpR}*uU#okMq-f_R_wxqaU^oga<&7=q{gu -WxH*(pV&R8y&)n&bzy;=nRi}{}xOX$B-Ed7la|GZd2|8}voR~<*l*T=W_OVTv{F%M4hL&SSDkh0IL7W -oM>OMX766&+F4IeB~}h_5{(Fm@dF#GjtlegO(Ta;@Xfgz<5!Ukz$y>2bNew2D9J7G!kvw9vgGN -{^3Ze4GbiA4T3?dmV<3$j7P)JMN8U#|Se*AO9I;AD@c&zi9NM8~l_~So;5$Vrl&s#Zq0smiR-l^yRVt ->&24sKP;BCYs5Xhz_To$YKSzgcUIlLV(P*o6T?NLuOORqkq4E!0inJ|^t<=7w6bsaxzcG2JEw8+vhIm -)j+n5MsYn$3WXLyT=Z&2R=~s)rvTHZf2`T_4nsn}^y5RlE_ulZLUl|amVxgMOv&Ouk^jVb^mij~8xhF -jV)h)A>$?Dv-f8X?h2F9)B`9hQ*KIFLc$b(H*lKCTjm!hmTgZt3NRP0`}xh&V#yPhibhP=tQ#-ii9M9 -x@A|Wxxt`Qt}P==g2VLOWyl+DPsTKR)D_Umok1FXN1WjPwGvUgB3xX!o>xe&?jq7j -CMgu8IXMb@lDrqoJEJ=-^G{L!s2ukOY|0G9mQw5V-H|E@_e1f`;UX^C>u4*5o>(dY733`vDzYdIToCI -g!gcae>TzJc9l(M;`!aieh^U|>S&vIiseEIv*Pb$OZP$_*-yw9PvrUHv)z#)$6@?{A_0)u3S(FD*Y!M -AHmLSCG!}poFKKGrRa^Ew$^wsvnbJA3|4XvsWEDT{1r*QRD`EkyJ>3Io?GoaD@f|T37Pu7|fsN-s~^= -*U;9JmY46YFn`2J700$6}N>q=M97x-b3 -^Y9t1)NBM@KTpfYDyovLka-!{=5Q58!IVJ2E=W{xq($Xo{jj0F>v3!~&j7qYS_K#;oAt9xt3;=5(}OL -3{p6I6?14Ct7Ri2kLUqOH67ZQ%E_lQ-%jEJhHH72Q7vGSaOpgz*j?mt`&BX#mw}g{E#G?gI@3T_C68zjnnK$nBpf1zS;={PdAS2ylO-68OZM1HE)=pcz4SxtSsRT;Y))Hx!T^zv=1%)HYhR@eR~rs!63NmS?u1VaD_A7kV6=LMILbR)OfrkgLm`H@Z)i! -nH77QH#_~RscyN$%rZ$x*1Ry%62FYByk)sq`ZlE+h0rXrFGqq|E?7 -ZECxIdp$j634Y4D0qO?EG`B=l`Ww`d$wDCs+B)O3*a^6h;G^rPW|9Oa&eLoIlupQ!BXDj@{@J4X&)mO;PaVnueWUhW((Lq0mx=&=-9KnJ}-KFVa^=K@F -T7=Cn;fgh`gjQVu;=SL43ksop_`-O>*cFUnQmK{3R@Xqi4l8dp+r$=J`lSq9B8e?AH4#Hgrm0;oootsFcddB``X?$s{D@!f7jqT7U-ft`a|)Hs*1chd4e}ap4 -I~4oB3vY{*BCiqfvk8lc3jw#OaO;f2kZ*zc!&AONF1((O=)+-?=^D&+hN<+#c{}_xESF_pQ_v_^Vn|+ -PqL%WGrDVzvL@X=3P7%2@=Vgk51=J14vFOaio^K7EkW2nK|bBN==558kRj}wZrI|P<1?G*RSPTuO3ZB -(sH6PT}R#lyPN?_c{_$L49*B@uNPg)P^nuY$qA3Vg|N`ode*e}DK9I=I7amKq~iU>-rg=1usmm@K=lm -Z`aNRsQ{6nR!_#U&q{>ZenI8%`X&3lOj~8b{(1@=MFe(sV6xY)#Ed3_)GX_LCJ$hmafZueTmVpzZ8&|B6(F~YG)_sY(ud@yH+pq*5J>u5FM%<{R4A;oks*sr#BD)4EPRvjE%UcOK3Iz -WMU#u=g_S?lbVE53c>FTkG>m|w1V{ZMLZLjZlwU>z1NadmwPyfM&k!F`tqs3dsK==q_iUT%trtu*u0J1U$SZDZ#V8+ -3crliv~<`84+ys+!N~Xa=FDj?QseNZ=6ssn^88|AWbqLYz{~rKFmwo8{JgL5s|$&KgNkY<8}OVx@3QH -Ex!0de7Qfi<&{74WGC)zZ78-(zzyT=8JeAH)CH!YRo=DTklOdr*NoopZQ%OdRlt|Fk`c*c$aKqwpwg# -5B@WR#fS-Q7CPUW=`#lmJtckKc_n;wpZiC)ka(iw#*>Nj)BNRDbl#j^SbVTd)F;G)U;cAYb54>-NS_P -pu(|D;ix{U46y+RndzK)nn7FZf?D2vR%#?K^xB?LfMpkn^7&`wa{K{J0-$aS$9tehG=$r`ZqtD6nM5i -b$Lu@Iq2Y-vI@FvJRhKgTp2BH;_nvWG9oOc^Scv6%z#ccr1O6J`69D1CU_qK)B)~HH{TV!(RdZ&K!w4 -{2pTTXtCJGQ-B8`{FA2A1RO=J#??B{5T{(`Yw)w*!YvwIC>hX0~HUIOz7V!^jDC -`sRtyk-yxB`gvR!(^=Xv@e{wCictEw>gS&#Q|GW+O)v*4_sDNJ$>(`_Db)6{i>q1feZI2Xgoha!3HgLT@`!46pnl -lJ7^*X@|^LXks%US!Q>e6-Lxc#GL{mrEWH^kG@d!BPQxQ*8vve{f^8s$(}t*^*1!g3s_HJ;4EQc(sj3 -ImfZUW2Wr8J^mwzV~gd=iX$9NP9TGZRoamvjpklFg-8mb~U_Qmg)nmJzJ?E(jjF5Z`*jJPaJ&lpb+GvnQSy!Io-Q{DiY*XLvdw-NQ=JQK^)N@Hk<=E(K( -D%ppc+Y~N+P?aO3x%hk+Z0wfa|GPX7_}hbk32bs&76V4CO*<0|HI9&7cji;C71SX-;b6R6 -lIPxT=1K+Y~gTtfP}zG8SBW!ri`{9u;7p~Y@WM^2}~E{3fUnj5@05eBW{SqR*gAk^~(y#m|CeQKtIhB -D`64#b?_Y9XZ6h@-N@T$9GR$l5J@<6ApzgkZU@fLI+L5OJ!)3;HGjL-OzO^0>44#kmWYxfsKyMf)ni1 -U>2{x!Mw~KDr#AzJk1B~hF2=!QV?up|P>|m(DCCFgz>eE^a-4|#XkL@}0nz)B``AG0-|(lk1pbs>?2++)nVm -4~@hbGCDFi*j;62tomN()f0N&rqK1fdfHDa3wV!wYtZ19(e&C~xJv9CA!@eLa#_irG!<%PdNZFkYw=q -J>67vR|VtD*hfkpaIO+V4m9Pb?GUZmn2rnd=jxUN8D9Sh$VA>X+P6Wnb8N*>^yDD`l!;^wyTQd$_k28MDcB5od%-P7dLRYl&_`>e!-F70&^kt(&#_W{lPvgd${ -xM4%073fx*iPhj`{@xZSGA_{|8@y6w(S1`6g^BTW!aCF1+@fvd-VP6eaQ8!Wd$uW3U!DYJI2?>a$c@n -Q|$dZ#?!ZJxbCZ~-qy@xB$&xv)0`E5h>&Ql|Fh(oA -MYCwYB?o4*bF(=6B@wcI38q)QacNzdOVu!sY!4ofQD-}bAEO0+7%r^6lMD5ofCR|V#%mSfX9-X%RA@i3N4^8tgM;nEFJ|Dt{ong -c&>#^^v2nHCS|?*Ja7BeMPKNQwT{{`7bJzpO%&w3cHkZ6(HpopTmW{S*I5Dko=VNms2w8c(>4)s@ROJ ->SnqD;sbX~bL+wu{_fNs1_H<7EzwjTzHB%RiOjSs8kr8}09<5Nut;{hW^0@kkDL@x{x)Wk1Sz%_1gca|=?r*gWryfuVC{1OloS@@6Z)=Z^kou-m(sBjf{htI%E_idIrGNTVAgR&&=U=#yhBFdP0LX#8IBA_qyKh -^6b49>W$KG@!74(s_^#TH(uOfldZ?P`~s%d;luRh_xOJse|B~Ht9`!<@cgvj59wqOBVYsraS%o*1VKm -``elY0#*em;J@!2Sl=$ci5FgEN>5zX`5(Yf9Qk14cNyj!KB9Lt{z$xLpXGhf{#N6 -LF=A7p%Fw+~|q^61zB|5AaBj}NeczOVMnw0zxX-+8G={`PB-mcAn)@I{VCQ+~1`x}xiOrLVo2+&(#_tA6xoI_~zxJjvW+kRLZL?oWwg7aV^y -h-&2bF)`(O12+?#a3g7iC0fyi}}EYCf-Oc3!>+MmddLa;LHi11XpL7f@@LiIblA##b;zmJE{)ot~|vc$KkF(y-Ic5C&^c&*+U -R(B4GG-g8Oy6j!R+?&(ruALAu66&+5pVaC!z*uWk*e>_A1I -zh4H0_})VKGtKm_v#3AsN&0y;;tgGB-M@$<(Q60|P|uAWoPh2TZ2~@yCk<^OEBQZZZRWT#-zFL%e%}a -9dzT&cEM;ck1BNs+V^qwXQ_rd*n)XRj~*3@8DE5Xrr{DnsabYTi5#)PnpQa$gqOBN;^N7J*w~Rr&p4i -!t$$2$h{RS#+bZ&QxFV -@6dh%AIWmdicdQe((^^#+$77r+siYXsX4OJh{H>M9FyCsN)%~QKXDyoGXrp2oFpH3D9*_R&LxWyzT^4 -|s)Fie=&#Cv?Wu1R{FZZaN296`f?p_V|IBG5rY!#={by=W3N1dPF7^V^^Bt6k|L$#(@r540W_fuGu!K -<;ZRZ>MmjkJTeo*Uc}A_Ze*x6rK-=oD2qth^p?rVVxY`^nu2FnByn1+V$)TwrWkaDhQIbl;k|q!mUf( -4M;$39ZeB0|CR+yLiX~bKyz^qseyRigmwG9Qu`v-9c)ApH}vN&}W~b4jqV#OXX?_mCtEwFu&h}d2a~Z` -{A+7sYFwoEz>PhImcUTl2cLY9l+N~hgIXBC+3!eobJbI^}Y65mVZ?r`IY3fHa7got?9drakRkB^59%D -poC#~7pr+T(V@NVmr+OvI=0PQQQX7T@DO -g_`{2BwNytS3bRC3Q3N%@RVtV~*y=1xuCtPh*|oA61fIWq;j&NoZj3BzkpH8yqPGY=(k3po6=zVmW@% -_Yh-btTNo6P)%hg;&OBl-A2GxKCswCN%LnZ@2X>irj>dI-k*Pyt5XdvtJWaM1qBH(_*l$eo{uFkCKMb -bg>O_oM2z=F#FOf;AEo!)^UFZ>kirMoJs7iJZS3Nyz=)yp-jS(T_vrA{&%;3A#s_YJJyGr0l^`X0Ffd6}0RdG -+&RtTZF49nM|5UaT9BI7QPal2dd>wuG4=>uI!hRrI}3I2bhwz{7` -Mm@9+g?AUD@d5cz?~PN1WMu*PJ+Mojs_1VaTGx2Mk5E{79Za@S(Vy;)|dD;0!vtmXC7EeJFoPk3?|0T$tp0?m`Mi9qAkG-0So&{ZP!?e>9 -B%dRb)C)mX2U8QXiTKWQ47HrO&IsQIc1E|>3_1ncXzaRL5NUdg-P1X@2z6z-xQ-jQ2&&SYXgPqxazT;bm+buR#*r&0O~ngQxJty|wFA=pJ~E(+%2!_H!m;l$C -~R03@1RuDtCPCwAV-{@!Igt@vm?U|_tMZUo-XG})igoKP?3Ycih}I5i7-dy)ymV#*l+uaZZ3s+?Ne*| -KyFtE2p+UnG$pNPdVP=@O%)pmX$-75sVU9vZa_Po0(X!C$dl1RA^$>c?YiVH)9BJTUHP&u4MPQi7x~* -CN56&Dtn~87sHeH5_^mL~p}LkZ%=U&nN+)SFUBidU%H|cwTCwRL*pJ4>n?6l~{qZT2hEF -IW}A8m!#C?Z?Um$F2zHhHPoqKmiPR^OM1xM7=TS`Q`kE%`sncTsz+jRVJo+?J7>XQE2bn0lXse@rT%I -<69MPC+blBOuwu;mCXJ+KGbRaaGwMCnkg+$wCRsBsLy_Knga0s16!oa@dnS}7uup}(_|o8H0fkv-n7u -r(SDb-VA2xJG_>FzKiT6akd_Si*`Z{5T2SfG+?nS7JGn43eW7W$+z-@2Ixp$+I6-6{KbL*K{U^uKfVu -2v;=}!n^yAnNElf)bC><`x3AsOB(LH{K$B6}!PH5&u3n>i{=6;3!O8MuE>VAcN$otS^ler%w*$=3Wk; -Nvv9VgyT#2+Jwj*;&B?YHpdjrcQkj#lU|C$ddO_}qd?gESk`Dow96%h8%i!!+m8SCjtS;&BTm&8x?m+ -pkx69B0mGW}(>!tt|A57E?M~7=*r{Uq2(2&dU7+pAT`P7p5!+raWLP-Twk%6N?u3Ss>gW-R%9J2TFn0 -HiFwN5%^o|Q*!|Cf&0Gmr1Br_hD=;6eg7^j_LGqwTr60^k4tx-N4dt@{n5V1{@U)3`2@s1`Z5pyMxli -hM16&SP#TPc{d8GoQ~EpRQe57?qWHlLrgqrBaC;QFN -rYQl1$(*!w0h>Qfw~6)xF9%qMpXB!K=}(1qEvSoXf`XUXjVx!LA;jVYV?^x!eY|Yjf!u1&jK&+B#Uv! -j5`fS8<4(CgDgX@j>DJ~Gu-XbdK044vSXiCxgERAq~%qRk*ir1U3(vasl%rZG8d^d7_sA<^Q%EGeHbF -9aCVVUNADY*)KLJ3 -Zi-G%8zrhJt?bjMK6Qm_h;@U8D{Tjj!w>p!pc>~{8&ZB~B*SI&OtLY&N~7gUQr7;NY?JdxMMHOM{N6^ -L=8feKn_czk;X6qH(;qm_b#K?>pJ!oP_}aSv8_p29$or}KS@hF&aXv3oy{3fE*itvrw+r%=Wo@4y~zl -}_+?A$+wpy?={ttW4$0sUV^vMa&K*6`rrG?tN00t(=g#HlPPA0=?n+<{C$eVK?4jg0sLO?^F&;W-eP? -B>fQSxgxPxaPl-ReAZ}4{4=@OF9o@O=&1U;0~`qu?Pa=zwE>+s3ZSLNg9g>5&#i$s?pV^oYLL10zSYvA@pAqX}w%eb_{Rhv7tlefr6Zf8*Hil!mB7FZR -pTi;uYZ;p_ErS;WAj;AszPsN%@e9u|?<5j* -X0j=PhSI(8x5bmZ4h%6m{&&5Jkux~3ZczuO;e*CWg3UWULC%|7sCkvCkBpltiT#@q0icnla?9WGWx -hDIxUnePm;@3yxKZ>R2`I_I_yHc&ax+vw8^bW7J}f`RvStl>a4 -`ofCoM{{;Cv@U17&Up1{cxo40(0IE^V?@*U5awX#sR`3YQR5pPlju?dZLH`U^}Jw93JOuu&lll&4e-0 -J;QG~lR8iLyBdJ3dzsRA<6s?!~gy*oYBZwBKWMUBwDR6cjJ9UecM@!b_8M2T+H%3P(xV< -!f~ERu{?njf3Sc+%AFh_WMq&V6&NQKKWu6v{TkxLe%t^7%x*^=qPX%wX{?K=v`8EAV$xd#^9BiB$u6g -3F}1&@FMoc(wt5;I1OAOXUZ*MANzAY_kP3O&8OWz#|}`cUMrIm2Z?k(xW(!0J~Q>izUS29FBk3#-`hS -#B<*!`POUUg%Zfq}er1W1i>|oO10w!1G<`W=4OAt)TyVzLqt?xZuO7v8{R_%S6G3@h^8Iz1xgd``o*A -)X(^jGOwFh8HutN#f@?hcYN(ZbST+px^%X97|xLH@Tj8d00GfwXfZIFmTTBSt2!tP9+%rN2vbak6kBy -WYxIfu*ntpq+|g0+L4BW!(GS;@C$Ypm#9BFP34CsU?H1h#InI_atDR{(^Wam^~L)S310^zSeu_l|J6( -K9*_nssZ+DSy=z9OF7H4{w8}$}72t=GFjW;q3bWzF9YJf0o)pn26IkE%{2q-5JI2{)iWEdP)MxD(>SF -oufJL>slf>(w$lEiQH?{@qunshH|Zoco-8|ptn@r#+`0&f!1P0e%eE2LY7FiAu8V<9oTZ-vGDSvO=gT -|f5mRV5<^r)t0X7Zf`D|l)iBJ;&NT -vSaji1@i-#g?x@A>8KKP*#I6o^6;juR*ZQXm8p6prqjV3L3#f*^4cgfQ%vI*fw7&&sr@kcfI_!a&)j2;XM{?M;ORyaTSUQ8T!ad^}qpDK0uSVuoxaFBnK)L*hA{YWX -iFW=aaMa%w)f3k?uBx}CiFX`*4Y|$^>EEYi9I9Fw)Z^=&OXz7W4-bvs+PQ7z~=nqm=zO~v!Xe$?{_DE -8$4!Qw+id4||s*J^Q7VN&0cyjYhuNWC34&vfRjD`_R)~$=!R04p)55-yDjF{!gR&4+ -XOs7*K!HfBwt%bM<<{-^C)u#unR=SM&%Ecvfr$2J(^;$|=Ri1ona&ZsI~*oMpiSJM9)TDNJNK1@}Vio -;St6)Ho(h&xJ+=4+4lwuLYzaQa00GQQ={2xGZ7r!uQM>=Tp(v(`XndJ|Z|oSiPL2bIPeIH9y&~)rkFuyL%A&M6Hy3eQC*HK9`Ux91-k>M>J~@SSSJhFT2^Oqqwv!+Jt#&1K2F4v~$ -t^C2%ehHl@#2~dW;`ZmPNoi?R%Z^PNb4aMv)OW=QOnAft%*#xnF2ipw@{!jGoo}un30k!cLK4s7h=4s -ftGulNLZ<#pJTjY+8i0o0y}Nf<$>tPMY%&Wb|s1t7+cP6A+`4>XW=R~b(Sl^_0lVx%yaB&B%39qFS<- -ELm}V1@_DDJ)*{HveSibvY69_~Ui$JXy$DS#>LG%P{*kku_N{%(*l6l^rFX}|32?M;{knC_S#D5+(ux -7yu&2*z!Eoy4Cx0p(?hlkjS0$4H3D7&iB(R7YQPn`wD=<)G5m4f$q1ZZ2?^IY -l`C3B{%TyZ9*nq!d&)>ECSV>wHwZC8_CLp!l81z%aC&e9J4ReyP`E_;rGc|y8EwbWxD$lJo0niOU>ok -PRn!lpzriM>`^v>shV-nHCr?$&wvmv^Z2x}P8g%yM!y0#)b`KS6YxG_hc>;Lku(Ih7?1_2?hz$-Qbft -bbCf|fG-U|DM16A&`*6Lx*PJijYpoh|)|57d8Yk?^XLg^aC^Y4Ju=AcVekdb_-Z6jlS`)rKB|v|-tkv -Sd6>@YJK56!x`=^0g+2*Pg2KabrjP%|qX6e3(N2fdTcpF$Pyw}Petf(gfczLfO3y}UI;ez^Jv21DkKJ -3U5xtJ9a8{qp&m?KW5%UH_wVBR-q5o>GQ!VG>|xerVvsWq=z7q0iv&V>AYXSlQ$Fd;`Slq0UXTT9Kwf -;=XkwwHs(meuIRe4CYiG1asKMCHtRt$~MdV3O;i^Dl3x+Da2Nr(r|9?Y!AS#ISMqNbUN1MHBXhpgA$& -yo~DATLJqDBluKBwPu^IHQwO-KKefIzL_`v9>pt~G^Hbvc!S>Chx$H)=LqUW-%q^o?-L^Ke>iiwQ

)X0wmvpsMScI5lQ)N(-fgGDL;bH;{x7lK?)mijjsD+0yX7DAg>M(Kzg(z^$M= -3AH6NOMtACS)aSSfFA%llz@K<1v!rpoH+JPcZvbE -be35&$w^LvSX1w{d5_|9|D(xp9Tl?$Ykx@ltd0!z&!pmCQ=_caO`M*I7|f(@y5Sma)Ny06t)2D+0c23&{iERORo)|dh=pu>&+cZOihT`WP*~h?qh7AD^_^D8$;QraS-3>Z@dTzWMbFLwNIMP -<^hw^>ES6zK8|mAODKHbBbHiMRBJu92{+pJjQb#cVFfc-6yMo$apmAdXT|OXM%)8Iv6IyIzcW# -#_f|u#}Bn?f95k&hplDzytGoL#U{^@z0GmpZ#R^B7Z)=8kc_Fp1h#ngb=et64;bU_I64=XH0d!Q*ELr -?0dr?yTFb9bd^`X2s$@(oEs18Z+q)1zOA0qnOG6`q--59@O?V%m>lqd?j>fOdQ);avj%cysz`tK5L{k -EyeL`cR1TE>1Uus8#_Zj-C$Fj80C33}iAwD57&k0)-zK)o%L=-`7X`l%H<*xRP+r}gv*UpL9!?ua*f@ -u|e^(S-nT=#@IVFH>MVy6cNjok@8(t@%$y!TCMD9zZ9_c(m~#SvtWPq&!5eG#fbB$hHxB7R|5unt -|D6D0KSTa1~0pct~U2=_*_-Ky>JA7BupyhtO0EP8cM2sLYi2{T`1G3(qi(=l4H_tX)EGRn9X`&u14?t -Mg3{uFnt -S*kG7U2^sfSbvn)yHB0a6ir;X=XRE6UBsF6p=*6MLqzA8>IOdjS*8)-BqU-k(=>16%HVO3yX21;uIH1 -BlFU2NF0{97Y;(>AxCP<#PKWW`rQ}jaRn2sw^3obV>E5sXRfl}tMOvK=468CF`^R6Cvds0mKuw(;ynZ -f2LE%4ss2opyrJ*%U -sCIeJ<4Z`o#grqA^}9=+pUVKW`3pS48n%II2ifnPWsYAMGH?o3%pSiB!co@_rI8RDaZ`al=Df#QUttpxMA*(Ea4h28`4eiUrIL}OR~waW}Bl&{|cTSy(u7g2r)tNzti;Kjs)>(VJZHN$G;}E)WKQd?6Y -o49%ZA4T6lh}n-ckvN!*Dn0v{baJJn2!<3&b(#KV89ISw7lm^%|C$d9VU$NMZ#j-+D}AHNbGXSEzUi0 -n?j$&Xx9njH;5D0VE>Ch14o{G+M~qMzjJN8yhz^%KM2JYl4|9Vvo^lZI}wXUVfTU$$e1%E -fhJ5$%zvu61TQtz&-zb~uc`MOB6ND={y1d(N-y;B)`ovWt~dnB|D@=FunC!5>Z;H?W_8A7}MBp9WZ3* -p2)ra=5(CEauee4B=8@xBuQdAMo8JIt=AqRtolPo$evQ?EmFEHb@%1KJo(Cl}67_4R>Rf2_ayHk+w|16zOZ$wvHSj1R&5NP=$*>f27LkM*IG%ZaJz2|9&b^d;~*!YRv6_C?@l-L>Jm>u8{aHHg&9)=sO}+pWLlStI~n -rW$~Q0^@s=&roAiWjgMI4fj+rx6d&MBr%+K4lo;H0aagH`vtpPB0u5&m)FaN}RgPtB=F)PnLm;{5+rv -+l){&R=KpYQs;MdDYx{m?FfqXeKZOWtR@dV#R5HG{ILD}Yv<~p+&-m%HI%Ski*fs}b*fJ$$6&c -!WtQ*l5}p|xCD30da=~l9tau%r>D>Brn?xp1+aE=!0dA4^L49wNK#nyzjdf9VWByp3wEuUpPjM2vtm2 -JMziTV;E)OP%`qg99YNM}(Me6MUx}Vx3j*vDQd9q -PpNNoaEHB@YF;2V+K4Jn}xd$Px-s*G4@{3YDb%JFIgGzrO|y9aO+$ann^#G$aQEuJ{*-arkMUwPmkJM -vsL@foc4p@3%!qk_A4!Z`dmnmFM$DKU4U60_=#dc5pngrTV1cM~Tpq$9kw2zqVUB3eXxs&BcG;{HPRV -GELfgsxpxu&9jJTVPgWQOpIR4A=2|IGPFBd2n>o!TVMU~@g9n*Ir~jZ>(Lxs_$iMh`~jI~t;;uo6xj( ->fV7AA={*!%hkURvgwI^cfjT>$F6MkIuhxbn{C&l|OkPnb5f`Q4l#W!qwkivfH)|k&EZ^aya2VnzMCf -{Rk65mu9O{JCp4w#?7DDj1L~?#>JpEHi{55ZxfgAg>Es048@Zd7P*fC19u~M1xi#U@+o7Rq7$8)cIS_ -f!hQB0NFpZ#CpmLU9z+b4a`HYaJhTDUesrm(2c2rPHIE{dm=#T>jGX6u^M4I{=Iq!ST&171eoZYxUe-lEz?k0-@B}h4RkZ_EFvE%8!?Kk-{8lY_p)l*de*@Wk*%c`b&a -aw1RE$@?pb1#rpVGBucnt^{?YE$xOU36AwCaF0d)q7f7}4Ib3?JgeHsGPo{5nAUkgy{QNwn2aeLdUhl -q)=y_`JvH>63M_QvVSRnC@H7-;)O=NV#U(L)Q{#vjyGF<@R=Vf&RlIZ@g`cdr*OX*U5dpa~=ef`fOIB -XMbx1?wnMSZVQKOSF=5WD726>;$#u|-_nB#f&x1q?KA6}f*@oSHWcIe3CL+^mXk2bp_-uo;9>>CsED0wBJVy9B~+atb=5q -W5c}c^3V%d+v7;ZXH`0%Ki0PAn -~<>q`;(%RI2RB>CrTH3tL-8qr*~kq)rICuI`ab~1dAwIqLp9Z#+VN%qo<5jhZ|-~8P -ma^0su`%wX?v0%^Eh>Kvy^0IYaJjgTZsj?p@C3{HPqqy1YY9T&G!wf1UMw#Gli`~{Zq|eWw2i$71r%1 -xmQkBC2-mxQ^`w489QoAFC%7HFhJC9kQgmYWsbXV~xw-mnla%gJRPY)nY7W9tWO*`>5eD7#Fisv_JS( -^S(pD(hy?H`ZbZcP|HJ8*8Exdd5;^YDnL9NnI63Ls;EHJ2TS* -F4uQpPe4^9(V7Sfn7gLhKt=tgaf53L74;%EdnuQ|WA}iYh!LJ5wKM04i12t5QX6ziieGiWX~5thu-sPly71tf5Q!5cD4`I=LPt-S9{>uLNN84lJzbw=I7EiEoh&Qtmjsugmxnp)Z-@AukQ^k;$=NIfMzoe**ZH97T -CU2YT4P(??_Y7>89I4msLe6`y^sQXl76>n;R$Y6v<&(DdCge928t4+$Ydh -M*N99Pba`aYA<(0{NVeIMvaFS|C1@#eUTTPYA^caor<~l&D-h=aW0gyJxly`Vb=95%=F1`EGB)V2jV5DJ7a93&_dBPncWRRoISpA-PK)2w~_PPaf9Ct;L;vEPU-fh@>7zLe92*FM`B>-P -4Y_;_&;t6ygYKe6U10xC$$umG?^spwkzh^^K6dz7#Y -aKMQ6fSddI{ji$20l3CLC5*#F6RVuf3mlzwk~Hv+O9}1@oh@1pRbO?VKw?4_*e5`#t_+R%P)iDDyK@M -g$*ZVkPxxHPka^C -d;vV4WasAIEUbyE1duuM8uAKCJk;f84-d(zfBC`#pUx}k6_oFZm7-vk%`vK2XoKnl9Xj0J*&OaVZGknyI}1}^R!DK%ctThqIeemrUf*Hmk%U{?xhUT~W3QrGdJNM<-x^> -X;rRcqh5-QF2O+T|0TC8!9;&kdGs2z_dKqsCkgwo6j4+ftw_~1@I)%fz#PGzb0r-xcE`(LriKn&M|WL -57v!3+0_Ab9)PwRgJvmuD3F$q+Vu%YsSsi}_7*{bc!%*( -h%2veTmihOIDDGgojqDyK@$$yPZaBL{|9s5)%7OYYRUo-5KxT$9Sl$x~6@n*u73JD!+^qN*4OCeSR+Dz4&nF;ZQKq*i7 -y6$^jY@Es7{G-5!zEcbKu{gDp}009L2FdHczj-AJFoGx~JvELD0b}(&fB_4Kk*W=l0$k -J%XRlc1uC6>f<;-N4>a(E5uDRB>ya5qmG-F?Pn3Znlq7)Pi34=wmo$mdh^P+7K&6V|68D!GpJZLfNjkv;!a}^Pqfwn;Xf*Oq*iw(-nLOqL2ZOXLR1$<8{1nN^md| -gxTVT;Up^Z(dO^pCQ*T+YSml#6$n2M+FG3~J}r)Jj0OVte;-Uw;NKaTX&7rH3NKd(Grxsiq#Yi~G(|T -IlO-xmkU^AJExW?34b+i6?)&2YPNRh~uh&HIaUY;&f9XNt`<#)3;4%*acV+y3P -qwTm@x8rUIg?FMH6$RF!zXROlconw+_a^D;P*FB?ZVND{ -|9$-B%wR@g7}4R9|aV^3t++#?k5tR6O3Ff3W*USy|?kQ^!Mg+WtqDZyWR9jV4}u=LDpIHWzO{~T2z{| -r@q|FZ9*D vwE-rO0tp;~2ylZ_duj?ts109XFoY2ZOu#4%Ap}TLFhXJEHwgwi>`C`>OO)=#di+CW0 -@~pa`JNmBBEM6_F5dZOuYSA#iQG}w2U6<>uOjkYyLr=RGvapyd{4o6r?Ikk?|72G+m^EJ&fh~-PRm3dMgJRh?g -6OqXQ~BmEJI^p5C3?yiznRQ%Nt{y#uf%U@8{J|qDC8dZHh_#Z}9>Mx_Jb(v5jM2UwWXRTV^6}JkH5x< -H9OybgPnZR+bk6rQ@h+czRzwgTV*+;7wAFiWqD@UO-JM1EL>JeXaImL81kQNrSvt@j$y`nt<;jR*0W1 -iJ}O9(}P=FgEsM-8+Fxnx^aL7ZlFDP>~sUYgizb|+u7`cfI)Vz|@ln}9>;GckB}6i5f5ckbpx%<%h7C -LA4QoJc8N?%pvH#}i-h=azb;(tRmtj7{#gHXIV5k03e~Z#`X+;PH6BMm}N_jR-yaORH)$BB9|DI8J8? -^*u(i=6pXL7!Z2(B*B}eZUTZxpQ`zgAEdM!4B|DRw-7(vlOUh*Sn3n#s-D|2!ub(#T(0Tmhq~ge$G|0 -`ao`pm)0FrU!X%C`PM|y14zE%%I2(k)I^}w<-HPzaGs$@>oJaX!wIglvIG7VyU1HRv4NPE -1F)oe0uhS;_yx7jzeQDZksB|ideFDaa+;#hx1NS{ZugYM-=HeaEMPZ+_gy2+AMTwl5C~~-`;lQb0pFWeRIZQd#OH}5GL- -XB51zj=&!Lq7!C{J}J$s3=TH}#UFe&Irm3T#`i!oZPB6z1LzemBSwru)(sn3e`Rz)l3*03?}^#bm*|D -cbkUBdPaBt;9CY{E);!}jY2$9syBz*%f*r%%@`oVCrOxW((7hc`c+Pl0d+o<}CwtYpF-vx`(a?ZgjEY -(GOTHPQyw+B3yHxuk1evU%wq$avJTsuz-DX!)1n9$f&Cu8vPJaN?1u<-^ivXV-ql!4YRU41AP_?G>d! -7oI$}^ZiuDQh_t__O)YVVV>w92M~p`pKjEm*mcZNJw?!|Z#hL*JA0z-sZ=_On@WOfxSObpFVepd@nn%SiCwDACW%Numdf)9x1dT`jV1Udw`ZvJ1!fnxEo@&qx~*d#9amRH5Q?n3~}&6ui_DnG -_?i>?vH^R390p0&{)LZYX72rPLiZuynb>r(PJ3z_NW@J&y~#ljl~BZBhtzkT=ND-#Lf@7x>c6vn$_t> -j(vhumXR6JV|*i_g0|a=s|DA5flI_@kC->&-VI}`|vCpGRzQ52H -%uNg-F$5(c93)Y2gIp9s;wS(!NO&*8?JYpWK29uqw}5Xzh|GV -d(r==#4XmMWZJrJIY{+Pr7>)Lf5(@6}I%vK_vJ8CVE^rqKrI20O97}&k^6#Lp4G?bdX-{0??=E#@SK= -X)op!Tbx!-`=8{4-Nw!P)iUUkIYUFi_|9+wX9r9qT>|Hk%4rszFbeV;PAJqY$grc1pG-L?29^kuM^n& -@MIg@-M~AdXy*^`P}F$qkOFfv-lVyUxnHDx-ejmK3ULp6WJocIu;XwLGl)6An6WI0ymW6Os0ly!T1Z0 -H#LO+GV&t;h>R^ytFg+RvVUK5=4WN#=S{=&3|rRH`k9;PFtPyHQ<+u3x8JXy@~>imAWm+Whji -|GaD9pKSZnu6K$J@N*m+F2t7W%c)2>xi!*lwb#Sxo~f=y11%0YM(m0R7TqD`K%e8AvLZfJMlK~^`bxS -^{Y!RycGZt32V$6xreDUa@fTDavm^oHQg&6(^Ixgzg9TQS)awxota?EWwH^-0GF`4q0~Z26#bt_&^qH -}8a?owWyaLTL(WH?`X^w=Pi-Y%OTGTYidy}Pr4A591UCe!6ld>nvbY<&VBSmXN3QyZ@@ygs}( -5K*sD3;hj4b9uOKrC%h#@UTwCQ;5$NdQ>M%@p)BxsW(PZqdDbI)Pi1PgCQX!jz)Bmk}vrarEJr0-m=3<6K$gz|IhJMo(=C)Xk)ur@%0!!^m -VWG>ewzbhsj#4B3l!dfaQ}Wwo?d3=+Pac{}0aU_B5ZTiLD$t`xvvOZgmcOj56_oro#d^9h%j)$4(P!s -RIwip+4gRb7O1`_QA@V*u6a-h_>}P8W`S0lG%LUW$HDEV_Ll_K{y?6zNjSHF0iqjVpb?pA%1cNR_J-a -(FOoMu13$2IJu8@^lBJLR({%Y^dPgVZSt7^SkZ``JZ%(Ke^bCo#L01s4*1VRmmw50zneP5CVZHm_$gF -!ZzHAp)gLo)#m=<6p1(AbMt}-^se}PNJgZ4aRLDlv$x`=@8;ZZ(`RyQZzzb~!@%}AB;?-Lo4oz -(b`S)2ag@!erO7)XK<*BAb5aPni=%wUDSoKnyo*L?vI}ExUJ(3n8NL^gp!g%Bb91fnUc1>dDckCMO$v -Xjz+ijDDu&+u8_@oY=v&hp+0zz3a*C|EJH-V4!ztoIbSRMges*P3Icl=P3N0bBOAczQz8M2k_xtl^Evg^jE{6rK?ubv=L&&GMFcST -sPb9U7p(DW}V4`f{>qI?2$B5`2YpAoC9Ht=2$w#rhhxHYG|_^tog=yi^bZEu6ww)?s{bxN_lHfFE!wF -I?dg*JFp&6<`7{3rbS;oKQN#zb|hIO(_ZqR*v(Hn3E*2^VsjE_@CFhMQ-u)%7|63$=Li1mR7yo3Tzg -W>P7x}XVMPUjd(9KeUAc|AOWvU0)sG&Z7+Q@r<B_gA}aE+lmsU3s&Sw|@Tu2QFa-gM8|z -A5x5`b`6xzT<{nT8erL7~nhmp1|K1;robV0@=|&i0^d5BzX@}&i7~`Lce1`H`BSTxc#{^@4?-;XV@N? -K*%24Y}cpATYC%HZ<%Jhh0Q<6E4(wl$veD2-|1eM*h&1GNyVb~WaIdEEdOCtQN5#z=(7Q(*M7zxiTQ| -FLOEHpXtX%?%|=*?JuAm4v5sLtnO>gj7`P}lxq+9N -;Bf4-X>H|n3#(}T^6Z=LGfe$HDxn#C$0hQV3l=qiIM=R{kL5+uF -Pj69BaG@@ea|wraS9>mag;5>8eAjmD$HA -fk<|(N1PSCN>W0pl#tWpn!PHuH;^dN&uD))8bGTXEMRl~(MZ7i#0T&x7>8b0%F@Tq(*X&@n$|YO{#-P -kL=8D;pCEL{ci4r&^l<)C_Xw?mpqiR=tm9_+aHg8#cmA14?*^!vi1+b^~#I8sD(BCY=2>fcjeKT+Q9- -(<+T17Tr+^wkaRZQ_F34qNTQWw=bTkWxXjYBU`hsj4YM5!cO4}{jZ8x?tTTP<6p*Ri||CtlSQ>nZWe= -CofZpk)FKr-#PqU!qBur+f`TS?Hsf1|84#DDu{(V{w#+2@;hG4$s7xJPF^C^i$|V+6fTS@!lM{Rn?q> -nkiZ#6ID6(QC*=BkGnZ}sV7HdM8g#PlS9xIj-F=Ov4w?<<;{TsWPj3|NOwG2#?LZxEEff{sGDp?b_R6kEoRcdICqu2s%x&4PPev<-55twE(wr41Go3=Ri_(hCaO -i71<3R8a~L-Gs@ZuBsQoW!5`Ej-{F^A^pDgtEzVD0Z;a#*u(arCH2)Ow{n1Tp=izASI2qB3gI0~WP3? -6oQoODliVQ6?yD$#&#qxxK=AE`Y2w|JytyEf+MUc6bZov4Pv4v{e3x$AJQebux -sy`+K*L@CI^B8kRQ4U;w>i7$-M_ZE-Td7xy%Xuloe;MDxeE+s`<@Z_Jt7g=i>EtdEZS?H+lImSY@j{b -p?=?@Blz73kmWncY+E_~Axn(C?7d@&_u2O`uIs%na@KJUG~vbtibf%+{t`SC|Eb{N=l$MZ=LG(Z-`m| -D@NfLy?)HFR@O!H&2D=8gxZA_E0(aS90Z>q$r&);$t~8HCdH6&hD0>{v`662689yXPb@j~$sp)+-cTW -f{Y?ct3!w`NE6xIQB((`xgg%sADZz9+-Ygjy)d2{OMA+gv3U&Fiq7Lq -t)}IZJ{?z5ai{cs?$ASibmici^cg{2U5PMvB!OW`{9iYkA6r^K+9~v3Sj~U5(qGKxSF3zsH&G12KoG- -7iXadIBnW~+HoLh`Cj%iIhfo;#cG87>_xU9Iq|;r)Ki|{!F}f%D_pYN4!Vburw1It3JuOXld%KS{Pxs -vaW}3E3w>V+XxV!}+_Dl!)kt4hPckkZ)P-^&I%z(Yi2gIAEo4-etMfq+k@npBe#M@l%d6ax7phWSmgS -*Ez;BHvS>>aN}J11nj{T8NtWQM%sB8vK*B!9>Qx$QgJBvSCv(Jsae@eO-zmjw*|5HhqpWpJn<6j|?9I=jBqYcVq0;F6xx>QfMl~9#-L){xBMi!tP -i*S1KUAIEP1Bs$F!iW=UXfwANz4>|5nYed{$d669AKG?V3em!ZqsQ2@#X(XI%pK}>K7MHN+865DO&-+ -!hH&iAcTnSXtJ>Kn&u?$QcwosX5LF1Wx@Vka+bIDSQ#)Y!n6-pi8*e7D+$ppLcb7{vE#Sz(th+4~%d7&P*KQ4NOa?#kG0z+o738}=f7x -~e<2Rf}9K$TXGh8s`Dhb1bI4!kT(56EK;`|QJ$xhf5A(*9J~nnm`-z@;vPhT{!a9V=2n_6V?A8d;IeV -vpt;Qt(YCmcm{ehtd9q|TNAUyM!D+6r%7qc|-;uYtOfg1tvR6>N#_)ASsg&50@vfVM(9o?w~F+HPAe-4>6#qeG@Xcw{}L6A53`c?A+*Q< -%I07(&)Y)X-~=p2K?RQRNEb-eL4M9)(R9$Dz-=B>q%casn%>9F}8RFS(D!cMnW!+;||rA;>!NPYUJ^x -Ur_GD6F%>nP8@XR648wU01svhMm&Ht -(*y)X%LP#tS~zFI>3PCLVR#w$5sx4uox=NhA`ZNdZ@Nhuv!@dWS^qTLC$M2bmAE_Ufs{+sePQvn@lY! -aImtcDtQ>yq?%ssElao30quSfKyGD9}Sfn_NT7qp5- -A=HRdPvyw;g>Pyxgcnc(Jd#?hOHN{}`%4b{3nbsC-N7?(wqS+UhAMOjl)2B1$!D -TygQI;p~?R2#PV;(?-}A8b%R8rx5(eNDANI}xiWL#t=%>f-l=Kbl6eA9bsVqZMoT3wU>E45A~9 -dAhCH6wh#(8-l0B=h5ImijCEq^3pNxP<3;c6q@{SAmA9(=}U4;(LP&uc65la^QZKM^C}sR=%}1fk{Qd -)bq*z5dQkj2RnGR6I6IN-9dfn-t_tUgy-soyWv5p2zzYq*G+ez}r;(W%k&j^UV&rBTuNM*y4?hjsSY6 -dQ{WsI1|3>Tf<4G+29kT8}UgQ&0`|$!_l*&Me0;vt8VF-bdFi0WDP8)#`9Km3e+zV$2^d95-7uW{HJI -spT1*Hx4Aa8|~T~-U|B60^x`|MYEuZHFMo`$9Jchfq#6M^G+M -|b-e+GK-=--B)NyU`um@4hX)%YVIF*x~n>g%8Q!y>pA$Q_|bc|+4>F~jcCj65GYp -L7fc(|?(+t1u?_JoHNqzGkBXXCDw~sK7-XR?Z?0D`goQLkhVV`uve)NdIkDl>Ij|lwe8GrPMz_*_97l -z}S04`V-cy%0R0C}m#EUd*G -6#zaRSp%F9KuVZiG3)XUTu5Ug}Wr<>4TbYT0R^N1aD6(ju0#hP>gvv#01}!)FsF2h`!m&=M$2J -}UhtBcgc3NGKCo5MRSt3mOWv)&m==DJ#>GU*^jU$FHLFShQjbuV;+3rTaF?UKefzsYe(UfOXzXA%1{3OI9c5#1KM2P@`U=^%EJcM -(K1OeS_P3b(?E4>bU*QWyBl*iP?#1!Gs`$B{GQ&JE0f`2QH}r%ODdQ?6dee!hs$pIlTu+bV5_RP -RNc!2gM)};vgK<1Fs*(AlXhWGI!^wI+tWNr9&4b5()eQd`>H#~}d*alAt`NL?@nj+4BTvHy&SVvn&l@bYyj-tIZW&PBZq)PO$j^+qSfNA-cbQ(*Ih>yXPMFd&vge_WMe0#NM2q -YP=1?Av!1}reFj#nBqM2?w=ra+=_La)|7rLDWl;vox^9AV_m6-E<1aD_Bm!B#4K$V5X7{%?*Dj^sfSW;2)%l%4{ -_63%L8aT@yk&N1>T7A_HiyE-<$)ZE=`5ZLsO5fuUn3$;S8&^5p`Fl9A{Hn#vb=8?)Y4a0^VsBWTE{qcT@*4WLS>SdB$o;j%X2EV}>1uUm -G2D9u!5@uQ3O~C}baJk)s|ikRTHD`_#BYm<=__f5`CQS%XPhXzu5G&VCw10e!ipdI#D0Jk|L!q?pLx! -|draVGp7ZY>6ZpI5{29Cmd<2X%-#ET@B{+C0S5TRK&X32{%57VLj4LdbkCM??3%arCs+ZwWy+rLm4Mz -q*E}}i8A)zf-QvvfxPa;w;8qmihDi7f*02MfWDV@GN&4Vt#Kz;HgnU*il^F38>0Wiv<6Et?5kB{_#-O{;tR%@gAVDYITu1}UJG+U1IOLKmwLnwvAiAup#y`Ld(yQiYQv#eLTV_&UUVAd%55K39 -9P!~IWL)g!Cy=mKq8bzY&*GK|LSG*3_dU?W+@OBZDn++Obd{gnC;?Gn3u6JfM{OLRIi|yPT%uDqCT%!Uz)Iava! -Js`D#ehdtlroWci?C(ks(+#q8*nfd@CAkrPiRBtB8*G2}K&(XuVoe`>}%WGo;!5xRffvigv=AUQ&*m1 -WDY$zE%%WCbfYczSCUqsw`E?V??wcBKlucM|82Pi&L#P)5(r%GQy`n9@lO4l;X*TJbhSlTl*Z&zZKTQ -ITBj9jvrlSlSwxD@?xOrDb4)KskC&dt+^OS*u1%=L83wnZ4Io%G%M2ra$ -j&(#&VI4D84rk8s)C+%`5eRCwTOqW2KViwS?lptSMYYR=IA}{y){tI -RTqPXWK*)2xNsQ0ix+`!@&~_%7lqZyY2-pp0%e4C&50KQaJu99pdLb|C1d!ex-Euo1|#!?i(p;YOsv^ -z6xTbW;WB&_G-Hyicy31hd7lb&H&ocNcwJIzjprxrFg=zrEiz -ysSWyP0+4vw`D7(P?OhkM#8mlB=eo**?Q!R9K9ns}y$t`*8Tt&A%osic>fKxr%q56+9G9Z1L*^G7SDX -j~5!H(9>tM=v+A#x2A<9{kMq0@K+d%Kka|t*Xte!kg0rarADtqjRrR708GaQ5e_WXZN}oqFEXdI^LjOVWxlc4E1GxU8d4} -R5o{~;|`}E2JEEF#uF;3*@Jg0&ioN{MRQBTuAzpgF6a-tTKDBM6M7%{*ZSJ(%oRi?=CRZfm7@fa)Q2_ -;hbycF%lV5{J$mc|o;L+RyOSX~JsdYz2}E{SP=0;+1}q5^JD8b)2rcn)5za#JemAK*ovW&g+U;y+vKu -Xyoq*7+i{2qPebkT62PAVg6p32itL!>R4RD2h-Nfe|o-px-3YL_2?dmnfp%LXr87JR`llfziBf#vDbk&yqSYLk#k=)*-7%mb|3INh!M?qhCL4MYoYNQ1mbU -?neSW8-)(acywgh2_oS{5I+n=$RrF0!jnf@uZdYyR;L%=KPT^h2Ioh+DKP1vrJCUaNgGl2`&v14h&Ya -4#I}%zMaH{+lBFzUB1^gSdxT7fG-=M`EMFC&ID8T^LpU*6AVDX2U#UFuU;NPId{V{=mfEK@aOyGOZ`H -AQM9h!gC3ug4l>pLJFQXI0(mqUip1~&S6^k6Ux*CZm+RtwZ1N8-D5YJzc`MSGCuAFgxZ7=%qT+jC49@gBJk7Z?7ng5aI&wwBN^atv`fulxqf>bh`x)4tJ -8b)*)nj5WZs_zdl2fm(Qeq6u$$WGdQ@1~?H8V+&ZW3}~GPYfeE_yP4)23XhU!zhH?U4|Xqkj%`T2{G? -(&kXg9UO$$DB+vSK8yt{T4X#rfL97H>u|PCPF0lugTKJ>_9gp3TlC|2i^!_y~^645B5B(OKk8so$PmD -kp@}uJV^Hj$VoIo*ho%3%NFMLt>Tzd7p*T|Af|F@l0YYWoFZAOXWTPJ -%c^g3vCQN1?>tLxq0RLQ`*(yctsH%@BmLJyzbkjfg!OM#w#4-W!zQ_q3I7*M4@M54u-p5OA;SMCi^q% -<^4yWi!(G`wpAYOw(OrWs9zNN@Bdf6h+^$(9pYH6u+xb+kTLA&kun4yS|j|O~MGeYus&qW7m|)cTP`^ -y$w0Ew-2Q6nTHX!rvY+&ryuQwEAZV2Ms0ijp@kOrm_D*TkFE}cT1MI6`GkCoZ8IgwYXv?{U$fLEhvRR -6%6=SMJ*%+^@9mtz;J|ge*^0Lj`C~{lJ#Ke~R8yUJ;}f^A6M>I&PwdD`pMQFh+h6?RwGSf)m(70e%*M -A(RfW3`aJKrUIqEjOslW -;Jn=5xZ}$_0%&Xj#W$@iEYMyi0GUFvQ&lRt#-J5s^N{*J-^cUTR0?%LpAbCvO>0=r6OqHCBOHBF8-ht -BLZ~ZEQPC3+5gw9|N9WGH+iHCoWmgS@P?_koUsm?+wxr8F;@KEp&T-E`V>*7irz?_@REnWH3LkHG_sZ -dN{%n+Je@SL1d_1&Wz=q-Lbg>7=)$v^~tru2rCgS%cbxLuF{mG3RFSsLq7=Hhtj*Jp+qdgN?AIorL1y -ib@@3vtq#o7LUypwk$FO(R)0QNuQlvw{@RjZRr3*jVyT8Ba3rL -E<6iLDmh@cdTBPfh)h7SfoaGwl9P&kQDDEv)|VvOvi?0wo5vXcMqymBC&G_DXNR9H&}%3)=rl -f2-GO+2gYh} -}}3=+8JqEKirYPMl~1$-#fU9^9x-Bls%m>wHQFlD=|T?a?_H>h&WB#fm7X@hYRXc2nSsuhw{eNEm`ci -Wg85i`~4Mgzp$MyR)K@rpq2zreZlipTaYtE!@UgJW@5{xQbJg~uW)|f2`vud0^5piJt%F|)fPU9e -e(fiLuN@`f7~!N{Cg%QncH;A3Jd?&%OI>S&zmck<;pdGz!`*EpO)&@q6Kxe0%3PhSU%D#YF1HTCvCY? -=99pPe=MpOMNH~pCZE -#?oXwX?D355syX&ERfhTEP*{TX%SxGlQ6mv)iY9;{!X^^dmyL*@l3ISR=zE4pS_^#p-Nt -?iuJ(I^A>o;P4%rYBrZb^|}Vs=~X)@aqRCm`}_c -E=*mkYicaK0#>s8fo4XR(hwGwuONGu=QR-A|FJ9aESIb!*_x|=cVH14yt8qFMCjc$O&=j2v_Ps3(2aQ -68ia;IHLzt9yfCt!9J5u$N=m$ix?n3WhU#pV|pmL}WGM8P{d9A)92p_rHj(e(u`8!mICG_hW?ef -j6di-#AXW=)9svZH_vUS!_?m1wn3SFR2%tjl|%O?w=J&Rht@-H(TjNRCCQ?9)i&LAqVn&Ffo_0khf&m -?B;2(;-f<<2?=dO`y$OQYUMNoA+#^ -a5|0cp(!I1nLgr)r=!n#k&C$-H*_!40`qFctNy4uHf28j7e%D+Qd38b#-vZE|uhgn}7tQhTAb_INETR -*$29cg_}P3mi;1xuYxc6|B5`Lt(WLz_PB<$~S`AiLcM)q1E^%y!c%^bawG3pRp#Nnkmn>Rq=avR6rlK -C;|T@cF^#UC;&@pP}2vP77c%F^G>GE|ydVljCYcI7y!wMFH8R*LlJsrLoPdqB%^FUJw&|z8Dy5Kn!+B -MzywpI32|0et^6q%aPzwJV(CNCr?*Wj9C%Vzgf!&om;!JN?6X#~jAy} -73`3H25*1scY%rp%7jNZ{h3c=!`IQD-#8evsOR6Z?V#+m|8#O^p0I6`1=i=fSnK%J6#xT5;u8yx7e&{ -tu#pLXYg-m(#WkJP+BgsJLq@Lan!$@ -t(Xr4Id?g!W!zL|3m1KrQF_M#DCYcf8}pYVHRd4nOWnbq#AI&?2-e4)F>TZA>NXD^=_jWeY4eiskHhI!io4(SSV$m$n6~A9_0k;JosaaY$Y#m@0@4tps?HAiC`Bd0mQJ+(7aJk$jqtbTeDdXr)p -)bq~!A&nCkqmxg$8M?3W~cOg6|r@$)*ct=D~9vqx3I?po$gZ(1X0=}1$KoRlUj%90%ZJdNcU(1(%!Y` -(vd^rsZ_@ldivqpT5BgSLmLmurND5VaLUPDHBy_KRXEss!c1Mh`Pbm9hG*vt}SRKN(|Q%T5c+LIZ9Qe -_zN&v9)TX^uuM$}7`|_|()I9wNCIgUV3_uHD@l`XPI_+m#4(2gY(vf_n06XFoGdTo!FSjr>Dq+OUXKpFoP|!>vq-x`_M% -T4bL}2Va{&kvswQ)bL8c6k^_GM?@d)x-LJNc@~m5Q+?7xbYX1pV~fial<`Y%R?ledN#P_wnqW^J&=j@ -7$d9FIsJevY{32X=h4tyM;pcq&5~uMkdPt&|6xli(>a3XpnknZiZnJ8Rayj5>B>5~e553c1oaq4w8*R -@Q2SrSixpWITF9q)8<1;6{y6`Gsm+Lv418=@7s9LlbaENORVU8NUeSNtRjA78fWzU2~J2yR^+R53%*4 -lS57Q$Stx+b+!hbl%$iEm;#bdrH_3n-r)Cq-4o#T`*-bNpaDS@mXFB%%x)pu(HMcFkw`&f3CEo)FZ&< -pgy1pR-%gz$r4)?pU9VHBTa;yR3&78;W)|GJZ%2rgJLE1j5qUm02CO*wk6Z;{!dGc*T+qm%jkg$)Mby -21cLnZEVUW!-2_dNJ2d)vF2$YUQICe$PlJ^6h9g?3$T6{ZxAjiE?&UdP&|Mfw7=i|BmXYZr -^?>$d%W!Z0gGi~zm>Dzmos`8w`TfZ(m;dU%%xWu8KY^zh>!g&msHm-qy=kNbd -i)y?sK8KfSLn%f#r02q^^n<~Uw7-U)dL^%f7scVRX#*#Q)oy%8C*%f3h8TUsdlJ%+!D3d#2sF!5F&dh -4bk(T><~{9Q^;cMS#TJ&SNdX>q)-xu0c_^R`&?NtZx`v^umt_Sf$7*FRJ?v1jNTulVF{W_}vele@&ex|a@+PZz3eQ7P6 -wAxJ%RmY2Tw@p;vb{*beL#lvtaj#h_x-_?L7^j)9NEj`89gE-;3w(Lo7un`SyBeyDxv8fGuUji7tt`Eqt2f -;LG?{`_2xX7N~*T-llTg-T9wrWqc -5c<9&$lXUnPLku4puk6AQM+k7BLvnc;{#g&Zo<|q^BqMmA-?4ZAUrclEyV=Bu^f0>mtS;v|PN?a^^f= -m$?RdX{Koxnf;5KWhP!8c<+dGzU6`GZ-nDeJu#~&p2{@RqwRNs?S`a)vQd?aOvgADP?vxJCT(TOEEzc -F(2SZNLTo)Bvml4(6eaAuQb736j?seEwi`liIf(pSx%znGMHIRce^>!*uC*$AsXtm8uYp8oY%@M9E#t)?4gmFsK(Q#i4y@I0$|mb#D=p2h=AKc}ZCw*YBsKXEfcG(btN -aKubSwZFn!pBO9|TgTkbk6yW9XI_c3e_^hb5VwIBwUtcAx4=6&s5BBTH)dQ+tPK~%l%K9xK75fPBM$f -noomM0hpX9s0L3gZ^A!^n$w3A|V6sYSjC|irZuF$$H})l8^FEyU;`p3xPuBR{y6v#g -7<&yoCj!6RprE9TqL8Nl>ni8k_r9Zuw@Y5ZwKyp=$$u1caj>4?cyj{vKI_-Vuw@2o1})nb=6a1S5Mhq -+8!i+tC>J=b_e+$ezTpKVY>v>w!i#`66);1-q6YYa|f(OE73W#Ztql;qp{|}{wqiAwSI8Az~6b@pK-d -t-+A4?ce?ztJKe8c`_G`1b-VbJ(|rJc=XJm9bRBj6#LECa3?<|twQ^RizHbLrM1YfOGaZYr -1rdgma#c^8lnw;$4I=MQpIPu03k^7WHs3T20$b4@p#a&A7qxzD)Sz{MG!>kt-(vv1Z(1FfpPfu~PeD= -U2umfQ8+z)>=Pxyk-Gz}}cEZ6R-ZDqcxb&Lm?*#181g|PHpklPzm_pu{l-|B9m$ls7-M~ZvELcxknj5d`@L -r2`RM*Fe{--ipHv&v;I+=zbAbDvh(P3mfo>vZPf@IuWyvaHhg6U%;h_U(=2XgH -zOlfkMd0fTjy1x$)e`dSYKB7BJ=QoQDq0~)%NW|me)mXd;T7JK50e)+_h9@XQGI36Eu(@oOkVXY4oc5 -)j1K{{qbTY?YgkcoJQq7ADTjgeqS0V=Cyr496v8yv4otBO{%j=;`NW69kt2jdy=Db=}^z4T`djc -8eCZZzjig%=g!_3IBAF&$0=BTHp&MT#&#p3?{#=T!ro_{>=?+1{Z!O{fT#x00G~VE714!iFl7aNoYIx -O$V^Ww=wyyTf`r!AlpS-thhTA_&r7g-+fAyys5z9?g_1X|I@=`|KyZ&ow>>53?%Ve88Qe=HKPp;Oy8}Qz6P5WB->cu0{O1_&t7- -rT*cCsi?1wgg_Byo&Ty$~6U(IGS#~!xfWnuU`iwb;T?|#;sf -M)0V534%!U&KLZ6n@t -CN(N=i}s49vy!8*%hDI;X9z@@R}jaHLgWhC|HN5NC|i)q7WY|;5Q^%mpDOTJDCMx*N6dIRF!f-rjR`l -qx79@qLIbARAju6K|iDo@?%!PM^-d}ZEv!p+34F|`Ww)Gx>b1%sW`{cvc++fP%amLWRGOs5M -TwI(Mw$i==e4b|8UimBxJd7F>oUcCXTys8yaF+UAwpsEJD=I28aLHz9Qgg>O9RcxHu6Y%n(*1^R<5#8 -(uQ%H;q5i#Hv_!+?{S!cSf$m{cga+jlgUM9Paj6jT_l;hutd*EfOXsb*+MHW6ckEEC%Nmby3s95ejyRu+^<}-n(UUfsnUC~uJvXic4w~ -f!r@2hUua?(M=XtDLciV}7mojC~!0`21&81f^fsi!ilMs>W38eo1p{;mgb;UD_aEJ({=9@Gys; -@hGDLypT)4R0araLt|911&e?W3z9#B)SnFQyqQucBB`Zp4vthTJRYjQd*#G?(}6cKmi{lhIk8aQx~S5^`g -lcgJpipG+sgwv#DULg!twP`i+350<;#;V7KjArTsBy`jAE9=x! -3FnFo#958rAKxm|U_&(OF5SK?H@OE{t5Y&<1&9avB2xw(>)%eLHuQU894H+phSv3-IEz^{0y9zwV-Nl-0yBV!+i}Fy7 -9q6BMIi}OiC=}mnO0hu(VGXa5qu8RDnc6)EpeNy9;*;`5$Xxa=mZVatZdw4E*&^D4-yi|L%Fp;2pjS9jhCdTJCf!wL*%_20-r8>$_i7S+`p1Ynx417 -ia(I-!szfc#lB_52+t0{UOi12DRLGRo&HcR2t8w?*L_E`Qg{JJQ%BmUwmcCO~z_p->`QQvX--{1bWbM -`MgOT*G9p|&bmf0lghGCr&0zXSRFEG=UQh>#Pd_aZBykkQ99KyGiXuk@BLBo8@c7uL_#nz1{~bc6$R{v>d}>d -q&rsTZjg8ApTJm+ -`gli}P*Uj`7}7tjq8V_^G~=geF#V8|p2(TRA!a8i~tO4}+m -FWJ#3zh!Ea9+hH0LjfiW|0%x!f3XOpQ5qGLoE_#!!D-&H)&^DZpxHzgkJm_{P6#EWaK+7FE)@t@-)c; -`+Erf70f0z|2~qbR7lXRJFF=6 -ts2QxRzT|2K@sDaq|zV(R@eTbJCRd@!AYE}@Zw@+fsE=&TNMH*?cL44{7`W -OP(8D3W1OlDy64*!!$mQqhQ8u&Rt9_Kl)G|fM6=vO5EiYPKMeSE0ivgSHEFb0k&FuAXdG+8Mz79{`{= -Aj9Byk_C)pqPS~mO%Avd>sjR`L<|-3G`sXqh@CKZ|J --RVYAk2nr&F5Oco-3%X^|8tRFZREFaGw9k@!$O9566Dj@JCSaF&Px6cFaYS41%Kw -g;ErT;{;7%G)dtYMo|PoqYQ~MKh4J@$fpPsIZ7fA;hc~D%^}B#9I}bjXKcal*>>;99OKgdD&TR5G=7G -XVa4H+vgBBagpUU4-NB(>#u9v-;_l;i=aqbh9%O%|3sxBZ#Y -`W3etvTC)8TaEnzE1P`_&Ddb0>;~X>+dgP4ZdyswoR9Q9BaVoe{fr>z%d$-cGCE{0|FCc8q*wSHV -jB*#KF!&mK%p+ogpJ2yAWYv}4o+cX4Zj`A6c;TZ3zWp)7UYMV%9sKS}0SICLs0XJ^Vls=LZw38EIsga -`8Zv4|7GkFE!mDaduy=EAQY-W^6gxHZgZL9G)c9pL=vuSYxg0T&N;rCrg4vgw957x03+`^1yDwiZ^Zj{66>m&t`xE -pQ!eCxo2~c##WWJKzm=k-SX>A096@5zSr$1fD!nXd!Btjx^!{dgrIt-58blUx+*+XR -KcPSy`GD175g5TL_JrqA>_?z(On>^;kuTs$6U`fZ7H~M$;|ZnB%apHVRw;rz^&u2z;N5}DTS&V3mH>6oq -}M&TtjoiV)CTy8T5E&d6%Wd!RNV(*;Ww>s(IkLp*Yo5kvAZN3E>`AMb+iiHILyymeK3{1m~@hhB9B~b -W$68uqmRL*M`4s_MHSF!%$vJq`&PF(4PLCe?xANpRUyzs^#=t)N@##7UMntn;D=-(0u8B8~N~66Xc+8 -hfi|*`kl|iFHW9T{m>3&oj*R_=%9385B-O+`~QpQ`7ONv*XQ^y+P}k6hJj%iIb=#O8iSdmkAWib-Fp% -UN-!kz^IY&31-RYoWz3PdJx2D>$3QtE`LHkikQPDm&-l3H*W%}uYKN!#G=O6H;jfb7m^pXMsGyJ869{ -~;xnt%vdGOHPGamb=N3wxI|H3mSpTT*>CnKE2$3n;8i}W~>{3zQM2w~Pq0AOjRVeHUVS7i1Fc5FJrA6RguM}W6 -G_uY-c$;P>nZwyJt?36IOM}c0t8^LLf*zZr~8*R>iyV9@u2jDLg5Z{j@{XCD%hs!VB71ojBzC?kA?d0 -`5eQBvs{*4MU0|pIF%svYUvYl1c;zx1{Db0{)rnGavIgRl5`7OPsF*bR4?CWgPL5(iw)PYZlYPy=!Wo -`{fu4lKKi^xoz59KW9*)x<6_65c$>czLmc)@MYZa;MH$T4eR72nQRC*1+ -RMnOr+%%>8=xFh637QI@+5e^8(gHBS1>GuvDIHxYOg0?QVcy|OsJc!GN&Am!o%m&l_Mg^Qh+vAyPuQG ->gHf9k#GA+cuK4d#94XqZ?Se+9vxU;&-27{&zr*Dug!i7?DAsHGPC%XtiZOn)|(ab -)VYc)7hFeXgy;e6Ry;bldEHgfgGN*j2b}O+nvkaM6%rUU|IKs^;LpW%Had7F!9FhK6(`l_b#g&&>tJW -NK+d0AGJsD{#`g@s_^qSjB)7tYx{(RJLr(wfKTJL>X8mQEffmkJ7k!w31ijiyPfa@#a+FTH8(wz%_t0 -lsoEWb8btGcsZW(E5S+g+6yHQ?L=Mi1+8B(8aP66;<5BpfE8DOU=dV=#eeDS&Wq%*>`>Vz};Tv&}D^i -Z+zt1aD-=ggg6<&~gYBu!8T2n-yq-URnxDRjv~h_^1j#6x*kA@SlR7sDCX0OO2c(eJda4{6(>BdzLD9 -j4i~c0ktnnyO~^;d-MO`Uj)dYVxmV>Es7U~JIQOg5Co5)YS0~ItyK`!}N=DI -)l!EWc-QH=J+A$^*dpyQf-XgNA-J-jXY=3)1l>Xv4$%aE4AdfpSDg^{N|G2O^t}I`7 -|?w0bQUW_a@m$mAR-;OYP*R7@s{A!IbF-m1Ln+ZmS{M8X?m!*Z$H?!B|6ZU>pjz=`oP&t1}Jc=Vi3GF -|lz5U`r68P(G+i)eF#*gOT>OHHGMAb9ayA;jI+LhU{8-@TxIP+lj!{Ih9`@&J1O^_Nid|J5~ogQ5T7`Tqz};h&+;BTn&|l(B= -$W8fHbh~FK}6U?E1bm$=CpZbmDGu1KwdE(+D*#whETqY(zg^SElJ-9ENe0m#F@<5EqXNUaLYP&Cg3_m -0PDlYSp!eh{*brweV^BzSe$!99`(UpsShAe+MQ+jkx9MzM>p|3)G+9Qs}-24dTpz)zqf_}z-5TED~R{ -V|gXq+sTWApgnp0RH$u{`frpDU{t^w!nkx4U+Mmz6z@tIH+k%yVvV)bkt7I#JO>{HNrE^K#pxVGqJ -Dn(nnPdUvwn00KPSksg}5R1;tPR+x{vG0@bYn(N}b(3Z)3k*BN|F;0}G{$7_Ok4d%-CV$4$9IPmVS*x -Py9K`V}%_2nBvbc$pb?ZWYX0vAnJ@EVfq|9f;sa=|9U(+VhO-#%^Fm6 -4a~Vmk<*6xU5(NPO)H61l%(+hhJVv&z}XH~<4Z#`BqIFKfV^u*5G)Pq&Fg)@=!XnXjU0^oRsPBGOccyHp -}k%N|a@@40yoXpSVX5>%EmX8YkaQqf|8BHELz!iKv|Zlf^gAMsR?Z0C1!Ukh2VD}qi!ePa9OKk*XrHkY$-v&S{6eE`85hp$DHQJ^yidg*?8;cgt{AFGktWFSIqbr_|Y -^y`XTl@lH&y&WkiQ+8W-YWb+9)O7`I0%K2rX%#v$Bld>0r*T4}>4A6y|>dWr2TMGxNv%RBCzs -rZ?wj;AKEM??=dEMq}d5V;_H6GsB*ID)B6Bthmr>oGqMF-)Lb42xjlGDLFIqgiJRlytv%?InsSE+bV% -mOSF?f0ja_iwYC>nNzJ_7={kg7eWyP>T>*4lUcKr960MY?=ZEUROX{^cPr48)_`>M8XOBFsiDI7|c}K -Mwq~f=$G`yfThMvO=FdB4bTsL_)rKvW#n#UIyU)x6&#twvc{u!&e1}z$^x7=pF8F7AA84-b52;4Fd^? --;dZjaQTp6Jk!hV9}va|j=nhChW6uiHuPIq)pYP7c$8Ub}{6n^QYkay&8W4wGY`q2-7C@Om1hVfcA}h -xq#`P5f{d!x6kZZ0e-K6jV;d@UmBB5xwi}d0h-|G+x~!>nk8&>USgEU_Z7e2i>UCt4Xr>8E%ATv_e%0 -Wh$TGSr)IN_Z(0u5N1`yB|@OAdk?oJ(83rdv{AO6y>aJjf{Zq2#-37(7{SMblFoTUvQ!^~RaQxGo&kW8t^d!voQzi4KqIfzE+|! -jpPbsFW=PT+%7JcJqGZ=zb7O6(qVP@v-FqiS1&`|GzUarFUyj|t^tWZ(YpHv{HY8jo>Yv -q;{#!n#1UytkYndVcr-nNzQ?`LzhcJN>+8#wa=}Z6g%$P^8_2|s`wrwrr;gib*elO<9Y~B2nej -ahqlek7)Chs7#*Z*+Y!{@U9c-6qax$H0FhQANK0=jFi=C|nUdsZU<^*Hjl;l^$UE+Q8!I;~Z>L3#qKV3P-f72K9X^T0lC1B>2R_;gvf0i#X>f}ho&u1IVOq*7x -#=B-`e{+3nYW!z+#dwcqJ<%eg?ILk#Yo2#EHsVA7yv@$Ne`;d&ba?kp8q&*W=xhyKY&Hrq$L@SD531M -R>DXNMkL>N1oG8v34IcRP#r#AG4toDw%j8>M%$K$pvj%uvjn1ri>9yxgc%l$Uq~(pcjX(6o@W1!P6c? -#e@L_z_R-E5~)^=FA&Qra4?j*=3$GpHf(QvAqu$7F=7~2=FcOtYmD2QJAMKP6?%O!-(h=H<)0@!)PnP -;(wO(HjGYx*oDq$p4-iGI|kN$Mg|;$3Ua9X-{>W#D~Ywf?!-mu<;kN*sfaHdjCAQ=iX={?_toVEoO-% -G0pif0X6Ijpy2|tu0AaF2;u&Q=3)6pL#~Jc -4{P`#5fqryUk6an{ndkIHKrBA8Z0M)6Gyc?D9+|k^%EO20-~A90AH6ucq0jRpPnUiwShC_s{iS~!o{- -|hjw8Q?CoEP`%r_<2=EaCC`C2aMg|FA2R(q|0^Zv6;f$FgRH=A{s=TE<5=fPhTvb-ucU^Xc1IbpJPjFLyN>7S$tb{TQO${=tp5{t^D|axUV$i${zZ(<-mU^iHZ&9(-oG4;@uJW5a)VWSy-^u&$O9(RSuZY9PzBV~Q@|Wq5U)1Ol+5)61B2#;RB|LN_c84&Z`i_htv{KH$*mMRaHIy*>ws@-XdbZ#g`b4yUxji8t7-D{)W1QQS46styu0Lu -~}`yz>GJ8@Cg{5e^(;r-!zjpFUA@c-W@KseNP%P2J=(LCnjotLg5Qu_kU(Ico72>A7GG*7~rLLUn4ygvwYCTgSh(kttU*83tW2szQFNd^P_^D;y9b=A|72v4x#CCHE!6WoCI?iAgD<2%Ht7UGtUTC?G7g-FkS&Bm+H{)LB -3|VcYO+a$_}E##`T|QK>VEBf3E>S%u?UwRMHZx^e*==&BonBX6cgTYZ)={Ck=>FWIc-s$7I_^NiYTN6 -w2MLJa0E;k|iWi?hB}BZEQmx(?%MwB-LA#dPj*ekbqw=kkaf>g^7`Uj?yOiRUw%|+fVO>i^ya;OF1a_ -At;vDaE>8#zpz&ru>W7tH8c0!Ezt?mAb(#$zDqd#g`s+7o+e#mQ+F{@I)qr8nNU`NWs1NdOm%eJl7`zn($)(fZ*j!SB -_u)*V6B@p}#~!+CXf+Wf+MjW07Jxl~#6=%4TLd0HrU0-Rgm+cVp}FW$D5)p(DBMv70^{eqn}32Z?Ke5 -kClJm-vBK;xAYtPihQZnXw&tQik9##LvWe?Po+j2Br#h@42G}}Bgy>gk -!E}XM(p|RrNFS&7>8qh<6KN)yA&Y8r@8-KM6?w9V{CWq=GHKTw9g7$8@{^Yw^6;E(eX6`xK)mi -xDrC|>71CAYJz0b^4iEUI?&OTaiN*oV5xwZt%hY0$D ->PX=lI$PSWTOr1lpS@zc7Z9Q_q$j+)e+re@d&Um%C%74k{w>;U8-nAFjtdyF6Yc}vO;afna*% -2B<89;9>MeJ7(N`jLD84B_0d4)GDFVwgj-bmy%5Z}hKbAsuA=Q(U_vyB%f0pCaHL$C1>*YL7{p=)q@? -swMO@nDdkOA(5j5>X^?#9gQ`|?4-{khaBpM<1-)it>SNIAxY%{ozUeQbh-x7#n9yx-PofiC37qJcKR{ -8&#x}43y&ZBIS$RH)Jc5aBPd1t|K#7O790+)3)O;<17n{)>Jn)|~}pK99mauChtwv#XSQ{8 -hE)9S)8<5K)GVME~J8@8D0RbCl%&Q(TCzcPIZPgX(VRkqEE>HQXzS -fD?O%%~Dmzq#7_sz?E>y#KZiMdugNsM=CSa2qA -BKV$ms8X?lb|GT_6_(aDV?w0l*}gQYNbOX2$Esk3)k_IvC}Ju!1Ml{}3j;(TPb3+K(#*Xkt! -GbaSGxRXXvAPFoD@+H(7)Jv{L7rXOMw`_lN#B)g9o?}|9U<6%QF{au)~)^{=my$~A~!`!guIi2s{vi|yuEEf?%+YbB;Ek=DoM4zuENwvQ>O;f;;5TF9_%H9*TK`NyT -6K}cjimirlCXu>y0?IV}NFZ->3?7FJ+Q*NpB9QN&!=iFvf7P3lMJ~s?JfDq~6~Z^7Tlu8d>psZUee1p -K -+^9%3U`u-FT7YPzN;6fIZaBkwnWBT%_)P*qqVy+<+1`-mXUEi3;UOA+&^tF7c^SO^*&@ ->V6?_7uqTSic;QfC5AKI?x>=v2GU8vsv%%%b-H&;8rtNT#go*BVVt)`=Fv{LXp~XcxR$D@0i5sJa(cR -)x=s;t&y!@~2iaOlC4A_o8$YvPkwra)EH-PfVC{q9Swe)q99S+xh^7OIi0D)L606VM<&q*PU1<0zDVI -8`V@~A7Q$R>@WCZW!c>yJkc3!WA6E6vvg_QDY?f^MZmgB|-?L2SsV!1M%sJL%kVoEBbb^vdeCk*5L+Nqo_FcSH~G7-W?W4$~bf@*bNNxIaExHB`bUuq^bNftHI;wb*$zJ60FXb?#UD8f)| -PFPfm(E`AUFck1$AHvJH%`tSDp4OjiJ&v#KN97B(Q6wM$cNf0za(iD9(IUy*9P$&k&1WsTyM(!r+r=! -ep>{HlM{2J#+EU3tjav8Mv6v~jl()5uNz&@JvDgA3s{#;@-`-pckM_~T|TlpvW|B=~(izE0?=7)UOF~ -Sl#x|+!NBd3-Biu_fMfzFR&m;7@9cyVZn(I05F!>Jvn#UFjq6gy6{Z^S;zEC~6T>+=yN-Oq6-$9x8>r -^%7!*zaY(!7oKUi+6_3hfVO_Xdu(RBfKqe=WE3UoaX+1DtLZ2Cx* -cg&(&w^jNUdU|nO;!7lO6f6H>-r4K-D8IWI&F>@2zD+DMejj7DUYwtdyZpU)WjHb)a~Ry8N%K3v+D~D -AyP~f-2DALc(~sw1{}sRzzW^-r09d=v(av~zI;pu4G(Z|Nr&8kJ!lyz6uTbXP4h&LO;kAV;R(wvZGFS -7ZG=^g0+b0HOlPC@crAhXruwqLKebcrz%hIu5nX#t-83f{Fns1%hIgGi -Li|~1n1?d1@N5hpM3-`Zwx_+zE4sqo(6PtmQ}41z$wkf#|YDR`XLHlPw|t_tZ8SbcH|#XV0h8E4MK^XPcaPmyT7sy0y&u4!hddpzMe&P-%=AAkXtf=y!gFl -PDW8EmxfZ~^(Je -2fMjo@UZ!zAYqavuG{P>A7R??@f=SfmBQ~Z~;PpDBz}BCRhn-aIS~A&4RLVZz_qSI_|DB=g~ugzRre_ -p;5JJ{a|K!kjt!)-0mANje%7pgV_(!L&itKcdk3{waw>KCjL{0g8oB?g8l=Cg8syz&?rq442cm0LL)S -W@9qUA37SC(7~b8@{u)EEpECBtO%O-6In57Zy;JI)VIT8A;3IoMq`y+>(O!dooDTVOheE^$q0WmV%bZ -bP%Q1;hf`a<|iB1lku_J>)9P>re;s^rZ$?g{ZYBpx_8LonUlGf?rsBrj`zd(;wb^^cqyW*4m-W}NPI7 -syHdOM}3vExQk{79i6a+J*BcMd&@51Ehgqf#^Z`%a*bL)pG}DDXW*synR;pfBgwYX7D$s_`exy#CKSl -q0v|EJGTrG#MO;@^m_vD}w6WQ&Dz0s>w-Z -UIm|-RZ?&8+bM|vABGy|Qp&~+(|1hC2xoS>&F0Rt`G)~pL>0>Xq0iy{sZoyf#?3{AV8gYz2Z+$glbgX;j8h#ezHU!i^B_BZO -l?5M&!-S17C>Jp_&vluE>rhe?kWuJQJs$N+C6pp(LX(;)GVFi>{1u1fMOet-llxD?PMMWhm0DabGH^m -sHfsvq#`koNO8UGUEIUnzp7P|vNpb<4WTg+PBK--wihtJnY9c~L^Ddm8=&+VHi>{pt4%1SE5Cd^p+ozH{pgl! -&Mxlm%xyuAjVIEJw2RIZ;Y0K6be(a{iGqnvNI-A1rPYl(Tr7a*1|f7?3@{H%GHE#)72hwW9ka=LysC7 -(SjkaKO_kxEOrT9R&Uub`9P(V{&TSay+=)}As-+1M!f -AUj$#ZB0JR7RYH8WJxt+mo!sqs`4ipQm^RQ7A~aba6ufEPHr3>yIE)^(^$zDB5oo>oDCmnklFSK8%J+ -pCB-$yY7D8i3y^;@~pbQ3XLXjHgF@1=?<399ju9=RIhLLY{}9hHU2pYsd%0ZG6uHArS2i&xCG}so>wsvFuDf|_Fy1r+xz<+y=%JjG>7m2kqKa-?*#XJiwVN -|3re%~2!s}8@ZizK`a+~4AT^Ui|H_L{3up_vL&Cs_^C?YSkF6GO;gHA25OcpI^++|C|B9myGX-{JZ4U -eHZxuXsD^38uu)cKN{80(9PADfBh(#NpLnR~ku2o&ymEly`5Z+j!S4VUS>+`E%O6q*CSwGQXjZQH>K{ -z5@zi1?mSC*p~wB*P6}SdkdeQ#kXmyJtj-Hr6 -&(48_wUphLym6eLkTST%ngZ;(msUvj3_6LyaxUywUHesj{g=1ar5E-z2!R`gameAbRl$Eml)0KJS(r8 --TYY8#}YrA==P5>&;fyfKVYEuzr{d*(&zrS80dgNzy|}pxqT=7y8^Xu1zS6nJF&3Ba(oxu>4+<6*66^ -JlaWNGTXnZOHM)sQV{3CkZfOvX9bBaN{%t0z=@P8(d+J@PVYl08Ra;)hSW=li-bEX&%@oaK1N<9Fi=T -L<37F?+z}<0d5_p*-r1eF-MLCi1^~XBQ(m1mMC$qJ<(@5VQUOCnjw+Y}z-L64{wEc>Vt@B84N^4;|3Y0rW@G!tn2 -NPA}F!EW~NF!`Aa38zOf@y^S3>vFtEj^G&bVO-??ef}%sv0DftI|{<^kHFDk7~rGy>`>zSC<9{j5w<( -H6Lb8=KRj^fUFoN3uJ}yeJ_^XtqnqupiyyiF{YI#dh{N9*5Be}3LH)h)pk+!F*SiUN`{(QN*tm%kel# -BM|6$_+|GzUHhVVDlt%f?)O}2v|-GCmln#0SG!;uzJTn#WaoS`ZnuGEo3Kt*1{G7)zhLnL*#o}R-JsDB-$0)CpQ`Y}pnT -pzFZy-gnP3hm?AdoC%BN3#d|9Pnq=_mb6Rm)C_+Qwo_WDtU%4OxV_tPZ9`tQ{d^1M&7!;8&z#rfWM^| -TF4^tNzYwm4o-c)8ZP|yOXbC0?g%U5)Jqs$@qRk{Vw@?KvEA`HtrttT=fwvQb<<*WK8vmXp0eWhtQ~q -b?)HcJn+_Z>{_FOF8*;v+#*d{j@9k4Q}R8MuagH06J;>$W4M9SiN4jQPZn(vR3pe(0JWzzO@{K)N^@H -*);ISNmc+u*>sb)4z&Y;U8iB6g!~U7a{!Y(?NlMgyVL+wVQW5{z%bepK-gNxE7rpv9%r2_~@ -|_-1|y@8oSU+7gk?@v;B914&@C3D2SX1~>BOB|%@$xN9dxl(sN9nhef!XmeT?oRK7Ok3l7_=bq1=C~3 -M4uYme(V#j7_p^qR(8Sqz4`e|Q)IE=dEA7}N*_%l;uu8xIV7=9f^y}-A^Tg|gP^VYhi``9mEnlqbooc -+gz*W-4k9~QnJx9MWu1{{Ji`d7JC{Vl%q#$7Lhf*6i>6v)8((XsJ|ZMt%@|LCTG-A}o0BZfNnMd+1#= -~oN&>b(2hua=-j73~j8ca_y-ze=*cTX%mZQyjD{por&tBDZsjdJp9kwTfi5G5XO78e{)an!&j`x>(W< -srLIv(%#!|k3E!rKDP|)_x#cvcKW6vbpG~`j4j|KCaQ=2` -><89C4?2Y^Ot{D4|3W%9Yq;U#X9Xg{#&cZ0wL&R*h4r# -Vt#3QekJ`c8Wdk);m8LoI|;xoR{q|y-ewgX;mydnl@u}xLBd1xS~_Y+FgMtZdgK3`DPQZG{?zUfmYq! -d~+Z_pm!PtIdV1x6HO0t{?T*C&av;464f8$74M%(9HLI~IcxX}yFN`At8;MkJXE>iT+*^~d(8KP|9Mkm@p=l!ssBPt~fw9C-XghKb -6q~Q9Cd1V0bzyv4e-Mj*W0+E-^3gO!duWrzK{B2-v`Efbya3p%o92lLle`o6jLyMEcofll?1$X5f -VJ!wTiVVd3YbpkxP{8wXOekK(8MdXzqAiNN_W~8c4dTGIfnNHnshHLdMKC;}ykhj;_Y;_tPg6#-VM+> -zsDu6xZpskn4sK^DOm5(i;FAw9a83;BmnX3hj%`hkZzJhQkMK6$-E~>9!roA=Anp_J&xn2nz)OYm0rL -9q29NL&9s=(5vo}=c1oW0A0Un_l#ForHsa+>;Rd_)r%U8reXaG-s!f;`=Y*F7ezK*1kmUbPKskCv)aF14$n1?dLpZtNzsh)} -%NhJv*4#8Q3vy2mAC-W(PZ@oaRYMHY>9pVlilJLL)W){V;=fnKp8p~9e5b>< -5%>aIi0Q^C0bggdEWj`?6)$y#4M<9oKa71H#8w{^Ela^N)bFs6&>0Zo{GZs@DuJtA8E6uF0Z*8*{@q|gb*Z^aCnY)`OJ}52FbZn=(XH!&(bi>t)^eWLJD!TeS -u8w1#8Ga-DE*u|Rp7a%g_U^p{boW$Tp{K+xbTapNY&8iM$vTCz6-9O5l+pbCZFpKE5GHDdRbmFxEaY5TAZ&{b1J)7iSOf^(Eb6>ey3MD0%GOQcR -{>B6Uhqw1?b`wpbh41+lb5DJr$f2vw1xbKN5>e=moP&fA;nyFKz1_BZd)z%Ub-EmS6JDWh?e(tpg!O! -1*z!XZz)(-yKb*dfMbKT>Ghfp6Y&CL_*XH-60r+hI^OM4s-R5RHZCY-c0X;Q$p4zeeGTc@lnS93^gaj -@fvBe}51drW;Zj(X1mnSKHp4yXv&?&Di_41Hd|JDG!8PiAB31Qbb+|-`cN!s$xRG1Dy4JA5GGzZ4%LAglJTY!?WcrXGH99|i)sS9Gfhbnzt6aVhb1xO}Y6DW4 -sP0|W73jwubHYYI6&F;{nQK-OiaJ<|dmOoN*2Otq`74S>;X_GtOnKh~Wk)FEDtW7YesG0JQ;HAA_x2x -8Y!;Knc^4i;vYomx!$+9j0(NC2WxC=GFqf4I(zMZcXDYjvR#2GohdI#IQ)N -uH?Ux2HL3G14s(mihme{E#(@j3{(5ubAIvD7cMc}O6NnzvFYR@rCLCg6ENg3V>vqw<4?$LLT_xYbq`Tv`RzPa=N%|*T^Y7|A{1O_4WUfqhq5QKd -i!J&vfa04TInbAI`58k68!TVSAcD)FrJrKPYkHQ-<`jn`JeF -DSe_{Mb@b=Ni-s1zq@KzZ{U9@pq5>W0C&e;$8uEkNZ7FazW@N66xiu5AUqm%1G0cSsZn)&S;=L(&%+jUK=1{UV|@KIJRky9lT -d>tb|n~CNLjkDVTFKK*Qy5+wQs?xMPp0w?X&n6L!t8tKp7^<+#a0|K${%Yj-y@HZEbC*-&r=?)gg|MZ -CB+&3vVYJJXU>s6Ez8Ts|SAq|V4uCPRilve1REwg*w41}Wd_!y2yFCgK1NM?}|?=wvVM9OWCM#;?w0i -}-q>y7NOm-4rNnyJ9|MNtYN4dK2dRGQ{i|tgY;V0)+2X+VY~Y=grln>DCK_6v1-F6~-)E_i(yua`O$6 -g)p~XYQp@c`H}Q(E4+GJ{VO4fLcE{C}2Vb{gaR=i -A~52@djV)5B7GD``RfKRKV+8em}M%dd$~mFo@}94T(T^f(*>2e;eaJr4ZbKAwLzmi22PmCSC`gKNoC4@FXrPkt)8K-BB=NrAfxE)4BXg#*g)+c)zO%ii -UD&F{3@sQoP>pJri>Gtq($8&+xUHUX6gF&hC=5H}bpI_xwpMiAablEo1gi6X%+izh08HzzI1oIg+Ev3 -HX8>;%ipaEjm@ldYZ&z&Y#kg@e|IdN^jcYL2xd97P^Dq)ch1Rva9rn~x*qi?KIVGSnk%oOse;934NBm -3aW}xQX3PrA-%QoYVPqyV@lGsBD6W&VEoW^{^%*2$wcnkaveiyQ4YEaz4jqc~2e}2#7|eJfU&)?D>0M -xXc}-R-PKu>_HUr`Gq_!D8L8hI9xAhkjiW3zHRAF8gIKl`=ZMS5D+tnj&rHa9x6}8dCoxn;y&VX@bD6 -Jk7u+D$EO@#R0)h6=zz&$G1de`ve&HIpcIf$GIwv4D#wJ~W)Bj->!;VY7aYbI9que#lg=~qv+K>`QKV -;>ma46lR~7xb!W;bgfI_G6saa2KX?e%7pFFc$l53?tyZpezC;1%G1EQP+^?5X&=*fq$%C1vfxF5=EF+ -WG3Ri~jlzT6<=Ue`6v;k3JOcoF4e)RYuCks_hE)5u^Du}lhE`Ztbny$p@TJ5oKz6zF`vcs5SUj|9`0z*FSaN3C1KKlXNixS9muid87y*p{6czfAFx~I!vav$1+27ge -$aNj|9_C-ef8pwNsG>*O7yTiSPYh#TYE2Hr})|Mc9Y!6EI$Qp!f-0v6E5Pf%ihv8n;vA0A)?=p>GUy& -yES_~R_XAFaPg-5by{B|E>WM3K!_UPkwc6aFc@&vnY&`wLEcY`^B|JFtAJ*7IgzEQ(C3Dbo-b{>&UT; -|I=0a;6Ehshsk;m!(y|ArRstPuEbXyMKZflp}R@d9Z-(ZX!jd1n2Q7JfMf{5Q04XNACjLko9S2>dNtx -ci%}pI3YU-%36Ncf7m2&=(rg)>OCc18QBIsxv(kWsYi`Y7~)W5oOijEc=w|x_GF!s|=7gOxB~UC9pKEHCGsOZyuY#gWPH52kg9iLH*z+s%vqM -Y3mD!8@*$+7{0ih#kQ8rM;>l07sOE4cr^PxrZg)K&st>U8V+{)LMXqqL7p84ci@(7%eFOC-r{OQwm+^+VpThMfmNzUTQa)0eJGIsfgHdn|zy$5b&O9*`9oNxlDG -gj-(D0s(!K2?Qd19}{pud@=$?n7NSKFeJ^Is-vyp{Zh;NJ$<0beH9xwdxMi!| -SOC-aQ!+^%^Zt$z-r-AJiqiS#}IXNRtDWd{J4P3IlEHn@64ExRG^7h%4M>`DK~WpMbe_D3I~pBrp>A6 -09+0VMDxqpyEVvHjj5Gjr-a0V01iCGGwLdnyLg?8~ad@AS+9ybto<4*u}|{?6M2{@wfgJ8uv8ckl1-y -glGo$(+w}Ipun*FNWmV5r2IewTLvYJD@?SZl7y94GCJc(FsAzJilLWV^&`S1HPW`{Dl)l9$#|y#2(5h -zg`&gL0(&?+@K`|jO2Wt9a5|ssF~Z59O$lXFL#mf1(Z$6DY{C-G_So+$k*cueThhF=dQys&)aE<<^aG -#2@O{zUE&K_2x8Z&sCuWL&t$67u9}xh?;hNFJ)e)Zaht$yg%MA@yaWtYACLG*1Co`#s&Tly;Mc<-4(C -iqS*Z5~5ADHTsVGAVD!(H#!zJ%AMaRssIp2y2WC^8YE#Cx!TYAsK=v-${brJa7QM<7iUMP=u1&)G&KA -&}}g6v?C%t@OH>V6dI4fb2D&-F{h03m(LIaa!lj}jq5J;NOYCr^}f8|tg4zw{hwv7+-W21*XMTt^;KO -zWI=%qaAF@0SZ8_EfG)H13!FVA -%F9e-MBl=XHR9E0hUtq!;GUf+jYbk-tJMZ~4--6*^b|yAm;}a)C)0X)qZvS-d9D?9U4a$$P+lTLG2QS -HMUYP1-0cX>sTpY1&1sx6M@mC08_%!N;e3f@uTN_P9KI@!T&ND^bB&L##G(yr1lc4&cFoH7vCg&nl7Y -BGS>ZuLD@n&F@c#1Hs!MM~-~$@F#_IO7BA(pqZ3qun`RUQu=%Y#b%>{nZq?~?H@|Gs-K;9ZX47=-Pgd-p$C0pccJ*_B0rVwcPC>jP(5=6puz#5NVLf2LNR{j1Q~3a^`6QCJJUTkJ9 -0oym)1CK(GHv2c8_M|wnu<@C1zkXQ_pc> -r@9;eNfmui?DLDC6A3NbK43B+QW;?mQ#87#iJT#{wzy&`TGnaQK(#SEq#w0&n)zHD@vDT0*~lv_6Pu2 -n9;&CK0VI7FTfDszWbz6O89((F5va)_qtExGiDKM4G49IX{NgmJg%53z -&=YIuz%%C2pLqxo}!ml9N}S*bBF8Jvf98sgTW0wbbK|}Cs5aP9rG*6+0K~YlYKCU^EHZ}nc -aIlHIZ0Aaq6NB=Fp30g^6taCOnVWcxBy&ON0hcQc`ppkr=M$!!#`s?#=g_r<|o?yxO-{FKC7lRz>!!{fJ>-19Q+_t%c!aRJ{@Qx%<#(y*@v`xB<5ps$Xk?Tp(^QquJRT8Do+sxy+j&~ -AHoHg4$)B@c<+Ilg~i5b)if91T$9>oAy=k+Njt9$%^i9{hx1zVldKy#b3$5NqO!-6|)ohMJu=7wi0T*Gd-()o0PIfw)r#hoGeVj~{E($2H7509BF7^@7e!6l -DJpAd)m-g4kS>2&zJH0_@V{Qq>Ve@Y#HlKCjS(MD|h_a;aj!*Lv;@XvT7PVX!cc~5QJ7~Wpw0`Jr@f_ -727eHqekm-1-0%%!1Ec_S9>#j-fO%j+24JDiX=b%e2<&_%@V`nG+Epl_31_>YL(t8%xsiTGE%aU+Mwp -3&J`z~a50cP|%;_9F?oKVgXPtaNwGeb@6+)LxsjaYg*y+aAB$y0CX9Dy84C3-UdU@{1!c^;?-=?h}plpuove2Y@Mf6h@k-bu3G+QDnjR9Oaj1J}@Wz?MY>otm4e?f -Eb25ak)r7~GU1doLUI&~+>0X5i=*L1xdZfXWA&%7D|uVn*vL_kUrr{&3-a#g|_yq$qx6?y(F_dTjl@R+o+;Gy3+xN^eq7WLy5z^h-?cKj^&zjlLMI0dh`lMcRm*gW5W8jm9Kk~Ow=%YYo$nue5N>GAOBbu}f8Bu@6y -h~1_I4w}Uy>v;1Yr<^Ep7G#U2n#IQ&HlfCnZ(Z(l>f;B-zp|Qzv9Q -HHkc#{f`CbyL@^AbcQ=p?lpz#?37E!F@>74QbcfVU6erj&xp#biM`AaP54}yIc7u>$N87hW)93zD?@{ -&JeNeK4;)Z+y{GK%d?}!M$Utu3?k?!@Cd(ahq`%!JeAO00AM|;pV*~io=g@z&3nOve>~L+E -E^To2%2*o`%Pfx6$ak%VWFdi(~rU-0^nu4B~fiApJXu`JW6t4KoQy2GiCFb8E{852h>pEbFyh*4w<0Z -R{KS7CeK-m>+#+Ton%?a>{}5sQ0%G)BZfEeLMN}+*fqH%v$+j;K@v1 -EYB}9@Wa89)ijHlr0i?E#T-kaNEg00+kqE<>t5TN*HnwO^ir_5w;+6Uekeb@h3(|WIcEO(+@I-j;J4l -(Cr2WrvvPa2!%^$W^EuMFvj~}&VaOh)49w#*JSzl03LALLRu!U$UKv(#kn_hJ1}7*Amcwitj(N#R;Sr -1QLxj6@wC&DiN4NrR*=S{2FQBdA*e|0kuJkz(HF;rAm(V#iDum#PmFrG^SHzA(MPD$|!BSqLsmbQd1A -!jVXZdj)n$WFIcT~HC$JcmzYFW@ouLdWGdpW8gm^J!kLp{HU4;7ELFmabt<$0O_wSBd(lR<{=xv-=~6 -PO4)Ai)wNM-Vga+F7|n{W)A~r?XfDrAt*gt@O6*UsKtWtON6epGV-25Ybwi8Y+~0Hq8Nky!l-RAiV8ud>L)ciXNZKNYl)tJ*=tce3#kn9fIM>! -i8PSx{UR^NwV2EmRZeJ+wRZ{p3CGW=x0YJ(1CQIxnb&&cyXba3TJtRo4&~_;31Fp%WHzE=J -TCrVKK+YRWXvs+b-cPI=B9Pq*BT{&mZknt)F?$*UO%MA|Bc`I@5b_uA>)Dc4-ddYP%dIYC4A;cKmc>diTyR#fqO!qLuN90A|EuD^ -*4__^CiqJy1iBCYDGa5~fi+Kv5+9jC;BW?+M;|2J39SCJLNEbx~c6li0N3%NMaLMv6NrlTAmpOb2^hfO+7XGRmG4-MaUN9T#sg}UY@fop!xUq2KG7x4bh8 -;7Xbp&rba_%DbxHQLv#xSV`ukirhtJyu=I`{4!^8WQofr#h(3B);bM7e76PGAd{$$Gd%{*hvg!hd8qr -fXUa5|q*|>;tt2yPOpbtAxOk`W5J;xSuz%nqsOfy>MS#vd3Lqp4SFt*!V;~!I3!>4tmIxFi>Xh8l6Wv -S|jSn!ce)9<<_{7tWJ+?(;#TpovdRc5$NFfQeWMhnkR8dvW>|{z4hfRh}I;>glc7Qg>Cuer3272v}UF -Ud$gI7g_g6Rf@1w_Zr;PXx${!3>fjcxL8y###x*MuL&4W|S8Kz^lb*pBa5_0cqGbFC5-c9~X(~TApk| ->{kgVtGC9B7Po~iO>7^kRuu{ez{!q{H69}OW(Thaumijq7RR8>c}2*}rJLxOKrjK{R=cr*As@u_OMz0 -nD#yy(T$M2?#?Edp2dX%amQ!1I0%?_5XuYG>N`0B7ozYZ9JyAE%yW{yrTuWXl%*<;hl}B+I|P(4#NZN -aS{QWc;6xa~r?=;C0D25XV451W`Q82bou%V#s5RRb) -j3YSyX#zc)Ji -H^PWSqF~L0np6-HpJB9v=!tJ${&@PJM_n`5 -H#-AbFHyUND#y)6c&|DfXED(hfRpeNu5g}caB@9_#5@XC`hL+a5L5JCLKh=6_WN)-4`it-l!X9i~DLy -`;C_RV?Li7gbHqWPeDH+wt2cb1q94Fh3geq>@?2*AW!MX4c`{D*ssiN`sQXJT^5$Ve -C<)yR|eMjYBKE0#zoC9J*wr$F=sob2bu`|Y~rrV-vtB|VT!MotJfCdZWtj?GV{R;>+^QpF)daMQFjDx -;)k|($J-`=BgCyVE1OOqgTZF{mr3) -_QC?8UStJImEr7(im&beja5+14(!-r*s%n~sqNSeq6Q;0ytTK;Ps$%&xF2(g$N?uIGuS;`3sqz)`fF3 -a}P}w?zA7j_K@OYRBbvrr-Ll_~ZuJ%jA?lx*q@^M%}*%mj4j{w&cip7-zoi+01yRN| -BH@@bDMN5#R6qq)a}`G9stX4*O+c=BF5s#s>^D-7fNU8sdJ_u`YmI>@l?JtPTCQ(b(C*@hiHC$QOV!{*TiZ?;gLOK=yaneqiTculqsmA{a^11ic$Qkr=!oBn{Irwt*x -`;n3~}g~AB=sRQOFS2yfQpSg||!LqX}rw- -pa0r_pWq;BlI$hD|7n@FbcKHUpCkSK5)-mnxPv%&8=|5 -rgoy%U1MGdHMaVQ16r=LiSZ4!fUmG6XAAiT?mXbbXyNr|mGILYjlhq|L3lSIbl=lJAJ7LB05 -Z9mLsLdWAZ+$3>165XBY0vAedQfvOp^ZbFK5xZ48}nk9dAfc_8O&E83x>_hWHHk4r9v=bR!L23==U*Z`kFlDZ;87v;Q -hbcZTN+WFYI|7i`T-T5e2a`Moyw^Jgw@Otb+D96;Mstvb#mmvF^$}x2&TSdDh(c7h$4-i$ze)pboY{x -T68eM_2oTiH5tUGF~^sysQLg8Jr$ID5#eKAs{tKmnC~vP@Or=EPsFI=61&5rTUcXtx0Gr24nF_j&TOK -1SST^e3n+2p^oU2g!?AqnsvD_;@H9Uj$JeG0s?`gh40xQE%Mlrx@%1EBk}{vb3LUQOzKt&%< -{dwO$)hL4ZWPOE;^Rh-u7v=Tyj$vop3D1v-d}j9Lb*@kJ?S*e|#*RRrg8rX9T2JDGGp$6VL8y>U}{p529-=xwpHeXhB6;V)P6rYEg_q%5%yG4B&T9vs*7yC-#H1m~8OJJd>_ -U2>ok&Lek&)+WYh#%Fkn=;VRg2ZXG`A(46{B&?GcSh>U{8SKfsXec>SW{dG2%?XPxE6Nc*b_^X{R)pT;~}s@fJkkc&Z=ta( -cb>F1+ZIB@~|Lfqh+Thzw3uT)v4`LQ)k>UbE9f+US@IOue_J&&}==_W;?krAM{WEkAiu^tYufWv|cIE -C<(w-fYF?4x%6BFxXEjg$CaZcrCrW#aGI(cio4d!F>GJAPnH5CKCFLXtSX$w~r8XcFDsGjWRCU;*F0f -Jg}X)b1{TcL9c{e|(unfxb_vz&L%U}I+So=*J*V~W325z@Op#NQEr^6meyJp=VN?u3Z_{`hT_xesrB)3A-XCGP>RySW|xF3ZO -DY{zyGCinaYjqH_+$nQPFy`3>Z$~VSj)AFO-Ho%295_>iMTcK|R8b4kh3 -WR4f$OO^>*M$g2;&FryVk@xv@*u}xA -O7bHQ`0UMn+!(lO@P0!$C`R$Sv`)ds;)L@hqVfwOKrD@LulRn{=>=O& -%7t)`v2mOVx*jl)l>lY>X-651666Er>@jh?HV^${p%e0^jHwziTP|)6UhW+8mv)lI+28&JObU%FV37P -2XBqf7zZU*+9D43vMu+Jn&DbKknu*iRs&Y88?M@}y;`f4SJ1R>QP*ruoNDCl>wwIhr^9)K9hg<6@p{f -3vnh*SNsQU+8T}PioQzsoW32GF$w%d|A9H0Dz*SXx6fU9}TbL0{Wg{9LyV!0z~7ANvLttSEOP72rLPP -*ncLoF4<>y_hHYKJLiQj^1RP**@1Zv|33LeG;gC#Sn-m#4%+ni$Ec1@@Y$TzlD0MrTG@{eh&e6N-$?2 -<%hp{=VGZGND6E}|S#M=Ltt#PQHLWeR73-#9tyZ3c!6Gosi0iwt -mlB8RSU+=5q!5P{R79B`wdn_ZPRXn7LpPHxZcmT7&X?@EKw2kdN}&4#0E6{Qp-&2XJ5y~#KW+z5rW~R -UoZix>>wV4x9U80~xIBKmBgo!g-Uq9-l#-BJy6WNd-f;9dPqKUw^zj>5MOcnd{vTtZ0{Q%kjH@3#sVi$jfV#gWefsLBgQd-pr ->kk68gwE*SsO!y>^YP@Wo2Sou$p28ugOgl_GwBKB(3_tXGHOgu`q|OsEXAbpc#9x(WGXmgq*|TYCkExN-m3?&@#+>b>ZvOD5J>`7oC2kf#b5#WiGa2%lLXBr-aE6P!vRX^f0(eXD;JybWw=}1TYEZ!428bJAqk*|$2P^onhLS^4B*uVm#cHS&gaTuR_7scu< -1@kYdo<7t`!i2p1H{im~nb?5&`Lt<+dQh0uF@1dkn$>vq_6iVnm|0=naMrR`P@$-P4p~tHit=l+2LdX -YwwBSLt9n;KU|(aM8z86{_H?nSrQz_Uobu93r0|dUaz?RuPx0quw4*_JlpzM!x8<9OYLzJb_njE~P;S -=hC|ks&oxCAT5=k*fgA8D0~$|KanZS-NL2?2&k -Aqc#6}2h353+Bgn`{#<+UpRMr0uztS#dsc-IGznuEOi?6+Z#)Xa2zsMcFoa_$y3s5IB5?x#wDbac^AQ -xy?JzB_)CpF5Bv@op}Ozf0gY(nP<f6&1hBD$t!V#o-OM>sUcQm;Np5V9rG5MbALdSda#co|r@6-toc0NesdoU|_7kq3hy -i)~#5WlU66TOw=SmC>|^V*{qv37PZn%;poHjM1DAOBK*@n!71_meG@Sb&+Sxh^=Hv$uE4k0+D9=Pg6H -2Ad3;L6zGq^xfpsyl%>41Ah(RD?$Lt*JQwt7ZaeJoY} -SSLuTCp>2!x%Ng`ToqrVhUEo*(4Y>0N$h14H4QvJ`KX%s#2U+qwb;=QXo!q!)snhjw%8!%!&|%Il -UTt=lt0EdN!;>FnvTp!eeHQ(>w!OwA(^E-wP?7MsH}-Q01>-a_koTe_8&d|DxW*!Aa{i*E(oB1+mS%D -ea5(+yc@S*fbFrdGuS&Bo_Gx~$BUBXq4yyR0Z%qG~%YQ7kh&%iqfA#=(dsNHsj-Tzv(5*CaAvxa+j1-uZZERp2#~P<+u~h(w)}QvjdIZ?L -gu(DP7@&_2a(f*>s)4?xvC}l~M5E*#OraVAt-EI>K*_+@0!cv^3qGUcL}Di8?AtUc=K^EG_&z4YdnL2 -R?CSnY&feiGwTPOqJCqeTvW4W1>==V -srQ5R+;av)kQjuJ-$6xFXKDie7cCm2znBYol{4g1pZxdYKEvP?Ca4q!r1lMToUVw`3LtLZL{}Xk_TPw -f(s|&q*m_&C~SN8d(?1U0-C0l76n5hBt$cwrIK4!uC=xO*e3ib;osLgFrkw3qVb|@3|?YO>#+f#M>BE -J6s0?C9TzI$yKFCm9l-yzex+v?ve^47k@fQ@Y&0;WYy|W6 -(GWAe11Hmb0~C&(X?IjeC}>c$mDQ(tNfF;lsRu%*G=7CB(SesJRq;}qn+jXY>TD{NbVwGaGPA7VtAK` -rihWVq*YTkLS(C<3}Loe@XWZ_P9F4n>6DYSuuOl}6Foa+5&=N0sDbA3PTnbcf;W8(Q)^-`;$6~@l{{t -7_Ou=s17wkFot$KS6I%>{O&iSxhrEqgpk|N=A1k~x!N&2I8_(A$7Fr>g&#jBl_n;$s1)8tPwZF>4LBA -rpSi1Ag=t4}Z;sWT9NEc611QNFg?c{m1=(jRc+LvJ8X`zWJ*YrV;dm(vIsY`xDrF&M$x0qUA?O~~4AU -n_11-Bb)o?ov!WGIbsQ>Yru)7wmJJ5QaGNeN|<_p~g6dyV)ig=1!J0=(RI-@^+?gQ%b<$+y$y1TjRwx -=q#g`;^U>5~+AK)m}*(&1=Ht9+flibgHP*3jAk1qN_%rfIg-4>Dli3!-tbn@iVgle4iI1#XgJr|B~ -jXT3vB>U{AC$&L6?Q>?F!}+x4tShJUF=Q#_M+r=ef(IxF%|{PlmZ+y|NcWT_wcEQ-@8Oc4Y@Q7BArba --RM5cX*+FdgmH!F$mNxrghb_socZ+~X_AP`EpNeO@~p>|GkWbwaua<$`FB$VKnI3liViW -bhsZn7#vgQM&hsY^SK?4=VbVEjzRqs|4wL`VFzCap~Y)kR0z0syM#$)9p3rw+H;jvZF7fao-n1Z_c}| -KoI*B9qL_Q98vqP_+4&HkiVTx`)=uImk$D~Xz8``vw83g)I&ZG2eu#aH{fdk?qq*gXv@u-a`WJ?)w-- -|*+Q*x+DAc3baP<%CgzK8u?}$a^e$}ZAw=T-cGWU_1MA>w?!_nH*zUID*nckgL;0@+d>En|Jo9eR*hu -T2nb-BlW11NKL}Y6N&`fO-E?l_6WoHk -j)j;ztmgj%MVn(^`7oN*7&iJtlQ&I!8f&cE3vz2kP<_lF1ZFkbs{w5H{)Seu2Vh0v&6!YhP)JFaGO%2 -?hiw~4={g7ulMMDc&@WR)*5bTd1%WJa|dG5c%2zx2o2<>%CDQfJa_rQbq6I11IbOdk -HxxBXBBjx;2dGvg)0Z+SvL$Kq6v?E-xIEHb!sL)0c`VGCFr5oHW4>C1MmGTS0-z_MQJ=}JJ3p;_OwLS -qOra4U3*;oh5HBv-h$U6+FRF~mYT)Or01;*|2B42ZxTU8N##4#1gk8Qax{0sOj6b6Enp7+Fr(MUh0!n -R9M;Ni@o%G~{>e+2j^_T%5&$B*rS>Q*>M;TbpwMk>ND6M2<(D-Ou(Huiq$6l_3;L4VVh~5ZJHdGk0FydKH6hFLDVACo%M*N1D$|1LNkaUd%OwKCrVe@|XKvI54F( -M;Z|WqVCJgREuQ8XXzsptcz);S2lYo_vL`rOLF()vrFAU?NJ=;1~tj{kv=IwCJsc)_!2;*&$7Z;<{8} -vt`xd8Thf)(O5JDK(pv=`9a$CQ@{6DxiMYbbq{tl#VqZwxd0Dss=4HHqcQSwB=<=u|st<_8eOc?MyW^ -4?UVcli*yn_F)C(zdVS)Z1*5+6Tg+>27oshTC@es~SvV-}sVuMH58rTi$N35$}!{;d}lGitYJ4_#JB6 -9gpI@;1k{63%1X*+qT8+$ph-WOU8S!YI~+&+XUaY6X9=bFzsD_#ouB%%K7X|cQ2p#=UvTz9!IvakDrH -Y{Kwniz6%1s*aowY{+w+aynb77@9bNC?9Tzr^`nb1+dCGq?eFy?ji&Eg;P=PMA0K~zdf>l#{Qc>H|K{ -=crw8J9@GJWIU6xrka~|2{!pNCkFwCXwFAJucDy*E1d3d4)lPgSH)~V$n>0&t$;9c!uocsu<*yRBhqY -55bSB{*!a9;>%;qdx-f5yuiM}*2gIZ-BQ5%#h3d9opRUMwJe1+`D9@D;;Gn-F~QB0se3&fO%)tLU#|S -byk_FsbXt4g}iPihg8)HIE{-sFGI5w~Ig5?7z_W?++O8?GrZX{YJK$y)^Rm((`qaFOp}uESdRXR~%Uj -QGKlRnEX`39N>6i2t$mR;?A?P>D};eQ@z!TA?Mntl{#Lr8>e?@|lwOb -9rR4$e6zV2Xa8!PC|f>fyI{|57Y)KZpei!Et!^{v}`(g$W44XdH*|Piq -L`HwNPI9+yVo9p*L^+o*U5?cwbWe`4f~alu|^Kzv?xnY^_{3h#Gpa$v(ih~5+Wn=ZiLjzKZL<10%35y -E?@dQ&7D1a5E&{R$y>%V1((B?$IN{04v<;0DNEGa0_iI;r=tylo-kjgZ@u6X|>C=i9q@gZk|(j_t39y --No+;7;Cpfq*ti^INeH?Tv=@w?;#iQOGl+K7@5uu?zW^Io$6kw_AQPuGH -TazK;>ak~bQ6pr4<>BSuW7pdJ)&2+5czNUh+u!RRF8?x9Z~gw@K2y*AdF0eDo)GxmBmV9Qfgc|6AB-P -b!Es}t;tgP<)mONqLZKSu_@*bEz06)F3p;dnQ>2&mP~&22rqZ>-562f4$z)d5DvEPg+?CHaK#I?@*Ex -slkRU9Gfs;lA4`TK%MTeiRy!RqqQokbu-JYWjCgY+rYH%4ZM>~E<8w>&{KlE;|-v{b=H+qPsBk^h+vy -G)rCI(v2ctnnpe+H8yrJ7#mTZ$`2>xDdI2RVMcBtSfCN5~J?JVDzru9k=E$?H8ps*pWDB+QlZ5IG;1O -lQM{+n6mYxOhsW^y{hgeE>$lY-x9To$^rKs4_$zjfcAGtV*F66Ig-m+;3NOV^&GmHAAh9U2qy-MdP%q --;Suiz(BCn(}iGr4zzIo-=xA1cPWcl?9QyUue4YN4;N1qoT3cX=J)o`GO3lDB@g%7fh#*sFAc -)6IiCn58{|8zx4qScP)l=6>yNo!a~B(DI)Sj4hdSgu=R8Efzu -2{9n;=BlGJQEP_pu?|Bf0v^^K8Ssb9mHb<4^R&5foFr>{;NeB8z6Je;KE~vH@_G?oAXRddj399`h{&|P16|HQj%`l?AQEJC!M1$^Cg1R -nZ+p<^?)C4O6!xC3O1~!!ZA+5z9;@2Nx`uCqk#zsHXIJsP`+g5aZ5s*kt1&~-9v|DA@5B8Dn0hB-sXb --8Juv*9N}axaNyy#kbRRFc?UI`yAl~dg!1tXLeFxLFi?_R=WZ%}H_c+4vw_}DlW#79(@f*8OP!Y-M02 -A6Jy8o5k2S2m>-Q?rn(PKwrp$ANe$FBPcYD{Lo%h?`6 -@S~iOh@N|pJH#k_6sM`Z_XlTr1k@xJmpMGgi!%#3MSIBxDL)~uI+|`V6}V@2b}67xGHZV-z9DtR=77d -Buew(vZ3)=eYzoLl)>v+0D~-^n3kn2%~de4DqQZQSLBo96&h_hqeKA>!PJz4jnKQ+ZJIb=Vq8x-Dzg4@}}1u)jp$705tJbm#$Tx(uYSJO^_C&DM_#_>`V^FIJ -6sK+&!C}%ReaomAW>ow%`9ccf<3CDfd5|`3dy?{#_qH_lrAzXe=dQ658v1DT*dxl)`a}LMV7IS|Jdcq -*08dNE9VughC+dQ~ZPBoo>_b!5SpG6J-e5t&h`q4?^sv!PHKdqqom;`gwF?yJX|lF|>yxkhk;a4uRp@ -dkNihOcSdcLorvCkAjFQ -8XuRVhh3%Cw@EgnFFXKegJxsF!a{Sx*tH*W6KQj5iKZj#)X;CdT$?&HN;?r3R#*HjS-u?0^Uzx(644o -`t_^w)I`y@O0D{P{Di0OD+1#8EKuVY3}fF*7RmwhNF-fE^l9Y5xaPO!Wm3y}BuONi>wPbl<04}5>Y_e -iwi;77M9qP?RWGOqKtk8aa%$AJByCQ?6T0CM%Clx6q%6sG$9YO?U$-^zDyFS3E3-k+zjmk+$x-)|3j- -;_Bbz4vYX5c$~813z5AeHZ@N9`Sc&E_;;=@U`N2E%fxhW>jWB$Og{zCt0`DRHv!p6?rycV4%gFcbXz! -7*CgJ!C}^0$l+)Janis&c&G{6yW!dt;m|WJZEd5#x{U+@3EP-mj#ZjN&C}uF%aRu$;}(U0a^8qFGT?S ->1gg+*HjbK$6(mG9E=j#4`q|AfS2TESooGjxm(gj&0pT!-4~(TD;ma9r!rldF&o+IASPQ4Yih?>qoq1 -HG+Xa+Mm^_&!Sv0l0n7FUVlUjw`r9IKT2KW1IVjl)GX|I{yD)eQx~UJU9WmZ)7OLUrN=IulR -E_~qi}sJVwUh1$T4%Zgc`FbD#Zt0sx5L%i5-GmyPal)38B~Bn^vCA4vLyl!R5&1E#6O2B`%{&n9a4Hp -0~?o(^yZ?egdJM98Q^FcDdhM%>c1IKM1sffJl!(<@%&_|A{7oODaaFF6-%BysE%{9iqaU_3jn|GfF=S -*a@w{$$T3b7nsjE{tgZ@U0z&m;*J&7urN9{hM5fA#Sys!r6*MFC+C{Ff%a -dHidF9-2OofHDfw@tcy#nDomm(rBDRvi@a5$O8N?53x}{9CRDuBQf?v2mAXK>Ffj+Suy6C()WMtllm~ -HkV^Z{eC5Z-Rah2EQMWH1qmVnfDw4*#rc8uIjcp#>oI68R*sjB2t%7qVoqMJSy^mD%`Y|ngCS%@}mKX -zx}XWNl48|tUK?@taRmunkA2~f~JuAsbq)vat~!HGGq$8F^w^xF|fb*X!KhV`5vcy&58O9zIhW>1)aU -zR5yLpS-q)Vc+(T~h!-=a+IVOWHm-^Q!6;;^dooy8Zj*4&S1LUzzL+jJeD@F|?9y{ -RQ2gs+TLB^#FSSvF=w(gp0v0aIR)F^KEn3;WL`MYCMn!q{A&&CdA?^vaMPyvP)agQ&t>xU^L!~mjJ0p -Im646Knmf=5vBE-j5X@;?@n6U3r$ysxAK7!5#2Vd7zJW2?4MFlJ>z?D0;U=c6SAeMbDC -FEUrCcfUR^EvEq1@Ot&m7peKWK7vg_AKrG4<%cwIpjzB9}apxmxFvtP^YiX>g~sistBD`Y|}fV1F1fH -0YO^RAO8oyTEZ1g3?>xjGdcako{zI_d|8xB5kKC4PdP05f06Xx}W%QFO{Q@VzNw^DAc6mQxJ&wb@MLW -1V6nKeRJ>EG(!e7u_YJV-4o#My0Tnym(?P -hN#{T+RC9``_(nFPR%Qe7VA?GikexEPijRq?Q2hSmVzGctkFb5MRP$wn=RHYy0D5js$RifBbGidN7f) -(M8PP_5rr^l8qS$g)sow%T>D^3xUJC=7T6I0U6i$L=j!QaMu{C(J4vi`Mb=70Smq8pC;I`;qB+3Ww>> -8qV(e@xT#zp^h+{I7d99P6xz>i-(DXVV}5ujK#!0|p`Nj~~zcuRrqk`A76+`ZY`cc=g#I?Y&-pLX`i1 -TiXY2{q1%An2@6o62Vc5#L%6xllTT?VHiXRl-T{}aGb!=&r4OvxBBSDcfSgZ5PKmB`EFd>4<>KBU2=z ->(4M{f6v6H$bMGPKTL@*}Wd`>L8?DEvJx7KmJL)8e9pY}h8m8WQC-|>-pLeE??f7#SGsSmk4M)3*%f2 -oCwlmq*yixgt*p*v0`krOGNC5%vEpqT~X#B31f%lbftJ%Biz&$0HgL^|8`S-Qf_FikveOGI(H;{=O#? -GnE^!}gV)laYZywS7qO<{q>!GhzjsC<%Acv*y|hB#@nL(yTR-gHy)_Ma~;A$u -liP@!gX;8&^&eKz&xi@1RfcYK73gx(PD)!2TVJP|JT!YMwhomhkbd^+&4!%V(Utm>dRO(q>AhzRWymGU -SOA7O2EQjMmcD}T^=kyR}0BDWrLYu00q@PKo;b!fM7xdc8&ptc}s4f5(8p~TXCQLF?-5A}9?jHkke`Y -x7Q>Dkz)(FVP{2HnvTz#eH&@@kC;f-1PuV7pHRxw1ZVj~N2LK>F48_4JC$+f9c64GLcJIPfA?*H`r>( -i*@*&swD=(K{XeuIJ5+l7-9jO5fY)K4Gj#*P+e&T>{=R)&(E6+dQGOk+tMw8E*vQ0NmiXeuGQ*rll+k -v3zR;akJ|KJu6fZd= -f}6@soaOvd-40`K3M8)hOW35FggbKL+#@zFI7bov8Duq<)iv>UEK=r2_qfymZP`13J3k4bA#Du(?PhS -l_xefro3FidfU1DIUT3V18n@9eD^#FF6EWE4>5~u=-I|;UCtW1K(5?6cU|VQh{a=VG*Z}69nhfpFoMDNNI4n##(-a>cUK?J%kRhFx6L-++kUAUBphwLzwxUp;+eu{>b9HP -$oJLp`&i3+P)N2!yU8~(FxsT!{l%GmwD5{^JnwO0A}s=OKDEzHB&EdVh-Gb}f|#7M1#t!t-zh7(#b4)jb8HvYI5uoKT@tTlZ26XE%bjDA -f&?>Z%^CEa6DuM9mHUF?>STez+LWO9tr7BTszK9o&Y?Rppo)=b`L`V;~rY7ec1a$man|iC9igmXSkow -$S>K3B(I_ille~BuuUF=fwtL!QwYO@}TN`hK`AZ>q&VM4h@lIAQX;ajY{>68(75Im>{n5mj5W+`T)cP -=eiPkgCMG=3%H?VH-k^8XoKAyEQMwoO9L}+&4WH&Eb+R1soZs)t5MKwSCU>80OxGZJw+NF#Eie#j~m0 -|X{**jf1=@&%@N^w%-Mt4bBb19z19{~w=qjvF^U8wj2e(l+@2IVUl%4{${wAGbTGzqW2uFqU0!l|=bm ->awL4yP)i&FpNnp>upI=D&6yLWMU;-{4oXACxoWo6oHgW-bfsxUHdZ-Xd@mkIgucEI6$5UbS;K&lm6W -+PLDzM?XR{-3PXSuxgsCN@OH#|F4@(|&+LC&7RsdSOwP|88_LofXk-F)qqJlnp_hwpMb-_T?B9d_JsD -Y0SNKga)CKmUJf&JS$+kLLS9p#i~3gaT0*LlJ@kahSkC0;g~sfl+(|x7&wAfbggIHhm{{_EIx^ukoVZ -V)YxUjPo}dq;`~;#Jj3gmhMH&pW$2TT`9fmO(FX}XpZjbDJtKUn5j2R-Wv(2-4Gf2f;8WjOxxfD`<00 -vwpW|w$U8ChUf5nz2JP@0$M@dG(Z}#^zVkkxI}^D-D$R591nmAsU+T|x_{F1IsZDxmLSO37|al3%rzHmi_&zfq!S&->(|@c -b2`c`lIX&_`L4SaYqhh&AZ3&%ULgId&4*U7rWECz@Ki -mKiJ{Q3sx_QAZrIBI`oC*pX}$^ymEu??AKmBnS$r(Kt=$;)d}~#VP -4=au_dKYldfJ^#GMT&8uR(T(wuUJ{Ad|Q1pjsW8zI4xD|oi__)}*U1>~YW%}TjqRRlcS8 -9g6JP&JwznJ#MfCL#q=0!e}&ml`Sj)xlu(f*w<{PvOi9}dI+*_?k3!@n`#4+%4nA~2L7NQ!`Ql%jBOi -^&v%Quyv+`enxf`BYhOFA2#18+`vv@;$oc-;RU%7EM3*#zXeZ{Fg9}#QRJnvTOP6 -6Td^>ZczvA**6N@gCUyj-Qv3&J^G6%yt|;h4NmqKjrT2vEhv-Zes9=q^PoKiw+(>dJ@17f`_Jt{viMz -loPVt59hc#ECk{mJt>g%}Z&+mD-{#4>y&(o;zeQnbFnrcK27{_g34?dzof7)LC<{(|V@&7$#K6 -xn?IWap@qPRIkOq9jv>zj}4DI~>r%1dvX0Ja-V&LDsfqbkQ_;;55vFbey2K-$f>}$98=|bSHhE9(<wLRqlN+;SrX^nns9t*HtB+QndIMd#ukLi8#{VskifwTT-%T_=nm&ax>h4zDi9c^%qHjaW7FK_E;yE -w=7jo!7*Z@7$+JWHzX!*D14kY@_?I2^pqCVp-kyM3B3RiH07NZ0`s*v=<1FRM*G#P`IbJMR{_kSz=Dl -hOLnJ91`b=fV^}Wxud+qYG%VDD#IK3qAygP8^v)S*0R -5Mk^oEiUn6sxw<~xo=IQ0jH&{Zd_xGrpf6|Y?zod(cL;R6-`X0@{iBB#g}z+vMI|7)8D2dm)nMvnC?z -an(q0ue0V0kY3GiO%{!n4qZL0N$es%hTmzeDn%Gdk#99y?6mpUc0WTSc{Pmd>b^-MbD^om3vh%8%EYh -323kz23MvT7Q?yw1?0qfUJ>^wvz-kaV&rK~@kYy&gu-%0f8|;n97tIB>z`AoLRZ4&N|{@t(D2J>*9TY -6osOc%or?oTBp-T%A_Z(4+v}Zb#_Ba8WmWEE9SHT(Ngv-E`KW4&k4d4H#gTXPw-x!(9Of$#*m3X^^3J -v`_;?%oCV)9o{r(z1+_BhPHr%pm4_MoIJ?Lztt{lE`GVvF>ux?~jof^!}#(pxz67FW> -u#2gsL{*J&BgHNx^?q?FzHUJa2i#D&v#Aq%L5stbh|Dr8&WYKP*?vv;DK?{!#h65^Rw27C4VjS|*FP% -SFw4WwGx$6{vBBxJBaq3LI%PhY%qY|uHfuIFL6N+g(`VC6yL7(`|HRkZC53S6IN?PwJ8VqcGw8(^asy ->MU%E%DjTNBE?e%Ec=RK903%yBVvOAQj9SQO?!D&^^I{(Kyjg4@PC8za3ykEkSFHDP-RCB#d5eYWhqbiQQ<53brax-3@eC8Os*H)643QlMK)tztj;{ -k{lJCvcAc(Uy)QL$#G7oIp=R1(vegV>qdV6|^<<#0Kjap$0A<&bfQOnYhJhD37;NDWnXR((N36N_Wee -iEqW+!<1Y4|>0zoCGv4aaMxVf%OXcaPgg6MV-csEm^6et~x+V!p*W%)u>MV1)=HzPC)ktCqnbuzBpH+ -1r;qx5^X7Q4m-u;F!7ULi)EI3Qxt^^V9^J$XBTTOk?vU>_}{PZ{4aaG75DaA#nBI#EKB}ShxC8_T+#W -P=X|T-{A~OWI1Pd}nhfunhB&#)?LZi^EASA|r$tQZJGYbLyGRa+?x1P+2Y#3IC)u7b!N{HPrf(U1>hl -!P#(j5voVULm`j*?-7&A)lMVMH=Q`z0D2;F;*qjy6B@ne -s=KEB>pGk;_B*sC$=nc^p#C7)-@5|V#|LP^%Rr-fqKG=RydMX0cy$n8sokP1m@U3WRPi_2JxU>VbJ!64re-r8f%%plEQOtWDA)i8#wijQU4{EAfN#rO;}XbtveezoXAC**@XU -+{+XMpDYR`*krUwbQEHg3Z7?};-S7)1F6y1MTpue$V;5%m}a12-m1Xb -zE0Hphl;Dkb^oK{WvdOJ%qp^%M_Td02Ha}>Jozio67f7@r0#2#*_?dLBP#@?Fq6tai -P?29lMxo^(JZ%r@sE%=a8?*jDnT_2zBb@174#QBSmx4rJ}@|o=^?CoSEe>Y!|yZ!?FHu%Vqw;w#b*J> -isemqa!cAW2iuPw%HW5D;XNxI9p#`wD=KiakLLG169?)SRQ<=d{H!kaWWRD`JCK=`xVipKvO@@nO*S? -0ulv(y+k%TrtztR?5hIHvQRve>-Qxt*s8x?+K70k{=)_TIJWjI@2-KO)wmalvFbGNP^CN5uN!*vBgVj -9CBXDu8_%Kd$0W!`ZPPdbNUg@oT?LOO#Sd)R#=hTDK2B-Z -OAcZ>C{MsxbKOuJ9yh&ssh8@CQ9L5@7*(b2#fOKO)@00_K=|sNFc)^ulB?DwNebYBNI2#h0xx+$48LGMSh=o2Cj*>Qx7DMHx}I^I08wG;K#gt`7mF9ucTeO -!}B)t!zo=;AFLJZ41$;d8uPfcY%+T}0ID1ieo5##W#H$@K?R(6mBDjvLkVuY7o?AhWyP3$+aD<5S;A( -@Rp@a|xY+C%X`88{b+aI%A>Mt@!1+2#an{@sY2hKGS-aS^c6*4=Ns!o-;?vg+Smk3BzZ569BFk6?~@d -vwJbN1tR)wK*QFsT)U@^kbtDk=}L&n;oOQGDnt*LA-B-lJOkpu3rIc#oHOPWHedVo65PseA-E~hSL#q -=>KV3VH`H5`zIx0NJo5OwluO=)6c|5Hs|@?NSO7KYT~6SF0={s>#v@m<7cSL`i(&eNYR~~mCGpg0NpJ -?Ga$%7ASN@2iTpm`-4RIF8E>>}}v_pG@&Pmff(ZQ)-tmUb^rQX^rf7d!5Tw3D8x9#0*{N3FR_?_F^cX -u~dwxMPovI1rN=UPn)kdjt$udNsTnKi~&t*bysqnD8{fvkG;YB0+bok&|z@T}~B%0G%4gtek+hz6)J> -y%CyU1VW!v9K$D8;&k3qxkD(VU&bmJ@y1^D0CyTxHM1HWq}wcP^grSN>ZN|Ejx8-liOeu^IjHKm1ZH& -V0~z-UtTN<(m?XWE@1PBJ16&fOEYVryRkIP)*f|Wm?IrDN1}o$S957NL{Uqe;Tw}%1%uM8SW5-n2L5& -IXr3uC5NyUH2p9@SymWC*idadqh?)KSz~UiBUN!Z8PE+pQR~2E&FdF7a&5D_k(pV|Bl@w0F-hZeslQj -ePs}7lK!GC*hMPbMK*xP^ic4AI7oPT3tA55dCzX>AV4}_SCK;p8P#Fqh -`l^%?D-URusYvU4s?a%;M#Lu0w7XR@nujJyD-$dWscJtT4ifq`{sT=GzB3YpASC`B428XsYS>(RH7$_ -u?h#%*RTT4FF$f5RMWLP<`dC+62$vsd3AQ)>7iX4DBL>_%q~?=7&3b17wVX?;?Zbf`w3zf9)Q%^_9TU -J&l@&F^D&I({cUeMxbQn%o!4@{atgysXL#iYs>%dcLl$VKw|*?_kq{S= -MahhNXH3i^!ihDvRnZm6LDQZ)DzSNxxu@dHl%?rcBgVo7wvSR?`yFo7Yvv-$QIreGMt;m@E}PVSPZy9 -3bMgf0Hk#{Q+H_Evi;!-;!+|b$Hv -hu40>~=o(MtK`N+glUU9Z4Z?mvWMPJLuv&9z?Ny82Yw1|MDvczBTlr_XB({Ioy73R{=%;4aaW{Ue7UVaHe2vKy<2pPP5)2^q*)5;KEm@R5OThjqNWaZyU*oPazdj_h_fZ=GM<|yA$P;LG=_Hm -v6>N0`fxz2xenZWN{=fAql&n@1a-$#r9t=6e)U)3|0* -P8UI9^ityn_CE2m0wXvNWw+{G)!dJGnv=UzEAwrk=pzO6O`C=3XQ_ekzIh6kcvYd3bWC^ysY|lcXfv(=`T#T#poPry|Mz2 -v@J336R-qKH#sLvZq>re4Coc(fB(l;Y+o)4K4czpw_qolwSQN}g3$ZH7P~Y1^K1szXqzHE}5vg -y*C67+;Mm8Bp1qmD?PsGE#h%rwVqK?+t|_a~M=z0x%bnT3_+Sf{k##Sz~fl<)?Ho2l{0t#tp%)ftgsj -ffV7{<^@W3yYiN+ij52me}V46Fx`UPFNgkp*c#iYj%FF@u!Fp_?JFN%DoU -Ti5?6C+*2*}62|uEsv_bbrOXczW|_dbx+(-skYc06zIak5Bc -mKrSt6`$KH+exa}KcYXW4L31Spz7{o#vr4hWk!szE2@LDRwq+MykEc;GADkSIQ6E%zMm1eaZIz==ng$ -mb5quaI7ZTllZuy!g`-dyMN0-8WA9uH_~O9d65F{_8-ROZl_*1HqiS+|VUyTlucTVvLiKRoIPEe5R8Q -=hMSNDQtF5V5|i&lxY|J(CQJhtzT-D@B9eV@QFIIL!^GAg%NT5}nfsUYJL8m$A0Ax0f5^mu8KilE?Ge)mUMHvURgyGXuI8MvtpK-(|``^ONn&2ZO|L9~q4%yL8I-m#r#uDj# -1f=+e~L_7Tm>3@WQQ!A$2X;N222%Dlx4Bxfi@rDaJxx!(^)$sWyYm4XttY%&iuKV%PiLI#JaDJ4zItv -1EGD+yfjl2wrPs)77@C66S1qHl$QogOer_q?!SX!R8FrC@fa*B0FuRKyI%yUmkAUrwD#0X)whN?0iiy -h(~XxP6BjPLozuA@7vb1a!|5j%*(cZ4Ud!0L_lhFROAs!<6ul4Ce$a84KTyyOH=(7IWm~AyxkYV%#g` -&O3bhpNEeB+0?(pkbgJrkC}>nhYkc$2&IUiWI0n7<^U}Sb56<3AD(?;z;$49ly_>$b#l!DTneFGk{Xb_VlB$qJ>t|ur9}yO#{R&7rKLae_L*d~!fF!PQ#Ydy^`~k3lpAgm;p$blh^xN-&O5g)kZ -U7R}9Oh?G`9AjjHUE6cz(2j_pD!8sr`P=RB?G^I&7bE$fFF_|5<$d9P@;&ou-c=*Y9o2wZCz9uv=UA< -;*_*~MXXL+oQIN#hSutUa8bpw;JYw{J7l#jwUro*Gi)t!DAwtkGY*&L$}qpmfdF5N3BK+Uxg0$uBK?! -hQ48|oQ(*?seLmC3JMl`h_K~RCW3thjA1r@m&YI}SqUC})gf3j*#pQW=@!>(5iYvfz2`jT;L*ukCUPgJlC$-_dL>qs%4npy+q_-;z{jJ1cOjM&BqqXy#`EXxDqr?kn3`>rd3$#9rI3wV5E=c!FRl -lASP}&&sVzEd=Bb(R{zBVNY7MEHHL7OnPB(mf9-V4K@%xJ=wl$MPynFwDY$aix; -^Qf#`C{wygL6-9%gDBGX?ZdDQwH@0$Txlei^M&jZYgy@5}o=#@Xtx1>ARNTBFdCkLxJc`v~JCyg{Z?eW$})cluS*v8kfjBCp}Z`*&IRoW2@OMBN{{~YN -5C+Gc$^1nUj_tBjKAq1yjl0XQG#4#K}a2Up63_&1@Kq#ETARMDe6y3%^$fugl5hh2r2Fh$nBC)NOo}?rC%)-c?OE60qGUc9pol&z`sYm -M+?TQ$36qYO$|K*ZN0IZB>JcQ*N=a8ATbPoIF<#}_GQR~$ur@4D-&VnB -re}$O11b8KdTIKlIr5}^t&`^1+AzIPaBqzC;U)iBV>0kBw``qaGB_92x%ZCk`t{hNtuCfJb)<>a&qni -ut=Yjws=pe|GtkE>SkKcHr}7+kVN8b?T&tpN$7VPnMwDp_&5Op-AG@#*rxGrfCl?kxk3l2!pI3O-V|- -&6AoZ>G?ffHEzol~YRpbbU&Z6V19u3^g?#YEr?25*#QY=say#=}t_2pKp4=5^Zq8QD)|A76zx|BlQ&4 -~{>8V*}hVseoLAY|I%c9>m)2ZA21@}1)^hZ48?T2ah0SSS@VF@+ -K$L~;Qip*p?Eiy*1OShtk75ZP(UK#>reE#1>z>pZ10?amqT;JZw7Q6S -ml9u9!a)P;W28~c^@OH0b*V0J6eW+tayD*yVc%&+?oPoO=+~EB`n-{97j@xRj8b04i<=+Bg(O^-3W&s ->KxT@g?LIT|b_Z*q>xUK^#H0}qZ3m1jsj-OI^mA~$8!@&jl%r=d*PiHLB*u9hol7Yvx;ZA|D;EaBwB2 -rF7vL0&rYPmWJw#SdiVb&dna4w62-+^o3BEz*{RH)|h|DO?PuS4RR#+u_K!>yt`d@zPczyrwEG&-l^;VAdb*=Q$Ny?R6qw5DD6;( -ItKmMz*lzrxI_vICH|ismO$`PiQ8j<9B?~?dGJxQcuBu2+IXy# -%+Nu!hGvNE*){+H25tIG1iknkUg=(Z{&lHhVwbhZWXq#69Q7os8P -XFiXaeVyIsNQSb*KpNG2qilY=DF6&e&){OI$mR?@4mqx)7z>@>D&>NjeKaDYDOXx=$t!``9T+oH@_IN0kDyoV@njd$V?))N)#bFOt`sDf!dm -IkE4`6bJBq@7^ki>&{)h9=7Zag?ftZ+CVT2Ve;#rC#+aK|`pUO{&y#K1fAHwqpE^l&nO^a@91Vv3~`A -;Q^6J+VQ`a`he}>=bb}P*14JNL7irrl=mPuFH{CogbAOB8TJaRRfgoXSY0Eej5YQ>>m~_hkppV=KPn% -YJb@Lb`##@07PhhPY_>sJymi4f?<-ysm -gpzVL~^9DU?-%O>F_f90TC+gF;Wk($Esz6DyZxkc#-i2)N?D!`KJ8q$UES|v^7~Z=&SJW*JHrfgHy)+ty8vjR`*Lz|VUf_%_MlIx?!2!K884NwcTvRD7UTo!M085e0B^n -+y$Yxt_4D_G_4F$uu2Hd#+@9TAq -rsi-XVD&uapbL0LG5)@=tiLbwx>q8?C})*R`q1_>4|uyNhvBA?N42*rd+OEa_eW}#?dYfXngRKqOKxn -Ry7IVZ1X-C?)*h8UBqD3*RLNg8NgSYj2{Pm<&$n{!e2uortNOjyKyx4);-@t;;!wx0N)*)te?ct&B}e -dOn+=b@*n$%!WUih_#O;E0`uQlR%;Fq{y69>F}HOt_>{l`zhJQaQ!*D^)oUz%4(1Z1kG9gSxP9EzQzc -!_DM<1?>tzaHM1qH35-^?S7bdu=d-H7`9x~K|9|Hm_T21Qr2ia$hUYN|G>D3S|vD&SRYw&!TA~1@wKw -qQd6E8}dh+K}CU$LgDP!tiIafc^UCFB%q5G#A8ygHJSIV!o+MUWR)`YQzx2$$H3Bc4|MJRI{=AeR~3i -)W}Kyqq%0;z0O9wQ!cBKNX4x-1hC~1xU%BJYUliP(d -LWKYp{4^hf<*qhcI>V@F3(1k@|B=oJ&}k*B+SRK3tAEL9)H{Nb5fHEI3xcRn5bvBrsc? -`^k;=Bb9=GYM1ncCWe!U>4z71jl$5?l^K&X+~MguI}OLP*9`aUGL@q_vR?wbL8Bd3UL~XuEj;JRg*gD -ToyoobVK>u{^XzAlYtMqOGC>uK}D(4mgzBET(pcXc1{Y-h9`bWV5J!ah;zWI>JaA-`MFWEWE_gLt>o3 -o@8g4Q2}`W9r(O#!h>{PgsN7g_B}F%8gCZ)_D*)xyDz?EvFEW2b`iY3j?Y)(n7ax^VlOwf6Ok=0bK90 -n^9EFk#d3vOh!owhZr5kPlTxp1XP{kp;EX7>mGj)!g5S6p>{90G+cEHy*&{k{4g`@y|-b&V0fO~f_P4 -+y<74W#w@V -)*iz(MQ=FOk9rR^6EVf3i1dW!%Zty#PnyQ5F^ZhVtlHs`1SMT_^;o$0IlvZD-2^XpA#Rmqe -XN0?4q{i~>g)s>ol#s4dLNtYNQGF#4s}^&=Lvk3D|T`zj;zUS!+9e-n?*?NXVZ`# -N^#MV;}gx4Wamd2SWYwq+dZO{&NULfe1oU$c9D`3c^Sffk_y}C>%ow0z%9RiV^Qms8@M3W4`mP4Im|8yDWzzx|`$FbjICiD5fo{aZ@P?mc ->;_#=cW^%tbBjUtu;7no^dT)DqwmpAkT{3q~fM^C`7;FIP2J$%}K2mTZIw4*2BH{g@7!>3>QI|5&Xw( -Nv^O6TEl%iMbk>F2Jtx@^#{)iTi8Lm@l&HLW&#9$AlP&58X -kuvw!XKKNEtq|0^;Vujj!@*$MVZ+cohjX<^u5aBr9Fq5sesM5svdcUnOi;3DDY~4N&t5F?V*U~iln0PnTDqg{ObX($ -Hs#8LjGzlCm$t`(;o-PtAxJ%c~psIN!AsI4VgXWBl*jnF?Q9YawES;^oypiDWh)8Yxx*_yG;DV~b(5h -p(w(|!J!r*Rm^>r-{Ev)@?-VZSiq#zumC=^Cvkc26SL@|^?F& -O(ahJ7({$KQGf8|TX2TWK3Z+nbNy#w;5*1mBs>bWfaq8pHOM7Gjs8f{;C??13ZM8-usw``ppK(S{Iv+ -=1S;kmy^hirB)?uPS4dO`v;Dc8iMJ@ofbdyvNDy#Qd$&wN0`y -PZ-=AjyKx51>-HeZA_4g{+0$7I}L=tWlGgc^`b80aK65Dy-*MZMii0lB=!F> -&$=bh8oTQ5HuH;gvGUv5a4oh`Jf47VEGYB8J=wDg=Th)*s8$@Xjw3?HSS{u_EUVOLA0cF^*1En?PJhx -9!XH7*RXCy5lPs2<_1hW?z;FU|!Crb)+68To|Olc)TASHsY_>rp=+nAxS%%YwCfrV -Jc5tfI#0l&+#J{jFBV2y1uo-qC$}E1K94=Colb0%XGv$4FSZbkI+)1~OD#*-mF)I~M&g5V0GL_|t-#F -r9|qHM%CMB%AW2On0Z(c}?uO$=(`)tbtEtImF#f1wBaUT!H|4szomMK%t|(-IH-%1>83GX5}h043^XR9_p!h)2mew{nzcw?W+R?^O>jvA9(&9QQRO -BKKeZg+cCBGNgy_OwSD@-Sim3F)~X9hH{}UcXVC8V-kW1A4( -#-VSMHd+R?4Radci{P0S>Bj(fT3egk`bWenc|3C$uojf@ls?|>q~)YN7UirWZQRdwnxWc07pJz$i)u@4L&Je38MXldzg(0iIW -=;9*rDE`lwk!UVyI9rmg~G7ffRLmpCo_9cKZ}H4e~rLvJJa1$BMFzsS=xvzi?S5JC@-{}j%UOM={$-@ -aEKXJt*vr(NG-cXqf}cL06f$Hh=#-LCQU{1kFj7J@D~;mvKy+(e8=WkY`MI*%!8mk^u5!{IolB0fmZ@ -^z4bNEq8Gt>=7%D&k1pE%X{FHhH*i7k$9Xy6A5GBh?=!3C=gZ;ayCnd#8$x?T=a0oCWCer%4mgqQlHZ -T0?Sl8jHGs`iP8vRs4e@I9eAr$dkOD*^Ye1?DG)QWEF&neO -W!Fj(WNq;rx4@Ga(Mm|9Vg+LJ8i6{DLd&%xug6|zBShVkJ@3y3GF_swKIa-YGP;1|h&-NlW>hnToEZ% -F%aPp1MlD+6`H#mLEU_sdqZ`jUs=uZZm6fhP0FzV+hIM0@^b1C+fZ$>l;jZENUBy=b*JE6M=Yu+Hs_A0l+u}}8u93gp -p-Q^=x&qA+-S@0cc+sJxaSL~!tnrrbB&I%OOee#kLCx7Ao`&u+rhv9?2X}A3kAo%4T)FRD2Q5vp)?n4 -j0?{3Q`l+B<*wv=*8tZ;&oMvB^x|iBfOLVcWARY?HyEFMnqS{ttSSX?=V~%h-g1?G+EU1U4)c(jlC%sE{XMgFoD^v;^IP;WKqB=Yt`srEtc6$Kh9kb4fcVQBqhv{IwJ`F*y|1bzVx6<8Cv<>2Ru6L9QaWoJ@ -vV73^7&`Q>qeXi2ErWUY$Rrlen&J5BA;20_MZ8aG4U@R8!fGo|M?q1rQ1zdD9qJg?~YSP1fK0hzCeDt -D_o83Oc8@fa1YYDbeTB+GNchdf5uE2%3K`rPgPl-a#3|JEK>G61}GE+_Lv73`7tW;P>_P0S1 -VQ?Pl-2Sr!+bO_RUZ!k7NSsBqhrYvZp6>IK5a^!dAtRQx?`v0?N}zB82@{2KFv@lH<`U1gW+K}&XE|Kk_?|5$#3;nfuWwMfYM0AZ$M!zEJK7P>%0z%(WlGPx)-$XnY^=5;P~aa_Dt*~Aeh~Px5A -&L%cNEz$VYSFkw_Oz&#%`+Ux{{TZ;90!bP#?6-n{%$zrnB(FK3xG?Vv{s=ynuw@e7vr@gwyvey53ucQ -L^hzS+}JiUIQCwecUH^f~E~=Eh^JwXyTF+L~7!QWqN4zAx>iFrmQRZcsYDof8x0TG0WwvMJ@_9O34wbV} -)}Z5Wh!Ye=wfVS044ZwfgLqgFO58$9W!{+3r6auCvi?--s20JycV-noud$$^D%5jo))@6ig%nz(-r-T -|XWg0DZ?H;G7iVo*%EY2E%Ie|p>K$TWa#Id~PGJ;7fe+)&szXdd&i=B{akk-OAm4J!*jnCd0_89Kwlr@m#yc<&Qu52A7E&9e!ou0NWFbt%ty7@h?rfys+m}%5 --E%Q(cZpOJK?1z%jw^jAaw$6)i{`&y(z;0vx8-M<<&&=5e-}QYOx4&`W5dLPZ{gBrEZ`S`|{?G4?Z^! -Asm|pk+ME2=_CO35VoYT7%Kif -=59|A0w4PI`(nNT#w0vuI}-eu`9MC3`TK%l_#=Eze#Cd6kAx2N0h{QNoy`8yBl;X1 -Xe1rKwbrE))p!zbInQ&&YRrH}uZ{k*0}1qFYn@?p{MT52fGgkdv~7oZlf;{k -+l;O3LlcMb2D9+BG1oRM^AN`Hq!^u1Y3rb@&`hIQtx1Aj*+><|n^)vvIFuEBdZT_I-%q!9sP&2 -%1pXL5ohhS1j;H>CqQvh}?K2RZCg1bz|8PA14?n{XQTd0v|IwC&A|aH5;GN$i7);|Nwf{u!8!1M>FoF -^|4r4#_*0iY_&4+kq3Kb}jX(Obdu)uzgS -#W2B1`-!1!MT9ZXE7m`d55EJqC{V-2x{+E;8a8p&n%9JH;Qp^3P)M1x}K$~N97fikPWvnNqiU`pv|MCtK -Cei#kma$YL2j10DDhRfdfw`Xm?%bQbNz9og$fBOGDytbpg4Y4H2F45CBScZ?an^Tkv>|w63ast&x~`d -V7dGlCPYnUR8BZb82Z229BI?P#dhf3^~Xu{8L5&k#RTdQ7uN#^@$UPrLf257JI)Oe`X~t=pR`zbv2Q} -(IPXt*FX6-$uUIT|HiO$34ywMVp`Oyw@KzN>sg{Hr-C>1f^9g5`q^o@ySy-^NH@`>QNGj#rI)r*X0BHhvV%g)dp=uz5A82$U?8SL;+LZ3ENzzj@IX$r7rc3r*Q&iWK> -9d^FC-pp)$*Idmym -`|`JDx$d=C(42!G*19_pCE(nO2Z!~-u}l9iQj3wdRi73n3${GK-g$$4ekq8w_G*-^fN;g!~ZcirX9I4 -;FA#JpHJ9euGfJ9Cw6lO*ObNT^`>t-zTp`ZQ)ee78~Ie+;lxbsFn3>%VAJfS!hriyvlOD9W(toA(3!k -kK=_U7nQNm}m4sV&h_`$1#bLgNW!>gsl116?Taf#ucAi>bQ{PRPtYQ;O5R5h^gr-QnK&=r2 -ThAf|_#F@a6BHm2&9suu&f7Ri8VCV;E9D$&j*y9FjhL691Ai23fX?`)=d#_4WQXUZv|!jdKC=Z-r2Yj -=BS8Nr#jqw)rD$r@W>Ne6QIS&43AdCBhL{3`nR{#r_D@t4#gk>+~Tp9B%*jpZpL8M7LhzKolh@su2ck6GUvUC8kk?JBkm|;hIR566Hc3*vGQDFSp)l5<$dLh>e{ZvQ3n2%k;Zy& -n{0U;{(S_dp}i+H%7+LxSs^v{%!WVT4gVZsdyS?+e_Fjs2bN{0F?{X%nZvX&+=3R_PxqG9R?YS33fHx -6QK~(;roB{sZ^>CS~)(z5dvav+p1ngddX_2hbxiltLhyfDr=2_X9M6QSkl^O2P<)kUuT@P@jrPL?3D~ -J8D9SLxgK5?K{wlsG|~;QO9f<`hil>&o#y3?2!5=KiaTRcAUO5=%Yy{IW!Uufr0Fpn82b#j~{_P0twh -LZufPR?oS{PNe@g3L&wC(p(-1H7K42pOYuWdmr6g=BlM8~$k3xta({vyyG9=uy#1Mu{+>_L0Sb>nl%1 -;|qbA7F{)oYU2?G10=!1Xb=MFz#U94o)vJ5Xmog~9`B>TEQfvozcBG5<8!2h8$#^td?O91{lGj=V7Cb -;88V6ivfGhY#cKcb8Csr3LqK}JG!af?LU0Z&~m$^H9wK~?329T-(#WM96wKlxVF(YS+q=diXp$QPhz{ -P9?^uki#<}ROOtnQ+uOvPpYWaDv8Ixtg06JefdAuZa(rbfW*7~jtZf;KKhUZII#IZW#g~P28JuT -qx-v6{8vGS?@KhmUpo%y8U(I1E9eQg19sTYN7flw+P|H%DcLa`PNe?nu_2Rx=^QE>^ztfhwOT(pBg-R -)dX5OF?DcL*07N#p_BKQKj(9Z>CFK%|qJni0{mz)djK70TmJL&@U(Cra+3{ -IVnsU!B+ZoN1TP^_Z{E{5~MHuw!L<(cb)iMH(T_XDKO0pMHOY=-7cgzr{q{T*wJ7lWeagQ_#C1>8+Y1J82v6G>UXcjaZRf4qN_U6(B(d=ko!X$YiQc65CcRAhP&kQ4SHvy=g;MItgD=*pH*|KDjb -aW)CP;+@&)rE~0yySG9M5{2N9p%EzUCq7S=iRl$=utHe@TNiv^@Wk8huojYp1+V`$cRwBj4!>DBZ*GR -WdP&0L4Awt&QK*{!JE36qlqg|9|2OI%IsH}^ev@wj}2U1lmP?Ac)fX)q98)P5YQty?|WaV7TP_6`(kk -mD$J#d=u#;H)Qa!*>6)crkfhHtC`M13>|lAqusS~=a9{3o+u+#_1EW5Bu>{uGo#&-EqV-X-a-f)5N61 -z)a-U6AOm7SKo9#Y6TR-eMZ*lNCP=o4ZOwUWml>UHA`Z>Qgy0wvQw#_U+N_4t;pr!BE4fYmneLkP4&dOL`XS6i^V$1jjplp2W?br5pE)SH(4j3sn15@-SgoFSMOyBK%Sd`%w^&7_K3JhK$EA5KOZ5 -83wFC*OIZvvU)a6P_Gh!r%9|3Vxq-2SuL;e5lIwT>(J(pfWem{=QincInS1{^B9~5Eiy}(mc(-F5pUW -uykW{|MA%Om6v>$yCk(<<%o-bZd;kdj;PRt=$)brT^(QRy*eM`E!CQtQa^kkjP2W!fWLjkqVv_EKm^L -M+TH`a|Nbw?oAomG>^=sX0PDvT@S=IOxIuyL4o8ja22%BmscUDxCu`rwRD@>w`R)`N!@0hV#bYQuSsM ->8n7iSiQ*DG%fD=)nIDoUS_>j_{lt{a33 -@)*MNXh^0O#p47p}<_j778?IAMh+o;*8`Hj{;}^cJ{rehP*rt%FwP2_}djqc(zos_)aN1|l$mh>=PI8?V -IVnqYjxVexL3il~&LtlQ1L9Y;njPff$?rz*NqF1 ->M-Hf((T4y+1Rvcz`|T3sxFht@R-g~3zN6J>e^%l%q`NOAN)E_*2sF?~_37~7+b{gJ1(pWi5Ck0ZdTEK|NbJ3!I`xJPpbgmlZ)`o%2A_1p=ZJ$@YtvaLS1Bz -d47el7wEw{Wp$WOIkupF^ECe6&2LrzNgt0iopFM$fO>YDsxLM9+8A7IQ`;z&m-EVJXkxDOj^W;ql)Ue -I7EYG3QF{R;h;x53g(7(BcFqHsdpU!|W(}7nxsJ2hLf#l6J!xN0Y7rV~V_tB=F7PzR)cPhBVj|pp+HO -W(;7`an0U_OH5Op`7!dO0otC^>vdUKySTvuEdBEC~SMr3}IAw{>R@m6}pONjAYBr570510zPqFeUv%4 -ArO4U}F1zHh=oh{CFD6fAf<3uO=2@?wuGsNljoSTHC70eJ@yfVZsS -lefMh8Wqf^$4#X1Q-%QyrT(@_U%W*Pf6WSrG`ep^-h}9Yl1KJm`2N8O(*uMD9rOFF=fPsY(JC>P~w(thFhb~^e#0IDiY+EKk;uPLU=Kf%2qNKxcy^U9?Xpoy;exZ_1{Mu9OkORkBm^WdrO*Vw+54>=XI84c1j+IfALOnxy#afU}o|EnkJUOfCO -x%3`UUVq -vjeKd@c~M)kI43+S)ClU>O+Q_JYXL2$yDwq?6-zL@RdZ55;XED_d?kL4)^Da!{fEU=#dJfKVHnxUnT+ -1?g1r|e>Ld@sFf66=HHNaBuzGWPZe3HW<&Pdp-Rbz9`z8?UVEvhw-=e(c55UMyOe~S3C({*A#OfQzb% -ZwX$>0|hXycO`hXvbI0j@8_EQ}cRaHRle69aYySw3VG8>f1jlR02$Xx%^q*DrVG+aaLI|eNRPfx6irD -nCCl|P2)!Av4xJseC0hun~y;~i|8HaDV}R+M&_<>dqdtx!k5Q7mu3Y@LzarnxfQ52AMY2Qk6O@}&jA5 -TYpwy!Vj;S4d)iF!%Cc8q#(rlxUQJ$O8?#^i-=C}b^?Zx)eAnUY-DYY3DUkejmW1CJ0wH$d`e`iu!yL -{3;y&NzX8zrK{2}Dh6rm`bBuHc@-aiYkSb9XegI8lmkllmP;k5j5h)+LuEYU}vd5^8|&a}~=^X -lkeyD@S!A?^VgqYna$(w|Z2=!n>Od=xwmbC~#RvrBdqaBIF|ojUFYGooVmE_ -xPF|eLw_uMA-c_@-zK&6ldZ?3yVY!DX#1jUJt7n=tIl*`~2k`^hG$rEBK99OBa-TLDOlB#Gen=INz02 -fUm579On!P4Ga%XVk%-Y);Dh>-MT)OM3G+@Z@yl4H=PEHJ>ycZ;{zSN@| -$%99TUG?J+G%7{% -eYF$TvRm}FaC?;I&syNEjBs(XA(RMl~XZqCNp7?n*=vVf~YriDk+edltC35uaw -$&@YKkPSNXgG0ciNbOC>-)^C9nfSIrZl%uD74_26SwD4$sb(LlO`h+68p#2fwQ*}$z5>do`L(;+_Uy= -zb>{Aylk%6lU6>6THco?PItA0I0nZllbehwEa8;EIH1BZyOZ&Bj@bXc4plMWU9wJK3wD)PrzUqE|*5l -q1RYNujS3-K@`!OI(3kR6Fi+VX6fPuvI-$};*%`R<5zhsOq^6n?EhFQF{>>d-k3DE8P(Tt4f#p^O(i(d4SD%(C`1}7glf*Kw^&3J!-zrzNE}P%NmZjUv!s{2b72mab0 -ONLE|x~t2Md{b6nH)4s^a0ZqIlDL -m%zhsaFzGB^pf{k5MgL2R|a~vOZHBb8rWVUF1kvuoFkK|V&YT`BN=#PA+6~TCcQ{T%yp;C>G3=)4OkA -?5q#`)wNK8vvh-3#P}7lZv-BtWgm3V(k}zBc+zdl*Cq^Bpwo`dNA0$qDPYV(>xAt9=k4$ShLN;>zsT2 -@&E`mF1yJzytga6`z+-kBg^`T4z+dk{*@fMNuZW!bB7WSAu+Jp6W6d9`PiUq1{i08KT`r*1 -Wp_96G&pJ~j2Z7|m>3Mk!~m5`9K0(QR&y9g2crU}Jh-dCG!k0cE?amdJ3jlr-*<0XX-Q+9GMBh&Er-a -i}w<|7w-w9VcW2o|tNEu;Sj)7nw;ws0>R%Ld%t+mQ#0~-qZ|)b&8>+`Nbu?}ozO-%jK -HpA$~6Op~I(#as@Zb@t`cVip#K39ECQ-D -j<@xdDF6E7!|Wjb6sCovObuj@ug;^O{o$T=O&Gk>7XxBvTj96LXrP59fn{XhTLbx3}6EBX6ZeT9>My5 -f77NTAT+IYPo1gwQwvK?H))_>Ltp96sh|j-hNCr4W?D_mgPsXBcvaYKIUid<>i5$N}(|Q~1y4Xg(U(hsxKdrgQY>AfN6Z;v;W^9OK_1dQ4gG)EoZTJMRGS@QwPF>&Ver6CLf`NPJw6 -phuDB@S^^7>yY7r21)wp9!l|JxCTRxnVNm&#}j%5CE-zaitz(LlF5H3=wDKF?xP2G|JJ7 -y)g5&YU-tCM@qoBmAz_es4aM-#&VMvmQ)j^3eo(K0u(GJ`1|kR*cJpp!F -ZlIOPrrGeBiRmyIt_A+<_BQa4m7wz^b|%UPj9=^E@u7cGiZiuLhW+PCM(oLcjz*9&+pUaO*~K!&zW5J -O_=opCq!F!sBV=jd*J4h`(hgLq{1zRp08E%&&J^OUK5WVr*hzbYtth@iRY%nrpOac&>$>uHES}$O=tn -iWrF$^~^mdE^yarN`syfYkbXFU{Zt^Bt53viL`+dm -9x|2&-ivrzVvFoseje%O>AF^i^94BdkmxyLn{#Hd3k8lo{0CNLWMXhTy!Z8walW3&z>KSO*URp&i6P# -=D|f9}(dB=Z-E=);aE{<(P)cF5in^bvaYXt>kP!+st=dJ2yW-$!Wdut54W4bmTt>HRrjY-ioSGEWK*# -jriZ68JIwvPUE0W1B?8AA42&$Y4^?aU&=>O4=d(No9UiCqnuti|@w|ku&(nNgn!)pD?yRE3rq!zckAe -+(Qy=kBl{LO9I%vtKp;7&5ci@kOU*J!b-z) -597ttPBi1+h*{;pRvzM3pi_MG=%z*1=A=QhqkJM@;~$AI*HyM}xnRZ=SMaebSFB7EYcaml3V9*3$AcS -J*|*Zz77y=!ZZ?DfT6Cq1fH=CPIzz^tn#%Wo-=ZgAMm_Lb9@hMs%hoYQ1K9|7lSdSBKg1D%jO9F_aS1pXNZ|TjlqUl-KbawxGN_Z@|wRWcqm@hyCTfA*Hpk?xGe);a|l=U9WUxlvAJBu0wN^f>>xCqT -3C11MG{dgF3BL35X?tG)?lN3l=C{F>pAfhf=OY^Nspx3co$WIAa -2Q@-iswd_ns0vhP*9P(h(-IoNuhQS}4IGc!$dnCG`AbQUN7=<7dTtYKyJ((W54p?u_dkMuqV`jIyY^^ -Hc*m%X%^xvzMmidRbsh9J_PqPSSG%Y|ast{Hmm^IhgCfxMOow>hmL*Z~4})R4>ZS!ihIzvn$!qa@iY} -`erkib;uI_Y5^AI24^M}r{3eTQ+h{IF;?X4zQ1=0djCMJ57;ng*Y4F8$FY0C~-8N!9AJITW!R@}Us4pl -qJ$m@mEpJa}C6)6mgf7Uua^_ES?USYET-soDvEiBVmz?sI^wNdWPniXB6(I>Vof~F@s6*k72lA{s3}+_{hAyNlP -}9TRLB*6dK+i6o+Y2k9AkQ}jZC2D~&ta<*amgR`NvzQR?-zb0%e;JnH6F5qAgLMBcasiZ)Uyuf$#13D -otciWA28HEzxpel`u@uA;S@z;^wE|_(-cKQ6b-}BVORw1*a{~0F9b@!@Xxs*`Y{>8j%K`_aviD&!~v+ -{kHH1`@eEF(1M#H9w?W$<%eBc-b%;Lp6$yS6MX8S=eEd;S-7m#IPLVrVr13*(_0R6nOF&c*Y@}RV3bLK6OVX?iSpI) -kpFiFj09*JZ2GW#{LGT_{w(5_$!3*)#6iA_~JOk8DC^nxi60Gz~`VHFNeR;aZu%{Kh_i~*H-sWkNj1! -dOeD(W);_Xwcp$ZzNmXuP-^|F1RI`NF|KJi=6LroPX8TTsg|o*=2vbg_wVZH+=xVsA4^o;KuKbCiw_v;&xM;X1gcTutMC3aSf(Q~nt{F^j+W|AvmP1c -N~F~euXQeREZF_hDZ%)c{t)mptAwvaGUJu|d%&+2HxcFZObeABoM%b>`>N63xdT#5(QQ2?>FrZMmVJUp@P-T^F{6*^IH0J1|_aCNaW^f8ua0q13?*pP-9In -k@z4J3p`6D9BKw5jO4+u8E&(4hElw>JH~-e!~FRVN7^SRm(Ub5j;dfc5VKCbIVg#q;E{`zka(MjVI^F -*yN8n{LN0QG;Zq;>HF;`Jn^4j{jEjiPgnjS{{_(mfe;9aA<+JXCMldE4tab8g$~QM&#|92rVw8mgg@C -R;!`0_sgM8p$Jq85^v{km=V3{n9{Hl58ncB*CrXMP5h?wcn5Q4%0PG_ioqj}}_vmy~RFmWQ7gx4DE)l -;n63U<>z{Tk&JRwIFHp-6L=%F}C_M6D^k -)(AU(&_!po{P~BO&9OApKS=UZn^eapkn6ex*M5(~e~Q$Btyj-S|R1^Iw}&!kr?*QJu62!sqVgGsQJUz -Y{fSr;NZS-?TBox9PL;@pAY<{*E%{SBn+Z-z{`^RJ5vvG~Yf-_+|)v@zCYhqv=GmfA`S+Q?xTZ)lz54 -_-dj1;zH3K1LT1MJ8yJ?`%)d!(ueEs^*QIiQ^-hV%df35mUXEN3o7&PTA=sy;|2I$PWrFZq-hohokm? -bQ7+Nm_{2}5ygm?yxEb5v -hWdpKV=TukDYk4_2LhAmfgWbj(i=SWvVOpN1#<1kGdwSlM4{ROY~3|l7xsDj)KI>ghG0A_qHe}fk9`? -DriH1)uP)Cj@%&OIH5*{`WYFa6){ChZ$Qwf|>L}ul*t1!tYCUt21GV*qD -{7d7L#Q;!q&=)UXg*G5W#j>%NLR}!x&jgOKJ}~Ix^Pnbk`0u(>G^hAjVcKdZk1S;HR~n6uW*ZDYT -fAR#~(N*w@0eJqW44)Jn%Fy4L<>$n9Vc!(_SJ>s3ja+qKe5d{dXj!n+xVA4 -G`nxMER2c_kAbHyNzA3)cc_ARzIJd6FR-oO9y4ECO24q;6CgKDc|Fyg>B1tyWnx57PzIgYaC3FSQz|u -;F&s>875j(`5!J(0a2{jmrqgs;$1Vme9{0{JG`)4J8svDpYxfwBL!l}9nMfNm>TTgIiW;ne}VwA -iUWq`3o-V?$W0zq#>FP*(#Z1r`o?|XPjE><`4^MW<4NtxxVY?46LC(b7;IMwBgN97P -LW8bJa7hpMAmKG9r}jpc}W*D?_eT1(AlVu}rVA@L3}0@PXT6UM}dC1J9jm#%&ld=?!e4G8oSHl -Uv_M0nsaQ09z1BtLenotZ$dSdY&Ca&he`GHGo$- -sI)YOZ>UR!Z}3xJkVcv$lLd+ySOZr<*^VNQ1&|PU_H3@bHwA7&bi3o19N7>Amikk$c_ypnN+E!SE0MN>y+AU<04s*}E!G>GCiZK?p?`LhpBNDRc --9|{hz|612n4_gMPn3&At+6tBu?+2#-H-b9jqKi7u1JG!XM+qFE$wXF}f9o2eR3*5|kZ3{vt_FL~J+E*Q;!Dz!F5NvvpZtKXS -{0HFgv~OW!n%m*J20K|d7eq%(9lF)sYZm|qk3=kklm5AeIo&vy^1-yZz^vELK*(xTe@_SL52NYtxaJ_ -G6(bE2c64ZVN2w7{(^3OX25Jb9>N;dj=PhWv=oV&m_34Vs%lh9To9lr&;*c&dK+*5%?z#dtdiO_sWuQ=Z;||3j(M4 -HJ(UpTkW-YXwDBcMTs-_TbPWLOC=4(?`lV7V%;dropsr4hA|R|Y5^iij9spnZwb{SFLoq)4iopHF=&z -GjtWZ14N3A2L+k5W6wsn}w(*W`AXx={{r5wZZT;@-dXTt1q~}%oMMmzU6aS3U{HD$Y>?h(WsCdhO0jfI_XC$1d -hMVryl*OD0ST63oAQB;umAGUg=!pI}$#o1q129KoHcKSomDG_SvSxtUk#;5QnmF4-MdE(EKTHgfI -&kr>)5qb)crILiNx*>}%lqmV`?V^#Gmb)9{}^okb?jpnvpuOK97~it^N3ENI^p;DaT5@(MbI7xdJ -G;%VHn-oWw7O`*w(CO8*OV)2y`!>&W@3D4^OhKQ{zo&L44bqT0X_ohrjWopcM>)tmjvbzRdxt?c99J; -+<$Q~X5Ib~9rd0p=UbC?ITead)U#Myql@mjh>OWIo?52Cv^fjbUH%xlda0swH5$;JPu^n0=ag|{Pn`SK0 -Jqr8YQEzuGz~Xrj28~HTvHq6D|e5xH#A3Yl{6<9Yy}o!&c1HHrFYZ$+L8;EA#uR}#xM5R&46P&!;?&T9ZwY95+uO}h(13lYsKhN9CGKCe|v$qEl;B8j -dcX{njkyrb-EGMpf3K%87owu0Y+G-Z!4wjWd4@u85&KG}MC1~3wL2B)MF$g6S5DDj;a(nfsOJ$_dFs{ -IZ$S4ZzSl2Y4=c;~5xwGi)^-d0hr(Nf*N>uN1%A0*hBJHOirq!z)hD)!3BHijL29V-)=DmBeZl+bF0T -M3R1;xVmPBCQ#b?e+@9_zk1bDILR-lxv`OdUq>v@ -#Cj9hUeD_QpQvgTL~u9vZdnW`eb&d0;qYGTu$bB2W5F{^gN6y*p*^*Pc%5EV -;q554hd**>@*NNeh~d%@9B6bgk-^*5i`ZGTdWcR;KW-1_#SXp6}PSH`s0xm?i)qo>=i0QHntRR&e^u8N{FT%3#$-QS6kPN`ZHES{ -*09{jK-jYsC|;*G=%MBjX>z1imJouk#vrs&%_V$DFf1n;Kt63;_xGnfq#_Tk^^fbKPPB(cuetN^ntN< -8k9sw|5NrcR*d4KwQ46uhd>7T5za^tb#;h7s1p4vryeRfy0DHU`e#IG2UiD_gO1@O;v=MvrH2rF93PY -o`)JCg$VW&W`kT?oCfB;1| -nrV#Q;3TO_pDUal#o3wD-^VrLcT};Hs9Cohn7c2VU3s!>o5!x}DxBgb>Y*0x|u$q9_aXxYA>g(6obG( -ja@M+0mPr5m3*>8Pq#!U}MF)-KCnkM)YTc?G2UJM-}KvY%A!#K?P}@q}W`L62#t;cS@Fk>5a0R -rHY8i)`L~HxjcIq)@CMtsT1LCovuQmuxG5FYs_sDrhSHf8b>E|^+tWX=RiiA4-OWtI(Jf$QJ530IERX -e&&Kv@QyCm#hf4Bj3`l_IH72e7P5bGW-hLL28?l&4E7r&_6>qE+dj_ac}#mkdrwI>2skHntK17ZP>HYOL0{u -R>RIWq8ZiBDy{=A}PKzV?AN_6Md^~jj&#c{X{|M;%eB~I3rYU=MKnYGPw+k8PBjD-YTMuXtNt -le?|J;Ygih-fuI|ag~dp>yRTexAj5a%3=ObVWklSmEw8JY`jsBlia>K$CZ~jMU4LeE3u%m4X6lA-6cb -;L_O29SF=L*)G!)vgnRr}(o0Fiur>O!fJ7lW&MGF!Q$khd*!j)dkHA)?0H~H9vtbY0$O&tl+dS+w-Q_ -kEV$Xt2JYzB5*0YE4BaR-ngc6yz1`nrKupML$HsJ_=`5W*>`6tVYPXf+x=nF6*7Q`TGo}#A6MczqJGYqd30~3(5Lf9OgMEJP -PKnEpk1eBflVm_Ir6Tu@cv9dG=RrstJ3pJqiqpDZ$k8(oU+p`Y3j$cKd|RFa|IBUAtb2R<{Y0pKuCQs -}451*C9V@uvRLjUckk0!iPHyBy4oRn`RMOW>z`j)h_GI%V{(qW#uWmQ7v|IR|U(xqE=Ow4UBO`(cBI= -GP2_b|45%lX13wyh5*LJ(Ay5I4AW4Ig;ptVbAuKA=nwfgqZO=jjw@$rntrVvtZXR86mtluK`Eiv}`iC -~wrQ_Y!RO7+NM#PJMiw!DWimq83NlZW-K5}Z@v(dfE~*q`J3>Ch$hM8G;9NKc93mQhIFCW|DUv$L&N0 -MVewV7T)4q81gg?0R}!X`{w7SbD6emZ$^gJfV+QE{p+^5^<6VJ(_s7mA3AMJJb*r8eBZmu@{6PF>vng -c1EOPDQL&fNwW&oI5qwTSHk}mSNh#mf8|U5FtAO;!D>LOdb)XICtK(GZ@H2nfN -tuT`hhFG_C~k2&$Wgj?CFnCz=1&0tVtZr}W;IYA$#E5 -qrhLWS3A&*Masv}b?!47F0QL%l0;BR#bKN%8W=gLWqNC7o;6rJ+E#9QmTa7qfb%SRXZ)l_Uv5+OXyUOWvNrpv+G0UqSkU@sokK+&eQ1BYxx~Iy#i6bSR$U4r9l(EWg+~#lOp9Jqg0BB)pFWhtVoOXBtTL3H0(0h*sm<1Afms4Sj68#tlwSrN5 -uN1{6^v{P$4vhU?{o57E53>#b7A%sa(XSTfG7cD2}l}@n#LtfP+@P&8KX=OlS^pD_H@I`4q9%OV>yWN -IB3Tj9Ot1+1yya=y8LrI11XT=*=bzPXV5-u(-Yz@v9jbpxB*nsuc);QZTK9f!sQZZFzPURMY^_lACeM -=I({!;8(Vx;)-5O3GfVfb!{!D1q0THrr>1yw=#^MBG#l-V>~~ztmU0gT08&O5zG1i6=FHRLoDx|t5%c -jhjVwch(i|graBnM6HZT|YLNq}jNur>?iuZFVxGZ;cJugzdcR+nXt_d;8q?1#Azb$SBuU*(8oTYIJ=r -Yx^3hgagp%>)?%R*pt@%OCu1uq5%+*}ETs`Zf3#sw*KSit~=N-~6w^{A*v;)juP`eMFjOOIkzdqa3Zc$f4DeOj^y=orIkX*5rIzc?#D8&(qZ)rIJKzsS17K0o?{UyFa?3jV)07ml4Iw8PsJX8kWyKbT1Rdrj0qS+2K9+% -s8M}%06Q6@tx@ohn -XJv?eg@HjqpJ(84y)DxlG`owI`Bx*8M(QaYgX0pB_YN-&>GlNox}0e0%|D?v-hb!HW!FDp6%F-wQL)bQm@rpxE2K(WaUWq0o(7&SpR;>;)kUjb-U?w -|_tn9;u+R#KS4YF2tlEoRSTX%Ww(kcXp&oc$W@t50Hiox`5c18r?nZgmZ)_VKL-+}k*W}4UwVV5xdXX -4s#^sZ7zDs)39+Kx?GY(TCyz6dHT_pWb=3zh{(sT{iq|i8!bNu!Wo+UyJ9$x%wez9!%WXGgK7$|95d0 -&rYfjL?|?8yw_B?Lz?*nbu)z8>JaAD-mgj~1@=AX>5C_Xsx=S68M>IdLZnz8G)U@B8$2PpwwA>qiPp* -wlpNqYibZs>%ah!9-IZLgE2Y%4Fn;d;bMQdq-A?_c;!h!p@&F(6y^t -NZy6QdO^JIv!?csI?!6k`3gv2+dTgWTMPN#q63QgGFXeuCm42jAxC@Do+Skd5nsg+;^Dbc`x*|O5_fQ -Uqm}aTTH&S>eGL0@1{w%*n<*Dj>eAu1#P%FiKZ9O0PT~n{~N}Z8Qlv?`HOOqF$joIY4MMX`l;? -n{h@~F;^{Bkpb4>eclQ(IHmggj4 -&y;~s92_ux@I!CA>KC}U8PFDyisc5G$Q^{B4AZz&fvTiM`nLo>Qr#=g88bxtgl+^sbR*fn?+~y{ -B3yENOM5MK8LL75FDUTbfcyDhBT;^$WJ$Wb8B4nRLkv?y+)(RI~EbIHVxetnbx}*rjDr#u#-w*x>9bE -}t9OpRA2gZKC^m^!-2T$n3e(?LN+la+ZSZIPNbM;zMM2Oa>_?17-eQXAgVy8o%r;W~$@%)GGqjSd>y5 -{1?VM^01*_FjaC`A+u0}}_P#w};TF^e~5V_Bwjif&pmL>0!MwALBFz2e8i+3``v*A-3=0%tesUMMd65 -lt-0kFKMB9i)>_p|I0ErVJ%7nAAb|gOA*lZJ5)`jh^9+mg~L5A;e6J)P%SLZwG|WFUPtb6E;1+UiD~` -CI4*vehgJ}fV>5lRFOvd_pXy2f>wM*Z%sLp?x)$aTaQ4?E^d9Tsl6P@_Dt|zSWCy^lTi>HxdKXX=kuP -u2nq`FYmbcD4eZ>s?Y!i0YhMlKb@We<+@Ma5D!3YX?TjwxyzD)?Qdn>ywDf)-9x|q2*z4uquA#J#ot` -Cq*kzBIt(-0i+IkN^rkuI$_+B;Rg2!YWql79x);b4uy#4Zdr?{KhpKsd~|F7rzNADlJ`;GdbKt>f=+0 -y#j7ThWKRQ-ut{e{au_|-2j`O#IG1cQGV#nKGUVmM7v1Vhm*!;lOxSjGqf_&a?nqd)?lMWkCCl>_nCV -vDS>jfK$|NCcHQ&`?-;%7+W`Pi$+YGAqkjIZ%m!tJhnuw^^ADuujfFyp|%Mh)8dW`q`!eh_Ju_nfg_T -Sdd^a2M|CMcs+we7zX%PxxEuc0-=~SDqZimt_`8U8xxy8%o>KSt68tgH_Iu|>B)i>kX!L_{fUtEOyaj -8A_fY8cj4PyOljV2o$w-j_pp~ROb}!^)PD>U_dgc^*L(kKTy71_Ojkg^xK0YZnuglmJnpCcS8YFOt|c -RIk5CXC{Jo?dzn_CKzv!<{U-eg~O>5QT$b;xlU-VZ^^y3(G5FHc6>(_x72)y85ziZpb-4Pyof3borh!+PNUU`Bu`eaF{ns{0c# -O>rdnd$pMc+$BYAE7l;97t-s*%AS}+;!y`r+J}w$9s9aq3_uVWZk*M2clN;<}pv2;-Tna9~J9{$tXi(5k1!OZhot0gHJa*_p!3~xW{1xw;RSyFGS*P85%td8E3_$6XUNt -$>QY@Ex#~{Vl^J7P>y5iJoUQ~+oNhoCc8dBaQuU(Sg@R;)A-@ml`8c+|1NxnevY4OjTx(?Z6 -Nf)}&biVJf}ZV%972=c#k5;Vy-p+c_}Fg3EY)=$`tDx7a6diY9@Nny9rP=e`VOUJal; -JfyM~X6mHc*dbWj=|e{4FW|fs{4JdS6PNvr^MAPH2b{;KHKfLAmcmfbeUCB}MIrd+)3-*|B+IT_0Q;# -U3mA>gLEeoJ(@KdRr-Cv)V&88J-ek06{j91e?klxr2(vHtGlroKvtnq#0-?SvMwdISQ~n&% -jm8<{_A;e;MbaN#jxcsg}|tKBy(E$`M9>P6z#$aXtutkMq)(3GYAPym$Mr&(>IC5Bkjmq-xvgy9xEm+3bmiF$zAJ?8MD5t0Ko@XY-d^jb-B`XFCy^+Wg`)gVrT~73Ud;b7LH`p3Z}mMWVIKK6&dH{JQ_b%l^NL^8xn1i}P* -}|9^<{OZ8UtCK941xLRJ!#q!gbPS)vtXi~@P=?i&_EH*Md=5b{yfrA$Kj`Z#jvXOCw`Njn|xs};;doz -xE9p?7H(XKXfy0e%2n~eMAfec&9l6Bs41}%lorHLeGyV+M4C)^7|(kMq~_6-ak~vqrFShWG-+3J -E~_>+ApLANwZzdD#6gU;GX8|J{W@8Zw|5i=q^QF(`#&1j`@(b?r1+I!ID&4{ -9ys9bG`%UVVPMYy)A#A-7=dnj;3(Kmz+Z5X@m=?%=rWFpOr6@s1>iglI6T`6gGp8N%xW8(ndzW -PEUhgJ_fW+t|Rs!iQ_`4MOBJ{bxFnRg|__#-oKv?Q;A>N<3_EW(7>AD~A4rPJRErroEK{70jfT|IJtT -;#FEJiXb<0Z*Y(;2|Td9$DaMdnRXvBW^dJ0$>8faxs)_#S}VL-|dN_9whcXiykh@nj{FWDck;y-kCyz -w)hJ8femPb@b#*lk-+SU-1(se^v3O0Ym*lPZ1KRLarCDxCUlUH{n{)l*52ku?1kRGz;i6mV)F9vN>L( -IRHm$6Tqdm{7SazHYMx&ev5bV2^2>V>R)(g-;qMEsB&nZ=DX1F=51d;?`b~#Ec5Z_Fwf(v56pv9>0j{ -kouMFNiZ|?o`nqrbO9i}IsjerX-&eq)gBXK@h*_Da<@sb-@rS>%D(JIi{n=Ih1%m|Pjo6-6xJnL}^Zi -_uCR!XBdN1vuqzWygD;xX?lRSdkriMQS=XDyxIl?X%{iR-etGYkh+qE|uqaKTKR(iZ?Ijgm21%WVOr^ -(~X=RAxy;IqdkGNJB?2O&l0GwhxeGJJOpA-YAln{LLA9{0@f@V&dJ=koL1Lesg=tiw{8QJ#%UQNcpd5 -6g?qwLUURoyTfyB93NcKQ6j-wH>P8<@ni*dSBBY{KcbQ9_7+8?-?FW9 -23rOvZwPweE1rLPy>yfVd`%?&rc1}}7fEUCu8Z2fHb=n>fO;WAy-(c;oDtl9EVf@wo@f19!gZ~42!qnCV#-({!4Hw8ZpnL%`q ->M68twgC<2hij!zQ^F=?IMFusVUX~NVzTd<8SS08ZZ177L)*mGN65RHyB?8#A?5LT;Prh~7W$#dSrP6 -XI+OwX)G%alo|#h}jw+0-U+Rmd;Px!qT1;yr5+hh9U9`(QK}xhQ9?V^ZpX=9Gi>XC6C80aB1%7e*g?90}fry8CecG_M2m($%5k>Ho=p~cz@$Esm@I -FKt13jcO1+EYm0qN+Rje36w*u<)ngnzozc-kh2J{zA~n4r-}kq)E8+Ooo3c+H?QL8^Omo1@EWUv~wP3kn!o<`|-q6+$| ->-A%0f54X@xxTD}}Q5JQtOWv ->|gbFs*%ZC^<3f7cG^BhrzTy`*gBsx_;1I4B2~XT_k%?J;k+N16T>h# -j-wO`Bp)#nrB~{Nlj}!8QY20=ID@em`e}Rf8n%I?8L_zlV4#5|K|q(@%2se{3)YCQ|14HIgMCh&5YTG -_-1t`3!T?TGZhUK{NGtuKHf4_Wgq4|nso`W9i0}yP*IJNkc(^slfFvWenO?17EV416mFod%>=bk(QYp -w2QZ%^x8to#RdN+xJAn}WHGlFfZZ3r+SSh*p!bu}ix)q<2=kRe>Yg^Dh>C+yw&tfxK -DkiAlv(6U?y#ybzg-qHiF__K(|ZbNr}myKRWVU5Q{;%BDd*%CjT%lzy5g;*VDeENq{B&aIE6k&&b;mL -~vhelJ>dTva*Nd}8g!0CWpg62wsrpU%?D&^llMfsQp*;M=lktY6>3z2t9PXNjr0K8HyhOHgsZN!i -addcS_lk%$=Sj-otiQf?w{B;VrsF~5(|ve{hmi0mWbBNbx7p-3lmcQ{2LRG_ -PDykYaJ4~8W)t#PWw)VyYkj4aYKj86t?Onuyz$ANf}{OHK!u1(C!%>>i%NT|clNo6?LN*q-_5*=1l)? -ikZFV_>Cz{dN~kyHM%u9WVuX289yr#s@+Vw#4Ecb-ONCwpuPxI5X*Fhi_&@;4>dh^^xZZ$#mv<&{1;w!wprk-#2z5|uCeF)~ -X)VnV -N>`%zwhvQ^SeL`rz)&b`{8f)=mqwG#_B>GS5!V -d|>loZQCHl1Y)7FFRkM+wfZ5PsIsW-W{u^gs4636txt(Y~u#fXZ+RLW1vvDbmX$q -`;$-jYOSEX;`pM{Mq2w)OaC1_Ud=r>7HAQs_l?|7GeVgs&vZ_F$!dHNA~7yl_eV#~mf_m_3xhn80nbZ -xhwWR{s4aIFG%49YQ^dJ;IwCvijuT4~SuK2w@HahaHDevu{ddM-F)3{1x&rsr2^N-eqK-*sC4Ek>go3 -PKr{9yB51nE%bmq_JoqnP((qEuNe>nFSlt}u460JcML*gibP&7uPIJ+_mOIBNA}aG6ys8W%1861xa^iQxifc(6zj> -wT#%N<$o_;#sWeVVc&8|{MCQ=ekPhrp6y~Rd8M$q`$Nf;V?WEC|0OB{m9STYL^8ML8g% -UT`nqvH?L}$}y}|a0p7HVJ=xS=4HBU1tueT?)!(MyzOhA`n-0#oXuZ)mp&QPrID -vJH3zIr(|c`W-v)_{vSvAg8)zC*8p5|gZLd+H_+r{pLTrGUITr(o#V2?nM+?(< -&rI7+yv9->eyFUg(X7_KMhIJ|MgzyF8Rk78N_e>7w(b!#|WlOKVFx -3oYXpc97y-0Fko6VNDu_}9O3- -VBh#};s9V08g0DWl$6!}(UDz_mkAU%cy^uaf^Yk~%0-uin&d_L~Vf~bq!M$CW{0Jh=M*1NHyYq}{|V_ -R_&+k_M|7DR=`3S#W9Is;4K@|JE+$LlTdt)ThErhP>{P$Hx^jSvu00zvE|+5CvNv9S^b-6ml2tpLjgr -Ai7kpR9r=chyR%WwzH+b!QWBld4VKO^_p?6r(R8*H82}KlniY?Wz8Nn`{s0AP(5x?EDF9xtTxD=Zz1q(Dv%SBT^wl_)4f -gdhXcXPf47=Ia2K98YV&2f$fQgk%98GO4z!*0G1n#?>dm^KlJ2JP&GIRCk1Gui^Cdp=U*#yLZ_^^s`g -4Iy|2ePBUn-bFQOKRPmNF>mu|8B+cUK8TvB%MSd3w*?{U@j*mxq(9=^hE$EKUPvj|AZL3S&J|M$5;Hj`Dt(C -rV9C=a6ofDUmo6OJS+hS4$n%>=%nwGKXN0%>c6ibsQ|5Whj?l@Cd$&dEd4Yqfff3QsHnw;`RY$tAa&+ -Uaq_;p3LNxdBO5*q==_#3FWQ;IgpkYd#UNW4BIuRRE{cw~nmx+Av7G%QOPOJ2uj -}fA^PMEDRPU4V5lN{XOXv|f2GY50+C+uJiBpkY -G$QhgmL!=BnBn!?xShpj=M-k6Jjo`KsmG}QX?lWG#?+yeaxI(6>s!{{G0Cok=moOEDeiEF -g|(!?bK762Uu+*LHNX+~IvoMz2_VuV484kSz{G<@={zP??cU{XHdRZGC{U0>4?BKRczy7WV^zGY?F@? -u4thVaNqqE=L6AxhqSdZ&-*OFg3VTaWBk4tfiEolE<4J7%K -v)rP-gcDc(I~M9gvQx)Q`xPxfAraI7roV@g*JbiWJ>?)ZEapUxxYHgp%(VlKnv<M}Ljtm_khD!9Z!YS0ki-8*iAD9}oWY+EKTxJqGy -eg<7$VI|Ee`uR^ef=+R%)fKn-*C(?xBQ-CVkko*1dFl^hGFCyMq@w_oJLuap+T -L2S|OQQkF89TMrqWg3^_qr6d@uEol&4v)fDP=7L$!po&0!PBNLTSvc9`aMws2m{DySC& -||MR&0cm+H5}QEfg=e=y<&=^Gp3X8VC)nYhy@I@}Nu5?}2Yc3v3&WS?_{x%gbr7>@{9r88X3wibIKQC -M*Q#>_9iqE27+*(-@FP$dZ4ezc(Xpw5ZhPY5R9j?jNX -Faf`W{uIIdA`Jcqf(g7`po4e$iC{VyIQC}U} -iam@5E4wsdC+#E>H-bNU!W@TL0@c1t3t$|IHlY5F0G;DHqhbbG?lqZnV31>SYsqlTeRn7j?>K+m6P#M -0To~Ls{r%}RbXpiKTC$4nQHA1MuIO_Jaj_>tqntXwx^J`Ow*#42?WLHE??o_m#X3liS -v6kbk>3uuOGuWALd&)a?iG=@YtpDcZCp_-=S98sh;reJcBo#P-%124C%nuEir5}oW{|~|XpZ{Zc;?J# -i|LMIxQ2pQE=f`0}jG$Qz!x5TASO!HI^i$|wF_cY!omN?Hs-79Bt`a#2<5$o|w$d+7ZoxnMPmKB$y0c -ALCSyQ;fF?F~EfNUIBp4VcA^O$UpI4$*cnh1`;d=+ou0kKqj`#CYW=fHx+mi^x -0uJSUj=y?*YwH8f0PDlj&_75+}e9l^0-NSwVgU@b!iyko@{>exL;T0j&6dZjG~K=75N-0+Y?pfu_j$o -GByU&>H%piqNi9(x3LErW*|8)^O&vSz4H;?liqhOeqxHDLmrat -NB{npda^4z-uF^j5@;=s=fhjVKFl7>&2;|jv5L=sLSNk%rP>s}&Anuhj|8HJAm26zAFto*=CCq#Ui21 -X-9cQ*sHDae{0}fKzPCbz9E=^(D0qDtJE+I>>o|&oNbf)6wgr9IZ4pep9LsFN&o%S(1wK4jh&5nT?Cd -;WAzNFF1iBvHH-2b5LG7b=NLwD!LBd@eUl`I|#$jFwVo%D6zsv4p9~u5$pAn=x2VJ1X4Vi= -^LLZ%0H?Nq=)t-4#vQBn&YRMlwf96hMC(Qz^X3%ET*yA!Pj0jb=!{ZGLX&)1XIk#NPLQFA6iOH2t_sh%VkLSSu1EL~7eX-hPqf&{^g+ -oCm5$9Bp9)9`Y`vvrT|V-mta7YQ?0b6; -js3$N`*Th*Lpav)TVQNBF7K06F -cdW7QEYTDyr;TJ)O4@``r$00d}$7Z*Ltn7u`Z1rc5h!&J?Ap&tk%=if0q$UF_{Dr2dfJ>7wXyL^Q3YD-`YINi8j0!r&Z#)|R&AFaLVuWfjA%O?)xDhFymt?(hu=8^!FKBKk3d#e7tD?o}qnboV8M)`O835x`VNmZ_ucHn!-G`$AUglE@_?V3wMOD4O2uDvsPX#fYyHV;{s)`kjX0@z#dy`U%+L=&1-Y7nx4DXlF&N9po<*vtaUk -)NT)oZ!EiYF9Bi-^ -LvRTcWTOIO^uPt6brnD8+DtAT_=+~**>AXsf&%=GE@F(N_*UIQWhqI40nytBt3nG8d!bbXn*!OEbysi -b?yNWK|-iUk=^}E@wTzekW=k?_vL>r)ceZ-BvIph!Gyq~8@FxUG%7sP_n0*N2P;8DjY4V>!ioA1(9r1 -1P4wBFEpTD8=|aLxX{Po?n@ddI+sX{0!?w||G3{|``00|XQR000O8;7XcS$VQo;$^-xaw-5jT8vpo_o)kSu7Sw0mg|+WKEa+IXp>nyAzhxx@;vd1Fkj7GPeU -JlyzK6?u1rM>LR@8iWQuYvIc6V4HM3?LMsQ#*(_P$IihZ~am;o$NfJ@fOST7NaeFRQrP+r|mcCoDw{M -phNy6}{jILSOCdDQ*V0CK>uyKrWn^!`@iqZcz?8&dMu0MXd&984ivrG1iR&X@DzPkOfANLa_RP3+=1L -=~Te_+;`3qMZJ8|IUM|Ev_-os%7NV2s$%nVZ(J1F!>Ejya7ul6MRqoZ*ENYU^`FaZS*K!X#OY-yev(& -y3HfD1j2l**DSjSrV=dnQfI5l386tf0qD;$F#^phmca*{tiQ2rB-Kdh|a)y4DD20cnTmB0g56Sz^tYy -aj?|LC@w6302Jm)Q|ylJ#3xW&sW)7*JvV}5nzCUkPE6=|YKkZt=CDqVs6#G@yOEl>dN%R1d+f@W|vSA6Sl$_fcwwGCy((IKJWtWQU&!BUn7Dng%35)$AV?shBM(DxA!t?}UENd~bwvL! -InTd{`_6`oEzXJ7|PKh0xj0reT2uv=$6zz)-+^(7N#D^$u%35XmRODWMt~vz^ -PFNUK*3uJGpzmwr9L8Dk!v+P&g=w_Bk04uzYZ#Cp?op^jWNIiMY51n-ruxzUZ-B -ML|owo~4UMG+Dj}Rcez(m0m2fJ1rE|MYzbVM}0VGWUu8XWHRo -1MbOxhyv&KT6jY(93iTBSn2|AT>kDTVA5r;$neU32!@-6gw$Cw~R?|7|aOpu1weyw -9n%`kY!f6_7LBC22O7^fAKzuYlqKvVyCp<|ptn)=5J9Ak#`*gu}@7&D;%{bPKN#jDr2(<;1TN8Wlx)Nll8s&Pcxv -nkA0t&`j7L)?3O~ughOq)vAIzDuR(nd$s3fiEt!@wk4MlC>Nmi!e~_!c}(JsFxX!oL@B=YsuP^Tf=l{ -_r0&ggIzGf?v!M<~mIwZuknf8=@vBK?gu7h~i5};A{x66P%>P;Is`DStCJT(w#tzf?M-=YNPd~0fe^u -RpN(bv23ao!wQqPs#@niFdyzkHpl(WUzicie -=PFlE}JM(R;k!m%^al$Zq7|sjn*)<_Sxec4fFr@fy;e%*TD+ucYsCX*E}qf3ora0#Hi>1QY-O00;o!N -}5*NNtf2i1polO5&!@n0001RX>c!Jc4cm4Z*nhVXkl_>WppoJUukY>bYEXCaCz-lZExa65dO}u7&%`+ -a@^#qldeQuMG}%&B@kg~6h)C)@B-U2yYB8f96H^9@2uZ2*fe)nsZyo-3+&Fz&O9^EcztqG|G;JM)*V3 -Kz3L6T9$fZ^SHHm#-IK-%j8{xS$YzqrE#TjUq!g4`=nawd0=6QCIpH8_z?7D37HbMj1L46>LZbaz1Z= -T2TQLu)1ihl5saz`%i)3*-m_VN@g|b`9sU#sh#Iumi(YVj%lq(8EL1gySiUu&-CU!R_5HAY^ZUnj~nh -AaZl%d?5{Ys_69eC%Q=ci>JZ4eTgM4R{}h{zbWFz79W1f$C>okkr5yG#RMJaM}c5vH|5hnVPwg(1u+# -ELHB&_)la3y<#jZa5i3ckl#{-O;E!7(ZR0u3ib0(pQ>#V(Tbm=oqt-gzGH^jt=g7qpLf#=w7;gcl>0c -zj4Qdp69{Ma0Fd==#Iwj)ui7Y!NX+qF!Xv3fJbQ#u>rFV7zVH+uN2E -Xr|cEOBQO`y_Pc5r3cgJ8MUx$%7r++4g|=ZM8TO7A)#{>`U43nE`P{ML{W&TT{wc%~cxZmZ7U=pW6hh -i?DU>#<_g%C-dv|_*c6$Ev**U<(!<}Of^aj`8$c&RlV8RU%0)PC=cJa;&-!S^$X?>8F0Pr}gmp##rW#gS!$m7ccyXY|dg{crJcC8EGzjX9!^GTV=vax`3oJtOu0(&JP%!`NjmuKX{%V}8 -rWimi=A1bR&cFTrCGBM$WGnnzAtA%X>f3kq&mim6)N*kDB5i8k;yRcTM3ocZppD5e7(ZyvJzpiPpDMq -ZQ|J}^USz>-qG)+mVX#w!nsH&#b)7-jOvHj_)jSL9lWgKWL{fg9F*fvE)3@OGNYl`yg|w7w9+lky*qI -4C-?sNZq)PchW+a-h~p14S2Y8;D(6`f?LKw?pEm!+Y4fj+o9dj&&@2SZ+)&T}uPD&zlrAjJoqK!dUp| -d{J7}{mZC8ebxmLUsYUw2@SKGTJ9cY>hZhoaIPsQ}I<>!v}kjCgseUPfyH5a#omM8`0(9fFkpc$p-o1 -;^SlPR?JEGZ7hsjK$)Qgh9u*~&_ryoAN|Hb5w(@Bwy`Npg9hEgcQ*xr0q2wKCr~O^Yd!oNJkH%3ufPiYR}>xS#l~0$BrQVT!5vkM6*~?>?A%RmaS6Q0+aZwT5* -FkLqW6`U$7vh#HrreT0RmPc*2*t9D|4SN{FpZTITw?ey!~=Z65uUy~W>YOTH;4a3TDvD$lw+s7?-3`C -nF%={bkknm+pmL=nSr{3smWp{^x>2S)M83bk?oE^OM(z~U?k3f78WO_DyqT5bL*0X?Q@U`JI{qtN-?< -IRVWL}<&BB#19jlTd;O9KQH000080N_fRR)2F>9Q`=}04jO_03QGV0B~t=FJE?LZe(wAFJow7a%5$6F -JftDHD+>UaV~Iqm7QIWB}I~^@AFrL)LJb_350(~bZ?IYH1w2)2DSi=dT&rsl{Bd-Dw(XJ5&P@cp2wo5 -R~kmziZv&&Qu09{oo&ynXrbn6E#7ynFWM?#1@queSJ~AN -A~!wto6G9`(bU?VXR`-O70$(Zp}Q{r&C3moK-cy!Z9?^zQZD;W0k{%uYdT*Onpj6zPdWHefkj1JG+0_?(XC7Jp1o=kFVpEt-fF0KJ9 -Apc8j%s=h++jAFKHjAAC1D{p%aaX-WxL=e~tCamhON2DNOLi7NdH6_Ug^A(eY^DFP}X9_ -@CnwAAa=YvnOBwmEM2)1AAj@NhflXJzj^xQ7hiqy{Y>}US{r_6Smk+Q0=6K^H|CrD -}Z1>-9uO8mqZofREn8E^a_KfHPK)9*j{;Fn*1dH?Rk&+ota<@ZPV;K%sL;|Krb{Fi!c+ -k5Z*)3(3gYn>%ts$;%=X{=-L(kS)qORMKgWv~5u={Vcb`QYA<>!ovzqxpa*FYa(3Z!MbsJ!P7=KfZ13 -gLle%*RStxf2{B8d!9xgAAbCe&%KHdMt44VXY{?i7r(vx$Nl}XkK9PV{uKW3Hy`)xJ9a@G{|%GMPCdM -eZTk8Ro9V}&pZ~D^5Kc`867J^dpPt^_eDvhc!(jX`sV8=Uwr=U(+}f+IfT -JNef-0-M=UF>>fgV3)D5{-*}{h(efG(>Up@I>pV0TVW_;lLAK&~wdh&g~BevetZ@>QH+fSc<@;|@*;_ -070c^dD0=O+ATxh=;YKgK?9qxa*s^j2=eLm#*C*E4<`mEY#=*!Os?tQGIu>usAyd@R=TwjPyFl>K(YB -bRy8j?&{pt=+b|;J9N&3cmjiDjJ~U_as7KF_c*_<$otcZpD7D -d@%CoL{IQE+uM$F7U81Bw`@EgyHcSWa5uhAMaQYy2*JJX95>GU_IHfMwhn*2t)=e&uJM`s51aK<{v4^ -|wbI2qsUgCFtNxnmE-HHt^KM&pac$UpGUBkduEa1+xT|ETTY!2@GEF^U+_* -ogv3=^ZPaF<)oQSFCTzc5AF#S@H6IhUqw~h3@Y$q2=g~Z)e$eKFL60^wFz$!V#@)EB+a8b_`6~+y3@` -vz_N)kc-hr@UNl@>Fy&8c} -r_fPt^pV8W2;IVLFY@KmoMk5Ti@UeKl-A_A?h2bZ4!+~Lo6}-e$ws{)?Mluv()zJbW1y1yqWG-dpB&i?y+u*zI -A&<7iM%TW{WY$GL{na8!NN;5O3*jFlO$EHjY@|*t9r~Snja!neEno69cE+8ne1;jJd}93pO3gPN!*Yx -}#zr$6pH_4BLxeqth%@W0*&A)2E%)zTd=H!gSfG@&3lV#X^->qv)Wf-dJ&7i>ZySvW4mIWc!7U^D%5M -o>dM!EA5VX6V9U1Zggv%nC^@Rv(;kH#aa&b@o?ak$MlA$h~EynTG%?y;SqM;u|3;evEMoya^am$*0fC -QGL|Qvg%O{OFASwI$+3U1^LQ=Zq1hiSUJPVJyRqh1yT@@8Zy-vzkMKa};r7!fM?~C!EX!liV2iZX1~Hj;DyH60tD_MzgMV>mL5BvRz{GD) -FVUS}~yLmX6sbkB*JRW5U>7%OiGKEK3-m<2qPwoO{Xr*4n&@ZfUxN1-w&_@x{U#Al&!tJX#~P#q$qln -t-aG+~WD?N%*LSyWDSW)aY;HWdd;Q(r^RSY0>%UJDo<{;lR0fnq0mmejD9=VT1|e*{^*Z<7Iwb@mPRk -#gvVBLYP8yx`fXN*E{Gr?P8{d_&Q=n!XXi~Vg=)$jUPViYBwMmvmB43TSwLT;P7~GKkx;U$V?DlxQli -0EcQy6GBa`##&uWGv2|p-ec!{c>#ylik6Dcw5pPWVA8#eZA1o9@3IoFYt21XWF&;cnOlgd@reE*ik{R -8K0SR#MwOI06zTY3QZfA7A9IRk_b4flH!E=7C5a7@eJpc`TM}v1Ah~WI>xQhd -3VrBL)&9jGh<#lYoh6f=8iUa7l|rv7@L5l+hjbyO}!)0hfs{^R`<_f1@#oP8@MEFn -c&5m&I2!kPn@~|R-D)iF2cI->)2z*Kj3mIGZzoUfyVpdw`(2(mxO`RH%w=+T68O>;KXCGd+9=k;zQS9 -;K3{46MMsI51SnPA@^|)ToS<+(;=3vgAIn$ZcaB#HUJ0s`oI~OI2&f*Jr<3ZiPw!zghMjer=1OONd0&sRF8KYFK5JI(p5HW*kZODxTM+|0}3NzKuy=c=%cIggozt+;PFXfS&Wcy7gH6m8hhA%ja_r$>Ip81 -VFB&w<#2U@1iWA1e~^?^Ogxr`f#V;lGlzRyhH*ezb-vPm0|VT2c6%%o`H&vKRF6_C!2_=ZFYiuA)Xcc5I-_m(E%|qalsuw$b|Dl6s%QI0Y01KzGxn!W&3QDhd{c -hySF%)NxpnS#6@Q&dhu!05BUjW%z-F|vPAZ-)y0u~A9Y?$aE(U0e!xJ|mVfm*hD<*{ogzMU)p^J~^Lm -J@YiY|+8)PSuOyN=Z**aAw80(#kxr^URNDPyDa~mu&c$O2n(nJ*%N+zo_yCO&)(zonfW;F4jG2_x>N2mN#pFu -tNI!O@w1?mWTZSp{Sy84D~(nz}j=qvbx1fD-v}SV0kOiKEuioLDH=9w%tTU8m+@?t=$3%n(CJ&%z-^P -v(XDj>ftH1TfwBjZrO9UYxMmHc4`TEHfjrS5mQ)(X1h&i|51n1dst99El%}z$Nh^{6jeRN(2qBN65@E -yG^u9a=OOu#n{hIinVK4q*!_-Rxp53wi~#FAcw;R&{rKEt^s&Cb8k6@#oEIRF)b(4(mF=T-frFP$Eau -S<0EiMyZU>wTG7zqKIZ9qJ!qMDU(D(*H0<`Awbxl6vOh*Y0qHdlflGQd!DF`{pt8|vvH|MEq#1h;R!h -Ibm=~CMvdA67o<6lQOPL?X=DP_)>fkO-!I&elbYiO#4n$^H9pZM`ZNmskfFiXhtC_}t>udJ+gf9V$HK -~dX;LUVb2_O()jFGN3s3o$nXoN8kEhW25{)w-{e0QdQIN?iX`V-;>KBlvb87K#M?qK#0tPs4lbjNg%j -o74ba2ypE60Rxn!wD|IU>jk#GI{ZFAVIfDmWPp6CjK0_2Eoy3grS#ByMbXjjOuA;k;1ZW3%WzL6PIc# -4+%iv>t<3Sz)qGK=FMM$eBH&+2as`LOY_QGPWX~Od21s^HFlXElg$AGS^x*pBsO)j5jry>J0OtOMoCM -EW`QvDXY9bhlhNM>b}RaI@Nc-Blgyf+ER6#&oy+cHt3>PG^y{*G8YMGw?%8hOlIRS3_QWxrY#~!vKD2 -8iTP!;nLDda4X%Wl=Z?loIWD8@MDsL?ms@Dk&MMMG=?aW8z1lU8yj<4a7i`y2HfEZmO{O4K -P=({toiD=w&36gl^amfJ?9Pc+LoLSgr#<8SOG$d^ql{Npq0%lxYx1z9dYn(qAaj)2I93gC9U&0#8C;$ -O0a{(ZMF+eBj7|bsK&sCIctc&ulkvNf=!$EX;U;j0s3U{?FcO&6y?-V7Qa?r1KWALVUs>{L>6o(qyI5YuW9M2X+I`!1cn -94#>m;(b-5#3jVi(Q`?dQ%s3x!iuksX3+uoRncyioM>5G<_g$XLConfa2hx)QdJ7mQeFMYN*#0B;MI` -nS=PNjo(7iyGD-#O#vC)Uz>y&>WnZ&8a8i7l2xFplj -bbB)d@dP%^V39%Yn~5{+HtGRnuX9S?NE}KH(j!uf2_R&aq9JxKyL{g@N@g`-6($ZuKC&JF+Jk@SJWlV -#x^-3yq*igg&i;ZMC*|Mp&b0{Ux~wz4QxIOH<*)e-ToP@-<`#V|VV%-+|A3q^>}#46tc!iGC2^=db8NoCzS6y7Mg>F9@H2} -pfNlO+^jgX4if%$?l5;U9|Gt5v+Ya@|_sl44-TY6}>4m{jAU!gooh5%F0O8j=9OHlyA5hgb>yU+P38=oHE3vKy?^>z|u;8&FYpD#>l68@2o^{jBYQJ(WJ9z+L2EL@4 -R#HkURtt)I8#;}AHxjlET^3wZUm5;M61LP&bqiwbaddT%#V-U7Y$qj6C3jYDg!e?-jtS{EU8JsrlO(AIi`C_-T2m%}gwXG>11&q){j2^=COYF#moI@Mg1d}{d> -45RMn8AjSWbqS3BY(U=Xg6yL*R@mx)9GopV)5Tk_t{7k*Q#kWKB&xXX5}Y962irEiqIriB&b&6D?=%MpzF_yb0P*>5$wP@!*@r+z${a)OozL? -W->{WT^ETdPU6bKn`b$h5sqsf;7f*E$U5)T3d{jbh1g)j;Zj(pm_lJA0GVs=teT&bG=OYDGPE17Fb{f ->N$7T=I)DKR8iu1xV~Fm}fnePxdsD&#;D)0;tcdosvq2rFxZ)BNu=P|Z3Pf17g1QxJFgOYA9HeB0nhd -5ALzwJ46%4VN0bn$ -g4NPGdTL5~8X=pEMZ%#=dNB;oaB>>uXRZkl1eEl4gbWU|;OkR9&d$oRd_Wc`of2q-0HwsWm<7S_WZXN -)U?Lb`SR3AX<|9sEwc$8@)HJr2Fm=5F^B8bXCyB1G}AOPwAfyg(TVT+*!B7$%Ew9pOK_aSXTizqj_Ig2TiLvh)z!u;Pb!nekbM#}`@iJa_`YqEI<3^fzLLk?v|Ya7jl -3(sxUn5(Bum#lD|fDBhWRY%LPxL?o#FrcVY+#z3gmkTCA$Y8SplW}KqdkO(6Kj%5djgU>7-V*sPbcH+ -t^couz2Ijbp%l!`=T?zga{z`rD^EA1CQ2^m8fYFI#Pa3fYr2RZg;?QFP-ctX>?8L9{$$JMU-5*z~Mo# -yU6MP;}$-oHt`LS$D9JkkM^ydRFLB@f>WM!=bw_+bVvDU>!NUn68?u?!$`5IGLHMbZM2NuXo|MvxlZL -2Lrv0uN6z(ku#J@nTuW!LXbM(vD7#I_++F^8$s}GI%X!$rbc5?AdCS2X+Ey-Rc#O7r2DlT&X5;rzH^# -#*$BVaPY~+50>`y48?QwS`;q)2QAfpS!l+UYL1+FkII#W#pIK(jEW)r@^-hn(bv3>; -dzqtI#aqh0O7Vnx`dF*qX9d9@q3WH9ETZsjzb%gN$sKqHNux!{vGR7M5c>!gWIw+XNqH8Cb!QtHHFV@ -Dp)n3`EWG*p#L%imKLLD(qoSs6H}7if0kiTBij#Jf820$YWH8#z+Qqf_5S+J);oq;^idB -Uo%&bO*bFVmqjCxxT3b35P`;Co@$98j=guD$+rxndI);`)G1HIa#4PI1V-i83oVs6S?0Ga0!BkivFQn -7G%Xo)giz_Q4s2MaC26>^dJ1Mj67BluTjy-1-<4MeF>?2HQeybLCplmL66wN@{W{&6q!&z=}DR|-vSd -1%!cXjSN$R!R^Z9He7Ug-1S8Z=R>}|QWAGV)z2PYa2H2sQw}uEp)!AePDSyY0?C(h(r>UibDO{)hwO! -kwUEmTlXroU9q8DJnL)+l^7_?p2ssnmI^Ih -wVEdBwLAzJxrh?IMp9treb*d%=Ne9$m$u3_dlyT?!M>rDh8sJ6N*5U-;pKFCm;aJ*S?c2v*@_p{@pOc -ClD?!kV#+ReE)02f+wS!v-3@od@(Km`>~&6T!vuuuxc1m$L)|HH%t@k~d8M0A;8+6`RNaTWuLbW~B!Vc5lLkVa8}C{%@p)c&yUWvy6$y6`sEFjKp5wX5#6s*c4;Oc5 -BpG=h?;9*3Kh4MURv`KB*AmAR$qGV!R*dgg^_sUyFTZieDl%`3eL?rUiIHc5+31_$T9av+x4og1PLxD -yj^``dYdFM;HU4}tGVqO>H72!M`GwV)2c48f}y`>{eQN?obk0w@RoTJqpXOQK!L5ECZ08nye@Eeq}{d -2sW~%ANa1S*H)gS?+E>z%qPE?bkejOI+uvK8iHSDj`0+Q!wdl@aP9!EqE~;UFtW1!=#gq>O!-4P_Ow# -_gYKhWtRuPqyB()h3|WsKm1u0(XcPNhT`7FmEypgHI>x0p;bihdC)B&7xQqCA)@&!ILoebnf^8jYS@g -L1>;F1P-bUO0F@(o+KTSA9Wo4ZYgRI-&xn`Zd6q0m#Y)k-Fk+<_2fRJLXpp$qq5|Q#+C}#Ytl1VrQys -ug?Wl2jweIc;Dnz18EotuP58;9A3vmUZLxjaM+YMaOmfmJ}f7&=c+|ZH+Ct(p~+EzGLNVp>RwtZ4vdwv-6VLb3g%gNbi_*KJSxt773=H~5k+jeg -4EB6ASTkp9U83qn;95Ks$_xdCfBL3RMJs)bJ?OrLo^0FQOk04}Xr@JciQ;j0^%F1vL|6nT2PrVt4iEp -%}w@mF;qeO&EU;#<>WF&13O&|fb<4sdf@!%koiU9Mx-J1^hI{N`sd&*W)Q+Qoh&zF06uBV9;9I-<*tl -5z+R07(sAJG##v7>?O$h+v8$z4=AUc#Q5fkdh1FhisDZ;qYp{MvgKxVjsi6b;1O+!!WM5!}eyq+6`PX -bjFQp9Dq6zkNrmbWje)b)fgUT{4O~(v78R -8M#af$(K}eVTp~Av7f)2n5!#8%dow=hAnRfN)Fcz6#RCKSAR;q#lZE5PKtctjgH99?|!e%0MllD4_S_ -@zvnj;Vyv4Pv-3U!$7SL45CS3Dv81g0}!6Z8va9N1L&A1@;Vl@ -yvs&(5a8nPtsM2F4b)GP^V_aL!BB0Xz+U7FMB}ux;1OB77>V1h&&q0-tdmCX~`}Mi~%mBLX*`ZCtTJ3 -_*X!|g-g119O4ipOXrg%PphO>2uw^YgM#mT5-3C9Ve6d!5QFI=B^`5q(Y@B@5fluO#g0XRqBWBPtFRk -JOWC0(O)M;vkQ>!R9I5A0PjI!1?$xsc@ROsZi!>`{6%Mv$^ADCTIPY|bOJoSa1I;ZA^T_%FlWbSMgeg -z~CFs~KPLmO+!9Q}|T&ROyLKo6EJB`VVX62G>|4jZ2iU~VIm#Lf)OVYit>4ufrU25`F21W9cjgw_~y4ONNT!DxcQfLz!! -}te8#1wWZ4TMOZ*=j03ZQKQg9CWKKdzbTo?zNcXA||a!HQKTZ2dG{OhK1U-k)^zf_ciCsEdhE{vhBv| -xi8SYR`WNh%su5aEIa!Rv^CHncTa>2At!`-u?^6W#a_8Da=O;m)n9N)b4`mQHE(GA6A!C%rAKImD$%b -MC4fUfNd9K3DfxQ({HxsoKgqJIQnQ$%nHs<0&D&BVXn>G&r+T9vhHRyfFH{irX!07@x}kd=nW&uh5)& -hnqIBGvWT_4m^Jff{TB)abP7Yq9n;T_tc`ogVG=8LOV2bBp$Fz$$M6HudvA*wUuot;q*8qY2re8DT97m*BcImJ;;W^;+n^q -fCtqhb@Q@cbg!jZ{X0E~35u+qZyC%RvsxV~PxU-zxBLF^S^7FhH_fa!NzBKf&HI34{_=o+_h9f-n?LVR -3cn16VCZ|NGniQpdr44>-on`mG6k_kbS0pvf&x9OHCB$!dnUgimC#gEc4ZYnMHsd);O_R|5~2iS(KU= --{rdhdok~sg1DTMA&RPCUnTPER((D&nmjt(bBB32Wf`NBzK;`uJr6Khe3vJ7WHZ+hHS=HPmP{(b>;4tpYlC_y@_3%ZZm#nn-y>?D$|r< -c)@T979zQ~pR*}4J-Kp~ML!P5TbRO}T{izoJ)J#2kq5Y6;le#r^hLp9tr_H9^Ue#a~_(LIjX#2v|>Rw -UVm#*N}0-+KC@D3*s26RvN5ZvyL!h5i^qsgyhMv7Nj#+uy6=w3&2Ym)3>P7Nfy4G&hPi2)_aktnsiz$JH+S63?QlBqzueslg%8ZyccJo#;*WJT3PP=9r?m_wXgb|;=+HfM=iIOUo~|26P^hugtI5c~7Ll`3c7Vu4f~TlJpQsjAx1x}P -AnOt=?F>FK{Mlk7K+#(1ln+viG#gx5A;=U|*yVD -Jtea=`p^;SZZPOqCs3Z%*JY!Wnm%3-W;1V#)fEFIo{u`KSO0uW+Tm2;PW7>05b23j?+C7EaRJL~Uo=x -5Bq4YqLG|{EhEqCDYND}=z-3>*aLZZm`@hss%v*3uur=F{!d#z+a9sjUNVo52G02Pk+wxu_xDx@+I@^ -eEgS@6G`x#D3p<}g4V*)F(*eKA06BTs1n>STB=8sZwNhXJi+W-KK?Z&{(H`w1#(C3!?x?XWX)R>KIV0 -=nlJ2-xLNLt%RDNmUQQvCEeLvU@;i3!5BZs=ZXRvyHf){jw>G0CHe0Lch -4<@X$GliWC&UmylG%w0k5;e6$~se5HWmGIPHiCe0C{o*HrG7B1!8nf0YFwf -YYmS%de&nby4Q+xD@t!oO{b>{p^vfhft+%%f?W+U*Ei77J2Bjo9%+F6hKM>WZb0mW(rHV+f|*ZjHH -5FGHwFAZ)&m3#k#r6x);cJt$-mYGv(O5d9Dug;26t5(cdV0^qH2){Jw2Ba7mTy??q_|JDNI5*F_e8vq -^%HM{bwTCn4`zt-FkRED&x_zPhP<^#s747w*^@Yr14jB#em)v7fHg-*aDR8a>b`8KicX7}i_8+T}dXn -a5`FB0!iU9Vt(!Htt9XLB+bM@>;lCNRvFA3eD0r@jOok4-Fqhcq%TBLP#PeJ!2JCx$(j^dyVr*n# -R3^%D4uOVn{^dF+!9>NrFvmsQuv^@-6woz#XE02c+^2zX8_V9weMYx3&^;IB4MQYKd0wQUdu=8$!}5p -GN)X&!V#nu6H0J^3{jh_SB7mGQ%%khl@%25=cQlK?#X)^U9k;R_R -dT=5+;NrE4D4y(+pqEQMkwx#Hb_g71kTaF&G(xbB9EJW^sd4E#*0tj!O9R>}J-mdwzjzhMhkWGoM{uj;3$Rej~GOlT)JjPiS_h|)AiwzL==QY0v` -^}4z%(kg5b9SH=HyFhnq!R7$sHyuH@2K(<7cw}3JG%Ls?ke+cVr2Lo#p#}kYM!YK^JsP$(7ZMZHdB8j&0Wti!It4LH -P?bu!(OE-6tBfHd=_FL$Ea7duQ1?3J1dyst4VIJ0T_iy!)pHts&Dr-iX4;Em$d64WgstY40W2T*D;lpR<8hVFIq+Bt6tIwj{2Vp0h!bg)e$!gL0;7W^52o8wv)1X_ka3AGN^tZ`lh}*?HR*AV0Km8=S*P$$!7+E~|L`v9HLa0J%t_Rs2#mH`%!fV4k*x3~Z! -wH)!uFLN+LuA(7WL64%8NW#eyz(aVEWCm^nON -p!d(KVK@1@?Tse8@a20YQ^%_r_2+|Z%eMf*ii$dZlj;nYJ@#Ag^AwM;Uj*{=QuF6pq6)#Ob2*h_|3@q -!e)c7aG&%V%{1CKx-nN_gbWMPOq2>bLEJOQ6~+Wviz9L>pHVFh*OMJ()h&mLL*y -l@n{*XCJ580m(1Z**k9Isp^1$GW~=! -p?cG$@v(wdyimi+;bD`=gj(Wibgz|?a69CK@)AGL$nd%rOqXH~IsPCHb?@S`YLOB#D&Odb23c+|SAWs -HZW&~Te6^87u*hnWwV`1iq<9^zP;W}chvV|1CX~q4w;cS)eSz+^F3-1k;REEH;)b42_kkqZfCxpZLv1 -G!iJLQelVPTuF_a@;I2GM%_hdFD24oAo!CS`wCvv^=gV@jMRUnmaftgswqSRjn4H18+Mx|YJuVCm}Js -IA$L0o!ul65o$Idx1Dvmm9W>S9*~V^1bOoT_WxsN*y}XCiV^A>0L(?~d}aFIhfs5G5_>-fuMQG-k96M -p!18?K(HZ0ov#^}-5)P?Y3tQPP`Vt=8IKEuec`Je#c}p5cuq{4$0}Pzcp%;TE;Fhhyso3V3Cgf8 -6(&2S=ue)_@vt1bu+>i%aKpDN5YC%A!E{ -U63p17JRFx<$HL0o3(jf?=~Q9MP=>^G*iqnsOJk7lx$dYF#xwJqnDc~Bdn@YthK%5)C>4rLvp+F&y`1 -uavxYfhinv4Kl2`&IW!M%SBXv5dXd(`l6ViSu5%f<&#L%IZxpXEmILrX?>d9%8z$~*NU8b3>|dW -rr4iOs5iQ@Yv3$P$;bF+EmP;is(NjYb^MGM9o_5Ta)seNA5_zZ0xAp9pqwrENu`>sp#RxG15z+NFrH -`!D-aNLDar3zoYII&$1D%2B$o`Yz>TUCz&j#Q>zDpQ3O#9PeKpx3-U^1Z(tyXoq5g@+MPU0=0d~jv}? -ftgM|(tmR99e5{IX0gtsc8+a8%O&=YTw$a)Lp4fhJ`bqTi0ajSwa>Te`=>9h|oyTf~U?pJb|q}Nk=Ba -Iy(U#@wej^nulZv`)!4hK>_o1!2V!lPx-&{mFjg@hTn4TNjgu(j#ge=G -9Wccl@zL -rO}t7OH)lNqsyDOy%^HJ@)(XSc*_>G5^}T{rg12*^5x2q%Riud9ZY)_R-iH}CU|)th*wI0j^*RM9~b( -#Q?DFe>ae_h6VxpcIr84Gj_$Q4E2+*KcA)FPv{gU^fuvi|T&DMs5Yx(!E<~@8kD<1cx|NRZwIV~>X5P -x;8;C=)FYvF@s~iQY@OLB69aN_!td@^$)6x({&YAVij_$Qk9PSEhc>h40UQt>PrQ^$c0f{-31&8`>02 -!KDUgIr}daNV+^BL@uSI_6~$=w2JOl@32yy&;=eJt#Z05X3Q!k^(YCHqVp&TgEF$MnGG{xTOmGW%FtL) -3vs)K$z5AY>e=&)U{{h;X5C|)-2Qj(d646lk(s#R`7n|H>5apl~-IrGx-bB6e4kW&pQM2N!y%hxRmV5 ->u6xuf@#2!XPC91cFWFAsBB*q}Ql>xG=#yXk)4z{(OJ_TxpChZhV&AP^u#xKmlOTSsS!oA=IKlFsVww -Il1@oOOu)k`I|ZYDC^kHS#wXoAH^>5kax(y1Pw)hEgS-uOXK~Z#JT_@2PT< -`YNfZdm{zt-qR!g^}@G2`rOm6qkG*XBk0ipsSPC+oUZAfsaNJUjG$gaAVET@5=_y!gQa=<(5WCc&y!J -Yzu6Sl=(e~6ssMP0T5cIKD&JKVjz^S>sO3<2=M`EYr2MW8oXLeJ)xDl>bdSZsoJfq~W`_XB>-6v*-3x -zCF9XeksHSJe6=b`leb@bGP_H-5iy1x9M0(PfcgcZEx;1|9;RKwxJV?fy-{En1QsA^t)J41{F8K%2B- -YK&cs~qS%wvJmuV%1=KoW@*Z~QQ4WnYvWm&>RY3^;T7Gjy+olS;!gAEYeZD?3bs{g7V+k;jY~DIT+wb -p1Y%mDU3ePaj_W<-S+%elF&3D#OtpPB}}zCZPHU8pmlbT67_Cw%jSn<+0aq7(+j?dL#N_f$X7P -_@LLGrL}(Y?Yx5|iH=MD(yZ3{4!;Rn6P`o%63e)rD9BY!Q_OADgZ!Qo8g-d7C(Y+4fcI$aHEDv7d<#@ -URg46U`3Uj$l@QKa)Ua7B=+X}jr7hL!6babyJ<1BE+>npv4w|PS!bx5F2L&nmJHwr4cmkgTroHSg9yV --cgi$lHyaCz!?bmWR^i}#%7<%^&Z2`DS%mg~D;UIH_fU&oR0P2KCv(X$6E2sv9zCAn8Zc`(i;W -6qa|UDzt@ABz2BZQbx2}Y9XJ!e)-?}&KMop( -G4uVXzVh-=Ty@ozu)&+BR4_%)jr)Ba%Y%~IFFBgK@roDdUTX>_#hPSt6zSV(Jft45EDCtbp;w|bABYE -{IBg-^^9f$DI`clfj_$Qd>v>qX%cq{gXUFUpnrI^c9Onz7UhRTc5{~3Hz3;_)=&yF+OLozVm(+UP&*i -ZIAY*Gq#|WC5T=0t`7r>OsfW!~Q=Grd5j_$QFZ<`^@dj#C*(x%FPrijYJAl-Q&`PUxZ!hXLAWe=*EV_ -yCN-D{&bQ2gcr#X;R8b<`%wC7M+!6|f5Lyi|c%9ZP3P8by%pCWmXk`pdm)B7G8t;mvf_`&RNhb8z$1e -Z*FmT*g)1{q!rb9l=ktf<%07ZogT+l4Pd -KwG`*A-^03Mo&uFoB5~l&}%#$F7m)cZ^R)t3@lj3uaA{}oo}(l84U+Q=HzwaP=3yWO<$c=^NOt9$0rDd$McVBcH_%q24ZIv1E2VbjoCujGI?~spH_v3glS#%!% -iJl@KY$K)+b7uL#or6ICr>bz37)OG4|o+ST8{B}4LYl+cS?x)_Mv=< -SIuzgL4xaBm86VDox9#kz_G6pML;)B~n6*M2*OR|1k-4mhu`%9cvb5`#)^Q@)^hN!>kE+n8!QCJCn}%iJ^Oh7)4_Ra$n(UOPLfaMCbGbN1Or&Bj$KyMKgnGaEAK~CW+rQgO*PJs4iIzq_AHs*R3aze$2C -oy1M~}j+;14MbcEM<$nBl}z?@8gq@`U($4ufMJSw8(;f1zEG>H5mnUUam|?3vntaS?ZDp2|LBr&UtgTINCRx`!a306`J@TuwA -bE7q;@{nG`mpB=oIH!fYAju^IuK$)9>#`UTY2vyHw#4EWbzJuhY233(2;6wTk{?^g6CmtJayUz@Rp@L -yr>j)&!vCh!1_%;d<8TB>)Vlcb-yIRBgJU9dJzu8X^C>F_flw2A3AWqA*TDqT22e3SaUMGx!x -yaf1BrosUUKGy?Ys_)_8g%Pp5YH1ixs~#vKh44}LhjJ%(Id-?Aru;J8%8H(n83)A&eNLSp4L8UU;z1_ -JU`5AXP8gHyxS1G*(8N%Q7Gc!Jc4cm4Z*nhVXkl_>WppoMX=gQXa&KZ~ -axQRrl~i4C+c*$>_peyQFE-%#;vNEAFX-W9#ZHa$7bF`+o(x)A*+ePQAgKiEufL%`)7C-n^d#->3}A0Vc=v4?nOS$NKAUGEuxK1$fYwX1Q|)>A8PQ} -5%)KR|J{yi1W%l!RJG2|KngoF6)gjrLZqE40~i?LQGAnh5)q=2C5}Ea{e@(33Ybul?5OWB;&9$+Z=>4 -z3lJnVc#7D}+5zZ7RxyCd;{W2YMLcN$C7HV}UPCE{i&ZDxIU9pxU!7-O0nJ>5|6mpp>3ivqd-aYOQ1j -@K|Q79g}dh3o*C7I5iAH(xVU>8qn|EeIS;|hqGVUIz;G0w|6@2$k-vwx+Q$jk7@1#uno~QDNMtjklm{ -mTsqB3>OJii-s1&?X!I3pMQf(YaZ#xb7*I=JMvKq0<$|K=GkuAYB$_UsA5aUYk;VKDOtRcz1#?1IR%l -;CI0z<#B>oIU)E|vUi|3$zI9f~xX-dOcLJ`fQWHE}D<0zr|GMUfPL6<0HK3N>hyk_#*;sTVVfs;9VA( -cC{{*3WD2vj+3#S3H18B1&w3H&0v`hU$(8NJ!}3&_RL2a*M8<2&?fC3Xkf_tSL2a+z-jOP_T+bl*df& -|eiskODrG1*nJ07~7$~aXyqzB4F=6^m=!7TVc-&5ta=D41ZBy -Ztfr7#3Ni2wZj#0gyFZ)8|SfYrO38Y^9dO5Gik_74w)mQT!*t9`<*pwIDM?2RLaYK?Kws^Wk26%FBs> -_v!>D0{VJWTCbP%ExY1~2N;tPydH}VqbK$PQRe{AQXtk2KaaOCAV^y^2_Ai0DWunN(48*!Gurm8vWzZ7MGz%a3B2}9zvRBUMl5FrBp&1U=ks* -(h$P_`g?jLKu7|^rLya*T30H@Gd)kwbU*zv!}I6aKU8mAH(PYuylAw#4XWR^FFw!~+2^_E)Ef(G`*I{ -*)1eE`79<0@^Zt;IW8&}0WadiCRGv?kBZaHTf=oHLT-tP{l2~~uz6r;h3ZJ|osSHfWw}c8Tb1Gu6(sK -j+=}$dh{{djS_xy0&@`b5{O@oC-Osg_|#+ojmYOE-KQK0JC*(*R~ikGS8IMiX;fI1=&{x@NVC%N!k<; -%eg$IJ(XbBqw(nf_P0m(IwS6DkpQs7QHqzffb(jm{5KIdb5e{(`MG^o5|n8>%@r_L>&nj4ab7U)VAT; -b90xrfVO0KGsh>TMidIG;?hnhj*=nKM9sLyl(aBRs`57T?<$EIL-ZR;7ALLZ>1&NK#&>Gl*fYc+EQ1% -k#4jRy7B<8t^1mU#60W%Cj0;+bX=}3wMB?Ug0J(Y;{C&$Q(joWrWfSE8~$=-InxB|liDO*4LgSI@d1E -1=p3}7fuLC+hBK!K1jy3IX78rm?@_JwKp$(JPOa5@cnw)t8nf_Uh$JUdP|zlv$~RrLz{UY^*XUf_U`4 -IoylwU#c=uP$UaQgV(p9@dHM*~Ldd-XeZLLH1{my;6+b9!tg;<)HjhSWSm5GOdoOrOLEtDypAUyg5+# -6tnj!k3pn}C}wA;Bmz5hByYK|XXmccjmYC2NDeCOIV6Q$?El65Ij%Qr-p1+P_7R-YOUAv-F~NGJT$r(tCY{q)?=-<9;#IJ&|S0DyzAekfnMhHye)=g7 -!ozgF!F(Lh6O6Uqn782a3B1G+-6R73@LNq==dKA#bxIAnQ$$n7@y0AHid;#MStf*A#V}`x)!Rm0-`I7WjfXjg^8^M(4n+p84)JG{#od_FHv!rr -Fr`JZP0MiV!_Evl#xp~AI3Y(8cC -_JkOk9~xAd)8b6mZx{0WVF=YNu_P^wHrcxNJqYa9|79o;`b}=TYc690Ur544a;&V7{IKn*#n^m@ -B7>r|Px!15$`09Fd7n^fOY8>~C9Ii0w?OQrtLxl#IBS2kefyhBegE&QpbzIULi)lb)arYPJZ^R54Y~Y -1fdK;Ppi6=}Uc}7}i3jqh7XD%yM3!4_JlsdX?89nVyWXjC)bjpZ~Nn4I(A2=N_m;e>~-&)f`4Y##o#rS1MpEjv;j!YS8s1 -_p3=?ILuGoB1_T?}`xwG)6GT#UW;-v{T-2BqBAYZ15)HM|M%%G-RY$%SUxJw_EK$-ljArASo?DM^S4M -|H-GpOR1Fw`sJ}CzX4oGQgKDYWh;?pQe*@_7xReg`4cc3^)<$cJbT+?XV1BsA_L=cRjpM1Nx{q)Yt<> -MLT!wdo-%~%%|>H`DYd5M!1J7VKhjhjV7QWi7#7kZ-}<0)MKoOQ7=XuY-<-!%emRD6#g7SLiCvcpWJ2 -Milp@beIBj!w)>x7=Iqxm=FdNQ_Vm7mf+l;|5ON9yA*qWWS4Um@OCiut(*Cs$ku+f#pO2{fg`I_b}A3 -(Sc*&MD+6L%DkGQRx6M(8?JSWXkNY)CUIS4Bd*A-LgjSP35>ZdBb{Va}TeG?_U{qG4OX=@$iaqp1qUo -d3DPu1a1EO()25(&EV0%Pv~qM6%lG{I>qOaK3lr8_cHMs+L!Bk2kFd@og8XT}^B9nsq=M_t;%*JK>mM -1`rS89rv8LNtSvaS6(f0u4gYw-Q@&oqtPK6N%=Xj2f$#669{o*9EMx31>73X8ZB`sT^7i- -|^XFXc0?&k7`&XePE=8ME5T;6!6IE>3XA2WUump^oVjLU<{{~wp@mHoL~uN=%}{Q&Yem;Wp-@56w~_g -AmD1&+zS!Qf>gsqyzJv?28i9iRTXNq{WsY=86O3t66Vi=arV8H}+eeBXOowAuPnxr;Zc_sau_^XMbzP -soCy&V94s0ZH&L$brR3X+}5{GdYad$fwg|K|dDd<5+s8RxKQwIpY|QX3n}Coj$Dy*z!flF8(LJ9yx&h -k9>#n6S&Xc{`^?|HxKA#PogmSO;GVkhC(tDYKi)w-#$_?vGwhsdiq;NT+~jo;{t=fzRZfQLtsuSJHo5 -`zS(_R;g$WR)UN2-{Hp4J;M)Ct)=!A7;7jZ=;eU#)S5bhR4RyST16u8Ms1<32+u%V})z)3-W&fP)h>@6aWAK2ms(pnpQO7z9GN_002u5001cf003}la4%nWWo~3|a -xY_OVRB?;bT4CQVRCb2bZ2sJb#QQUZ(?O~E^v9>Rc&wLMiBnauNYl)5~#$5t130*Qk8I!LnQ|BqEi$_ -)?%+=b;~Z=T_4BViVstrQu5l!~*pA}Y43g^E(pGBht(*fqp50-p#_G+;V~MnnjuosaM4E;XZzBT -w!jJLt`*gL0zWV?_`ty0;T|Qi+FDi{+v41HN+wE}#13*@a2oq!B2yj1~558kW|8_hXFCT36qw&%mE*3 -DF&Y=&p{(LzetS0?A%vST+bTM=Q7L?`^TQTcIE+h^Sawk#AfEvQMPN_d&do>ow1K5&hif#5O!-)cdM` -Ry=sE1sNO~MyLNs3uV_Ox+Lqra6j8V(O(MrD+)}4^GO%YUZ?ib&Q~1~`HCC_>KBWl|e5 -oROzeOE=b|eb=ek{)XbGM2f@J)BEtSXB>|PyUGkDGEAJ# -y3L5Qo5d!D=Oxz*d0gVF;24tO-yAV?M$?u1%^NSPIOk7S`fw&7r%{{bT#u8`B=UV#yVIq2Kdjb#x=== -hYkH>8gROFTxK$35pE`cU1z64c2Kltu+NksNt6z$dJ~?E?Ar84D=3uF3wbX!ra2m2&I?mPA+YoiFDF8 -a9%*kL`8uq8+octKiFZJB*zdeviJeQjd`UG?xZJM7x>m)FZ_|%4){n~op*~>^~0I#mdY8{mnwlKU)2! -#Hu>kBN5`Ce=%aYvYy)lxR*YvNs1>#%hdyw`hpvN}HUODKov^pF(wH2wupO9KQH000080N_fRRuSUIU -_b}}04x;%03-ka0B~t=FJE?LZe(wAFJow7a%5$6FJow7a&u*LaB^>AWpXZXd8JrwbK*D>{?4yZkq-+u -;Dp)Q+BxRsjv+8ZErAq}nw!h!h_Gc)#mGKMPQw2BeOfly0g}t?QMFsK)M|A<-TicHPEL;h*yrAt!H5k -9-QH;0W1olP?r-cF*^|l%o2>*JYq^w)N30tMf=RLk|g1B%&Yth04r3vNZg78|GW@G7oJSF*uXE6 -Zx#I(vI|)`E(o;vVZn5u1>#VH075z868}NjFwj%S8(RYNp=C3S$>s-?2*>Ewx;;CWD2R*_d5!>?&4HV -!GPkKOV)jAMgBi2;~3)(nu~e*Be4N)Iu;5hxP%Mzh|2`WjKcEnfJ|O+rLa@|`FpV0}09p2JF#9^bnz7 -F4JNwp|Ogf|4_xF%RD6oqFXPV?Xi6j)mE6tVNz;GzI=uNs`aia5iFdWRjllA?*Z`2XP3M>ljF)NVtql=K6Pp*TBFiU@Lwv5N2PXsshH5A<5>4Vi?70> -HNi!0?_wNhD^n_!5*|k?jSu6q6;lWd>g0=-)pd6S`gyuEDAM2hMuikB#w<@OWSh8opmHwji*zB+ap#-j$Y5=t+V@q|iI2)WFVt7Xc -UqAw$)V1r%icmWkti;S#P2BTSTGV06*<56cg|2CeSPv@7N87;DpxYhIHbs{5CtDvgcqI%7ne{`DvzWL -kr?~m`!n!i8x`!{cj#s6e~6?^}vR_c{X#gDiFn}IN=!jc6-w<}KN^y_#s>t4;~v#*mLK8EMG_sskIFW -Gh=LN=dE5Y~KNGa?EbC?&O=ht8Y!o_9Fn(*Hy0zMTuJ~Ha=k>yA4HmY}nOGZaFJLG1)}R|4LaZH3WW&rC@(fvz(a)CrS>&_n{1gVY;)t -TD!cybn+|<&NEQw}qcy{#gneN+LOJ(i70N&;zoaRQVr~yqoOx%tC8S3BYXPuhwNg`L%Eb@ -%r->Jy<<)L)3H!FIxR^gZ8rl&ttd*ftYtN&S1bV%V09cEV2#Z9n~V)qv7QUuGpn+nrrw(jl5bAJv#{h --4Po7q)O0yfkuder#WUp9>pomV(3K36f{GHZim(;GY=hr@II1j^sAr<<0d!4c-h1drphPd ->BOBObvgBLj0c$(H!2$c^0Sgys_G2H9_XEfWOsVI}<)3u0>FH1M!q9_J!n-q8%o)WV*RMXuFyTBTn;c4@H`k4! -u!pjkJ|W#`~#N&rQhGLmjY;kLPhucYl+ASn$<2T;Rwr~D|ztWVHqC>EmS0A=I3P(k5bX2(bNLZkLjF# -*u4xneG$!06>HkSfzs)K3{HPdr-OSR;|^cC&R;Qjys-$fmJ~yf4hoN7U>FgWzY5HMS{{jjWiR_@26Lc -5L%0p9IxU81GRqJ|M>M%z@{|KyeMXY+SA(4}yJNsFsLp#Ebhn#)v^lwCzZSo(m3tyFxCzFy;sL)Zq2u -@*J61_nz#L({pkfA#eyaTkV@C64{(t2zt^uGOE?x^@V~Dpj_gM>eD#v-$K0nVxV@yr9kD(y%l|lzO`7 -#_hSCIj^>sxU&-0#IA2fPwWc(--`+ys?QK>#nr41%yMm%*c|s?7Ngt59gN>S>ySdEJPAO#q0S?Irf!E -E4Pe)0iOfoqGXIv8;=b9~DE@GtYzG)>J$ha&J(A1fB2ZPdX!#&Axv7c&)>9-zjt9%}(F#?GTYst! -xs$z5O9B+a;c&0AjPx(UNw{ptO4$q4x%XHNvhp_fkAKn(%yNQLXA%_XvXwcT+)@jsS!n6L@-IKB9B&y -~^pXgnvgh@F0FdVDMU?9_d&#q~|2fUYeE=f`45M87$tXmzA}NX`h}hK^EzP9vr8M`Z=1QY-O00;o!N}5(Vvnzqg1pok)4gdft0001RX>c!Jc4cm4Z*nhVXkl_>WppoNZ -)9n1XLEF6bY*Q}V`yn^WiD`el~-YJ;y4if&aW7?AFjQnxw5O1Zd>(ql+rG`mR3Nus#X;;i38R;F=sn; -xnFGJlz_cy&^d)PXp$%50p7ITp^Nj;Tt5{5G -MuaJ^OO3x|ATGXmc2f45UmREemrCM@LDkZxI1NK91P0W@YOIcRrB4$>o+~83!mG%z+rU#|NdaOCKJfY -dzBkmr>w8L7ian!=nQSX>KA3y#9h`r_!b)}?{vo$p0hU*niLMA8=iBGY#xf46fvA{Ma*--!OP>7hHC40?~Z-4Q -)JjvnsE{fKDHc}1}!b05hYic>&l3QQ*4G9gV!{R!nY2v8=pU@ML?$6TPJh+#yQ>z}HjRQcTJ3zwSEa} -p`#%C_l63-k`UZ>PFIsq5QD)5lSpe(%7DY8)YnBh#Z3vTPlrves}D4@51gCc1u^D7Z{7uvfTEj -tyU|R%$PmyXDv)I9UL6^?=Ja+sXW<{iB5L&$1pb7F#Ml_=W!@Eqa}k1#f4;=u_T!-~7Q^xo*a&u-L-TV>QEKD|8r}NjHXg^j`30WJSg!FS$*Jc){{H2RGJi!OfV#!I* -C>(^B)5P=zV?pg%rrkBva9s69Hm+-bq2srX0O?EDLF%QxyT_4+<0|_+%c%=Nkz$7%L9!kn85&X7B -mBYc9RPn@k3ib0$zU@Nj}G@G%Dkv8lNK(ffPn7CPm_JCg?QcIrc>aH5x=?@)l6Z8HbFBgy&YI!U?~Jy -X#kBm2u^XyO+2LDcT*rYlPR0^E$ksd0>6XV>ras{JO9V_j2eIlN&L|B!srhL$~Zgxx&CYSESqn(lkb( -O*YL*FAIUDbQeyH+l+bjg@+6AHCz>O6ms^Rir^$?Nm)dZWf)GEHx3f6SFvhdaBy0VKr_0{43xC?MumO=vWu1DoL9L8(rU=7YPLNr{}#(4;ofK$Zc_@cS*U_RV&T0eEcq -(BtJ7IKVe&r`p3-zG@VYXc9vLpvHks_~4Lv-jlRs&wDs>Bt$TXVbWr9n(fa|M`xX^m)xSXPtFgV?}?| -O17F(7a3hk9K!q&M=u%lJoeCym9~--!<-`Z;M*-UpUSE^x_58-8@@{xUR!cr$U<``E6&v*^IOG%VhHy>>9Y;RNP$`Lj -<5RFpqc!Jc4cm4Z*nhVXkl_>WppoNZ)9n1XLEF6bY*Q}V`yn^Wn^h%bS`jtg^*2a! -!Qhn@A(yiT{Z~0?648&DeXQOTg%qV7^A4R(wI87v6Yql``OK!(NbtmMtYR@qxQB1?wv9lP_46`Vfne3 -t*WP4_454on8UJjnzBsQ$BQz9_+7!WcO<7uFzhgZGVHDF1j+b>MbC{ja9i9L1AVxePv<4PQ)_<+xFH} -N2-ez)EufLdLLeH7^Iby*q_=KwHFPd{{rg{S{lC`TpjDplWitiJsM#0vXshn{WlHkSj2K`Etxx^W4<2JA#CmPMB!_6>F70n$hYf -!_M`YcO*4^hs?hY85k(=Sj<0|XQR000O8;7XcSg;B-=Zvy}TLA^-pYaA|NaUv_0~WN&gWV`yP=W -MyPJQ -w0udr4%+fbn#kiDM~`Dql6vX7hczu^o{mbu1arg%e6nlLNpfkJI$opSXt0DfuSdFXjb{H(T -DmWjgl)XY!y_>Ei*Zj`&SUVqso+&2~C#Q($(+~!jsVJUyMb5Vb(IQf~nMNloMEcwuL)t_&8b6h#i>HB -Wt#(W>&70%#b{i8EeNR9PNV5ZO=*#0+IAUga!uidv))KCH&#;7q$)-`V@7Kw;d2WWGuCW5B$;1T}W($ -bVUl?u*b~kq6Ftk*Ch2Gb_?zC0YDV`iZP-UQ|UM_RR;)&rEkOe*Xd$Ty~#6u>m^BVGJn29ER=>9{i~5 -=u~QPjsLBfMD-Z|3I8ORskY*}vv#%E^XF=~s=A@19(5sc09ZcU(-37|Iza -0#H7IowSqdZ3K49lAHphtP2kxi_D>-J9#~uQy$yMGDJDhvLb@e_SHXMkBYTpeWl4d -m4x^Y-nJ3Me(Bllsvp~^spx?haGXq!@JNM=P_=D$hK1RF|)t-q`@<;J%^NH6)tn^ch;;R^&x&-DlhLV -&wY4P_OreBoa0<^f}Y*}cDqc+%klIf9yJ<`ObO>|bDh?@jD~fAZGqXyX}OeGI?H9tvC7+Y{U=R~=Gq^ -QE3t-J?dTNOKD&@{D0~T0UoMo|dQb73i_JQn$DeDi;T4MdCdd({5OQBXB^_+0{rJ4=$YFq2{06K(m^* -~#Ia}5~de8GM#8QOj{eb3QK5pzk3$@t39>%@(FZ2v-eRb0D(95M31)sG9>{&|7zOc!Jc4cm4Z*nhVXkl_>WppoPZ -gp*QE^v9JRBcb&FcAKpUvc6SNLxjDk)}$UNZS-VLQ*wh5}#6&T-ylO?raB!#E;*_Zo`W}8d|=@e(bw@ -?(XsJ?d=7j5TF)dR|t`8)`nKx0@nzQ!HRZTHOrN1th-XKxUSH`hL?AIiM=2g@W!r`9>ADO7z!@k71*! -1?A`9RXUjFOMXyxrgJ6$>1`Dm$fD{kv^+svyVt;{&;L9KgO2Lf*CO3`EEVnoafWFqS{pYLNcw3DdjRv -JPj$BnQ7N}_prnNG_p^^1HYQqH(Yb>qOP!i8ugj)7GuWm8Do<&8NjTnRPaOj{Y8+AzEAs6iYq8Q%f5g -|t%)0oR;L*#TiKEK}OG~T8(pT9{ZNt2e~;h#gF$LNA3Q -5F>$yPC#q!lJQ1?Y}zBXW^LTEKS1LA0N5npW!rY&pmeHu*-B7g^5SL?Lro#pO+5m`>0{;{q!d%vs4+gdK2V)k1-eZB{sZZ_l#Ki0}P%A--vlJia~lk_?n7cB3TlB9WY^;#x -Zyj;~1|5MU#0c-E;Lxx!%&hlp=&t~bYqsH>=Ewv1PHz-St>pK+nN~!7}35w33og&-~2wswYVWEUj57Z -EMkBshX)fi9`->Nk_4|Db_>eyZ`Vcl|}wZa%D4g -~CvM^>!d+RAhm}M~iJhgLdlFJD&p$(C3b{#I5T2iiPsguG;1ZG;Zcg7^O)*OJg8XrIMzuh(bjz6==!& -P18v2(S+V)J4udCPq%GKqGCvI^3s8RRAe_-!!&llv41=4+&z<{Q{T;9*cRyre*sWS0|XQR000O8;7Xc -S*b@l$ZUq1UrVjuBAOHXWaA|NaUv_0~WN&gWV`yP=WMyViLDt5D-NVPWYbJ&SAPh7%D#Jf+f(E5dzn+lwWz0Fh{C6gk*DSg{vpH;pBObFPO*`Dv&Xl3Jmi1(ddw^k -W9 -?d$rFK|B>0rw8$eFy_U;!{nk;bXw2Rwv#3o1ub!Ke-)XkL*Y*5l0NT?gCh;%9`C@YPCixhT2+|v&Nq( -WawMleHIYmC=PlMu)kK6ul|;nNg4{xf{&jK>{+`g}va#5A2!|1u=LTqT@U*-+vHFmT7+M~dj&d -3|sCY_soqQ{SCTpf?;t2S%Oo)ayR=J7X9i|p;3yLk7RU~gIjtO!piOC2J!3rit;=@1bt)!OXR#(iW-0gTGcjMYIrex$DyH%?*EFmN_N -oG;h}NNA7SZ(@Z3KAyCzuR^!SLSgH&cT*8D6$7FS~xV{oSbA{(ih;Z`5kFFkxDQtHZs@>wEubEm?@Ov -$OO&oxD8SK10l+XI>A$;N6~&ISL -d=(`QL_zQd~Fr&tP^qMw(z2R)3cR+7)bG~5Ly!##MnS%tuD84EBR$+cQG}J;sh}jU=1o!QI-{fA_2b;TQ@1p4>2v16t`dfJEsQSJ&eAF&cm;J+p_*TY8D<@= -Ghd#?(PJ01_mr&2i@mmVY5E1fH+aTN=q0|XQR000O8;7XcSw -e#2caRvYYkS_oL8~^|SaA|NaUv_0~WN&gWV`yP=WMy*>PQsF-}5O>^o=IKLU|B0 -`vMV_D*|aTH{Lg7C{t;+v}9VmVK@8T_ncC+l(qvZxc5dvL}vc|cjnB~?=&1A$G_mRb<^%br`>FIwH91 -m-wVKCv)6Xug?GYgu|n1kuU)cM=AES7h~6X;l$&#a_v+w@FSUh!vcIWsQ6F~E!QKz)~cuFh -s0i>A}LZR*T39oxmPV&(|{3mQY;5zBI2aOUwbj26D*=B=0@uh{}`HSyr2c?!jPy@nRC@;o#w3slm&pm -LXsXFgu`r0Lk6Fh_IG5hw2HIhFw2Gw~PnP3uXRQ^*0f&;!qb{=%C$cF=zejb)Am6AOxxAvg!uF}$DHu -nSl?bI_R$f{#siX^(;MfZ5|e9D&zQov~>wsAz7Fu{+dikBh0his4Q70Xp2pmck9Uxxn7^=OfG1@#2oD -bKB*>T$oXrJ9&-NH8n&F8Uoi2+WXPH0B&ME-TRpf7fV3N7gu)+9J2t9fD`6X2XHuNbmb|wdI1&=hge; -jkBz}=SI1!5zV8HskN=<{_Vg#tBN%a*yWE&tS#&@xd~XkKdk+I>bRXe+Lsc8y!Q%yLG1OR#1GscDr!& -h$W9*h-wzt5RqrrVkZQkM)jmvhYJ$R(nU$+O{mZrgVPlX2b8|t9leCRY(=s&3ap4Q3(Xq>NNOwo*s@= -J^jw46E^$}#ttX}Qa;KjQeh*g$Ix6ZXt;oON#ElmdopWVYC85G}`k^81UIyax0FOapAk!y)-8Oq@M9| -2D=KZC*zhm2F$k<42{4GG_l};V5Y2aBUiBe{DIAz;Bn1>-qBg1{xHUVzH1bmI_6H2MtS-UeM}ZZMl~m -XEKIxrjW-C!?d4V4=2x*=@Zk&^`Lt+n6#vteyv8e_siNVtPL*Z_8eD3pbV;gX$Bi@OucgqvXQy{F>H1 -;_!CYtxNf1Cg+kmLu%887$%Qjt7OM$lHIf-JS&`g|5x3%|jNFP+H-+33Y11Psaw|#QO5|3Ox|P -YTEOjfBTUqK>A-9UutwL@UsauuYs#3QqxmBfZXXJJkaVz_OD_KxpWaM^ctma$n8)Y?etDQ+@ukjrw!h*KFx6qF)g2;bc3QOhqNhi&GVh1?y{lH|Jb`QQ%76TxAL$lz-J!=u7C$Xx?sY@(Bk%*-CBzSq0OdLeRTUHcXOFjN=4-;sIi#+G-pqKZIfE-a;*AyjkDTXPbnx$v% -7{{%5Q;NrO(5y@)vGNWg*;BvhnW-Zl%dWxRoLc<5rq1gj*@HFm9#ELb#P83*%OrEQDJrvM_F?$wIi5A -`9bInkNwHN)f6K(WDfv!;~G`klzT -~YaAQT-1S)I4xa@{=$+K92!W$4N4i|I`vwI6*8dm;e>w0DgWzY$2p-Gdg*_v9HN@YwR0Oa4kN>_9{0q -TfWM2p#mF*e9ant*q5d4#|{M`tC@Q1bg0r36tyNt(I+`F%QK!)A#zHgM(w+>L6a4!_TxB0sl4BunU;A -8mbEcqSxVM4GR0$5zmK=`|T&ajp?&>`}^v|-8K@o7V`kd`<22bd&p*yvhP-tes-mp6Q4GnSS(+^N6hv --{GzEb{EWoN&_vJiD)K$iAN4M`d4$!&l<)sfhz_djE&SVT)f){5mk6kUV_KgYN|Rj!zdpAfg`u?uUC= -|1rOc@Uw|4qY#+Y<15ir?1QY-O00;o!N}5( -D;i`pP1pokE4*&on0001RX>c!Jc4cm4Z*nhVXkl_>WppoPbz^F9aB^>AWpXZXd97A|ZyGre{hv=UN>m -ASgbS@sx+ZFMgph=m0D?tTR7ESZ81Qwmk?l=OKm9%LPZl<9b9bvqVeNTuX5Ng)dwN>^&{glYKcqpw+Z -#@MbTt@tKhiU{r?pe^)|^IKtb}ACb=88CFtkzMMHsS{(klwE)~aQueJQMf4R41t8gPS1>6S~bkc#~!O#`7D1^QUsOX33i&i5171}pTs)y}-7j7?IS>dd!2nzO)c5X2GmkpM2l~{ROgcmF;S#n`8oQ`p!X!4^P=FX&X(sIsfrH?_H|gF1( -Yfjm`rdLAg;-a=|SVp-EDIKzR)U -3>UO!PaI_qxIjk{!x7o;UR1+S$yJ;$AcdfpB$gzVZPHgQ&^ze9qw0dCsBaTZAGDhEM;k^=ehE>6Dd0C -^3F@0rDcz(iWvny3?*M!Ly4^lMYri>f6V0YrdG4X!@cI{r$Z4&%)M`U^w-rbWRdYvYCJ|t|(+bv1=dI -$}Fg5DUx*x{Zdm9~0ke$KwNO3qZa%C(Ual?YOkUT?nRp9`^>T;@*!}wX%&GGoI=p+nhR4oh -VUMr}f*-;(Cbz|6E<&>K69qEV45YriDMvZKNfgAd|BXm>ZfR3C7 -(7?igbDSzgbgZWO_|2lxKNn~xWHQjV1+@Hm+!Zq}3y8<-dpgUz{3j7nTtLM~-=RXNF)bS01X;#e9bC? -;+h{jM}LTD{3+G$}`(w^OKAD>Tu9&!biS$izJ-uMFWYof&Ifh+Jz3h08Hc?UgxcRsxe0_S)|UW?64ln -~3A(Ms+&5e)}EN8jd{wzITL}<6G^^iCZFiV}i5xV_}LS#@2b~l$!9m=k>Z?e|URw*l^VXtd#Y+RMBef<13BT-M9 -3Dj^{&+j=N0BrC4woaM-?2)~9!)iPxQZzIQk2;bm}L!Z-fiF*>|&imZ$K<{+Z{zFLNg+3Ne`1-C?|mh -(`YxkCjHM9I;qqY}EhU7n>#GvBap_5E0yCGJM;A5cpJ1QY-O00;o!N}5(^%eu;K7ytnNGynh~0001RX ->c!Jc4cm4Z*nhVXkl_>WppoPbz^ICW^!e5E^v93nrn|0N0NrW_peBaFGgyZ%BZYMjnfL -`vo;{Fh|q$VNW;qu)luec?#^6%t*UPF88U*jEs!S8<)&mx4!+a+<*9&vnS>8*@K5qo-a5HeUcBFxr^o%z`>Tt~^5F1xSN7NC$HRZ`FE20h_lFOkuJ&&(ZVt!t=5oKgx+!mR%-xf(Q_rsUH~X -CV!|s>e<>BM*SPt*X%{OS~_$RxY>o*r4cmIp*{&01jKaU>|M}H*Y^6YTj-oH8SE^c;j%j?fl{Nqv=M` -(TgoJ+mGDc?P~U25-ZlKAHEyXD^HWjSZ;bvfT%?~cFh-fla2aJafT?q7e(ZGLxs`_K8NlpimS|0vJ)m -p>o(AIhDQ9Nv_hLwWZ3=KbO7%l=bTm;2Ypi{odc_U^dbmFvU1n_rW$@5|@Ir}F0FsvLK3_tzWw6vR!r -xO)4i!!hT7IK17z`^>9PS8sDWaDB5oez^WB!@oRvSsw4Mlhg8--PP`xyLtBM_2vFePJX<9v%9+9m5b~ -0k$2bcf0xuF7&& -~~6v6L1eOvZdl6{}D&p(o2ZuHkQtMYnRK3(tLeY!kN3OTm?{p`hGpT2xi?mhXb{Qchf`MoDEe)>Mgrl -j+0>Tjd8|L`$Q@NLOm9WSnKJ}2Wz;KzsO5B{1n?%h9oeD>lexPNr^;>pA3&y=jC2`cJKVf*@Ksl@ -12)tFVCMneg5!nDbIJiuOdd6-xBg~B7T=7KO9n$Z+ABr`^)QX>p!J>uam*cx8?oCFS}Ipo83Mws$8Ut -eEj_X(&6Rd>Sy-ud$5cD`T6y8*fLWH&eX$GKNI2 -!3*6jMH!@|Gq7~So#;=`TQ{<@bVjTPfi}beDJsPS1*2gcJ|=j<5xeNJ%4e2cK_vzv!_p9o!`s`EJKm3nZPtSj -Nc%F2=J1M1(r}^KIj~Gtt*yq#I)_Pi(+Vhd`${6cunTLK_q6Y8kX<3FP#|`;4y5r)slyx~hNeTVD9ms@!}XkV*Bp0JMwy!#J^L3F;IOP6QRQ;2rqI>_)`y8bLU4w(ib{Q -?CT8R_xn-6@0k!gZsmPv17euwN(xQ%hmjov@x93N!1l!9+A{K_((g<=g6Op2 -W)O%W*!TV6>W9?>X3GODVnyp97C!IfgyA}WyR^&nq)wm!YVm$L3sSM4glcC@a@p7V<;K#L+~-JyOfnH0Hd+7mO9EUgKjJ6)^OAjX$ -~QWNFc4YYNlah;-gHggfF#e8??prl`L181SnV%v@)9kizV{2@~-HdjtqGh<0U$pbZpR6oe;?OHLkVuJ%Kvfy -8E(d)#wu0C-R3=+lk+?pD6|IP`-~l5T1NfA=`2oX2a`S{cV&~XqegGUw0TMP^MmTuDfPx6u2hkD^#Yj -HrLL;~!VuK%mfge> -6fg=Jo{+C+@rNo7rep}X!5!plw1cQzi0Qvk2Ekmo1W=DQSD)@XS;jF~?O1!NEp9E8lv4LDTME9!{n2b -a8Cf30}rrH})S#^(9U&gHoNI~dpD5ax{4wReUnp*XSs+m_o#;H0OG2;&%$n55aoxtD0#||j=NrOezs) -zirxhWT!%p9D7=&_3rvn>7%kn=W?k3EPBf1tU9x1O#&~sYnPxng{^f@ -#Q}I6aNNiMiR6L&DqQyS+kRltVPCIMad!gbW#;)Kqao^*0Ga(P#KWUrRM-f -Pzc;$!Ynt_TGTRpu~DZ)Qz_)1rtfB*?6zu~0_==A48+I^N>!$W{_YfVgJ~8uSZ=l~l3|%cw}g|vi05! -vNg~1uZ!}A1-e97ND!QW)soT?!K-pP)0v?SiT^X8VcQVHgScKNi2HN%)6t?6tSE}rLHTlMar>X;>GK{ -L~TW)#PAKif1q4gnl?4)iSg7lqCv3J01f-A*q9OBXSR2)6+98NNr)=^wX6nES -4^^9k7GfyI(#E)qGx-3!iR2M*RE1=6n@VKdLV^Kxlmc};dbAl4lT{g;s(zI!3kM4)x&)bekhbQQT_BM -%21B0&!w2(Z*cJ!wXvQ=doF`)g9H!ai5U8d)lHkY&MneFM%u=A3*J4H!Ve)!0vI|$F`K3jVHiy#n|zRh&4_P%STJGnB0Hr_0AJOWW*^iW6>w+`vzdL^2olKH8Q5e!8<+?QbApKJ1Iu9p -)9P}hz}j7Y%`I=rWR-=_nfn|mu0Baf3Gy?EMh^|}t3CL^b+OP -G@if%hBbXe%hj3l}dQ(E#F)p{8uu1F3jsYLetfJi4didwCMu*eElRC_H>Gb^9Mb|0RCT4_k;gUr&p)yQ1`Eehs!}4tgGpXQT1h9BOlPJj85c=YR)KqpvtaDn4sZ$bWd^-iy@7X82}k&a1sQ`s8fRKq -}X&_tVxI|#=0gRT1dMHHb<%u1kb37Mlp;8se*newnNV!2S^)dR_2M*sAmeZLcfA_n&n~?!u6O-DV8#v -i3;1iq@<+Zgs81i`23>N5)qIl09oNXP-=f;bRWv>}b1w|DGOmKG>1P* -{|qe<37$WQJR^uY5^JhQmc$GI_;OMFWb$sAlA&KOw!^=YkI{ixh0sHdi^^vQ=oUcBu$4G`36zMioF#2 -X3ZZp-Nn)Ws_{OTM(#r`{clvv1kSbskrkeF&H-S*3wj_DHte)1Tqo=X%=bJL5uka8S7}_L%2^jP$_8H -6nt@I3jo3+0A3YC*N9PohBwPx?k>p4$n#F}iKn0$8oz}cH8=r?*fKIO#;8r^j(-Hb;h={VmV>iJ6cL( -S9D*zW1ciN5n>WOn1{s<~K~pT~cm*w?pivW4{nrBi*jYZGYrqMz*yCCmYd<|1|O^Yb|t(&h=8(EK26yPHnq!t;$(zc!hd -23TWWI1jW{1}N!0crr{K{gQ~!+0!*5c$CMg5Xd{iHUz@vk4Or3ra$OXc?3BlXasFLbd}Q+E3s-D~A|H -b#=YGknaLZBXae8U{F!Qu{r|bifJDpLcA#8blFU4Rw?97iw#^iubBe6qb(bPV30+vT89Z#bCCstY*eQ -}{>xU;V;I%rk0u(}?q$kiFNY}vDVmg7q~SeVE5VIHOaCV8BuP9eWCTIHimf>an1)3Z6zriiRc+&1qut -1`Cg1@7AvjD;UnY&B@em<5tDjMnu4g-04{dBUYYn{5Cp{+e_AqNHpV(u$;ZNDB4 -{F>a?5C?Qu*4gpx8Byf#1z$zfKKj-k8oK=2|60t7^a)_*$N8Qo@O -v$+>XHkyor@azDF#c=uQ*EF>AK>k)s)zrKKH6A%UKFvj(wG -zA1%(U1~$T;erBsk+@a3dAboV#t#WQq1 -t9rQ`y(G%~{!v#DgHcwHS2*VTb%>;FbRSK}Aoy$5h?8*Y$nM9IRU#9Odf`_BW+ipe8fIwJ6jLKrGgX} -Xq1HQl~ZgB*+4U#Ha7C<pY{WfMi2cra~nO12LRd2iy7b;*>=@?a;^B_`i99$=NB17CHWl!yogct^|Dn!t!Wd&uJDcJ1l_K(O;^#_hWidhIXR< -*T9vJsRvbyCi=KS_y=n>JjUlQmlSAUMxzby3S6#Y1cK(iq(M7Z;1FEq_np35<2}u9-GQu1snk=G1Mw& -$CDn{QyDcHs%YnHVv{6h)dU|wO3L#Lvk|%ur5`D+hFc2aY-f!WR=!rwc|xJi%s(cn@N@wjR_jCsz?Vt -*wX_=!{I{l1k1XvS%x5N+db7YBWwOUxJ+$#gkQb=5csMLwjy>pJ8SNA)%sd -tzey|_|89n^A_Tu!;TAL&Fm^@#$*kdb?XYEwFMXON`K4Vf{_#>^o;8tBsTld;`5X6JIauVLo;JRQ{)id1z?tPVUBZ!5L9v^s%%TP --yGRZYDl5?1#lNfgAI02|$qoTkM+uHPxf{2g=&4f%1J?bz&B+!og8LYvx(ZRFn$? -GwM7q2lEOB)y=M$)b>G^xvKv%qU2VKS-TIu2D6Vgwd~aVo`X&Xmlqq{l6+EWz3CfX31-kbv#ci>|a$C -v{8D$E!6H1UWJeimxy!;TBhT1+RI5b+T-w!HPA6ceRv-T|93LI}H@4_n$KCes+(5skdy%s<;6d;vv~e -@6aWAK2ms(pnpT`vTt7Yo007wr001HY003}la4%nWW -o~3|axY_OVRB?;bT4IfV{3A7a&KZ~axQRrl~i4C+DZ_8=U0rv3rK{9UR|lZQL7pUQWU;qgQ`5C#U8_| ->s_?FPUQajdzO#T52Chyf|)sIX3oq`vw8WW{@{KzrST{pOw$4N$Ful>UWsisnzYz5&8*x=EfmEjXOfO -e^Gzxxy2frOgRR>*g^slJ5|MZO#LDd0k}1ev;6VJ8z01UoVJgc?%S?D_w8LM!Gj{(6#56bdV9zWI&pE -B@J>##bgbiG~8mYFPT5+3t@87=z#l`S0MM_Z;VjU&y*gkQ7=p;7UTe+^hu`SpB4;G?{uwQ8|)yB$_t_ -c--@`mQM-x_`FAJQnfw!+pyrNT0kGlhRfVYgJ9iZY?eaxUG09zu8$I)7s<@TJLRQ3q3{bF>qx_H0Xc( -(rz|q%k{GO82bUqMLcORx$&4EHl=QNjTaCo7)|ODy3Jxu4iNSm5BjiPH(n1($eyB8%mcbb#bd)h6u#}5#q(Pyj?t(hvvMWs4mKrDS3Ek4hd3yP+X^d(A?Xu5d -3MJ$wt7xOzX$#SP8h|!f5+Se!?1d~A$e+DAzkH(|LW2k;OT1*FNO2b(~5zV7yF^ZStD53c>na|Qemnd -aENgTwyB=U>I1t?1cC3E&dDtBo85#x0zQ0250PmD2VEU{4}@I-d?U(HY%z1jB*$XU=^k_BnwJM?TNb_ -d({%XGnVo^JB`4BpZfW3L!>)l-U{<-N9EmK%t`)Dw|`@v-!E=O^>yXT`-&wPU -)W`TqrM&Fdo@01Z_Vc~>jB&2~p{P|lSxshlgK?wL$dqvIU_QWFm)USGa4oPK1+7*RM`yKaIaWoRu0PV -$Xg>JE=PI0`R=fKW*FL*|I5xgQQ6Da}+WN7?pRnHxy%IstZ_wex>tg?$+~Oj7828ps&=Ixz`lYv{zAG -(CKKBROb9BaV~Iqm7VRbCB>Dd|8o^vLZh)Ij59tmBf_2@31jF+g -MlePEzciRz`-1KQAM9BjF_vRi04_c8L8dUj3tgw?UOqrBVxr`?|RoqzWw$;{@?9SAN=!2pWHtF==~2q -`TT?1pFaNd{r_?MPp*CYt+#JqeE)F!^y%?$k1wCUxV``C+lSlZ>)T&m{qM&YFP_hT|M0_4FCV{o{^r% -w?VA^m4=>-`zM0p&`_}&IM=u}WJkD?a`Qh&mFJArl@N|3i-R;dkxaYk7lZQ92zj^-S!~b>L$5$_3&wo -Ds`09y&%p2c6d-de!-#k4$fAjF|?dxB-<9{6L`O~`BkH5^JzJGK3&HKN-r7`-v#Xr3K-P?OFUfiCoYh -T}pe*M#&=5JpA_7C%u+wCvUpZ@Lk+2f19Jw5(#``v9m;hWo=SGUi8dGr0Nm -ofjjR4*RCetQ1&%UZSXo*o`ZjW`&tKl29=?5i?d|76ytzGp`R(stJ~J%4@saeem -s`(Ib;!}TDa$AjEHd^K;+>i+Te@Hqdz#{T=m)9d-kEx()gXmQ7PZga1H^ZdK)G2i)>Ul;U`x5w{pFJHZR=l1i{O)p1=IJ7jp|fpI`s*@w<8J4_~}`_4Ll|Pp@9TS(pChz4_fEr*!--l_T -A5Uw%G6`Op4$`{0v5|34~~x8IsK{@}~^zxda6BL4lShnL?>v3&mZiw95I6rd#@-#xwh;r8|8-_G05ub -%#GNy0C;FP=aC{QTvAoeF3klIKtJ@jshay;^gd-~8$2H;*soh5zmQH*bFY!`naq{PVjH-~ROOo1g#C) -9-(n-+21{e_vy#+;6wv{qDctj(2O$SDGK?^V%Pst)J_oGv)nJtA3P@T;roYO0VmSNA2;^XlE~M{YT$E -Jiq;Ui~4%FXKVd$|FrM*``@JB#jn4;{ZoDyrSxn*;hge+{NBs?#rZV9|IJyC^t<`nZ~y6dHyx)Z?3W* ->qI~g>hI{_?Iv)A_FH6?eGrhRIdO6SU>o@C^{qWN_-`~EU+78V!_0Y3FKYQyf_T{TD{`%QR@4xr)SAY -KK^Dmx#^rtVs_~_G5zIyiF{6FV#u4R1x`{z$f=BB*;`=?JRC^j)}@!p?4{@|<6Kl)!Etfw#ST3`9@hc -|zi5A$7IGtcF-ufF*7s}G-j@ISx$^x2<3cs8&7&0ABs-qJg_)Q@BSJdf+0If--rTFd%)^mlIKom)T@ums79n -9_#PdIma#i>gzl6w|cBET(!jg&+fDHi1WI2by>Ho$2Fg!t_R6;fcf!y)N>p>@0!y!uUfZVcRc4WH4i7 -pU)O^$LaU6huAYC({9N-$Z9Q|EUvB3bBd>)U47}!0*QKfUgD=dh%DL9I984uwmTJTp<8YO(wFql1)|I -`jRjzH_ZC<#ZWUb0t$lTA&L#|C}>kH*zY1gMI^LRe#=?ML}7-7zlT|4JZ&tv_%Zgh1ozSel$cs+39Ar -H4@ZL^a|%zX}V&3|8O@faYx(T#PF-Rijq^LuN-b7P#cmh4)~v?P4+xW`zxJuA~&`&O95Iw@<*Q%h_^PW*I$ak$l~aDb0%UFf -N)J~ano{f87zwRs`9^G}1*jEJo*Kw#$*ts_yd`H*LhS&ZanPnlkaxuJ_{bZD-TZ`_D1LXzz*?_)l9zDK-}>6<+AlPj2j_|bPPcn5% -=&U(JDb;D;U+d}TB0;8T#q|mI?-iL_!%o3kGhaiuC3I7`ow!nSAaya!6QT!`vV(E{B_#6ljsyh%zo3|93ta-b>OD$GTVZmlD -NjyTAl&SdlZXh~5<2t^AStNdwrRotFAcYse|5Dj9|YIAV0>?- -_Hru8Uo0OOvQo(sIDU&LPPu}|<*UdZMu94Qd|xlVjrtCSMRK-m%5)~!`?V7c5uKpbp -9R=aq>wX*3#CwC0riIzSEM95?-97<3`a@ABuV;Qm%;{>3aSG&F7x~0YDDO`&OZm&2r4ed}7D&R%y=rx -R8IkA+C&)UzY6SBqW&uy!G59C7FRs2&i;~2KWBn#Fy>x>Ay1@~jgV_`a_ua&J>XqTg0A#OPkUIO(`C4 -&!!%_?m234{=9b?le+wEMH5=N9S&B^(_zlL3X;q_D|zvjgdYzlOF!+jIgcQqj8uaezL;2Q32A5QP$8FJIaYW^kgxPLw=0 -R&$edRPpdQx=Wb?Zs*_7e@h7s5OP*L_b7q*DhGXTx>^k36NhO8mr&OVjzifO9)7tnhr&I08oconL&)j -6>Rz=#eG|Mb0Ra=Wsu^L)tJ1S10eqU)UJted)tWhxwTPxq6zu6YmG?bR-;UksB+#~)b>R1uWk4n~I9W -1Ie^D;5F_}$B=*xopG9fG=18ZBtxRtRbVQ}!5DVU<5F=QK-au_EFY3bE^X}-}CCv$JinzO`7!;_nz0B -l+eRPQKo=?&mc!_eScRA60RH#s$9EFWsDR(9{wCuA7peCg5?zdx9dX-LA;!veEEX9YC~0WaMvsRAVuo -5But00HnjVR2GMsbE-;@vDX=tpNj1a9s1zQB9Xpr^Axa4xo{OletF66HbdlSQg`O?rnLuZ06WQ1O#l- -J{~_V26kcj*#|7dV5{*Ht_(iDu-KQ7L!lc?4^_V*N4*2V3(5f`t5N0*Rxs^)P)Lu&{jna{>^0f0KaEw -?_GL`=-uAJL!C)DI$`Uje6X>uah)R%Dz#hCCyw+Soco7RE8@-3kJ7T%cz=892>>RsZlTxd)Xo$3`fsJ -i)34)X*v1zaK6zDS&Y&EQ_W%4PxrJ0@;CzwUd -vuh%9I@{2fu1CO<|^W?$36>h%veZ=WnC$g$mk&lhj&vQ$_IETd!&GcXJyxy -AErx;uMM8M7`+P_Iu3?{HxNSh&SQ+d0s<#EyYq^3a|JFeVOdlo+A5b2lX|T2IaD2{f{CQ+%vcEVAbW` -d=eql3u0V!!1(qN#w7pEsS#ed1N14N&k-m&FV*pz| -qF^e9MVrYXZPlu5xubsR;Ms3yfC6aj#L1hin!uOX+x(r(~>ZA^&qo8pKAi@#L{P_+0vGJ>Gz_ -17U5*3}qLih_=!crKpQDQ3K-%x9Dpr=vkfjGJ^|qj7Iz>SkObFOqpfVSP_+VJ_O*YfB;%6AD@;D9WpQ;nMMb3U5`ZG -PSeFzQ`0BAkEs$aMf$Cc3`7`m;IYP-TA@xs%d`EpTBoP*T_tgC1D_o;ay+nfm -YW?n58s!d7@JGk?RS^D=qt(ABMPf&l%F6P{%EI?r{mDR>phNJ6?qC>+H=D1$p=8a00G%n5S43tYg$27 -a7McL@>zqapsShIa#_bD_G{j2qTlQnX_;B=ic#aV=n0m&Zx%feNRnV*|mgP3modB8;|E^UN$dUFu?8) -U(gxccBhE)ksAQ5uh*=8OdOpju!w#$8aYdzknW@!wd%j`V!k5f@cUMa1p*!f&ycl0EJ1aX++Eja$>DK -Dr&A0suy)~!iN&7X<*P~RN*RwqtJjrz4-}(wLw+i;1Hruz=EQ_VShDg*)N# -Puua6<>GLA;8qTHms6QqOp?GdS&dN~L~=*`TzX;|(AO;=^P4k7~WaA|c_QFtf(?ppHJ#YYPl9MJb3rm -)>(14URuJST{*3DjH{hQZdM{Rc7yZP9e~J+(wI)8*`p5MaIG%NQt-Vv@!4w#O+&1Z6X1P>V*zEA&BAo=9($&7fXT7@xE=ka-+5fgj#~$HQC`SmX_QdK_+&lWUm -Nh4G9shiaR)=Gv-_8{_M)Q`+>BP@qS4U(uSJ4}7SCXW2mZ6D6(vmUxG2f| -hW;%Go!oXBcYcGsiFnZg!}zt&{nU9N~4Oxqahpd!J9XPVXo8E*y%l8iOf9dIe*C87Z`JY<;aFjW2uR#WsDP~X -fmRhR7m)W)d)Lm&M6Q?cK4k6#t7A?0kz6PcRyjTK$m=M&g6H7?MXzImkNqC*^DNYqy2Yjj -ChkH9>i&EL90iGSt9&-krm)NHHe0~wL1LVQ$uO(1T!?W`#c^qK+Gr;+`B -3UMo0Av)J9~H5H2<)bKme{P<>;Ice=wxkk_gC#J&OGg-@gc%^SKyC_KWdXsi;-2Lc+nl!1^9*_c1$$f -g}b2ApR@Y*+|986uR~{qUJlqr?G<6X&Gk3hEu<0uX>+R7i|+2aA`H1;gAIKT!eVZo&+#`a~Ld6`bQvo -C?rgOUMN-1F_qsX3ilZnRc;mzguq>^A91h+l&U5^f -(Dso~YJh}k2)7il62qu4E+83M84@WIFV$ -4QES4*rQX(}OE&+D?(!EiGOK-#h%7GR+c?k?yiOaScY6Np+t^=X>;n`&+GZ18;=~ -j$N39rTst}gU+1&vKCx|efP@i7FXez-;b@p9IrOgF?ZGXzaq4GoDLA> -L;W4pLQ=|kk)Q&i}I7%GDA!OiJSo*?lEp|l*pVI~6!ER?W)R2-(lQc8{agOSaIS-XAwnIsP6J2Ll>cRD0p);wzP;XGHx3+A>23`ieoP^86-j5F^kZQPh86M&x=pn%MSnnZ$5QtGI<1 -BwJ}gLy)nAXvDH>o8coYpd@Xz%hFuVBHVXk@Oia_LRf}Vh0UB?rf6PtZbEjKphH+;RDP_%hz7LO)`#? -bt6Qk{vgBE1d(b0rE)Ka<`Z*j;&TIUY#GLREH!s+*m!Q(X!;i9Zpp^i+*Dk9Fwc3)@VJL)ZqEU3s@9H -#8h?k_Z+OX!6u_~e0q4XxBbS0MNd!qjwg@2-ku0KLrR+^Jgdc9Fc|X~REA}aVb8_l4ZA*+?? -UwECLZolAuPqt=T?6wL)BRj}gGJ0FyITAZ1;&0*StabokWLb^HplW0|Wt-FQ<;^WGU8Lmquz-LE|nh4^O#v%Q+zGO{Shhvz96i+@l-%FdaBg8`sd18go=G>7b7J6` -aHiW2(c{_D8bi2%C-oQXFTLAY*9K!>`N@h4b{2ED9cp3&yP0b+`ABqvDX@m*ir6!F$?Rf__(o`8)Xjc -A|yCnk$jFLS{_%z*RbrvKOpkceig(U2XlV?C4wi5D>9b{v4#MvRfLCLfykzQCmW(9;T)w=^*_uGJ@?wRZ5FWi -!;%4s5!2QH++@HKjY*C`GBkVSS`txdBsVoeL>ZJ?i3T#zu1M)J%yPO2EeFEzCwA#H%ciRaJDY)q)%_t -g<1_|>`i+20474j#3fy)9q-P^(XXHnEGmL<^$BF^83lZ03BJLqB<1nHR8>XmkFt_VdG8}3p+S*v!cB- -XAZclAK*Q6A88<12yJf)lB$?5<2G|YO{_hlmf1t7DXF*0s8^}q<(hcHQqLnrwq?uqJj*5t* -GZNS+5ZCU9VCJ3MX4PZt{OiRKX=%aALv!7sYwIpNj)h=71^q>-Hp4Wrl2^K*;C -QxXJ0wp7$O=)4li84eMp&l<%C@UQ*Zx^qCemVEmrvlj!9_;7<_h79^SD4qbs1L*EbxcAlB$4;B#~3?p -Whgh!3Ezq>xt4acvI4%&f*}3Op&BA&cdAt#9>MU?1!_EZ0Sm#WL>U=Tp%PvtA=PF@B22B>8@k12{qt- -|qhZyHX;@8#vIp9r5#zSfo4FGnY86=0f{Lo71SFh}MizO4=5D869$ep<_fXeeJ*d2wVlzt>+hx)nm7mQZ0Q#v|%s|RQk`_0aUe -}P^rvzj!BWmQ%UDcAvrY%F{M~r;vv8d=ky$~qGT;?)6I5Y1`L<4mZrBu-)#5?on+|@1ZG>@CZh0NI0Rglo3?GjjXaMoGPJ$`uX(Z!k{hu5L+&?li{2t`3KBO3V`NULxO&O90>{QTc$Zu}YdmA$C?^ -MH;bQ2Fe>a3=9IKJxhaSjmYk~t6LH|n<v=dgf~`or2s+aE^? -`2=PbQ&NU=#Cg5ZWu2|@@ihc!G!JOH4J&IBFK_V`;!6XY}P1!gk{A -EFm6MoPDTW0I{qQ2qWl`h3}7DFf`JX>~dyekdr{=mh+>t?ID~l^O;zipIo}rOpL>@AKUT9^iAX09O(S)%5uRygSPl_Cu>x4ogi0*rTU5%>rzS -xMnag0|e#9isUGkDIb6pbW5jZQ%f=F|1vh+HTf`9}NWXQT3LqfbGrH9Yye!xI!vkQQ@Y|SI8XDuIfhS -@|Wh^+)LF|P#^G7JNOgUA}GYK10LiBZZ%=8ZY_Dzr&Y_s6rhV*G>BjWV2v!m*^$I^SHHB -&2xE0>$Tuc}Xyu%;TS)eW4K<)-mh7P;t$T(VptiSy_ew~Jp=H(KL~z(OQRCF_i{AY7fpo+G$1)Z -^x^pzp-iHnYbD{3DjatU|dg)xu(JIM6u?JI-AP153bWH+@KRI!Fp@W=9~>z-@xNrTJix+e8gZRGQ(Jl -M%Pi(XN9@#UfLd3yzpGLR701kG-~s>B@}9$B2t)_LL7WGll1jtibbL4ujKJ2<2uWevXI6Q6ymk-Bxw7 -DC|gtm5a&q1LuWKDmj_@q(Kd?;oLPbg~(AeX_yuUaT`n&lspPGWv8ZqgMUDF?UHyPylImJlR!s=$46Ov^Ktu_((#UXXW>HX5P%J>fNpBcAD_P5yy7P`A0ik<~CF(JNU@uc@)vw0|*}rAkRU93MQ->IBRJ15nUM0T^Q5w?uWvli|Pa&XyHTfI7?n2~nV@nNcNb#kMAf-g@*=7G@ZZQyyDzdG3_!A&)%9o5DA3Z8r<^B*s{3MPna -`A%qcWDJ+~Y!5MYfKQRl9VX#k#6QPzAl;{|vVpm0)Pi#%J^uWyRzXexM=e4i=Pr>cbg*fc-WJOXVTPJpxCFFf1|f7~1x*mB&7#%=TE*rmStq3J4cY} -V#65G@1OZC$p&DuQg=~UGI#I@byi9Dxaj-;`SZxu(Qf;2K_`6o>Z1=ipD@VvGB#$V&J=VHgfEJ%HQ>- -XORW6Y&(}0%UZd~%{TRq$>WUK`@ISgZ!?8#s6KzwJ>dity>`Iv`FV;+pf> -5_5n -|g(r1v)0;3XHS~NFvo4)Rc)8r;w@xb9;IR#E-xNvF{qPf}!A(6qUC|LG(V`9;)_s7LN -l^ob{e%0r3Enn;yJ#lEqo+f()t*{PTs@gzn^U4-u{aRj~_#C(2fG|F1Rh@C`c@1-=fAdk?j$~lXw916y%TyTT^7bUB -^BDF&fNZq^&p&7L}dGMW?8$Ry*vOKW?E-k`qK(GzDMg06HkDlCNDklSvrMm)*&5gon3x-TZ3jHh9vkw -i0jqLo=>CiEsjj4|Y-NwQFY*WK*%D#o&z60sxA!S_@`P1SvKpiU%dcN!8W_0cr%1F0}^%E>x2A&;R$x -17DHp2Coesr(sVmjtgXWoRVjHA37*@kwnncJBSiRz=v>d(Og?+a$nZpw%eBjCiX9Dy -SxCc$7|VEYM`Gj6Flh02cwZi#NOQ7xkoCS66aXv6)_c30rdrbi?oVbqT3m|{fb16k8SfNI -Pz#hC!OovWm~Z7GZn%{?qHTPlA?>@OI#YuC}3T6cuU;3363lF>DnhuNA*D%c@P05hMOClw5J=<74FC^ -xuvDNT~nG%4SzaEaz}4C3w(x>8Nh-wb9vlgpCY?Gdb|=V^N)L|vDJfi -%=p9F&|yVrXCSCDCBapJ)m`UN#cdqP9%w`;nyPi{yIoGx%+*6~8rgU0v`Abch$kd=m@J=ac5IY6wx_3 -+2ViI&JlkJv_^?ZA?D1)q+ptW&$_AjI?M$R^p{27|2$>C}i#3yp>>GU=lhg19({b&ZnnuW_68|z4*M3 -}X6Uwr5GfhEWFhZ?~8a4WQAv)0ZJ?Hd~$aT5uub7hMwc^l*#@717#E9n90{)5+!0tv*y`{@ZS!pf$)o -?0Dfbm^ZlRVItxJr?cb6pK|W%E-B>IKnG{Rf42l@!1PC?T&VMXwy1>fAT#-poMR2f(I3*-Uw}Bz2!cn50-%K=%w;0$?9x`Yy-oLa-kc`2H(0c0G5i -qlHDHLk&%eS28OXJO!}4ZpdhAh@mD)f>yRIe=yVIGx3!ntVnv`Tvrkgp#L~S7_3zY4>U}Axd$<<-{7@ -_%gU5(hoju_Y?(*e5juINcozznX#hqY*7J^&3;*FFM4*o_}{Nln8W>(;9n!L}F+cfi09yQU_YF=xckSaJzkS|L_&(a?C(-G$Jj^{}x9q1gOyM#;(0~U#lH{jSNiIO{L4 -;nr%qHPUCsJp#Z*A!yxMs!;^l*|V75uo+#L2P?#Zw7qeIp3rtg_o#Uc1yL3mz@mh-z|XYTX@WMvY{>O -AT$m9CQ$!i3)616-ASrQ;B(}zD?Aww#igZnl9X5i2Lr2sH -afjRQ|jP1rD|JiFPs-A7XAyAqlhY%RvITM%fr;bw7m$xUImlRAu;L^>=?_FWo7U`Y!36Tb-CL^er_;^M` -!0Y~27~3FU@tzcJZ??RaUOT|45|cryu?BXuw6BE$INxM+`qx;$aZjA|e2_Fi_I8oEw@c7EY_?JM_;YG -9sTIDxK~#pdf(426#Jq>uWF@|Ii!~+&2F{nZvy}_$gr`-EI2e7fU6=76HanB9nhd=3=(2w8qMIS+aak -gAiCKezINc0i>%`63%Y|jE)TTJBWTW3UiGplA&ppnr*EUz@@Zd#%n3V?*fQ*^i&BlBJoY;7^7J*Cr=H -~mU007<2(oxfK?TVYKb~tScWItBJw$uwzj0^K$xIwjc+g<{pDd4b72J6ay^O}HsyYQwN;5ADE9a~KyX -aQe1gBD*|?n1g7_Pljb5YZnpi7wx5;8%krXuI?#+nuD_l*Z-qr+NAu%Ir1W$A{Mz_}Tx$;EV^c`x6@# -sHNSjZ-4^6Q-NS_#h+{T=8c|W3L93Q)RjsxWCQZI9_*8%h(`UD`c5 -dJxozC(tzL9btx4fkMWgasGUGbbl|iflP@^nVAu+-DBohNXuZr62!~+YAT@29=yn=<-b%LZ`kQQR2l4 -r24AuUE^pegH@%6C2!|XWiIJy7|x!Hx?sznI!a+uH+0m8NmaI%SAhx`B)g*Iv=+QhI!RYV36i9Qy2XW -O$O6jr5?x_p?@9Nt>n6*$d=9a|oCO)S@!Xiu>mVf&U9d_?2|%<(J$86*s!JRqOVNiDol+4YTr=rbd?>!D)}8=eFx`noY&bilD(jLiXxm?49usaWME2rj(;aT8*t4 -O@STic}~DM_COn0n!rljr^xC-88w?SMb<-clh7fA^2ne{mu|M$#m-jUQ7|NXsNDo8+eshSrFk8}TB~< -MJT7b(%9;pt6MG$?ElD<6&M)WIbzMtXnL`5^qc7OkjZvX=Z6pPw1a*%HjhZ -VQHl84oXB9{CeeMLHvaorKiIrx2#w85oS)~Co__|4XAC|ge;vkVZQRfUVHqs -mXgAuY@Q`q`_)$z=%v<(p|pIj>5hi=OTjjks>DF}t!R+qX5cfCKb&1-`;%c>NEFKw=Dr2=2piw-H95` -GZWA)V4Z5Y6i_qh*a3Y*3-&uq!3_7a#l_``%tf*hwL+y4zBW{LV6(0(@qOgc)e52;c_XXJutr>g4vn> -jOiWTwk-78xq?aG`gRSrxseVW6EIhW}&3)IV`;hP7@mwLpp!@gVOgULH1JFxA#oHnfA@?hZA7&RrvnQ -4|$_fIB_4?u^D7BwNw@A_9&0S>`^tm`fn$^eUaIx84L9lqHx?Xh-sj#MAnW!c84mr5R1BMcONtr<>MdmD -#8-AVTLau9(a3~Jp&?GBT02#I>HHgs_aG@ibX(*C%>AUmPkFvVUl_TCbazyz5yJK|=0sLf!)$~F?OlC -2quD&!$FGJXWq5dByJ26LT!w;7d^rD;Zl3W!IE^rp5eb+WHBwh)wPNQs($46s?Kwhi$0IhOpwk5_ROX -UzA4#Or1b2aKV1p-#5AG}gMgxoBDShrtP60Spes`!)D0V-guL78Q|`WLNYNse)}6>Qo!VND_dqOk?(a -j${co(i4FbHg)$6Pxg5`EE;0(X#3Sjk7+xBubp?4X#x}C0{AwJ8M -ZOGR<0(e%jD!N#z+`-j|9XUSc|A+KabKb;w6*=HhhU-K#3#mCmPUM%H0nA;@vx30|GzH*~qZVqo!0j& -iiNt94R9x1rEt7R5oBBf*INneTS>4G-}!4$`s1U@Jkij!ZBiZI|qH0wtXgNhh9B2%{HpGJ3XXgZFE0& -_!19VR1?Lg9ypK>eQ<3R`;ZK!euj8C|(Lz`D$TQ^v~%Ns0Wx2NZpsq8I!le1i6J>R^3S5aqY1JW_FmJ -VzMaCbhV?5nM$XGnH^gINb#;XiqRnoN{JWxdOeKA+QglR-FEp-mUXb7n*C?9g#&cIiPtY#AZD1CM2zT -&?(2PFhw=98|3~=0AHgfOUA~j;wgH6+o~%Z{IBA*a9EG#}uw$WRK`?#QTuw9;$E6=ettk200rIx1cls -d#1%%)2URUR7!w`XPMuLX6ABrwv~Y;AX@lUSYCFy1)3augihor}uN;9 -1}cY%V%tBq@l^6!U|i{2v6K?U@TjlgRF16ey2w(LTs+@`f)K7Y ->=K@8WuNUbO}v4~&2~w%&(bAw;l)_?j)2N3GCAKa16wQ$1}Hy|!-baq5H#sPfFRn~A{lyx_m?#7{uP@TOeR9&OJ -pmXW~*Tt&ih!q`=pBabd@Rtg1mVIB5jqzseY*3@o%w<9pam0iE4IsH}w@87Bw5~{>B?3Tiq9GS=SVuM -+nRixvds7c3)s;)PsilhsVexe7alyBn-Z(qHg9Ve^Wi_3Q$nl^pc=DUa|p<{QWKJH=+3rep!5a_@}PdCW -uRZJBh-eZiHLy2DQ(XgoPGM*Y69gp2vAQt}OK0Y@+Poa_uj(t7jCsCy?jl!ZgkC^`19%}iPY7$D|zrdlT^E&EjR1&qEJX1PcSbyIFz8yTvcDbxz6^voW -LsT+H~`-AOAb?&&-FNC7Q1-YzFc)3|a^X}1@;LZQNL5V!CxT!D>!Vb9@ -1>ag*vKOIo|62E)NMo$tZLHhMw($h^y6_R1cQ?vmDAV>FJ=ED=)WP#9HF#tk+e^1VtZKRdcsC)G`!ps -V}M%0;sZj&wn8{uORzcmHjH?#>z*7FKSh7K&n1FiA(1`6`tXePg$j!`5$|Lnm5#iO2_jVP*Dg$&}=;a3Frp-sNJ -?FjZBpWiGrl+TqjgjXivTn3l#K?YU*)xu8vRVEj3iuz_peAl1%OC+^bV9JBf|=#-}wY9RMTSA4NyrE^|cSfK3hcrrVtguZ`skF@GOzB@y*gZ9-rd(*UTu -67MhY+5GE`Bi<_{tQrY=WuQ1=ns -Sp|)&>z&jCzkMs+%Ie$EcBs2IA=RC_Q+W32p{UlH1`46MbQl@Ov9d${i_mOIxR@*1MLpl;{}9h^c8DF -8>ZTES*sox5KB*!?DJxkQ8a(1rzlCHdG>sdSSSrI=67V0)m}*uqbn=4Z%{Z0W}_tj3`8`XOefiMsD3= -j=A$&F@gkv!mQj*T;?*=tXt_$3i*(c{N}10R2QjaS{3dY;%E~~=g1wN+9b13KcpVB<1?|KOW6U{AY!n -InBKzil%}^P=J@gC6MbLYaC28Y(^lBw`2iy14bis0&Zx2hK_j~l)06{{3Q5ZoA_*j;p9xG#PkA}wi5I -T#1z56g2+}#d-y&Dj%Qdr)5Xf%KLk4L24YL(Vh)X#UqzAZ#pHViQQMWa=mJw1Hmh;SzwhZ}Li;lI#Z= -do^;$ahln85tiuY4FUBo)e_ngk+BW-kJ@hKE=;!<>j#P9K)NkUmm;{jC0j@MXl4>dbW5NOI_q`Eu`0WC`zOtf=A%D6uErVabo*~{-HQu|Q{!tC_328ho$pKh0sF1cYY_z -f3LQSZFZPegEiR&m@nHQ6I-*wJy!Cd{cdbRmm;OL|Y0t8+t)?5Kyv?3&-eXciZ)>srHX^{PlJD?(XKVH}9_Al&@}IUYDEu -@|W9xzj^cKD!;#d`|G=#7grCrcjd*Ko9lNEZr;y5m{Dyw9s%Ka@|u`mEIRJo1 -R&z5I*v=*^q*lxy$H)9d@|yT4t(oHP0A_T9tX&CkDPnxEc(_D}gsDSx@T``7aQ&6~g8-MlTImyGbCJl -vM=-#@&*efMGhS*kZTKi^&5y=T>4-CbXo``cF!f6u`FSl-|MT3%eeD|go~Z|>*gvk(vE>fOsf+}`E>x -3@2EUcKi}zrK5!=`iYt>$|u2AJ_2D-~Ld(xxUXx%b%~`UEgIk-~amao0}K8`J0;;*YEDH%hi4Pg}>du -{%xhcW+2Z#45WO0o5#Dle=OHG`J8wE?fULMe<|&Y`tfZao_JZZ*PmWJF#hc3FWmT92K~Og$!^?zyz`6 -SU4q|c`m)@-^Rch9_W23o{~n@_rV`%6slWy!4WuHHSo&%pD5zdU~W)j#KsM_)eq=E?IP8U5E!o`3uJ*|YNXcTdZs^8KTy&! -2qt!#9tfmhXRf`u%s$9)D5Fv+L`ROUz>a-Xj0U62HnL-`-{=UtT|4-MqPIJs+aP{+>>*;~{8xzdr{_VTFmmfbXm%01)ZF&9g+rD)kyymIp^UwcRS-# -j$e)5NWP?t77d~mi8AJm=?+A@xh9~>V(ShjqSN6ruG7t8YTgXVCayu1cFK3X%L@{}bm|I^pizW(9U`u -T?+Kg(bH9K_Q&cZU0qH@?d?4E+z~)4s23042YD=Hu$RPhWcfOCa%g-+J{kj?mWsfmO}1-M)*b-ap_^Z --0I9y1Wjqi6L>cr+<2SaWQw`r{_O@|KzJj-~9BaC(oWgee&fG&!2qv?N3i1<$u2X{O!U=Uw-rWr)N+8 -?_;L3Zwssa>g~fn<(;oSUKCGz`qT68e){_9vG`N*i3rCwo4r$DTAE!7Z8DQTt`da4u`E;aM5$lBd=+;~EF=Y$MO#GMKDk-!ikBnH@)F+ -m0>6T=RrA<7&NSKF+q~F};qg#m4jNv1UknUfj1#>{#lqwlKd=c*ypA)|TVscDjy$2p@cOp80v -HfhIya%Zc{OXe<}szS)j^-!ms{%23M`pG_B+#S*l%8SIkJ&#F#DEehzT_A?JQE;k*j^ZLqqZ6}Md;{kZI)bt{j_vsV0Ji2;?(5n_^ogp6Tlv5%8 -q^>6%kV^j86M=TOk!qXc&xU>u%XAJ^m1r{8izr}2@Ra`dVFmE~HgcT3#ctFO#fl_?1a34O&Qq`4}TX_ -3^;PZL=$f9Laj(i*=094$CEKup$fRV>ut_vp4@^!!=xS4Tn8$-a(0i<;SXx8{qEDk%YC;Jgwiczt02i -}yyl>$aCEY%j9s7t&vzJyO^G{F?C4S+3J32q$e+FK?Vp<(At-Cv)W#~d?#fp4BK -z4vOtZ-X}uTfcDcJ$2TW8v}Oeu(+`=Zt;D9GD{m#?vcE9}MFOhno`oSlC8=IpMCe0ZgT1X?b8g42NK% -dloVV<6|lqId~o3&+~T-VPAbT!;D+S4uPeWiLUtL8q=z0b|IEl2~zpnsG^2=#WH89vPgMqWz#nn@-${ -)hj9wPDHYo}R -*aElU^)qH4ICH%Y~DAHm{tdj8X>>!`Yk}|g-f<9=9IPGfVs|_@<;4sBkpq@5wk)?`VNF{D;vO`5nbZN -#C;Hn6^>sqWi}J{52S%4tm^{RIUz5=RZs(8hISP2vF!1j>i$EZ8sVfj9O7`lfz`@O@V~~K#u+QEM3-s -^*qm}Re&8g7aRI9VaANoAdgVfA)|pEt4d@ed#eTq77?B=iXh#9 -+MjB(80GH70%tiU;h7g~TDUasVEX88gLaU;rCHoKG);#6%4YosSzhJ)ljYX_)0n)B_>nG?{3up=w!)F -|11dMr;U7h|A5WN9X_z;Ia*qk4ZokhMS3D&wZ?zCB}HjZ2;Z8xSm*6BNPRj@MXXbq|7y#Ruiu>mDBK> -fmARoPA9d+yhMoVmO=YsaxpRXE#to^%(miT!4#Q_feavHH1%{1u@iAkJY3{&kTGu?qQ*vG%mZUa3)sX -i!^=9LvJ-hX0(JvgO2;P~*3GJHIspCvaqJB`dT5Loc32@B7knR>ctV<3u@J?Hi~v;2vjV6f#OlS3Cv- -w9Zd+OF1HO|_V~5z%8cWD_>?9mafQb_Nx=s)FwJthirO7|Ab8gGuvXK0gIb|0y8@8~pREY?T&j=%$gYMhJ6JD00N>0X0sb0 -1SHHC?9Q-wD!$x+&_+T~xG-Fauw8Xepw>yT3tIO^pf{Wx8_+}uJIT}*!UtxOxQyXJVd6+ThMf&QI_69 -$7wJ#A*>3X4SP4?=%DiE^#_z>sXc2A5PCE-L+pcWD8Td;4BTz0NM7APikMyvSQLLr{cwO#DT!vAuLI; -Q~TyDc0k$4VSmbIO1)Zzy459XYmAp_1GV`GjLa(}R-g!~Rh2EMAXj(igosqmO?>UWZu;Aal-s6sO -S~aj0HQ~cOUKRDv1xv4%|1gfW|Flm+CH35HoV$z(=2U~)l?29F^>+W~L_y -__pQ!dVs=2ZLMO>P|R>G{}oLxgT-48TC%mR)qnLc(MfC3``DHgvSt)$!xWAbDl;HLI~@`qcB!>9ptGl6^Leg9nmZmJ@K;vbV7d@*=V;)PYPCO9rBMA~bZUvObLrvJy~NUfkHhOtG>lS(`47c2ijxTEl -q@v;$t8Xoykqe0k)K5g%OKcaR;xJGgitvy`UOqsOeWqp6C(6c2+9Ylzi$m-&>LbYvnh9*2e^WuD}cgI -teI8ie;g6ds0hh8ha!402_|*;Zam!dFg1z7u0{u`H6gLDUY%&X5W@Xp(FBC<(q?&?JYDw!koVm=B~U# -)v02TtRh%e0(FlA>R);pdf&K*-)-wSyq$g+}B}~6%#K?FGmJ9h(#3yty0f{#gKT${fNsO`?EF|k{nKW -AwE?oK9sL7h7-c=AcfC-NSzkg%0@npI}WV-0KT?LG$tevtSc)JyJtv{rE$2y=n#O9)>J<|>DoCaxDSQXyoR+`_!`Q1v~4tecOMT4D`d)(Nhy#EbJZb0#Y$$K4OYC~UQ(A{BX917 -3EK%atS7gPx89C_g)Hj4Z{XC0+nNdWQ7DKo2A6xN&bX_eJ+d+ysuh7D@bARdB$ox|mH9p$AH$Ff?gKJ -Y}2;XIdZpa4_4ASR|1@5xW*_dIzVs;B*XVgJ`3xY-&s}6CiD@gn+Z^o{}IuKw%5CX=XJuN8neVz|!F4 -MT37z(O^p`=BBr!my2VsF9AXy=QQ|sr05+M -OSHu8qc+;`UPP48j?k*+5-wK&W44X8slOEz41-oxkm_z+r4#g-}UYp;Ls4M3-P -1xa!92rCv -aqPdmXwS89lZ%NU<9kSV4`iP~AoXzV>Efjk2rXo)UrsJmgKt9#0N}v0ny!fSUEyzas%NrcBvW**kPFjPex1PpJ_5@@jELjo{Z;0m2C>QW -&D2Sg@HM4Y(y3&N@~IdCl%=*wE+k&WZzR&0-tOo&DrFV%M(j|tMsJPH?YI~bX%j_!UV1b}OWm8yMe8bRy^;&pWGyafsd*eL;@hJcg(-qm|psw_<`0-yxhPegWTe -x8Ew4y60SIzwg~8en6^6W!yj(*zf&G<0j}X1f|FbW0VQvelv1WvCk%wj~}_BycB_H%x={1fPuyG1Z0w -5`t!l4Z|}+A1WUFgK)B$r@&)6dj5*145(p8qp6z$6*yWAlEPIWGliHR} -z2SEy{ryZ)qFyF3f(MSSW(jp6iaG)nu>seEsQ)wa>%k*$PGl*~j3LApxNNZ!!QYbJg88Q`moQ4HCSYd-QUm}V0o@O{(@ -AC2fQUVd2^pLYho+zyU$!<%LSr;Lgd6~hjcS{QAyz2Q5HC(08g6sKWhvT(HbH2*3|4KG5n`tGF#Iys6 -aPNI=>ZudP(KnZh}YAC1S01bq= -Xc$j}l~j_i#5IZ~n<6!{#gtaGbF%B8C3zeal3X>|rbq&z?WUv@XowY+0z^Uw(i{7~Z~7=gkblEnto;y -4YMlj4!fjKQun>}kBP=9eRv6!LIOr*hU7PykW0vT90wCivh2WZ+Z6-}XrN^m -1M#~79AnLOYF7ImEjv}x1~N&yrh#{ps>6SS#|$pmh;85t>K@kvG3j6)O3@e1+Eh=YhfhE|G@yj!pYV& -)oFE1hipU|9-z_G+zHxv$~$R;_1sZ3jOrq8S#{58+sq;!d4Yc7#g#qBH6*sDiOXGnI8#(^QN}}H4bGv2=cxl89dn?MGim0U?mJCc{+8XqLgTX{JYh -7Mq5nLVt15L5S&k -Ayk=@DZjF#gNWi9AF=QO*DBU7Jh@)TAsfibVb7h>iBxJ?+;vZx+aP_VO_fhNf1M!|&r7z7 -ANPeu3b@Xw1T8CaZ8mE}^00kkL{wQxlUcSDRV0eHa}7{YY=geCfk^rxap_KuQ>v^tS|S)@`ou35V|u$g+BtGmCa%PPjp0f9#f4)fug^o -LL@Q*ep+S-z_548pREOW-J!;a-`W|&)w`8!dt`?7AiTiPN4D#lk(t9BC>+9IXCZwvC6de#4BSVciqKl -1ZtXZUXNf$^r_4ebhGZyYNrir~)`Va`u^hi;=Si_@w;asO2pvQ91YL8eUJkUPS)<)nb!@vE2$=$>PD! -RiUbIpN4fsGsNahy>Tvg~z*T!dfpr!W&ST@BnvRMF(-(4o}>g;IzTOBxyyQ|=+W>PIg?CRKIMSvVa45 -eQ3l!Yz=#%RX|c_~@O&fid81E}^sz`kfVs4Vf|F&!}K=t -7yE%oqOF%#Fb7aoWmU;>`#zaGBymw16E%>?(Vb`nsC3`0G*mUnaa*is8I(>N$ -5!FXZYg{_v2?Y%N{OUU-t5&@D9HpvPn=!M26?X&?ZXc>k!iJTra_7f59@9a`AR9aTJQrL -8Y@sKoi*gdm43Hj{hA6!g48MZpj!hzqSAgWYW#qM60=2M48#5o@`2v0$e7Ft*2EMvKU8AwL)tsYpH_= -WG^%aB1g|@U+HRU>mDf@~`=$^F7{KuBF`Mzsh|Q#s{8yz`dlTg0P02&xXK#tQ%~m8~+ca-CvoY*Yh8x -PNn64cUq;zdl&$WLKGB%YyHekTE4*w4CVhRQK$L$XqkaT-mU7sFyAfjG}c6|-R6HIQA>L-~UeLnUJ! -aL7J12P4&KlaHOW*0-!l0WYUrjan9nJ@*YrCN=Ap`lZdN5oNQx$fg)9K|xQhyxAHC_n`5oTD`NNq3(3 -r6LsKvhqXT|`n!DsG7gdgs%^vU9VK93c&lwFmQQ7cC~As<^s-gMXobAS&@I<0Dxszjh`XugVU^#0P5M -G|@vtsw|F8H&i$ir)h#|Dcz+P;iGnN`+?8(_QMj{nZZV#NIaX~kw2vPT0@nNm?KXn_7XVCmLnzENo&7 -FESWf{Umqj|WIT@`8+1yP~8DU0$Fldy^Fw0f&hqZ`a-(%BXS#en752tsHbyFGArNEVx*NM#mPZq+!|6 -AXJYOe-2hn^_i}YLKCW4@f!@28!7`wUefaLkO!x!lKQJ2HQ++@S#rR8Wt=0siVJe>;_Ve7(qVXRl*fv -5X%)i5Rv++?0niQLP6`a(7h;c$hL{b%=@q>aoDYW;&5<3GNN%>+uidwJ7}7jxkZ0jq3IjEY_*qzSiOn -{dJ0=@ZAr9|W>}zsBs9dc+D-5`xy@!#O%@8FA~h$~NP=O?WrSl>;FUu;)D@OS5vrwp&BDMSpvoS;MYH(sx4qXy9#8>KP`#6c@ClqCR>&9K? -+)OC(f6U=#8l(^K%aR_^ZTnkMXsk>QpL`<7(M+#wSXgEPAi!d^huRJgaJxY^ -;JzpYh<&#scZb1uLJF4Yc?FIZBy70vb!s+f*{QI@cfAR{BKu&=CH#bWd5s%kL6c6zV@uQqIBI}L%goH -q6;^{jTbQbQ2F>@J!eq+CMANN7!vGIZF2NyI*F4^LQZ6*f?ubu# -KZ;6$HD5G0*lONs6&v{nmu*bBp>+<(MLB2g0f}U -1q_#mPd$n1Ebgjb*>tTpQ`>LeMtHLapR#2*|MVsBqHg+hbP|sBY9JEt1+rHX-DMGUe9?7Y62ZXSZ6)Y --jm;)xh+dzIOmNOb#BUVfO_QPmsthK^}isOOV43&-5+9Kj3b -W&EQyyrAdiDH;VgYP>*51j8cb46f1#tjf96&6)C1;@`WCN!U#LX%0AEYAP}2|+3SR<)?MCBfFPJPOH`9%520|Lmcc^p -71=Gj0-THJ3`O#gjTXZ@+w9*mPb50RQ>*NYCZ%F;%9!+lHS|ae5QmA>V;0P?IpT%!&t^Hvx92UU4ag7 -e@I7@6x>_;$+Vu(wJ9tmGGg}#in;WcfEVj#g=)!&il51Qj>Fw+^@O%=C#u6pqV8TRUDxqO;yvGnmaJE -UzPGHXq4HbV%m%C(%@B*nWlt0=!^M8+C*bYT-ll<-aj1FNpq$Np!pMO@5cvX_eG22E|bQA%2={zAK0a -5r<&WDtkC{U(`qco}x;UhQ&zAHcM@+2s6fku^6ow<8BPSMAvQ%|$-l3gJg5V6yv+h3*dBW(o_+vHbfo ->=lM9y27?&>lD%WeS>g^WdPpo~z_#7Cj)CHZjlsLx~Z>kVSdSw9=#-UJS^4pvtybb0w-fMA~jk&eRU1 -z?45o$`N(p0qCZ~01K3OkU@8B>cCw=0ZSurAy5_iE(?bt`(h87TCE-9l&tD$m!>)tNJ*GzcKUeuj{BM -|=uD?HWe;`i*~&^+3M>k(nLbzy%7(g`LfGwYl0!@ZD{S$jHq(*1oBr(@niSB-w91RgGGaEfNQ(vwOi; -(|#K_vjt3$Jw{1HZNX0pYP(1gHNObW>xqOT)EMx-E7_S)JvPK1gxP6(rF=;GQ -%RRq-Uv5tpd5Mxha-#P12CaeTi(+&GXd2X08XNw~9r=4Js96$4uEKA`n{%4LdBDbG0-#TimfC8)Y0JY -`7k_j4qzBGZFQG3vCHlUqd1)2(!h$7U*1CY^>FGPABRKFzo~@s&;olW2P&}Ry@gNg&H4KZr@b$*%a&L -bR~_|V-E_;YKorRTRez}W@$IIU3ye}DkY?=U*P3^) -M{4$l@2yY6RKl}!w)*9LkgrI2D<8{t;?4n$Ehw4-(5Wk1)=pAG| -{oae9AgI**#WB+_#6544W0s2!%LhXM6h08D_Z)OHgU|;L7aWgl6ovXX{bmngvS)oqbshQqa@GZYlBz5 -1pEFHANX~kdQx1@2m1L;AvgQhMGoCZF3T*MERYje`p`gs-oxf -4jailCb`>|0zyd6q^t-jt30FYN48nZcaTSM{6ioU@}Yw8ys)oHB5YdWlWylGl+{SGd5Fuhj5tcHMmk?z61pdQ8qXWik}fw*HA4lMt(=oI({4N#JH#WrLp(>fS>};D6J5d~`?h)D#lFblc@b2wSx&1`5j932)WG7&?^y;nG$|lp=Nz6{>?C0W5Q5s_p -}k4kJt07l;{UW+A)c?&!fv4HqhkRKRX1-MyrKxI9_9`3rc>gb}6hXqn?c6 -ojP1qQL{0T5qjJh7BW{rPw^`U4o_ImuQ?zLSvlVnYM{2O?L?%5N+T-ar>BBEVnXz_dcN&8PE>?UGzb9 -73IH^D@M}ZJs^SinyK;D}UV#lVRyI$Zs3Kscc8t@sQaP|*Y;B|%+RY_Bo{i}iPi3AGsDc*|@cbeM`wl -FZ?>76XeL;G=V(MlG$7bK3_)7_fP6o8$y3O;y?6*hl7f}|8Zt7Z|bpXC>EaFr|MF^_1*y=YNOudIl=- -FF~dp@QrSomE5ipz9Lubw*c6cR6mU9_nUL&hcn+3j6rdewtuK;a<((%R9@gQ$VPBNex3K94U8(Wj@qE -X6A$*waUi-pp|KaGAQJjiNTPxD57*!^)M&RX9&`8P*FXUu4^!KDKP>>EOe`Z64rom}vUus%mQlApEb< -rjrn0kw|JXI}N1je$55(&+;8bG%KQGHshH;+2w|*Qc1I)4oxY(EWaw|@x0}<)B)q4^$vK(E}=DG+qnm -$Vbu@i(8XG)q!%eFn0o9!{SbJA*zyk96xR!h=WUxsHryHrX-3kMP-Jt001ds%RRa$5@+Hq -Ap)?2Gi6vWXn6Hhry0F$5MQ$eyqW_qJf@lv)4f5OQZi8d}eTRKlGj}uRo&ThHe%gI8D;~QH;WwQlQ&oQ4^-eUKKqX^qWl*^Dj0-8Ri4mdk73pIF4|oua{v1KmLH*)lDpPV_RM_W%zQJRX7lnx{lUX1q46jlBy2frOgRR>*g^slJ5|Q`(#LDd0k}1ev;6QxB-eqFPFqLJ -cWhT5d+TqjgjNN~Lm}bTv?3rcZIj42KXZ$&puz_n=Bh}VZD{fQo!-qdXaWTA0ky11dv5w~K*gkQ7=p; -7UTe+^hu`SpB3l^e@u-|AV)yB$_t_c--@`h%$-x_`FAJQnfw!+pyrNT0kGlhRfVRuxUiZY?eaxUG09z -u8$I)7&@@TJLRQ3q3{bF>qx_H0Xc((oZ!(wH48r3cn*(ao${E13a2mKkfuBpmI6&27(04MQR6u@D*>( -C^i~BbM-o+)r#BEOguLow6MnJ7g@igb(#&n!5mOqv)CxreROW?nMdCo#rIX&Sk~oNYN#qxa3s9B@O6Kf^RPNCFBgX4cpvq}0o)}}!SYo3{;1} -7|zcoW;^k&~LAZJ1ENEW1x@6fZA*d1)&Ptyga6{s&KlLs2^%i6am{hTb@je -Je$_m6}h`c<)JrXL9fyA>}$`bL@B4tfBQWeo`qf`?cp7-jw}p?>%FjEB{^9DxIt*)BC}=(P(5!ICr!k -fUV1XxEMGXSdW5MD~Y?aTD2UjqD|MIC^4E3{_wa8m#Ee5zQnc9E+CGruTa*<3(dA(75NJMqu47EH2n@ -KKK_T`uhUzcMGxcN`Zu&hwZ4Ao?x^ufi;~YBg7(~?WnWoMSBIQeZ!syMHc!Jc4cm4Z*nhVXkl_>WppoSWnyw=cW`oVVr6nJaCyC3?{ -nM6(f+Q#;wpa-IVD+1soT`4lb4byn-huBNOCnrz}?>d- -e>pVSFhUtsI$@g@kCvY&qtHHkvhA)KL1(mS^MhXmAYSOb)CoaI1LhYo<&;4MqOq9ijyQzAJh0*=LT=W -MUWd^s7Mz&EV5jMSUNax6vk;>#8~!DKkFo0>0D(qRkV=C`s&Z!VuSw$Nw&n(n=CKlEHx_3bx`O?O*c$ -nmvWG6P+M(4c~Pj&c~_ktAHN2P*5v~=OcHfVYmK_qM(58u62{N7w8-OW32{26`-WM&3i2m)6DRXLUaG -!Yfh$#H>Sj|cveb$T1tsw`5AqG^YL;uQOg1alVC)CA$x0OlsmgT}8zB$53l*f%pRyeLmsu3gHuR`WBZ -xy>7dl@Wr?U5xkLpqzaH`(xROgW9rko~mh|QOAs8gd=VAP79nMJLs3u5HXGNLXrkPk?uKPVmJJ)KR)# -1nNoIB}<0iaiCJc7lTVhw)alu?wa*DuFd}w{y^{f?Co@#VM0rK==3y2tv>`oJmc!Dvh3%Ne>jTR(%@Z -f4Kg5uZEM)>eKM{b~w5J`~%iP(|8N}38i?sN@5U(RC$mV8!!$6SEJkW57;q08()s^KNI&CRXy8Q$KH&p%!cZ`IAm+nejV(EuK&wNo)EvrWmBif16X%%DlQd=Mu_ME?x)8ZekdY7snZm^svlkw^ -uIh}Gsd*)Yk{Im?SJwL*VT@l2&z(NpU@hVQ`pcB~63wS9YV`f$)wuTQWjNS_jz;11g_;u%O^Bw3dC)L -CWPUcE8vm#y_vR>y2G+WpKS`=BAMY{;6~JdOVa -|E3i`{j{|RPnhMi3{FS{4{M%DM-(rJY?Kq|9ePL$-b|81A5>kCeB-n*hyx@q=xLXA+U-#gmy#iT~%*Ie$RmV8T0QpnTd0`dOT6m^q4Kabad3o&qW^$syY26pP1Szd!CDf -BoA97^9e?yW#t*YNLZX-lMF~Nn -y&ZPIOi0W`e<5G>l~c)N;$@r!c|*2Z5uBSjD+RR{scr=;ifl=PL)1N@KwK*1!JGoc8otn9ErB%iY_f2WMEC10Lp(3k`m -egWqN=5SGUh<71TO$8YX2#=gb(y*jL>e_(a(fZ{TK5RiQ?uE7n@77x|cz4)WtkjIllIC?{1gjPNCD(;$2TTM_IxgqxAVh{HyLQgg|T*oeyY -L}l@b@D(Svha^C{L4mqNh;rs7x?-BNQk%(4cKcde14G8@fwc6B4f44!6zi~!wq)v*ZAX#QqY5_3}BuW^XAuqtzsqH-qN^aoxBIllFO@Rx+3 -#`@8l-a=N7>SJFBkk;w+7Ne3^Mz3DIUc`-PByp@?L0{BRw&0#snM2vyc8w% -dlR%jY;G+cG8K`1BgNjuzo~XEvJA0snYOnR5<{{2E1m|`+^PBy -RvGb$U8hq8v$N$*i)E8foQ|Dv|oDDB>5fcmyGTs+rP^s8@S#Ump8Pbd$svtH%8Es>L%#;37#*8A!`7|MMH%b60oOt& ->&&rihx5d7V73*!AU6>M6u#wWm8=hh*mBMweiZYl?a*iA#NGpQ(@u))56pI9ES<3S%DK^UhfY1&{qfa#IFg#OcJg-P%5J>9bWrDlvH$l_7O4!X8TH8d|B$x1}yAg|_r1GE1Nl2_tA*H0@lBl| -@>)zq+I%7|c1tMEyaAaE*-)XeYT_g@}?;L=yI&@w}wd+%y -QkuJ>-;S~%xGma*9R#7s5t7ddNQr7PJ22bcMoGHIh^m?t`1!SmY7ARQ0CEWu@@wv1r)8X2*leNUHhDr -#S;CrK22UdDDv0xbHnScKG6ajET&wP;5`2iwxfH8bWYZXC)?e`#$cX;0q^TZzh(nc)VTEK^BHt)eNwY -34t(vW(8zD&59bJe^)tfCoWh#p>CWX>s5{klvGKL?p6>Ku)d``8(^5t@jj5fD9L%4}pAosx)g4q0%nn -!K1acz9-UpaZ`{8RxoU{>O3^nmt -R}6=ed|07m!&qQL%3BM4esU&QO(%TV^jT0I?kOD7*E^6YiR4drNObn2YcHmG0r6y@mI8Lv)_}__e>*d;XULt -C1^UjwPBh+eAHAEn8!NB=+`3MgzOu27xzAf*VXVDn3_}9?~VX2szD6O_tDqZ11^C-jbxdnV>r2YCL%q -sm?zPZy(={@9u{aHtXwO7eRdXzrj0zB4gFm3*wiVzPf%ly7c))T0Ie#|1rM%2!TF~&TdDa9w);qdhI( -oue!W`KR(}G)`$+F7wMULe1sN?$Hxxk->&Nas3u7K5(wPh&@{Qz9aQVO^()HQk8F=eipxh^n;u1R;C% -m5DO!71u5$g1$NYoCaqIn5BSq+6UFH~)?DM9&q}fFPnTxsc}{s3xIpx_T>#JoRa(Uj4dF)X_zgy(SV6uju}W3L76<6{gV6#UKW9ts4(>S@-*0%5Mah7_+mY2P_ey_(gPlf2s -2QN7`7B_y^GRH>Ti=7oM_8Tg5%)&Iwl9~l6<0>S>KU7bv91y1puH$o~; -Nb%?kJN1RX5xjvq$#Qn`4tb0}$ST_9edBh&dO`R2fO-Iwcd80Yq{2a`9R)vacXK*+dKjr%wy$F!8_=bfJnrev9$TO`b8rXp@U -%MRLWUHf|IznF^ELTT-=+RX=nFO1EIOLUkXF=?}ej`$oUv|md4u7VUdXb(~jlp2xtl>dODvGIUHu<_t#&V8@6j|#LPWeVYhIpXgMjq3*Et@YKV*XbSeyBC#D8S!0CYJWfCbPcn$;z=rgha9EOx -T9uc`K^RqeHFuD9HDmL-Xdc*(Ox>ES|$Pdf4?I_avRgb95K!_kZYI@3ar?GIMW7n -b|!??nv}lDgx;LXn!pZxnle^Bg*^K1SFC}qBQN&)9CO}0pz8H&W!BYT2enC2`2UmKbHuF(wc#sZn6i4 -qf#te03`+s0D4L6$3Kw4(HX_A+D!@BfTZj`I>MEF{asyHGkXY_e-~{h=VWAt1pWp}{xk)CQd2SEM8ed -(w3b~AttnJM6UU3r95Q1p7N@1>R`kbK&Xyx<23_TIO^4|0k*)zA`CXPKn~q!6 -tv8a9!jk=_s-BJ0Av(Q(>vuEF6_wd&q`-Ie4*&HXO8aMNI0@=#XQxwbqjmbj%cseSDO{*uWc{kCq+0+ -Bj^%t9-D}&NlkOqsk`!~?y2i2E=u3onx1C9$%puZ2F@ETuz9ANvyDty@lQ(|+eR+VQ-^jbY)PAKw|Kn -SA(z+MTZq0qO|M+GJPTM5duBcxgUZA6XkA#i6!j6DCF}lqkC&VQ=B$tNDC)@n5)5=SyrK9)VvfH|gBA -~O^OJ3MRLH382>F+U-GtYNoo|l}fHeD;F->CY%BM<)3ved2tCkI}NzQA_6qp{gIougx+@7XN`q@qzGF -DA&_I~i4SqerYIOR5eqNR&97RO_`ZvA!GKkIwJMllQ{m|4B(GHdVV}Zvr0aexRPBHPR;C4&_DrWW*++ -#+Ah!<6WgIM}-hObYQ-UNt87R}Oj90LkhAF3&#rI~U{>xt -Fm)MHvkCy75VR|zRtQC1f%M7~pfWN<0{oi-O?kwE5%h(n79VHfk8+@x>-za!fd4gVi0aJzlx|P}+?zFS4BHZ=WR2}_eZHDIc!0)y|Mf&fa0lt;?%euegq>*Mkb?GsRx8DzX(=qGkJ+ -%xrQ@S5M!X88a&ZG&uqhK>=_Z+$x`MoT5Y7bY(^;iF0{-;55dqbZN%4d!A>1NiYoD-A@{cKDd>}QJKY -Jxq<%zZPkCy`mIhtdom?xVt}xF*p)U-{oB#aqoEr_;9>&-@R#_@Do{?@eZHclF$b(ej3|JFOx1687&( -4R49lX8gTGqmIQ^_j+l^%Z2RUP)h>@6aWAK2ms(pnpW#1+5jOi006{f0015U003}la4%nWWo~3|axY_ -OVRB?;bT4XYb7pd7aV~Iqm7HIX9mkR7-}_S}AS__PElov4{vBf%pk&HJuPkXv3Ip$p&?1{wW18KZX47 -8or{DOUERGkj2H4d@s_*5^tg6hD5hqSW)@Psn`hVrCr+;|%UHSIe*H6ED@w9yP?e|~*_wt|o_Opx6%F -AD_%l8jAf4RB4x-DPdzrHRv@5`U=|M$)9?Nxq$`}V`#&8w@&`-k%C_U8KTvAoLPe0lMy>$AI?$D8c=` -|H16-`>Bwekk{E%Hyw$nZN(;`tkj%t9RG`*RVJDcklD#!@K(jeaL~!5BCrI`&SRwSC7}P%g-M*;y+&M ->VdJ|eauV!@>qWJ_2VD9{iiwn!*@THZ?E6yot8gb-(5fC)BNz^=i -8fC+4SJ!v%uglf@@{aG`|MK^l`i2{Mao$Mz=01nl?EbD?-{ik@?Y~|>yw7ine`%ktc8+*ia;<-J^ -~n9_YQCf6=Xui~%Wba4!>68K{^}I`{YhV!n>!8rOU`}%kpt#~{w-lue!ear-e14@aC?~}FM*Y|0R1o`RduX&tCq -SyZ`3d%kQ4Pcu~Ij{&{&)et7cy<+HDU{PxN7^23kMfB62z(=SVTaee)1ikZw`o8Q6#S9jMe$;0)(f4IJTm3Y7U`8F|o^=@M$=jiAAeApLX{PEcfjrH`$ufO= -?58GUQl*xFXTY2O2{vr3>m)x)UEai(Y{#!Y|9OGCuzw*{UeKp&#Bfo0qpT1h&qtWs3`su5Y6G_LT&QD -*h8m3!+_WBxQ^l5*v_nxz8<-dL!to&2?jeT)`_&mQi|FU7tp66raB>rRHyZjNilpTHb_S^2io$=e*zs -N5?*TA;+)n9&mm*)1@u78=&`CkC*v)@0zxX4NS>E)k)c=q*^Z-4szvllO)Kl|#(m(RZc?x*KZ@_#vGe -0eZkU;lFTz+5L5|NZ+1886nMT<#H`eD&?qpI$uspHH(#jXvq}=I!G@=XKub7rA4f|Mc?vpT2qi^nd*H -{qx^HeV)Jk%|$8oxJ=t?H2t#J^lTc<%zyCJF5P_OU$b47n06U_SL3LcarAjv`_V7Mdb^Bf*#kpv{USf -uWe(<-KC);2YFwJFxODe^*^Y7W-OS4jyY#jCrFqTE@t7g?V@WEpM>f%Ae-FMXo -qk_q?|_@~UfH+BmrV$ltlo9DG%p$%9myypyAzF7j(FMd#^x$ -aUn@=1f~r@0GX7Z0%uT|4LzJ5L64wE&;#5sZqI -eIpl8rC=o$13dImi!Ju5vcJuBC$^r-Zx^r-XzMg}|?ck~>$(X-Jr7b=&G?v3t^?v3t^?v3t^?u`p}x^ -=p-v8>ah*FEmabz^5|L(fjnPR~xyLC-Fz?c4-i(2>9 -99EyEp~$qu7xeY7G=Y=5_`tn7zx#SxU*&)a6jEi}x39cm3A_R%!k?Yo8M!17W+t -BXkoeaE=w3fE?)H*1m_uMYL-KXgU))h)G_i-N_0f6Q)RR`XWq#x}urnrz&O2k1b4$exZ3b!@1o4b3KKDovwdrZvfOfrD{#gXJz^Mz~9 -iRN)F5cjme|Zd#V8u$=h$g6S)xbC*>^GSjSOXTI`Za)KBfYn~6toohzs##udBH@sS~#F*Z+Zj6z0nef -p<;mH9ThB2`&N6n1nOveHC%3#tu7mV%a^D*E%tUXHslgRbw2Xt>hjE#_;xar&%`9%4b%z$k?G7p+1Zo -2i2hjhR>528z0qA)#`K%}SVJ8r*ds@OHSiX4~uVqf5(@^V=zvzxfbUdQt5gm`{ctrQ@-zvPs -@r;gV6wz}$BMdAXdV)~LGeXU>;evQX)-s!p1=L5n#d*KUOY#HVagP}7Z0L@A^mLC7VM#O__X}&u=L&f -fPk01WGXG+5jJ1g7XH2SJ(Zi8NCLr={rP6JBa2nHH7w6O%uHNR`~k_ImcOio~Og2{t~HiCx+O -Kxz?hVO48khs9c;x%T!G3VLP15kwR{np?m0b>hr8Q?O&Wq?auKsNM*sReip@EG7Rz+-^N0FMD4&Z(RCNdj(f|Y=z1sDl15@002NPv+5BLPO>{0%nWaQ4~IW9)V7jdcSn#Ct`T>s6 -6l?y{Lb&A-$n2Vxz9&Fm~j5FVw2!Ib4ar8$K}#I|Q0Ub5I~EA%xtGeuUp)kI_MT0x)~Krw(~0L1``0T -eN6+3-kf`^}6(@_vD20LcK7u!d~t2_%C}T7hB(iWMkUpa>VtrqOhoL9^}7NM4d3=m{h%kc6>jLr)-Cu -^G6>Z0HFTD^F8-kO~wlP^>_)`sO<$c}aetCy=Z_vI5BpBrA|4qHP3rO+=4b&4wO8u>!>k6f01yr@t7< -OY#Fffn)`e6-W~5WkXMbhYA!cP^>_)0!7$#HuM0B6)4uW{rpH?k{{>^BrA}tK(YeK3M4CLs{+Le6f01 -yK(PYF3KT0)BsgvLoKhP7bG_cYzTMdjfFw($C10zH$*>Ei|(!dDBDI0o#k=FORO?XKI -D-EnPu+lJF4U9A}(!fXqBMpo+Fw(#XGDkM_03!{Iv@^b#@R9~r8dxES%7&g`q=6CGd^Yq1BMpo+Fw($ -C10$jia`yc=*9~6M!Ab`!9jtWhNe3h7VhuXn(775CP?Mm8n$i@X6P`82V`5oQ7sg%aCGe64{b;g|GK? -LJbTHDvNCzWCe%Wv>Fw((D2O}MfbTHCmuiJu`bg0qRT5om5U^aLXvjC3&4!3Y9hHuL}^{nQ^8yrhGb4pur?>DZGFMmiYjV5EbQ4 -n{f{>0qRTkq$;W80lc7pYg?lmvpew!3sf1L!8Too?t{89O_mhG;c)DjmWo&RCX}Z!AJ)q{fvheyrhGb -4pur?L59r6Xq+Z!Dovy5G=pZ+&;yJNFfw*rm=Qy+8+uzd^aLvddosYt03!p83@|dl$N(b)j0`X`z{mh -21B{HVBch|{xL{>~l>t@;_GEyO0Y(NG8DM09kpV_f4|6lp1B?tXGQh~Fb&m@#8DM3Al>t@;_5{5ocQ8 -G{$N(b)j0`X`z{mh21B?tXGQh~_#~v46GQi3JD+8fRO=41{fKm?{ -Sltt@;_GEyO0Y(NG8DIo8yCI}B*ieHAHHc7JA$ow3vCegammol8Lr<_WuqOkI3@|dl$OI!3j -7%^x!3Y{rHjSp!44S=e1}~XlWrCFnRwnjjf{_VECK#DuWP*_iMkW|Rh|7i^U}S=kxp_$j__=OK#o5pk -tW4|)YDQXAdV-M&MkW}UU}S=k2}ULunP6msk-2$^8N6hIl?hfRSee+92}X#qv!N##nP6mskqJg77@1& -Xf{_VE=H?}4@RA8ukPx$>C-!85kqJg77@1%M{Vp4>1x6+qnP6mskqJiT<|StEk_lE&DH@7mHuMA|@ZW -6c2}ULunP6mskqJg77@1&Xf{{7Tb%U2ourk5Q1S=DJGQr3MBNL2FFfzf&1S6y~(n%dOM&mR=v)9exB@ -3)9u(H6)!k#QJvcSj!BMXcyFtWhN0wW8IEHJXb2)bvw!M$z{FIiw^ft3YT7WM=cH5+<@5%LlZrLe*D8 -w|g}@S7O^0wXA^ZEap+4lh|?Wr39iRu=YTfe}K6Z0HF_78qGzWPy4SXp3YVNZ~hv!N##Szu&=kp)H;7+GLsfsqA -978qIcTsL^h0xJuwEU>b$Cku=$FtWhN0wW8IEHJXb2zjSQ%Bi9HHUzMwCFi;&FUb$aH%=2Ym8Q{jnn5 -#Z=$RPlL~Ys7!{}l3FnVlWVi}I-xJFN-r_s~t>GX7ZIz649PEY4rP7kMt(9Ki -W6@*LW6@*LW1Z`^Shq#bMNhDT4B64SI+|8T&g#fnoh({Mm<^ -grEuo0!c)u6ha%Au;+ZM;fclMj2?U2u>aCM{D@YG!r+>>h`Jy8GIAqb`Ab}O>WKROeSD>wddRT}J44e -h5EC`aFEg1+;jviHQ=bbF$vle6nCvI>8_(F_CynD&!%u6S3obakK5qHXA!5vpk1I9Pp=`pl2Ba#d4N>XY@fKc#sCdG-!%$TJ@2wR9Gjc0IF1dW@##4tIIidt|yhV)tx*o=Ktuu284? -Jz2oro77>H&EPM8S+AE9_`K9CK@++iNT``ml@ -+ZuTsoR^V|ERZiFrs*WG3Nf=a-3JLm42=^87r2-c3p-ZS5!M{XP!at!Zt{}AfH-@=P?!w|;V6}z{8zB -mD*B)!5gS^lVNXLTJ>t?rTCxzy6-=(i4b>?Cg&f0)zzr=Yuv3MAv2Y)TLo+OHRNh; -qucwWwP9&pZ0IX}ilQFLT~2VzF<)rg)QBN*_wLd@ZqL6>8fSL@29Zv8j$HZKAJs57LagByF?prZ~hjd -;w(8Ac|AP=H(mL+rhVMVRsyz3j<%5-q>2EY!f?-p1uaWy5Av(19 -u9G2+)f^cklU4AMYA)Uk>Mzf(6p0LcXT5=ls)3o(DF(|>q^3fo~DDF)9xguE}RUpV@(aYun>hf31dUu -GP2R8S#>4c4&`99dzGhSud6$O9CDxJ$*ii@0TuI5wkhw!n{r0`GM$xcFk4{%rAg6 -rrIWXP$frX01pWqoNqr%jxKhFdjD{OEiaoxr{>@bp|385!%ee=Z@WTOtiTyTk -QSTsV_lcExJ`=_X0I@*JNB@Pe`Hfw~zh08ca2!^| -J*4YV}0ujq$4FMN(r0UwYjE|wkcF%gwL-GjK55+KCDvu@Fk46!hWcEHM+y;|lZQ0YzD|HpP#}$ruMsnwD!T|_4X$6}gb~eIOQg%s^E6i@iAj7P()-@PKiYp>hmWg -zPNvUbjhoNmBvA!rbS6b0lcnYzy;^qb?+FjMS==_;hseO46l}5-~hSkPnDs*D0iTXWf`pTuULBSX2*# -tMI1HgcU>ZC`bU^>~q=$mV5Ru{WLTO$7fZex8jHTKUC*~n{6ZB -7+Qh4$1rF7+jEkW`T53}acyDVVl3mZFG6s8$n!F+^C9o{d1wSd4Bbev?sL7oJ!!9RNMc{)i#CF0Ik-jx<@)E-z2RgV>7*=de8_|0#Zi-chD(%7F495NSJ9zoYWcLlqO6-(1P`Z_JSsfD|-QN4>K -hsOY<@b%TN784==)R7)kh?8LhzWT#n?x$6{?pAZL7<*9gxDz%Dj_Cvl&u4q0iy^-6`>+DNCbsFlq7LSI7N|FkWBi+iEj#$QNjCpSJ=1n-4sn_!SSd~+IZy2_}=9+$dTV$r~8JHmi*O(SRIM4pb)V^y`g6{kT#AL)80uh&&k1%WL{a -vuGh-{d8J{vJaki1EyXkVed0(D@D7DY$||$O0|2h{{q<=|~g>f8~Ch^P9XRrUDfrO2lweumizx>NQMs -R52A&qmwW(IG(XXi;O$+pCiCI*kfGkUIPin5Ti}yu;ic(HNnIcD1C7B;%edwSi-t33ILFGM$*7HS=%} --VMOvBa7L^jB+iX3;fgYmFA5Q`k-u;%*PL<_LmMd?msr&>rG*-UGPl2Q>RyB0TNKgBM{-T4&d@@omfF -2wwaI)}Oc{$ug0d_%`0b(Usddk_50zK(xQZ{R{%}{sqiG~Ki>(AKP ->c5gPIz~ts?bRV7ZHWAb!AuGD=8<(897xu-Xxm93#LN1L(HyY1PKNRPpHDFUDt;cP_|$yRuh$G+~g$` -+W;pfRFfxiO*uJ*6vg(_z=;n91C)&=TEeu!u$UBok$Pm#H-4#mjmL -icu;^6ZP1h=UrObX#!X&Q5s?f}YE()&NG_-ej@x&PyZ0@|U}LaPiZ{t4m8LTTFnrRuj&sqt$xB=oi`0 -QpqTupd@EBAu%&g3o&NDDK(vqeYnMywdGfcFTUUT1kk_CXDv1C>Lf;-3HsWNbF>L3s!g&{c1&9V$8j% -d=vKncaL`s1`a)V(@R)KqSaAV{$VdzKx=mLMfMs%#jizPq!Qp)$8A-3rq{Hc{ikOGE;pZ9($Km -`3jkgH^1%FzHMN#3`BreHGHF;7xMKA?_*;v~fn=YXMHaB!5Yg3#n#0*`V_m3WH^_AR>ejR4f!^`HF=v -3PuFacKXd-_sY|gj0_YUmqBom4lLWDD3?u&zFvkx7Dxo9-wy>~$h*|1n(y->_zmiGu|z~yaA+r&8C1p -;Di%r?L5D>`7Q0kFxfH72j0tt9PMMqQ?|n?&tFtd$hBS61E)o;l6_aX1`<|PT3N{qpQ`-sOiLKlaUCD -<4XU3)O)#Vfs0gP-@$TOnBnL-BYf{cugQJGS@#EK;!!g3>zQ7~kO@VI#t<+~S71)t&H47ya2Z7UnhtB -PtF65kuR){gMv+Sbx!Nkmrw=v0vvsK3TdUJ?rb2&Kd2#Mz&u1&zcF5;0FB^+!LEETaNx;=HBmeR*(+S -LgjEFEMJ73al&+J?RputTYX_M@2sc^Ez2T)-T9vVqBPgXo_OLDtT=0H|k!UGNi&!4eINp(0yp%E6y64 -eMA6R4?G>b+R=fWiFd?WBja0ii;OG1L{Y_(Gm^`KO5%?xk}@4rQeiNGc2UraylIE_52Fdm)G-xO?HYI -C-=G@e_oljH89_26&`Wp4wlpEBMskY?j>I5|ew6>ut%B|QZCfvaA|9f0l`#mXv^5d25Z-NzrBXehqg& -$?bY1X(OyQZ29S1mdujZ;>XF{p7aT80{2_*tBbXr#_IL3$45ta-sze+DzjHb(o5^cUi-K$fpUZ~SGl^ -Kwgr;>x`W6GvfGtn>w#FF}$AVZyX#rT>ucI`UH?Zg4v5*2cb!K*qLW|E4<+;JLEK8n^%)!KERJJYx#u -y8PWvrqS%yu@G>!SqzBO%27%NWYXRo1q{Ts}D)CrtVueVoUOb2n~gbg;ICk)Tw*5DgP$Zr#f#PICHEX -h47g9(8(^2S=iEHwcsR(Odjl5!Ss^Sv-7-8-D?R2>+n7*5lF7%JozbZfw0G>szI0H;|6g9C^FkXOzxR --S+^4p)V&(jf`YZXw!?N9oj2;#AD7&l>1sOK0;H5%gHR -C2PDHN*s+({Rmgb;BdTH(>^K5&68Sb`Yp@F8&yurFD2Z3%&RAr4dL{tCsHze%9eGo5R#0?E;Q%dM;ne$lh?k(lNQ981BuF -k)iWXd~Vc`p+rq{i+1gBMO1b2WRk_nKsx48&4w@ikl(MLU+Sa!k)JG0pbGX -KG)&Yy_Twz%gjt@r*cY9DW@p~r)&G+WLN^Wjwv#7nO=J6V6-+CnM;k^Isdj}QFsaLU+UqZg;KQLWg;b -;V&m}E=a!JSlwu%-o9OwB->7?yt`KLFFG2vcl&Qnms<*Ead|^r$q`gpzGR3vIRf_8j?ahu;H=^z}RQH -b|HCL3mB)5nIVRv+fjyWeqR^=8@Kux=0s^kD6eQQ2v9829R$w=&!R)(K$*@@#?AWoD|7&#Pk=#UtZ&Q -MBG&Ko)o5i7pWqdRr4rYw?jnVjD-jH@eTfhwa};dqc^8B!LOY;>6l#R%e*z1d`=ZTm~ztBGYmE6kOXI -&=##38q%M5nk0eF6Bf7JSI{U&qdtArCp`UXPu){_i96`l_?QSszX#xfgl7@sZC0t4Ozsg+pa3db={8g -l}%Bjxbt2&>RyYoGBQzGdwi5B-@UhqmK`TYDQ{5(j0v$b(GO2Xy+pw(ZRdxay4ONonaLmXms4TZB_{5 -Cmdre&6o&^5ChT1S@y=gkfAL5<4_S8{8`Qme*Ku}JC?p=k50HYU5+Rfyq2N2!Y@C>5BPhTmj3JXE^=I -s3iN_uny@b4}>40+REGqb+I?RbytnYClkOP9Xqiwu35aaZ0C}lvh!DW>g7rlg-(X_<-D6i(BsT=`Qt! -#*rfouebe?Y?ml4etKh-SJemOAg3JPw6=rR^Mq9*C(`8Ox!Bl#~d(1nN&$LVhZr2KiK+#RKbEhn?fXO -Gu#vx(%`|j*^v8dY{uhUDY+3ZXII`Rj??l38p2yLpF4DsLgX+^pd44EOY6*#0EG+45{NU+Jop~)poj( -ng}K2v8+qUFYRbdlVaP?2LggM>o!;G`IuN!nJ5QN<3Pdz6=Y(A -hlYkAgW&6-6rXiFlz;=b6Mvhvhlv_nFDLO{3yc3QrbO@Po$>U(OjdEDSp%EkDx6m4zTtx>-Y~e2RMv6 -nsOJz!|Duq*q{!q0g85g}|>^D;2;+wMl$SqnP47qH*OpYAX&ZwKjL7Fah0e_K(z3UOl%3M?lopOrGzb -S(%M^%+IMjv!3G9ijeMn_`Xp-LB?VJJgQ__@yeMK2*?TSyB!$1kgDmf-Lq^F}d-VNXJ@yTIcIT){MWN -EB1_JXN-^=a;%y6Nl!_2A#&y5Zt7QgPJodM7q-zSZNb!T#O%nkhj_GlE52h|)eMr)xa3anQg_TtP>wtC& -6vd+5CjT0tmkSAmLFI`+89OSiANQo!Jg!Tz -!{Ta3dK}$!?@I!aB{;#>HS7@rA#h7m3MSF#J|e-QrA&KA~2=_rQeqTsCp;u_gzmL)V&7TN|){^o=8X* -nB&g4AtW_11Y%3&FVGQ9AwS86vQ%G!39%gq1a+?k$L{LcbQE2QXn-iwz!ki!0J3T_2nn(9q^nBZIUrI -VZUv0}nsJLC#Uh=~9kh@hqS(7z5=K;Nhgm_W#nf?ny?}{GSrUOnzj5*s>Rw}RMghPTc`gamkRH~E(8-#@DVK1Fe1U&Gw7$v*U>Ydx_HpiG>RyZT -Z=AceCDNma9jt=)&?|^2WhhjgS=Etz5rSE2bG@zt^GA&)rs`1+UTr(}L2QYFgB%gm?AzGn3nr{LUEnWNsEy3gRYat$n=}bZQ{&iiVNmyK4_!eN#YAKafP(Vw5~wN3 -W-$He-Rqp_7vIQVRg8Ecc!ES&9shHDt3SS2j2$GesR=I#Kqx9w6{*Agy3iC*D_UHMoEL-=S7h0X!MT0FU^qNdY`^r3zIb=v8$fRi;!kD3NEU3iXB`Z4)_9@}N7f7u3C$sWp|9N# -%y#SVk^2wqgpfr|5@huFCj0I)sF2;4zx^3Wc_@>y1KnuhK?TK_V8XGctM!4kh$OuRBs4$tkipRG_E%+ -PeWq(lq<>SNnda>Pr+}A5sb>J?H=oo`V^|gSnz@@mWGQrwS+LF5+SP$sEJz&U0!pbsk4n3_mdTdzN(j -@EuizbQw#s1%&3jpT^H3EtD}Akyq&jXgT*Ab+1Kb-)Bh>vgzjQ+PLDFIvRkGG4)m@v?Oio&`o2mC<{5 -H@6>Z1hUzD!z5swJ|DxN6I%uYO8stq=nf$SF0~MG`G%1Wx*@D(#@8c=GWU7=_M2}ltN^1*j#9r737^_ -RQBY^i^JFsLGv?U4D#Kd=9MNs$ZhpK4#H|3pnDpWb$se)LHPt&5vN9&A%m@oiPzGW$H(HkK5K3?J_qV -}p`Qw_Y{_CoAKFyM#Qt&43cw2^uVal?HeZiFgu^}egN^G+O*K!+g`SLjdTuc~BFn)P~cZQTIwT%cH4& -M36DV6$2# -^Lj@MQt4mP&jM78SQDFpCZ=@Q`uAp8iDpX0O@2D&&h*AbQF`ac2Szb!SxN@mdDr1ieFJTN<##6Ns5P{ -e#Ds$6SC8x{>jz{GXSc)J*tzB~tlOWzKZJpyLFL50r4_R|nddR1%)LuSMC=k;}IpKhlyToO|P8E5I%o -yOTv#F|k1*@TV3vSi-kmukPVT5GlV{MljiOnk^rEOA`M$mCB)uRKC&37twuco=DgfyuAt2*+f!V41jt -|M*ApsKvqm6_GJh@_@uFYz(eND*5nsMNh0B{@b+)m0s)>@}is(b*f9_9ZR<5b|LyQ`A>7hib6|G12U` -$6e^kQWIQR8P%t%idIJ!#iOwGOI2rj5ZxfFDqt&aQnfhy=ggB)+L!iMg$a_*bU;KR?5=9YJt~nWAEG0 -DU1?N&`j7~$S^%gEDstO(@ysRXTXa$ir!1a|??p9p$=#|=UYnYUx$9Mf!kO~uY$DV{M1?rdlT}k5XD5 -HK04~R_*H;Rhh=f%a#4V`y95uU2wPBadB5l-dc*H7I2dxQl -1O2vstxI)jnZZi0#!YVItvZ8rb3ym7@)fB`iDy0Ybb5S`+7`XSZPU}oI?w(3PsSNUAHPcs771IE5z%y -%S4gApW`MkafueL>Lta((yJluWTT_WlnvP~DZGS2rYbp%`_e&Fy>Xf~-}$#n-K#5DCjnYj-zUC9#bGG -K()kBfIv-o>)ww#o@mlmpYtDR$Wvz2ucnRlxoKVyE!HA)f1_1#4utr0&7v68DPH>bYBg1sgNXbZ@quO -=xRquPn(iZ~ws`7r-&Qj52oau4Aj}L{UD$7H>C($3Oz!m$~PO>fMZM&oQy;3p~IvOQKdMb>O6u;wi5| -2vH%64^CH1TS1DOd`Mq&bE5>K>Q6S5xhwa+H`H+jN4b7v)l|y58!k(o~q8se%z9&LuSxtr&oc^L;j)I -mx&M2dH$l@AyfzP?7^+b}I06Eh7mQWqDkaM)1Gu=Oz4W;Wy6ozE^6p46)Qz0ZZT-VgsV6O3!kB$Y8PE -Bo}sF5VEmzlM3P#ke~BFeF;7_&~kXaBW^+NM$rwGNAjCG(9NYOATx0*j--ale!9x%q^8F?Zl9%mc6;^ -yQLniC{6Ag=e|PbJ08mQ<1QY-O00;o!N}5(mR1xlc!Jc4cm4Z*nhVXkl_>Wpp -oUZ)jm+W^!e5E^v93ol%eE#+9Yt^(zwaiw$VB8Ifd=A!8qSgG^g9vLv)54E$uYx=U8ATix2~mc81={` -ZYIr?mWl@c_GmA6(Iu{Ve -EIbF*T=Un-(1?e*AJJ+_m@At`=5_*-n{HT|M=t2Zy#U1{P6DS^6Jgw!`ly+SN(TB`RLb|e)jh9!()Ht -{_yvQH}8IWc)Gm%{_^3U9JBxa7Y`razk2!80}lK6?(O^j05f`Si=UYTrLSJY3$t`~Jf}y0 -G70etGxv<<-l#m#2rejz?wUcP<(U*0|S*Z=tL_2c)yjG>?3zV2^lsQ&Qq^yB+qui+oQ`1bPo! -~3rE@`s1F4^REweD(8pZysOu7k~cv>f!DChs(?Nm!HPi`yb9Lbss{$eim}Mzw3wB)&2eD;j#bwIQQQl -p5FJ7Oa3JNdbZ~yethY3{o9uxhWV`S9|)H+t{C{^m#j`sE+D_{% -q6{^j_#{o9MbeEDKOUi_uc|L4c$zh3^=M}6&HuK#0QOZxP3{rLPbe|kyyasKp@@#FgG<%S>Yr`gl>$on^xAya8=&Swp8Tx8}w;B5Ccs=yh{{Axb)&Bl6^ljsK(6@Cx8Tz(yJm}lHo*VQ<|Mwg8 -ML+%x`dUB!4f@*nedufBc+hu@--o`V>$ySSFH5C;Z&?&oh1=uP^wy>z^ -0=-1X0=zB*RvT=8?i-Ua$fKYoF}v2F|WjfGpFZ>-z`ePeMJ=o_oEK;Kx81^UK%EYLUBV}ZW0-WKQ^>u -G_$v3?fl8|!C*zOh~w=o{;0fxfXG7U&!6VS&D}9v0}^`uks?Z>*0M`nIljg}$xN{|bF^?LR|b^z*OK7 -h^YrzOmj`=o{;8g}&%|R_Gh+Z-u_r-%o|Uu^ub*jrCZeuXX(u`u2Xj3VnOmSD|ko$AiAT>#NW=)^~-z -v7RgRjrE(Z5I7cSx}?o!hKqtQe4vih*$qpky0MD}g2 -3SX&7&*@|8QrDL@u;A9)iBY`KIcm<$r0tkq*i6B7Aw(2ENx(8RTT&}=GPkY*dCNkGk}N(O7TyN+=x4HYhE6RK0-CRC^3O{m5IoY3bi5GPc0Ku(M;JApZ&D -g<<5eBMf+PK;eV0Xv~O1$RPq3h;zJNP#?|!UcLllMVKSCL8bxO*ZHgW4BGfPiXeRpBVdX0)S#{s0jp$ -v7;s+C_-m}QWXp!6rs~XX^c;Kz);gPfJ05w01&kS(gYGU%?nV}G!0-;8=rF%VAM1Xpi$E_07p&J03J1 -cz6Fq)<^@D*`UDFkHGf2fQtdE+Qqv9tDm85=z*5uh04_D{4ggcr?f^2i@kuoSO-fKmIX(+o!K`a2Aa+Kc|+IF;^;egjHJNo6o<9~G3rsD0I0pj3ZlfKj{t%mAZy{ -ha|u?c0zJM(ty6GZ?jp{uF}Jv9dE5wTBK0rJ;jD=~&qrjM_tIfzqb4K7lbgsrDc+>d+npM%`5~VANf63r5`sqc -RwE*Jc1l-OIQ@VANf^0~mE5jLKlteHoJtM%@>kcE!L@3P#gGq -2FCR`8C9>k$S0%vz-@d_1Eu34->y(Pw(;8)O2<{dU7>V*_jS8M>7p-xpmfa3?Fyyi>#o}sO2__jyF%& -MKWeW9Tjv-P`c@$P^#~~GL()Ax@9 -Q!w_i}Iud_0g>iet=rN=Y|pj6**Whgy#S|}agY27lE9&HRj>0RHtLFw2XZZ{|$pHOZ$C>@_rZZ{|$1i -IazbbNJnI~i5eq_Y$Zj5l{Ost@QaD+b1UIT=;cVASnoR38{hPe%0tePft0FqEE*>H|aR$*7u&4hp4XR -o*5jEjlQajx~3ipmfnOpj0brhEgq{8A`Q)W++{@F#x4n4KtLg_-80pSxIQR38| -}I2l#5D(GZX9~f`$WKH$)59nLw6$5%n#lSf23Z*KC6-u?iu28CSSfNz2ze1_@!WBwY4l9 -(7uWoKDlxlNap;VjW3Z>c{!Kkdw5sb>(3&E(Yq64Gy_@s0Lqq61}jLO>Bz^JTk3yjLzw!o;YO$m(3`t -BW!x{cYNz^L2UP$n?yHtFmAQ|WEiOC}8Hpfd)>H}+uEt>`5S26UDc1EUE5M%~np0;6t&$P*ZKE9x^q> -DWIeFzPl6W&)#bqhKa5>NW~y0;6sNz!MmC8{MS|jJmBl3zUuun!u>rD3}S1x^3!!K$7#W+Nlia6YSzXEM$OvTz^HlBS -qcVp&{OHGoeqqewbOx7^WfYBM$O}s(ga4$+6%#`SxXFznzewys9Ea;jG9%rVAQO_1*2wFAs98Q=)kC1 -p`v6@yVly<#w`s96j~6?KEbsIqEc#y} -ne1p_(;l&;bNrB%m((y^h;U{tAUdPC{hKV~qhjDnfLs4_mG%wSZ}RR^QWu46!{E;1NZ4xJWC$Nn*cQD -tlfGZ7Pm$O%xcls7Vh-Et(fFY8fP)!Kh`d+Zl{n2KZ($Y8eZ82 -BVh2xfzUF7I_PxbWm&tqn1Tyfzq+|XE16}!GKYVW)6&6#!{cbsAVkm8H`%SQlG)7Wi0g>j9SJ*p24Uk -WP^ax&_SV81p`JcTG?RK5<2avR1T&YjFN|G2BYL+n!zX;mu4_Z=A;>nl09h#qvS}M!6;dhW-v;gq#2B -osb~hHcO5UOwjFP!%2BYLIn!za9d1f$5ex4bOlA&h?qvY -V3!6;dHW-w|U5TC&)nR;e0O0J$6jFPQq2BYNbnZYO-duA}oP8~4HRvj>^4v5cSl+8O}l-)aEl -Iwklnp#!lpQ=^lr219lsr5IjIxOajFPLRfKjrw6fjD@mI6k}$Wp*4IZX-}C2L6mqvRbaV3f=r1&oq2q -kvH|ViYh+_J#sR$=*=FDA^kd7$rAD0i)zqC}5Pl3I&Xk6QO`nvIG<`N)CVmMycUnz$i8R3mBz_e*vS^ -@GoH0HfpSZQR?0oFiPF~0!D@XRx1XE;R=jW_r8EpYStGpO3nHLMyXj}z$o?R3m6r;$Y50HB7;$(YYIk -1)mflaMF&QyonOExb?*xprDlBrqtvV~V3eBm1&mU&zJO6`#TPJ2t@r{)sqiZ5W4TJZ&pQY*fIQEJ5(Fi -NfX0!FD7U%)7};tLq1R(t`YnkE~JYMMDPs%hrHC^hQ~7^P-?0i)ELFJP2<^977jZ@z$0>dhB0O1=34M -yWSnz$o?R3mDY~3JMsdW_+|c?1?PN*;j)jFLxS0i)yqSiq=#{5`jTQR?q6VAMWJY5}9vy-Y7$pb50!FFfzkpHd?=N7KI`0b@b&M@%0i)E4U%)7};ukPVt@s6uI_`Q2l#UH$0 -i)ELU%;sQq|+`K&@omF=(MNOyXpgsx~o3GsJrR|jJm5nz$jS)7BEVdfCY?_C13%g5=#HaP&6lTn)-0L#g!O%8zNWYi`Hz;ZHblLKH`p;XhbLaC --AwUZHes7wZ*D4;>Ur$Dgz76-w_qD3p$mEbA3Y?>Z=yjtyl^P&#fyS -re3wk1XrSs7=lK^<>nhX8n3HYE!d*JsGvBS-+l)+SIIHPeyHO)~_d{HZ|+llTn+R_3O!~P0jlCWYnf+ -{hFb4ETA<*=~zH(hSIS-)(oYKegjGuofb+Lofb+L9Ro^7C9gLq-82BDqhQt>ly1`)fYPz$tT!lCN!_4 -S_k-M^R5yIwpj3B!+@MsqeB7W^WjR5qZt|F*bbLZtCnz0__H}~NUB@_;s`I{{jM~(BUr$DD>b$Qfqc% -0#*OO738tv=Js6H^xax!XD=Y2gHwW-m*o{ZYmXkSl8ZECcyGn8twXDHRo%}_e_pmm1QRmXtRRmXtR(P -&=_l#X3$El@h{kys0qj(a550;OXgTMLwqeQYgII`*-(KAeB5E!Lq{R&2@H@|{W>dmiU -lsfM#7^O!03Pz~~zJgI|fv;ecTHq@fbsOJFuV9pV;wu=Xp7;tzsVBaIQR<1WV3c~|D;RYfA6Qo~N=@< -=jJl2XQw5`Lqy1FDD0R&%7^SXx1*6n8uVBCOtS1?L#^a@6)jb6bhwb3gWrLK -7eqtrF8V3fM%6^v4oyn<2FqO(Bhs)Iu5*bFKdr51PvqtpVgV3bCOtS1?Ll^9n|(YhJ-9bp3`sYzbJC^g9|7^Nn81*6m?uV9p#CO;S1@YchA=Qno%ae -xsnK4+D7Dcm7^OCP1*6nPuV9qg=oO4ole~gaYLZtlY91e1Dj20Ec?F}?B(GqUn&cIXDk>>3N?r2`MyY -FF!6g!>Y7(DN?r2`MyYFF!KgAme^f9^ZS)F8mGSwbf>C9B{-|J-8toN~Ql -q_sQEIeTFiMT~3Pu&}Qeaf6W7h_w)QYcQR8f6^QR>a7D?_wN^8bqnPc=u$Jik3h5TnY;pC>aX_^Xx3emSKvz>_C5m5x^MCdfT^Y4N1!=$b|7r -^H3Y*P6>-V3{*Pu7H_SJ+7dcb3LxWnUg)P;F) -^xeFU0y-{ciUQy0FEK(p?gyn<=!!}k$r*1eNgP)(iqbOqK{R|~kdx>^9X)$LfS -Xb|`Uo_8G?*8R{|0B-fY{vh1y^$x^UuXix6dYuAt)inmnRo56WS6waOTy?bobk)@Y(p6UrP -*+_oU|sc<2kfe^JZM+FPJz4Xbqd~9&klfBy(&Sx>NN=DJ*OdndCn!c0(zS@gL;k`xB`358MuOb4jQ-u -d=3`4f_#n%xB`8S1-OEJ&IPyve!da@3i^fT6!`Or5M7a(h+j8`JQy7Tx`B69WfW1?@C9`#pc`65p=Ps8J>`IvH4DQL|tsn) -dCJSR|`1UTrJ>WbG3kjt@$|6-25tNZazCS?|v0D?>;g#iv3H(Ktce)50!AOvxxhhr01`4VHkkk -tLNGSD01{F#HrW6YVlX!O01|RAHW>jDf-tt-Su^0^K1(w=xI2CZ9NfKcfP=gD4RCPxE&&ei-V?yV-Rm -73+`Znx!QJZ}9NfL$!NJ|@9UR=B!)&10YZ)Bey_Uhj-D?mW+`R_D!QE>R9Naf)1_yVqN^o%ZsssmjeK -tls#h|9-D?mW+`Zz!! -QHC~9NfKjz`@;X2OK=SF2F%~9TEaFHklm~5;Hcr9TFllHrX8#GBY;$9TGw_Hu)P8QZxEU)=0sKU$tPw -XNTs+$AM;5IHEH)`5+RqGq%H7f#9H=5DDoSo2(EC@fn-E5DEDieMB)x;NbBb&;-qnTLK3U=PiMQhXa? -u!NZA5;NVepWN`4Pih2SEkMSpeLXgHLXGKDi#wKe;LX^fPZ$(0u#-{LugfNXw=?MvG8k^!165=#AqUNR3U#jf6~%P0o#kP>oI2jf7NKyN6Q9z(H9!65=*Cc{mdCHa3|!5&}0ixi}IMH~NTb -{^Vd>eVtDZ#?{yPlP&z|G^hR8Lolg#i%oqvb8*%mivp}= -=p9Pw||18k#-DZVm?=~wmd$(DkS)YxO!4cQzd^c$JbzY&_D|dxvuiO=yy>eG*_R3wMS)T?G#SvGpS;N)N=huNJRjN~-ClY@Okd9x=6BRSyiIgOb6S6u&{rrTmj!;8CA+00Sz)y(l -i0ll*49!j?%+TyBpP|{;@CMCV1<33O-N~L1+7UOu_mhL6d)X6WJ3pVfTuk!@WzRnXg`x;Kr?6osNv)9f9&0Z-JG<#i4(Cl?FL$m0B9FM -p?2S%QnCtv52gE9F!pB#+I*ZJgNAJM#@9PA@L@`4d*J~aOu16nf8i8idJ2*Ib#esv9D*+swTnXUd>7b)?;GIYPR^%wcKteu+gfx(lQ6V7?q>pHJz`?obYJh{Yb{iyug!~N&ks -y6U^92sd@{kY;67oDGq=JM@4+*g#A=g7fE=V7d9&m8hCt)Omgsc$>(I6pjL_#)5AJKaU2j}WnL34FzF -Em#l2b#72ARr`UyGTd~3HdG(B0@qwi-e4jkkKL`B&3h1GQmNG93;eqgi;O?azbL(Ur7iG2{|?rl0rh3 -jfAL>kY^(yD^X}t7^KOOEte9qmhJ-vK38^7 -{M4G`t*+vp_L;8pmf`hZuoWa4_I}$iJd$$1xXYVcGVDT;i4i@hc;9&7C0S=buQ0G%~@h$-l7Vi?^VDT -;i4i@hc;9&7C0S*@L65wF*o&XLO?+M^w@p=abi`P3iSiHKy!Q!LUa8S;eggB8XUZ>z-@j3+u<% -LN|6bYGO5+X&ScrAm2#cLTHEMCjtpbRkyu_95tmchZ|wG0jxuVrwscrAm2#cL28ELwvI7YRFOkS@|k7 -L7o&Rvhw0`bgFYG;75nVWf{#jX?A6<3RInJku4VHy;O@U76sZ-B}1NiPhBt4z8vHIJlYx;NWT&fP;2 -%@;U%G{mW1?@u*(baC9!&+2M6u@LV!uw<%I;3&~ug&B22=*FJzd6@>mi=OhS -Py2`MI_M3#gYlTai}LXJr&lO-X@BoxY$kYp0}m?6p}>@h=@N$6Qg31KForz0h#nS@WlO~S4-gqnn1XGk>(yUq}664g)C00-?uL$FEMhlXU6sD7vhIA~`YvQ47;u -^QlD4WAvF^&JS}O+v9V3Hc_WXBs60oP?5S5)w{A&nZfXI0-$eC?Vq{^sJ(Ukdsh=O+v~^_~}E4ISD_0 -2stNV#~p%B!p|E*(n~%yAO8BWi2to-z_6JEQ5v -~?+(0)i{p@bg=gfNt_LlS8yVTUB*P{IyLG4q@{$NmWWF -UJ1voy5_Vc5FeU7?L}E(VX^F^`u+tKmDPgB2LQ}%NN~ETQ{g8-F3A+}Nn-X>{A~+@NNJMf<*nf!Vl(4 -rD*(qUfA;MF_-a@3OguR7`PYHVqk)INF5+Xn)?Bzp(O4!SX2$itE4jC$87aT%V!Y(+ZsDwRlh*1f9-j -JgbcDNx(CG2oRl1kX&hA5S=!wp#~p=aqNgsFrbZb(xJJKPYb685tpPbKs`orFM@u%8WyDq$ZQB2~gZG --RrTeP{?(3H#8HsuK30Ayy^qLqo1g*!P8Cm9Xy%$tq#r7ot_dzAt2}gk4?;R|&hkkggJTc_CgU?CCz@GtgvE4*9RQ5BM4b5VgC= -pR>E!{q^*SAK8RZhdwY<#(nnT}K(jtoB5|eJ?SsgbX15PASDL*&2wiDPa!E*CX?FV{cBR?vgWQ#NeST -`&gb^Qk#)xL{Qo#uh -8sTtrUkMF?bRb -`~L#r75B%A(ExpYlKXeX0H)KS(?2@NM&hCWl4x-X?7nWm!;W#gkYAYV3vermZoHuglLwgXqJR*mZm6{ -gm9LoES7|HmZt2Lgm{*g{6xVF&3<5DhGst?Fhg_oxuALTtDsqX0zz7v{ZUA1X?8;)rlr~Ygq)UU?-PP -rnj%yZl3JSGP>5=2c0(bnrP=$0u$HC=m?WgNH07uy#I-a#osiek>~un4OS97ni7m}eCq%Y1JDrf((z0 -jp%Bm;S9gJCukHfPUfl(ny}AoDdvzCR_F6tU*lwQplY{N%c|SSWZl3p(gYD*dK -RMX!@NP%hg_8grrCvpWSC|b3Zh|}T`0(gX?CF?9H!ZYf^?W>KMCSt+Wh=TVQ6+mfrIveAR(sN -EVw&9%2#INSM<6Ap*&TtHm}Ykba$=gD4+x5Bc0M2}rrG&`sF-Hw1F~Y8oev0$Y4$lFEvDJ$fVh}u#{% -+VnjH%WjA`~2ATg%dSAfWvW?um^W14*h2#sm>6(BXH*;jzrm}XxAa$}l(1qhC5_7xyGrrB43=$K{~0k -UJ7T?7b^X?77HJ*K()kNBA8?mzNln!Eo9kZJDzBSEIQ*N+I9=3YNCWSTqs2$5;-i6cd(xhIYondY82a -%7r&;s}yy?rtMVrn$R~D4FK&HnL=zd)Ww+Y3@@aO{Td|jX0U+J~i@WntIR~c`|)u)5xh=J?M-)nWi3e -MxIPl4>}`Hrl|*=ktfsCgU-m4Y3ev<NscQ$uxDGGxB7b`obA`GEE)cj69j94sS-DOjCz9BTuHO!<&&O)70V3$dhTSpN0+&u6`UkIJi -DP4;`BQKy+|$^%K#-!Rkk%gM-!2L7R+C)28*lMW85!<&&O)2bhx4i2irn~^8e)Zxv@lW -FSkX5`7V>WTsftLq0GtgaStuzCi;LG@}g@?@HNwHbLbO}*NTJej7>Y(}0;Q)f0KPo}9en~^8es;dPYt -fR+~ktfsCbr4T6K4*B3Y -#o*i&7JUifEcr}58;nf5VhUW_$49^!hs9t17o=gj`9dJ;OHp$47Y2lq891K1A8hJ7;yz_&D;hi5G4Db -BlV7Pw3!Em*JgW+lc2gB6@4u-1*91K?iI2c~b;9z(ygM;C<3=W3ZGB~K7W=5V&Q%^G^Po}A-nUN>c)S -b-8lWFQsX5`8A5g&QRh>u(_QZ=$*Bs6krR(CQZPo}9mnUN>c)Sb-8lWFQsX5`5sXLjGC)3oO%*c~z>P}|l$uxB*GxB7bx|11sGELpdj69j9?qo)uOjCCku -5=U5DV{?y3U^cUKfRxVwJ9!QJ%(4(_fEaBz2RfP?DQX5`5<^=dQnWSV-l8F?~o_bver?%pN9!QHzAIH -=BSMxIPlibzJDOgmf&;NanT2L}(&4mfytcEG{IvjYwuo(pjB@Gb!k9=`J6;NkTS4jx|b;GnWKGV)~F; -rRjwk5zjMICywZ00$4xDL8m|PQk&$I{-L%c$UGz!&e?0JiG&dgNN5UICyxygM)|HJ2-fFb%TR<&lfm& -_k4kacdt`$@a}aA4&J>g!NI#%B{+EZyn};x&pSAH_q>CHcdtrt@a{?g2k))~a8TXkj69j9ZgNJROj9> -GBTuHOo1Bp+)6`AQ$dhU6CTHZyG-XF*`Pjx+LPcJ+=k@?>^(iZk+L`pBV?e2( -b)AWvpj?>Hk*W>@bxBTr^mr#K@|W>;T0BTr^mUpOOAW>;T0BTr^mUpOOAW>;T0BTr^mUpOOAW>;T0BT -r^mUpOOAW>;T0BTr_(dQLMm`#NW6KKwh-ELI{-HqBTr^mKQ|*!W>^)(IX733 -Fn!P6!Xx_923p9I|DA4R(qCm5Ei2}{8-U7{`sw>dkd}L^D(p;cfe`O<2W>*h7BTr^eyMG6o#ct%u?8$ -3qfo89r1)9Bf7HD?OFVO6oKRLK(*Zj%BKB6O^9Ne>O{^a1EUGpag_v{KkIk;z6_{qUNyTVTn?%5T7a& -XVC=aYkbc0I4q?CM>i+0|R2*_BzL*?VS%X4h(kX4h(k=2aC{q1n4=g=X)W6`H+6R%mvGS7=r}BTr`6l -Rq-@WcIA;MV?F_Su_I8&A$W9szc<-?CQ2>h)*j$@G!&4LR~;c6I+V@?>^(|1^(|1HoPiB{|AR -|v^zj^Hp4*u_t{tr+~0|XQR000O8;7XcSpzd{-KLY>&*aiRqA^-pYaA|NaUv_0~WN&gWV`yP=WMygr`7Bx< -#BQ3o|LJO9VP78K5>5Nq;Isha$R|2Tdw^#B198mztLQ(jg=)`6BK&#hUT^38hz{^)+ -o8Q!q&m1!ZMRHg@1;yTdGY(nb2f8m+n9hBRmP6|79%jrO9Pchft++v=dZ&wxv6Hct2gzm>rbTJ!`h;W -?rq8%m5zCjJ0DDj&>pDwr8h?K}dQOLPG=ky}P%>68UiU6I+J}y@|S~(~gWCGL~Ax2mP4lE&$sQU6aBz ->VN^Y^mVj&m@O9+Pao-PoFwsd@py|`IE^gkcVLp`PDv1 ->D=W0GAshsgLDGK!BJPdGqs3!TKO8NlgEXb#ETNd@ak3com*Y60`7)W$(m_O&GM_9CW?nM+#o_{#rGb -+D~W)M4F98VNFRo;}39yB`uU-ig}bjX2_PFZ9NFtXnCvt<-!%_V<}IWG08q5mK(hVUGRInl-FG)=w(sWv}+!M>b_Y --)GMl=gOZ%tFwz6N{f=u{ekw}o@HNIO;? -}IR;;gHBT_c!Jc4cm4Z* -nhVXkl_>WppoUaAR(CcrI{x?Okni+eVW9u3s@1e>mxm)?#LWyTsX~PLU;BSzB^Ra^+ku6$>Ik32Tbb0 -iYG_uipVcG@j`m(8^_fdv7j;1_v`e{qpqF4M>5XJq!O)KOMa~IaO~?4v$VRj?_iM&>@-d8RIJ -Gj&$xH~A`Es>5QQsk~Bei@)T{W$M1)-K|&oEUk-D&6at#s@2TR+284xo~-gZcPn3JpR;9gpOvaus5&6 -i%|FfRYL?z-AT}>nmHS%W7iIg!30CilvKyb3Sz2dvb^X{%lv|}`BkTUrZFO6#-NQYlzx(c6Cn7j~UmY -x$>b#j-sq?JL%Fo%nv*fT?)n$IYc4qEYdoSFGQg74plX{mgZ_4~mJy%Y{TGfSm_gLQ+tBw86Rm=RkOv -}f{Yl||=R8=hM2dCKg>akd>S-MhXHqWb0ymLgY($)MAMd{Yx74v-Y*bJ>#b7xMYb)A)WRqw-Br|;F9t -a6&FSJ^5noi*>)*UNn77Qe}7*{aG^TB-YHthyaMb=)X&u~9@F7fyWZ-S1VFyX(!~pR=-ZBg*XSez%Rp -iE^>tP3uN~7tQ--;ht0aQ7v6G%6{d3&;^5~bCs`JvA53m?!*anhCVo0sq0Lwt8B4ePMiccSN(Ew`TFe -rr8+qMpnf?xKR-CV{P4Y->pbnQy7+aH^1FKn!MSo)mFcQ}bc#CxZ;#FoU%M3tKb^cex%|**e|&OzdUS -E2j?d23fqHjvetB~E{>{O;diVbP-Py&_zET%i*1NcIX2{9p;)N4=S2$13vpUU}RcHDK7v9P#xSXro^m -FFIJj-&2D3!VtxqtjkFc{)sndPF^q|O_MjETBj --!C1)-mjdtJ3W5fahsRvO}a{zc|N;MOI2n6vCdXAXLEYpENJXrt?#a#7oAO6I=fY~%t5Kl?n{@+E0@u -E-DY6B?$IS)o!u1WquXO~SHE!4SnT}y-b@?m)0s>6?AKcTpmuj$rmNj(qPoNMC;tV9{>n1HC|~bQI`f -^?aXZp|TK_!mk8Yan2W>k-U+LWTGd0Y2=Slw+Ka+kt+fOk4SKXgj|3vqfVsR;kAa(-jAOlHk+?)UP!t -u4k{d*1r=6B9X;FH{y^wFnaC4Dq8lo(SCF0M`dpx|H(=emaw!7l<}bSI>M>E*EK)7DA6XYc0K{-40wDJ%Kfi>{CCU!NaQ|?d*nyW^hsxW -2WlS`bgYFr63}iF!Gt66#NN0g-8YAw$*pyXOAi9}FV*8GmZO;%hj^9>DtN7G|; -$N -l~vjUVwCz%MIiB9?2AU_cYr4=29)jDhK3z4YL1FyDaT8a{Dfnx=sqFuM)tMg(i1)LK7$2w>DL$dK}OE -Cx*|S(sKB5pU^|0{#RBgSR|J7*0MXmtri~WP%O4 -mtlj>aVBZbNInPy>+67MvHoOomlXgbyDZ%B;#EXA23muLbS{YzZAoA)fiUq&38{>jA5(_)KbTp}tJc3 -tp-+6%HdjUTS>PzGP(C`J!el{JEYmR{#|S@QWzqh=+P74mlldAvgBW0m$vQ@s`{c1mG(WLV_;ezPH-= -PYiHTNgai6P!2Uy#qL7;&V?QbEYZv_BwLNoZZ+_%0C5x^2t3~Ar`BM2k{cI?+RG#ODUgU(7J))eEfCE -B6KSr#N%@vw_M=)ma99M=FXEZhlfjqJoofHeaa&b5ysTCROBjWIty>>_}%>|oJn!NpJO*V8EEYDO%$9 -McWs82f`LpB=$L@(e>ADu98*O`}lHul)oehscLr7%4`-*2gwueiFjYCG#V|80%8>S@}R9C84jBFVP6| -GuDlK)36mMeK4Ca)(r4;9)YSFCTK7jfg~Y;#mhnhvZqq9I3bK}d??Ik{18Ezw!V{DzlsbX8#83c2t*O -F5X@*HIg^T-_E{y^^;zHZwPQP4odAvPG;a*$~lWtOuRTtt2gwm?LER+x|8CQz|{}Wu+Iw)8ff!*T-DPqR$>3$bKX8y@!pf^(C{cVJ)r*9ky%0W$#33$E}cC2cYBgheC1;h>{_?fwb%z0`J7r53^9v7+BH_zO-KQx=+4Gur0t=epVYv -Oh>#OFXZXYnVh+LRlVs#r#uCQgf}K!NW)E^B-+M85Wkdh?C_*df|=Lxt7QEG -fYpo=hZnE8lX^!!lKMD8O73{ao-KbehY!ojco;9`7b?h|s5%GiN{L+Z0&K7!MN=aKV~5M<%A!iQLAw> -(?0kO&cIYhVyb%=oHCU>EKl0c)XpEJ0{%cEfAM7GrmO__zaGFET-k?8eG&ga?qO&~MZ{Sbs2rtEi_2q -qH!Ah<&W?qx^_n9RYvh^JfB>j6opY2{JY#WMb;ER82rQ1HWb{^`nW*zoqUcVo3zPO+w}e%ZJQ*+A$Uf ->N9q8XJImPtaKEaz;5(V0qe7t1&KI=Rg^k*rwTgIpR3HG=6tlBLd3kESK9>m5V>70>sCm(-Gg0xH{W7uGWv2QH -ujDd^&xR831`GcE|wKPvbZ;*Ju2JC|eh9l6DjYJ-@e=}FmyAZE4~JL -!<$bl{HMGb7LX*uArSz=h{@>q9ZN5qRUGz-icww`bWAj%4@nE4TmC*xY79F}N7K -cktkKcA9O*7`3VR*a0H#f&eJPkXTI!wkZjMQqGap+gWd0FnfBU^EheGz0r0w6s7Ja-;Q)rK^d^{o(4! -uQxCn4E~e~xhsakNBqVbAq`C(YL$rd1bnMuInq1hTV`Dh(?~KQkmij2dV}>pSpmgrPM=u!4Fos#^{2r -^cnog@BEP5^2sGj(@y}zw++d`zjto7+*65QOq$(O7!H!zE2;GwSD(OCn5;1|0Kzd@VH9T>`wwBg1&Dn -1zQ1pkQ32hHcSo}M -ar-yhYl*K)(JSnTV-HGhKnT5J(?!q`k3 -QqTDA!uTT5JtY=)BqEX6NFMTyZL<0!M;SnA1kkcj#gGhHhd|+w^}>n~Vsh*yr~$zFRQILk!MacGm37~ -SK4sxUqon3+8hhY_ZBOD?XKXN7eZf8uiyiJ2fqNtH8++zJS=oSpk6vfF+S%EeEz_z}Kd1NUDyy=??xm -Iot91ET<<*PUSEujaPS1{~hXWwb -y26wX_+nE;)q>yqthzAyI*E6+SiGG%vbf5oA>dGOUEntU0^tY{qu!t+@!7_>sI(|U6##jps&}9Me{b+s(C|g`+nA8TCr$eg6sU6&YZ>*koJ -(NCOFNjY(K4v2X*WIyKCMp+^nmb;U;FyKC9*ht=%Sn!{|0TG_S4hMx37aW%fBQ)>W%6D0;H!Ud6jurZ -pII;&dPbV4O;}Gg)^^3(WG_Cw5rP&- -3xO+wodAXn^zz|UQL>p;!fM)7Y!l;z;p2%b{mG9KV??0%he8O+PG#DSQn`q7g%Rt7t*qM`FA#-w5CFI -oneovaun1At$j;!ee1rs&Cmm_%xYhqH~^(pHsGakK~bvup&*2HI6`<~Ius3fYZruvHeFmGeGs+y>JZk -??cP338iTaPmKJbMAE#9Z!rQFO_Lcf2Yv0~IyDf^UefRQaxB9lAsa}{Lnimqc-f1bgGji}#(Pn4s(ZP -u3?blV_TuISLTGYNTyGgLS^i!tp)-LhqdE=QT*Bd0b)lSx9YenM}VY5gbGJwP$6PrutAAGJYR{A4# -(tpn{*{Hh_~Y2lL&l9!N3Na^i$~UOEf&q6%%!p1*r~SLE%=9K#a`?2-LS}RhLkZVF%%Hz3LTtC2|vvJ -u^SO3JiODe+lHVT(i@$5U1sU0EgBCM=i{gh{$lQrLHAsJ?EVUhxe7aEEOhPP1Lr!Xn`WzGeRDgVr*%3 -M@#~^k4qoaAbIiS=1`4)tICthP@_CcG!w!pOk=8Ff4(?uw{^#|E9v>XRHf)wIXY1w_{Av*62(?xZMfs -`f*r$C{Jtprs7J?mHs6O;y9Yj2rp^dKg)F1d>LBCPw>AR+*fUfLKN9$edvGyJEP472pO5T+S&-3QCjN -0RipHD7WYrH$sGH){PNzLlok>&2*KFu4Ls&hhvHrF#uSLt1oLf>4xJ~_UeI$gf$?EW`LxlTm=NL%8HV -cVwqhw+E=$9?(57Gk?gyMKUSkP^a2=kEc)i`+3>^A9)ltzx6;KW_R6$J{sdEzMr!w^19KfSp -k84i`5meDwbC=Xbw7hyORGf&l4J57L8RiX0z3B?YpjlPyFakFK=;Q=#nK6cd&^k4Y@sr(^j*KNZV=1y -D-^1QY-O00;o!N}5)4N@?6*9RL7wm;nGO0001RX>c!Jc4cm4Z*nhVXkl_>WppoWVQyz)b!=y0a%o|1Z -Es{{Y%Xwl?Oo}b97T5hucs&rdjK1l%B-cUWXrZB7zSI*SOVikcDtl5L=CO3c6SLR%lH!@mSHeE!#WJ> -%)nsweVgy=C&-#d(33bLDo)0&s0=%AXGCRob?Oi3C@Ly$WaPwmw+DVfpU<+RAX_hSPW -UHdgwh8#Ygg|J&@3);ETy`Wv;u+4bSZsCHtoc4oDI@WQBnDE{XY{n3%(N`H0Fo~vq&eYKwqHwUA^-Tn -A);lA48!Cn2;3-SL4`)aqXt>SO>eYKs|{0f0d>tB*i$PB(pT9X0(ioj%muW2|WU->#|O{VG% -5+(V{H_1pyCvOp$eC6Au6EY{iCNLTIZwO3A@>>FvtMd+7gk*s45}5S;KIw!^><1bqeSApJPO`qEk2Ku -X=*MJQ>l*%q^bu(IQ!?8c{fzWM;Lk}PEe(G`TI)f7Nzk@#{1xdV)bQ5?CZqm_z)cN*OD0vL-;s;1(eF -tYB$nT6cqu{0mo%y;dVC+bSQ@>bbgb9d_yH2PzAWR*1SXw4NMJpAultW*4fA#tqt-9Y>+o#gS-LzAaC@&7~~Cjn!JG;H_&PF25OKu;A!#(`Am~H&}s4pnvJ{x8{`c*8+ijZ$Q!Uh-hh3OH{e|4Em-&B4C&gbJFrnV?(1y -S9i~$^S{u}j)&_M0HmDn&7}Sl{*{Bvr#u%8`KThpl-khbptl28((QqH(F<-Zome012( -7|utDAU%3RcqzNe`hs6pNM#%byXYEU;|gSr9d(cS1H6Lq7pLEV52>TaY{H(F0qHyUT6ZgeqC-C-(q1D -&RBpaykAks8#E*4cD7;9R=fCv`i~-GW{(&amq?R5vcBLEV6}scs&1qqPs}=BaMLxu_d(F4bLn>b9tEv -^J<4BQdBOtus+KILU+RPPa_(g?Usr0?(zo(Mb-~jaV|N?sV!-w@fUm8(m~m-8{?0iRx~oQ#VFpP&Z(M -x)EhQ>P{>ZN~7+m+oxe-QQbVl1f9&0x&h}hOn9mro#di!i`#9XZYPEb`p!n(7PItRKQa4L=qmOL -VZE?FT)Sd2jqwzF#1I^@i`%~Rcs2g9Ii@MQCF6wsUb|-mC%9q}$8%uDG)QwK&sJhWfF6u@nKD=%Vbpx -JbqSB(eE!55Oy0J|1Bq}{pw+q$ng1XZal@{vesBV_m%~Rbzy>3gQvOLr+nDOEaF?y$NpI$fMY}8#I)o -n3MEM7OyFyX0g9(6l0Oq{502Zo8o>t>}XEz}J-Q;i8vbz2M*be%(WJ1|UkD0Mqg-DvGabvG00CJeX@> -h_tYw5V>L*UeMimNX^C?ITUe^SaBErbO#pX-bRgc9Et;<4mgCLfvSbDNTtloL_mMB~58j-RWt{bn3RG -Df1g9V6SY33E<+(0|94CQ~FfhE$wv^s&hx(xb!}}ZVPquyly9k30lw5FaeyavfD!4XuTMf-4?^dUz!q -MSa_NeaE>%3%j*UsK%scvnU5Kb#9P3c5+m&fboscv4HlIL~v3=<1=TU2)eX-b -yrW~C`zsBRb3jW6_3VZ!mcfo3vHb}@DHRJR-It|!z@$jf_Ow-f3vpst%|m;m-c-A)V>+=1D=ZXR_PV3 -?#=n4s%S)D51`R@a@bx`Ae+ZhWJM{gh=kOe_^9V6R+;3Eb6j~6T`$wn$n}!?ZPktoQJy8Rkww@%VLgpRhMx_7E!;h|e%J5k*{>P}bPtTd$y>MqT0${nb>OJ5wwOH=wR4ipS?afV=us_XV?m=r+WJj2 -B2MtCQx+hUmP&@`n#!^8!3JE`ktZG?BAx*en`OHbY9sq1cN)lHaWXPjZeOH=Zwo0q06J$3Wyx(i5CdQ -{yms2e@+Eb4Zkx>?lCQQcs#;wwyeh6&(oUblt10p~MJ^vQvQGD@~3$3oo})y<=Bz{OXXlxIs0kGgRi7 -hhqLPTfE~oE(U*i$1ZNwjpZflLO(4``D5LIM*2_XkFfu19fpA;f5+rSsug0lBVQQx5Y3)>p5N47&>(^Ypmb$d%wT2!~iFyT?RMRlX~9MhD5y->F<4kRQ{6m?tDlsvGgx^Y^+fh6(Fc3oPmey#3>+EQX0ibp!UXC5K1dPR{Fgqq -_C+Q{=WTDou%%S=#fu%af*bVwgCgZj0*nN!={3n?>C~i>@$nVweD)SDG^2FxeFqCOp;cBu&}UX-abcF -5*UbUYfE1uNzSsVZ%a;kn$kkuyfmeSy3^B?>BWJTx^8rlr8qD>O=gG{*dAx3(Vd93mb()ggkwqQ)%2VA=sGFy{0T=&*GYfTNfYlq}Cx43AO<5Z1W~uISQ1?zXObVdxmOj -IT+yY#A?XPBT9FREKtn2?*vyXsyr>PG8|x)r=*seAsa+ -XZ#=DooN16QISuCC4XqV|a@~-TEy#^sZSz>b4jrPP}d&bptM*x&c?zE&r4#O^L-&874bJb))qhH^R4d -aUi`toV{wnNrj0eO^MdIiUZL}F4b*0!^CHCprx+cQXFWhFyT?R&*DJ99;h4W+^8F9;jda?87Aqf8*S% -B-GEC=-GGZP4s2_$o7@N9kDs!rZeE26kGd_Y+X;0$@wzS4ZBgBpG^K^QceCoYP&Z~OQ-ulZ_$do@qmN -8!N}lTWXP8*1n`4*&%~aRTqi%GvE2+Ds4}B#Iz9`l0gt~c#iBIZwqPls8iG{j(TXHJu&b1|nr@C3x4L -BEdr*DK$-;!gY?(~xbcP4eC6Cc#=vp7)uC1hpWk1z?Cq8nGfv{pBdxdHpIx}7jL;7W8){@6EDq6{R{T -ZI7|%ndkGfeGMDZxyy2VFK7-Zot`&FabQx+(0vBDbtTIN#6$#G}93#meZ#I8_W&ZU~a$$a|1S*8?eFL -fPFAG`p(DPdNU7tu=`jkaxkH_#B+JsB(_M+~9Z21~LUgB7H}CK%7cW|vzvxa+QhF2J>4 -#4N%_h3Rj6PnpfYv+h$k#wy-DLe$en~~$i%#93-AsOoMRl{N+hTR2kNK%?j@8XNt(&8|ElElqb@Nm=@ -7zEqs@td4tq(9E3vC-GzE;d#F?Ttc+p-_WUy{){bMyR?@+2vF`*D0Scc`hGEUC&b -si=ElsM{jC)2W;1m$0mEi(dlR!z*%FMcu6W5^qJ_PIkfbl9W8Zg!i5Wz+U{4Rzlrm?NokAMcuoTx;>T -#daN&59MxTbU&6~$Iyv#x$t!Zggt^HgaaUi$V{XfKoboWYWjl^f=C*8t_sQJ5qQ0am>MkR5m)^mNtQ$9msFyAVW``(A16IY>7u@bcl1Qs+(MQ?|zA86MO;GjgeH;twyqN)Xgdl2P!lLf<4LJ@}w}rYbs=ENI+d|#w#Gr1p_Oc6Jzh;46NxteX-~f|~ -x+~Q^C+cP$JvILRw81b(2e0)t8i>xpDhd%&j_cvmeJ|b-Tz -?TF!g*D7r0Hx3{g7{zSJWOKB0^yey?p(e0DDwdN)lr`nHGdgiV)cUI<}`+l57sxO)Mp@F5ZFDcJ{oIv -l#A(x>N-4%5&40W@Tl)U;97fDK%U4q6Q?2`18x*a4b=YM`lc{agYM7NWo?&PJEbiOO*u9$n#nY%2adq -*B$!gMTh&I&in=T6#aTl!jhgD$SMp3nn`tI9NRDHw&W;zX9hZX#{zF7rRDe%i|Y1D-P$l -A@mH$5qVC;E-4@l2o->t~@QyEWVVGFzOI{ -hsQ{AkSy3gIXfyyIR$#$Jwl4HD`m5mnS(QTOhoZj0)6VVGFblr9Vti`VT>b#n|85R -wPg4LFx>>5*BXwK6ZnQS28*q-TlOQ-b@R -@iVx=k54HJA}jsss=b=^GG%{zO_qPlq%CQb|!C&ht5a#lC(r#kVqqV9#EZj0)6u@RnSm{=-ISkygt!^ -A?}-d>Qyqi)OLQx@vx6$e^&Q}R@|PwH;z)2HYMD%D+4_kvTmKf?s*{0tMoc?=Vv)6@;rxnTm-hhYM^c -*Dd(-GKAGASW?Ql7EqK#oZNmSKO_pwc_rIyC(xI4R_zWXU|pf48&7#+uBP1j=@@grFQzx-bU~AsK2pU -8{OF()m8>8wYA}>);~Yk9MuMEwb4dzur^pbQycZqkL2g$Fc0-MHU_;j{U09hkIrqZNjSd1n-|WW8m`u -^SwFXSdUUQg8VuL2RoxEzo3h_i{ner9Y*@QzxUnKXCz{zh?8=eS2;>acsHMX?2%d%Li{eeDi_hw;VXSeCWpqjxXPOZ28#n8*e&Z+h4mVr$PK0Znf|{s@ -Erz6HKGQ1P!OraDq0b(Z&RAPNU5U+L}gN6SO^zwkPP)G`ciFJJV=qf_5o7QZdNTnhIP~pb^j -qYTtUhtp98T?HFa_7rSHsb)JgqExdT8c`~3)G(q{^W89_RP)`CQ7R{)rmzOV{zzd>g6&mUi(pqNtWB^ -#R@f53{zPFNg8e{YU5)L%dhg`EsFQZrsCy+K*tH6yar~*mXdHj0FdD~o3ZrpcuP_?N4GN=i{7_*s4&| -1p#oFu=Os&*bonUI2wgQ5wH7XA{0R|Rm5KOJkR+C_AX|`GfQ|q$TCYV~3ttEn~71^TKW1qsv^|<=a75 -C8V@fQlC*JJ5#9)G1UdOiMHVR0NwOB3jTg5of`>XCF%L2(q_?gTodAhC6>uA1GbusDb%7 -3)okDaEF_y87sk6eb+9y86x^k<2tgtwSCH2u;6eNtoj=Hn{MqzOX9rek-RgiGL>S`p16&A;^ -)Sf^`6coqMRTO$uL2(Ej^}%C`)2vnr -EDJ%}5qniD_g2Yu&-+8-n8?7yN_5gp1ix)BBI=AtYl^^Y%{)qf6%rj@jzYLGX -TYUs;f`m2{4YMs~Qe~i4}#l@>77q)2%D;E`VZDspwXLiB+Y>eHKsqI2K%`L;=LHEUBwG1SXbMpgz0~P -y~Z-`FDVEFt|4$2*jhmtK!=PCT?)`%@8CqR~V><=KzY;g%x)$o>l;eS(}kzl3!VcF2`HdAN51eK^AO_ -=;31ic7;ge^klBdw7VsvSkQi?R7m?PJENEv5xCj>97ULb@BHnruZ>I}fJZ1lWL%@6gMHRMQaM2UG+bs!53M2P#4h)f7Yz0F{BN35YHO6=61DCp-vL -KA_d$qKANr5F1DYJ`7X@*gzie5uhTx22zRYH+&%EM%Yl35j_f2#MZ#K{T!%>t$~Oi0~*KHOlA!xXdr| -~*uX?Q4pat*iFg92$Z;ZyCjp8wZv^oaK#{b>xSj?WN7h7O$|wzl2uZ&FS%7g|O$7TKz&I@Y_JBni2p! -VI$Daon$J8|J(LiXC7B1q807XO?(n|p2h?NX6~K!}nChV -&Xhu?F!)uLBf0XH3W&07XRjqBjA?5jFAgw*ZQW@I`L}j3dHh1Quu@#7WCAKtrKU@QWPwXDH-J3p4)?K -%q}Cq;~;|h>|#e2Q&_;jnBUaP^`P;()|z6IHtDYoQ6W9v@rJ{03_#LdC@hAmhSlp9d-~6x?XR5}tesiyAG|Q?3+who -e{^KH(qFws_9m>|&HiY4t#`J+e{bB)^`e{WTYD!7#?{{1nRC4}@jo3rw|b_xG3c$Se-R&C9u1d=8!P> -d<+Hu@{r|uBJKg8-$dU=-$ma?zaL*3- -#5O0{J{9~_`&f*u%E3k6LD`#9{l`~#B;{vOk -@d;Kr;}fWI#_`y!oN)zK&iGY1obkl@P0T*|fCncfW}ke%crqrx)(CK7b ->pWsEXRq_jWq|;P}ISTyET`aM~v>x0Huwh0klcYo}}Mair*yNZqqH2Zg* -kt5scVYo0Igjp?1q8dkJ7odEnwOThnL-e1V -0f13PD=lW(r|qc^fGNX?dF|1ZjDjDFo?wn<)h8c$+B%X?U9{1ZjAiDFkVFn<)h8c$+B%>3Ewd1ZjDjD -FkVGn<)fod7CK&>3N$e1nGItq!5GvnMolC1u~OD5DH`_g)p%kfFgw;B*;t(A*4V1k`#i_ATuchp+RO+ -2xQN3l0uMsoXr%1kRWCXK`Ib4g&-62W(pzf&ZZEg_ApZjG97QG5E^8&IZ_Bxb(kpx>3f?g1fe))QV3F -Sm?;FIHp~=)biEaZ6oNFp%@l%=8DHGbw}?6}(9bK}d?36oOC`G=*@l)kWp|-1iLDR)+U%UN1V@hSQzJ&E -2(L_x}P=O9KQH000080N_fRR!Ku!;hz@(0JMMs03`qb0B~t=FJE?LZe(wAFJow7a%5$6FKl6MXJ>L{W -ovD3WMynFaCz;WYn$7~d4|95uVAINvRg|bK!OLg+t!v8#kCHpWY;~YWhpHzv0g2=T*{WZbuYz{729=` -`jps?kM+6rA$DTN=Umr*=(mFZ!M~&!@O_9E5Z)A10_2c8`4a2VXn=PB+<5q4Ft~5fzgXGqZ64@6;BTz -;2M5kw=nmHW;eoBQ>c6)9;pU)!)*n=Q7dQKZVdZphK2uwhw!>JhH70F$e$6@#cd$lp8p}Upn{;FOIo7%v%g-~J_5A|tgzezZ*`Bmw`9;=AJC9sH2VvHB6 -~gAL%vOlIf9FPY3b`4t?|CbMJkC6ie(U$JX7R=;L@%^H -8hj(V*ACRXFY8(odn_-KuO!1f~UV)Sq<$47khLpB<*dX06#dh^ -wj7T7kU0$hm*Oz|x}hA#?#+tBhzXJ$b}fgK9Ij9NFbAOJu;sAjaMVXTMpuf%kPY?2*u7~uT+8M#`pCm -!5O)d=1La8$ql5mp>F#o(pe5$4qFaKeJoopA#fOSlEYA^@Wa_028?oX7+oYe41`YQhtc -)iIb4f#35K+VL#6o(*W%HABJ4Ub2^(3=jJe4=i@N2GnF4kC)02kedLVAyzP96@kqt0sq-bW{qO?5)~uIHfR%I4B -@{`vZvu(=94_-YT_L%Iz+vNa30!(p$#SZlt7LdNz@#8_Ak -0|5E_u#iiX$>B0{i9$GBh#yAZQ_Wi|^Eq8MhYNX5mz_%(6hfS98oG#9 -X85$Or!+L&Lm_KZeAI1*O&=2d)m%t8Al@ALXM&D)R!^`A{?Yy-~7xVGM*yJ?N>AZN}8e_mN;c%I`gx- -7!!4JdWdFK+P`Qhc_aJC<=O_sgn7yH6;81kZVSn$I_E>Q@Fh3 -9kvhXp?@a9GGC^f(N;jQ2QZ&f#4=EEh;!i?|J3F}@Kl1m62F2oPV?{Tn8Y}q(0_~AKlSjZ&=4wpG!Lf|lDW7n6^<8Tr4B_Pkv52N)oeptvQ% -HweMbGqzYq5uvH>%i-AxDY?A$KmYx!?k$+FuRsy4rhO_c|kd>mrKln!-5|+K9?xuz2@1^A2#MajuLYT -fy3GPuoj1PatW<`7>yTf-kQK+A(x2rVRq4&?}s6mvHq|yUqaxp@SF~PPqhyG9G=q&>r3eQVQg}$Tmr2 -Z>^Ys`xrA0eti@rd^PN8odBNsOc=2~a+0|h_hxOKh*Ym@W%UB0q;IKJgur36 -PH`A=io=j+=ZBqm{xCa(m(34b4qFcA;IJ@XLYTLv^<5-^!)QDWhXp@8a}HHwrb75Fm=4a*@&YmtYYYYpo)9 -J+$dUjavH4Y(`h?iSqrVm_3If8_Hq94?|v7KP==Dh4^7T4nxkx;dqrFc81t^*kagJ3=4J`t*42Hg}3QSjE9SuwPuP -PUjBGkz_1WY2pAStTZ?C{v2(%NVas7tIjpzZS`n*W8g7S8SzSWM4nr;84r5xx4DGPMVRVvmh_HYq?SZDTd_UglS_Ha5Lj%N?Eqig-J<*=z7E+ihF`Rc>Q#KV{omy5#~CL -0fz9S_GCW{0tuMc^0J4hxG9TMQe4;X-ChWZPi@!$riy0)~ZnSirC;c35Y&#H{1tGVQP)h6OvEjbSIAE -x`_$wZoRfOU>aDXG>^tSkDfF+B17hSAZSXiY0XHu-;=jfx~(qMJmw_JMkj$?8sOSTMkoAbTJ -f!6cpFdFCMaP~)$3gB?I9|q{=&0%9=2`7GwgCBxj&0(8MSPoD6kaG#a4?{LI9)>(kE@1?Rq2_ywLzuQ -EaJZ0MLhEh1*bcL?wzDNHhAoDpKFWEnxF&y<#?gx=(? -}oKr;m~r!I&;>94}@li64@UJEz=Dbf?>V65|dPd7jIJu%VASFETj^U?T4Bxa|(x{&Ua}E$Yq4XkV|-_ -xjDfwtJ2zGi(ykSthd6??5C_5ZiltLOQ(h5(x$Ai;c$5vHvSEcn8R$(tsS-;HkHGL*kP?HYel5PdJ7K=-$Tl_!@`uc66Z=l-fb&O=zR -}KNF@Y296zOFyJ$IVIczG2m&y+dv4p^3tv8y{bv{3g)=3WIk)DYQt?Bt;;WN!;`eD8A(oGf~=KEqfY& -pDO94;{)-VGeiURgr$!wbk^^kM1>KlM15U>mg@wj4HHkHGWXE%FTn6@Tx7;=)sxO+_XoGv?;nEi7)6l3B$&3YWxdrns(huz6iYrMVXu;uVB#bEb`ooHUxwkc}^foHPLASTj+c -;kt`j>~%zYlltPQH}UI0(CmcTMg0A^fRwyt}!ncIfWz*>(Sxty>SS+u6(B{@~vIg)F;eN*Zl9RplC;U# -Ti-ylbf{X}qJT!y`gfNUJgJcSx%D-P3cC -5_kd2c+>j{*W|Y$8DtXI`)&s>o`Cfuj4zUMRm}vgHG0Zn`v~WdR3;;Y3eylqjS`AnFb2fm_}!(S7#cX -n$cTx(CEDM8cd^;(rYq}&Pb0RkAtMKo#*fFJlE#n6pOF^U(W2eEog_6 -SvPw6kJ4jQHeyT*9L!^aev`IQlQdmX1HI|MLDwQ*+(jE1?q^TdKPGhVcB~3lWt=NtpnLhU5fkVG%95cux}9!y=mPvGjeCq8g~TzaTBDf& -S?!(!v^Aw1Lwkg(Wm-Z|^24s(=Rb9@5ltaA>Q4Nm^J!n>KJSN$N0AtG^;i+0!a%e@(X`bsSLr-;l;nr -oSbPpG;@YkjT%bzax#GO@B`szq&i5@vHkENDIqo(!n7fx5F};bkY%v+v-4&gu7lfETctd#2U1)j7IW@ -X?P}uqe5pGZgR`CEk$;4!js_jb`=O~iNLz=d3Zb33h?{*_NP{* -!F#us9xNY>Ig@rU}XEvcl*9A5FCy45-A`Nyx-S``{;Vo!kB_4GMJECs+O=@=unz}TqBt8H!IcR$hJ@X -28DoBOv{Ux4r8H~0U33aXoE{4(TPLVgQ!Jt4me*-OZ;L2hL3UNh177iiqdY}`&X{v39(n$@`OWU6kaT -FX@HnQF4U=dcrvg#0|@WPL9}P8`CkFF{Tg_#ZI7$z%95WG5j%139xqFL4a7O}fsk(M#6&1sZ1_La&*r -W*$K=^BhfBgfo}Bu<(&hsNskDBT&Qo8u*!h9U{N}c3y|dFTkBQpzOO{=sE& -dmM|ldjPJ|4uK}}Tm3DiV&pF&khJ^>nWs-w(BokXOjjuQrqlN--WR>M;q -vcN_hE>&5p{}c32TVL7U02zT$?y3zc*a$>Mx*rao+h6GzA -JAk&hv&>nW89yO9k^J(+X)91FVc-RO1T)a(dX84&zrK^E+e{RfGkK~(1*X`e$=^a0V6(jx@@CU1c|DfROyU%52clLGJ4+tAQUwNPS)9H0anO^L6X&G1xU|s+QEJH -QdN!U^CYts$-Ly``{{nQBOT_b0c?w9U^|Z%3CxbJ`OP~r%7Wz`ZtKG9u)orM0MY#p+p)S#kDS~yaCZm --3K39$qG@ApFDizSY@?xy0>wD-M{0?&{rw!X@7XUzvi#s67{80+AV+B+2~&MSNA;F+gR&AxV2w(vS<9 -{Z@s&5{!;gR_?JfqzJEWd>YsIn{Z43SBRVJt#eWB!s@u)vD;4^9q;V8(eTPdiKWcQp?{9XxTjzSc&bmKTG4twoyX#y2_;0)Gn-{ug{o(4K;Ck?A@L2G8@I --JU_(||&@Ko@0@J#S*@YCRD!E?d$!3)99gBOFBf|r9=f>(prg4csLf;WS=g13Wrf_H=Wg71A3i=t(ovYC})e+l8L07gn>Lsux#XJykERyn3o$Tz&Oay%_&`vfe -hvzn-kOjq$H1>uqEF>&bfC82@^*-ZsX+o~*Zx@%NJTwlV%*vfehv-%Hlp#`t^5dfOO(FI6wb-%Hht@% -K{oV*I^Sy%>KlRqw>_r|O*;{yb@T{NO_byEqE}Urc!Jc4cm4Z*nhVXkl_>WppoWVQyz=Wnyw=cWrNEWo#~RdF`Fqm)yp -A#oyqt)CDxqQ}ZJ6vRI9;3i#p9MHTwV>EwE2XS8!<@N_WVnoN&exi*|`1+yc&m*xNM2D -6>%`=jIQrYrnAO{(fI0iaP0OhI3E4=gQ<_@{6q~{zs*D)F|~8F;m_4=rnVAw%=+yoM>b(?MbdW4+NPhj%ha^r8LJ{~dm~kwt>n`#-5Pr -A1KY`8?Ei@M-Amu~%Ac`LnyJhVu$g}3-5)c#lgd9~GVA --NsqC{O`59}Sj>+Ahvyt^v`4_B{bg1s~p-ScOUs;uD-{G^VoE}K{om6FAJjXsT9oF#qR2FIJ;S20IlG -7o4k@bzTDK4x6%8m$hfp(CV=EY#!P@)}D=R%VX`S(q|ry|It#<(Un2O?-B7%ud)@4WB -LHx_2L24Slx1G_y^zk$j(>pN;rS`)uKueK45~)iJwxX5;=?GiLj%VYbBR-hC9+GTUF;XL|-dJD=GmK6 -`m)YkjtG%y!Itlm -_1h=vmLV+Vzw=x-2$^28SOB;s62alX1iyQj@k6%@@&U!`Y~trin0+2!M*z!SP^C~pJzLt?U+p;=zO+g -HZ`uh&ra5jFxs`#$8huwp*X=m_7e-%y!JCPHN$^6UHy -d?4-TI>?F@-1S^u+`OhHB-BV-Yv)x)h$LypJ$85)Jv|gRh?j$~&v8pP0cD~Q{449q2)-Rvgp7Ys`**F -fzY{%^Qr-Ez!nu*U=sAOd;q-TI_&j8y+E%(dEw(qcAWo-Mo*v7IC1>2AnY(rjT=?GK>+mID(Lsqa2Ig -4$SvKY3}M;6;q7s56^aH;Lu -WbTt&w1^2fi^C)vex@)pl!ozn?XC@Ya2lujTLA^UJBZk@!CevHuTyng0{rW-hGr=A830H+78$ZFI8g2a!+}XhT+@4LJ*Ks99)3RiF)7fi`3X+K?B@v>_ -|dhMa{qR0Y~Fq02moL~8}wkQHb{UJTl3y%@C7T7fp?EVQ92(1x6aHq>fEyPd=%oCFTqG-0cPHsI%+Hd -Sfpw9QtJSa8~!)gwku8+|Mjk7%Hs@3gI~9;v$1UdIQK$tHGw$vbG%gdHHKy;jiHIBgBI^PP6-Oa3&_h -P-NMYn--~)gxw0{xnWIKhrjH+VxoS*GzWT++E8he>H`+6{n3(iik(hdMRk56Z@-2Y{Vl*(ALBwM$m2= -LE9)EfxHm3Aukn=n61;+#3Sg$#Uoj0Cl4a|MeLwW6Lx@{wg%dei-5Kbr)`vJ8#(R#Oxw(9Ycg#kXlpW -UBd47YZOxKDGiYm^wkFd?>&2Y52HHleN7fPA$@d@dtJOi9Cd@(GLAx|)n>~oM0PPhxZ8K=2ZwKuxw9` -zRU6u~oG-0)lN31|w6OZ_{gtmp%BWCf4(dv=4ibpg~8?uW>l77sg?We0p*!Ab2O%ry2oHpdeoVFEc+s -L$wgEkmiz>+^3PP;15wi1sxXd5~0>%~8gbC330oDk0l%f -3Hab}f+K?B^v^DXF8MG}pZK(F&J)(g&8ke^t5^_b~J!0mxA-i{vECTITl4 -soXWIFjYc$X{+Qx3=v^CH!Fdi|2woyEyfwm?du>x(gc*F?Wns_81+VzM>lEowZtar?&`TC;oh!pwEhF -nCX4N@x1hP-;CZ6zHsVs?Hyf`uOnvmq_dv -chc03bP?EmX4sc!feQkr6XvqFdK4~*-#Z`L(VcAYC+5vhRjadXPKRbBkcS(Wwvn4p7&h`pIsehBNktV -*|^Hqm)V*`+lbluYe$M?Hsr+;Z4I+ETWd;ZcEZkTFxyXF%*xMXXS8X;z6jcW)u9bkE*6exw$@llv^C) -fIw{R)YgTC&2kip4*5t1pDc@*o7W`?TZDnhX(PPLWjdlXnf}pJlM?|uTou9G}+B9M7m}pnWY1@EyMVz -+TCUzre8?7C&0d37H?INMAaoUCzFJuP-v%8fIHbv^9I!A(xnFYu5W&Svs;t%q -}n;(HQNDC)yfjYo0<@Jki#rBSjl+KcCsj#u|PWuDj0`Hke)HQ^*yp9I+CPfbffjBQDWigxU3c3aMeX* -;7c!Rb_V3K3m7^RswByzO6g7t%M`hc?_x9Sffd_tFuPCIHRrESffd_^EcKQK^t8Z@LE?xchOF4e8cjGNQfRXi%R!qatYT|NR*;UY)q1~mdJI{WL|fyuHEXoZ9z#}T?Z~PgL+aL!r11z -lgB-MJ!oEbLUHQk5R^kz~Udm}hUUfVIz}R=%ns}siXy-d^%@+3RJciUn+8U<~c_C=$Z(%R^F{CZ0oiL -kyu46XM*E&Yp8l!C`(mt?DM_i=sB5j(45+dz%2Rl0{9JFb|YQ5eMauF~1(?A=oSN-*nXuHg7NAh>Dqi -q2@*r6`7gB>5Z&}&D`cCbUP*%z@xt>YK5>x^~^Z8rN3+B9LchV}{~ZL@Tw^u;5kN7^>hk$O7qBDb*HN -Jp$h+C@V<(Uo^aCCq01J7&{-t?Dr(XjV67yL4nBW>-5MvGN$wN}^qr$B-4uXs43G1?ktSKMe;xg^!GHtZA|Bb#@GHtY8W^0X6rj0%d*jl5>w9&d=nKpW^NIar* -+UYlqu>o_?rU_fe)gxx{2wK-G)7HG=Pvf+Ud&OV1;}Ok^M^=z&JExrsZB3>vhi31-k#W$b30oDkozt$ -W(}ud3(}rBlP3%xhblQ;1+r+MM+Gt$quVL54BkA56HUtjZG-2!Lw2ORQR8^d|Ceto%6T8`iNE@&C%a2 -FOe-NpGc9E+`Y&?j}hjvX?kEBkU)#{*46Sj`4M-K2i{)&Tkf$>Pip!u>AHZeWkPm94t=n7UCD7)F@1Q-OuvNWzM6=@0%xI&NrM>_`^BmG_n -YNkH#+9Q$8`pa!pJfCZ)G}? -fUS{!#(W^&nIc-yFC%WRa8MT!!8xsc97P-_GxzrZ9)D}y7ZIMfDKbP8mF13ZDcKxUgwVIo2AeXk}532 -j#n)pZmy)}^QNbOcPrMB`V2>H|&rBXZJYYPKvi(G08N9}c?cK$y0(!I83&7a0=L#~zAM(fIYZ3|l>Ye -MZ#O6>#mEeQG4b_q!hscj=6G4a|^3-H<%r*?I`wvB`&-)lpyHnrQml-lm?td83Cqc&8xDbhS4fm%0eL -$;rgtccplQ^y6pwwF>{*%euCLXuBylc$l(CnS#AHKcaF*S0}z8wtred2LNXVujjf35gN4tCWyfSgifb -#>NBDX%QXk6XUJm$l=WnK%y4H%9?;{%%iF<&yAK`RxcIfRC(d2GFc493gHtDuoj-YTaQxJx=L -e6U8=O0T;^g_pW@9fN1vxP7Hn8jwmPJ+-bJfqP{#wmLy0EVAVZ8e-AU$~4A)cJc%b -vY)L{&?x)a8U+orpPfHJwy`khFfP9Xfm{F^NgL2kBZ7OnZnlUdJDi#_RZF(s&&Ylg8 -_Kgfw2q5z=@aUm-27gIGx?Ypc&RI#b&o)95s93#QRI+V+_S3N)EUXJ@;`G&(ioU3}2!yli)vMki&v%Q -QM8+k8HblE&ua@ShNS_RnetZ$4QEc= -+XV`1W8d1eJb@NfifzgNB{7vBt;eUyL0I=lA;3o)YmDJqT}!M=F-C6diw$q;rJy==i&I7~ddCIyj#WHZ^4kf5^ujx>H2{XJ>?EV^`wM1C6m18Mv;`X* -`ovL2AeFYA9KEvloP%?bNa9bGDeAl#42=wx$4;YDS1vcG={FDj!&gNIw47nRYasla{ClXF4+U4L1CgIw{{oTUGcMigV*2GhJ?eX|-+T7IAWP)ZwRd(h4#-wX=;9K(cjr~OEqTR -w)W`ol4^>_>I63a!c@uI}TuV)2guJb{dr;qkD$Daakl%(Z3j_py`yWtcgnlIxRqUzeoFFmh7jjC&Pp}r0^Dz24`&l^zX37 -Pcp4t%cMG?1t-K$UkKO#hu1p~kgQ$G^p=#mSYx0sni_aa>$iDK38f3XOZz^Z%l;oIBA|8_T&9>LkTp! -1q*DPMxpLk@N#iIQ}H25^*qxLiTY2#iqc=iw00fyg-N!?ePA)Q01M~!C;&3zYkSbhpTBH -C%1G6f(GdD{)bTGdlU`O{zp*byA*n$U(AKH3em+rSAX*oRC!)P-TzOhad9Xa7qs*Yy>2o-xJyXi(8n? -SH^jI$9Pj@?jbV>|ad}DiAd;c{6lzQrjLv6J9F+L|GV4)cs#WmD -`h)yi-Vj(WXw3b_!`QTG)<;ft3!UN5^y*<0>r%jvn!+kRGE+$As`xNSD#1iAD4&q|do+rU|Y7}WRTiNZns3Tix2P(OznPZX;9HB?EDCiNTMfhx;_Na3n4 -ZAXhLK(y+|kpm_*{5PnwF5JJuPoPTbV_L#bp~}MG!NSj=%F5tB!XHA7E2A31A3>FswUoPwAEym1b!_9 -Xfo=w=8fOiyuByt~T0K>bYwN3O>_$9QmEfSGrP$e*ZUjU79JKgeP2%$qB{XOj5jgvP@4hXIKHI5@u-T -7I2wgykn*DfpKE#(G#v~;1Wr!@*eg#_Wtw?+oqP&4Yd<~-XiKM*_Eyg>EZ$ONyL4|KZlhr7j6a9E=GY -;}Ch_W0E@7oZiS5&qo`mx`@2fYhX-m@?h??II39Zs#)Cg5`V#LaNN-|8@W;HnR6#jo^EV5E{w)kw}WH1XMqf3 -F9fqQldWL;!MHOS*6s$g!FYH**gSM|G~Sxr+%*PR|2NFd_BXgL4`P!Vo__S~WAo#kx0>DF8C@A}4|XQIquJ=`U@(=b^rm;D-)ni1Ux*t$6$Cqj;qH -~uXs{j3WZ=B{)#3JTF#p@(_Rh88_rnju55tebAA}!=pM;-=pGD<9wDCJoO9KQH000080N_fRRzqV|ng<&I0P~9h04V?f0B~t=F -JE?LZe(wAFJow7a%5$6FKl6MXJ~b9XJK+_VQy`2WMynFaCz;WZ~o&9GM)tIsBCt7+BKP -TSUrhKkiQi5e)|_Bp4Aq~A|FJ@jl3XPq9pw(U7bP1>G!`VDN`&p2({w(Vz~-zKek!D*Y+cF|Fj+P0h? -I=1a4M@@d)^Nt!=^|I4%qF!;-j#Xc9YD<3GRj1!%bUx>_ZCUkq9aY(WKkuA*d*b_vD3fllIZfMEz3#M -44tK{sBHrCui3=faEmXc81o9qeM(@ld<#rlYh -VG^eU{n@0)wr!90zN3cy2C@1@=eUyJHhs+*gr@Cc`eo<$Ij -z6qbdn6u^i4BoK9pSf9SM!%K69{s -^m_Zz2Ov}oP^nXvHa>&(SI~uAI!s5gIIZkSV9mh2x0+2EFg#l1hHg*SV9m>2x0+2EFp*$1hIf1mJq}e -f>?TkSU?a91Y!k2EFg#l1hGIM4j_mH1hIf176`;DKZpeav4kKN2*d(`SV0iW{2&$x!~%jifFKqS!~%j -?LJ$iMh)K=|Vv^@TO!6FvNuC2S$#Wo97{nycftWg(12M^SASQVZ#3avwnB+MSOAKO?(;(IyeK3zvl?> -s+L5v+S2gLr4m;++$hy}wDO9qIsBj$iuFdVTg5yaRLb3n{+#A3-H77)Y|fjGzyV(f_hK`e^{agmOge& -rm9N%jKq5*%@hKxhN7BgWB$EEU9p0peA2#LEY9L5|oL#KIHAk^y30N32#4#6>#dB0*fFBgP=sY -=TjduPOfuOo)hghU`NCL?A<6AFP?GC*8%Mw|g+ -GKF3s&TzyTATBZ^&H!8zXyoii=2_WV-?jM>VgozdcErI-fw&k)EOUc6V1QV9g1D%R7=xHh;T(ubUOtF3R! -wApm|8C%#MluB))6}hE7B2jq6v;8uI@TwjwAM8HGv(mfFLe&9kGBQ#?gd=Ach&S$PZ%Qj94NN7n2by2 -x0+2j5A_RG$9w@h!+w~@IYK-MqK`?2~Dd9^RUVWG0uqnqX~{9UbScfJ7Q6)BgP=Eqlr>iO^BsC;)-X) -MLOaP5K|{!8F2=PdC^3hKb1_5rab(1UpZRRzRFMH3jroM@t45SO}qZMD`BuhOcCxgkQk>3$-++2x19AED?w$1Tl;z6aq0`HId&DO9)~KK@2lui9n23O>jUgA&9H8YJytVyRRi6wv%-ZDApas -97ik)a>N+KMMV=;T{VG0%$Th6b;PnnN1PwTMLFV%M-v$!&Tzy5%MoXQcp;8BBbwkjV!M3JLBeKE*7-* -hc(RTYO;o@US9bYYAs}W%6HA}0TR{+0CzZ{JGnTJqfSBYWChIJSotwV~v1z;JAP#&%jH8K)f>`Ev#4w -s*fEY&;`9UlhAeP=B#+&}E>SP_YUjAfVh9f3<4#YMic5d?;#HMY5Am&69wIf~&M=TMD8PP;ht0p7|#H -;#>GY`bPb;OGRam#|(xuNTf*t9Ku)dc4iXTbn5BO@+#vJQh7zv2v6O$Z2LS%f2&2*iTni1ULOJ7VDtV -$Nh8<)QUgC7DhNo~*N*{y4WT_Z4SRkRuil#G)WaEGhtE?1(Xl{T;DDAYO+}e+rqbTZ4=kgP4^O7wL$3 -lXVNph%-Q(5ls{b;+9=U?A)ZQ7)`8)BQ6TW*byrPV(ATHZ%51kF?Ph|MH7I^5fFBfl!C+>F>inkXnE_6IR^#07y^mIq=OO<)i+GGeu2j<`A?Cb@`>;WHdDFC%7w*mBsp@l< -l-E&K~Q1mv)Q9Ofhw0&-YD4hzU(oJcM})HI3o53F-|6G5Elw!ym}2UnownenBj=wq6r9M-$fG -~5W^Sipd-d_IOEl8{vcMX31Z${T?UA&gq~>tkb`v>_4RJvcaR517N5l+6j5(|r9A43gID^A08WAgNh@ -G3E2C-?oi6F*?7$+0n5iy>tD<&eA`37In4E7uLu?mKx -R-qm;<#-MV*Qith;c;BNG8f$Gy#(d?1PC2uzM-j9FE)89M(SziHI?Wy(41$eltuaN{oor(hV_ -QMU0b)^@@mj?>A={;*5xx$6>)T#5S35uG$*Jrfm&k{li@|!2q%MnhE?`T{Tw`!^LaR5OYAxF~kCbcq5 -Vt9*8p{Vv-Api0xFJbA8qvHf?JT>mP1HT+kw7Mlj)Ph#`k7nh+}nhjB2m5pQ$wf(hPK9kur1uzi`sxf -Iu(!_u3>a??1B{qXXGiDj={!yLxJME;jK>X|w#ukae;fWu*FznsIl>ed~^wISX_Lkwr?7$9Z@6L=AE{ -$K*XRp%c}tkqj}3t2L;keNDOFhMIR=C&dx4m;OZ&0*8F=CJ-LaHg)HrEB?v2^_^y~>fY>{j;LOz3!GvEhQRGW?_FWF=`lvx{+SVY}KNU$Pe7E~q`cz -#pOC~sucoVjn;DLA{OV@bG1Wt(US0p)CLd{{*w&t+@DgEVU<;!9CP8}m5UL_9u8{&=N@IsbMEQG_@5Z -hqFJ?S-vWwLo68}=1kSCXhKYAEn@#m`jz<-VruQRA-vsX!a0*Qh)vr~1Tl8RoR^ymnyO>$f4S`4ey}6X -zuOO5q0{F8}IcEpvLs%zU_CY*CtgV?m)L=a;~?7i)pWPn&e5DNriyvu|r4aC?HGe9g6i1D^-*bxf -`hy?_(SWOUTEM6B{t4`XC*f| -e1h)vrX#QLZ7eb-ig(F9}PwR+Kn>0}iaO%(WAUCV;l9r0`uOGsh~Nh}#8mXO2>l2}3#OGsh~NsM>=QI -NzEl2|cFEFp;%B(Z`dmJAY028ksiv4AAzWE0R53rJ!CNz4d|MSc>)Y=U8l1tPIvkk~hy5Rkc!bNMcSpfk}+h3CSR_^d_-{B$ie6!~&97KoSdI66172IoB0q^4o>=7f#9}= ->aZO@R61VKGKki_u8|^#}i``*PfW|iAyE1uP0`Z74bMqTr!DkPh1R%+jid{xBPWaC(0$USYHxXHJyNq*c -j=AuP0`t6BU@T6E%q|Kw`V&gj*+<#G>}Z>rP^vPGAxjG-K!Mi6M!LNhiuAaqWrMg2XaeJK+>muO~KbH -*r0&ge3Of3{yf9dvAt`_natiGfW9dT+E&mobBN;i6tcQimoT7#M*0n_zV(L>wF}p)?OsGyJ5OVUX$3g -tx2qZxZAKXNGus7hTE`JbN8R15E5fg?Ei}0dXbpq5%Ro0Z9zE|0$QmEBdnYdZiO8@x<=2)Fh7EZX$^}UtZ_!iM_X-D8>`#CvlnSgoGsKyzR -Wfo_HbY1j$8wd0mndJHNChv1z-BB*vZ?lNhgJgJ0Ic@x++K($fxsSJcFs>?yg4!U#Qtk1Ry3WcPENd#bRv1P!|A3bv1wbAS -pRU}v4fu2f5r}`6PU!lo*0tYJ12&3b}+Vy$DY_fomf#4XL#ZjC2`Yk6YsXKNo?BIB-TINT`|2$jMo!0 -JTW9O+@9Fi6XTq?7!uc>*n`BpoR~-AMdZXSyH7m*Mbvvu;<#;1V*Rs_H#?S3Vwg@a-t1tc69SUBs&96 -z7l}z;Ay543v15;gM-v{-)zQx2<>6?s)3|=Kzu&(;8SEc4CO7+&#?El3F&a-AgL}h+Nn2^Fgi2A)Y*d6Q6#* -J6T`#aG;)Fm{YZuFu*gw>xOk0$$JH_4&t<33G)YFzB^?db!0p?__6@WjEBCyu>%e(TJo7q4tf)e_t1u -5O(@b@}|Mt?kq2PF>!9;nMb{%V(au+&I~I5DkR(Dy>#LI4|83A|4)@R%NWJw5nn?NUK4tHq&Y|R$FPc -6|3#E+K$yuTJ6MYH?4MKwdbnl299i4t7$|75II+wL93iA&9F6EM_{`!2$6H88Mw;1+6-M~x;RM#oUTr -q5tixlq#0t_OUq`ARr=&fGsr4kqco$e(ltsm%qo5Uq#0+Gu2PzTR_Q8b&&YFCn&+6BtI~|Nnyb=`wwk -NbJj#N(D$RHYb5)x04x%cJ)o&OraI{}ATGP>v8?EJNj~T7)XuoK*j-&mO(YlWI%SP)Z+VRJa$M=PB+C -5?J73pYC8qKZaSB&P?@vBC2>v+m&ZXHh>&8_1Zqq%i_%4ks?=HX;6)@X-b(#)0G5{_mr)0T8JbB(r?q -Y(uHM>AJvtLbRw(rmRH&0Lq!mwu3DF3MKN(aaUua?i&JqdDi}@n19SanHxE8_hi*CynNwkKZtwdp>^C -Xzuy=Eu-l=x+!bl4$Ek!eSJHuf>>ireLF0o*-AP3ww|O`DLdZ@OK7FNd?&1+*-IJuj*dOMDHq?-ljFU -Vh3|xiPe*V3dq>aav{UB2qmMrQPIgD3EW!MSTO{f85KFrxX#<{KRU-A%-kd=Ds1Hjp -#g9qSC8XbWk@_LuHox?bNYnFhrUZKI>j%6!`3EGm=U11==)s;&Z)EgQ&QyPww6KP@>FyOWAz=+|Ga~m -$)91m|f1fn{VJrP+xK!@N^ngV7YWiam-OK4!65Z?RPe^p14=>&8&`FPW$ZVSfc=V-zBUzsobNpN5(ZE -$^#{*(Z~iyx&! -``A}DKdiY;t2&4PQlsKabqkStn=9-*+k5pY@$5c4`8L7I!jwx_v`_=VzI&()H? -cdR{<$Z%1>+(81lD|o^uCHtBdz<92zNC+Dld9|M(usZeT_fvfecSf@CaJoLfC8%V&p|n3x!jydY15z~|g(>)uZforll&}=&(-Wc-VcwK{_#;v^T?C!c|0Xpoj; -^aiy2rF-P=bnkk5p~kgc*mA=`3sGpah-eFB!EP6-Ooigj8J|(fjZ}NY%v=H4i@^RToDOu*08{s!O9M% -;A5Ms!Nlm;G;hyRg+Uv!QUY@dJIr)Gz{8PD0eWG?98I{S!JT^l`h -W^^ZNf6=16nl4FgFuL^BPBe~@!=PvJkyZ6cqm+d%)5v7dBlL(!rHzJCG&FxssxC~Kp_!T+NNKmB$bua -GHL2RMnhq%DQjy~z%W?D#QuR3_KRx{`QuR4gG+u9!8dgS6DvHTe~Bcbl?A5lkyUkNWVnyMN~* -4m%;)S+jT$8mWP)c@ueKpAI@&i$jEo2k&DTiPR)n4c^t-edX_>kxyHioxK(2iH_oPOJ5g}>3B1=NnfA -%9%wXd4X{*-nl^e~*6`&31?gf5x4Nz@l2eR!CDn^avEeXf~(msEYi=<~w#JEZC>kp}DUNYrek%itXn! -?Ng+IklbYs+x3S=oDycLXYj~_ecz@q6gKHp}vY@1^P&FL?=tz5_*zPzfWRR6EU>E8(d^4y)#jsE_yKQe!#|LOK*yglCE8SHQ0? -(dz<6YQpY-M+04} -w|55<9YLRbVgJq`{>%RE-p&5C!Q|xeQ_r40^W3M;o;&}U&tAB=b?N!bS6;aKxzG2nUEdkJeB#p3Yn95f>ErcF_qyb1;xJoSolH#}XWOu_ORgr)vz -65Y(v=f`hkBFrAj!YA-Xgu}B;cXmCcWiE;Gy0jz3pV+q249Ey?&>2^{t-D`2aozzP=T%2$x_0ssq8Mm#sN8=x-+_v5xjei_-+j@I6{!z}|vGw+7{G)xBJGR~)jei_< -+j@I6{?T_2bZxyo8vj(<9qKgxZrrVP8vj(_9qKgxsl+?fY5Y@}cc|0&r$X;gr}0n4-l0z8p9;Q1-8y< -V`VMt#>GOo&Nl3lm@S7sgRQPRYP@?dgI$(s~cD^P@_-!X`x1Bmkh2M69BS-jcXKHeU-*!qS6@J^vmmJ~uY_Z`tiJu&P6He;zJ5o0x{H7;kDd9K4=99y35_5##R8 -=bcCLZJnziDUSpEvxbPE+AGrPrzOoBI6Z@S9F`D*UFHyNvLgE`SXTzhVB$kG{ihp4Qzwt$vQ+`;#-^b -&I|K7f?$B1QY-O00;o!N}5*ZNOQ1wCjbB=^Z@`T0001RX>c!Jc4cm4Z*nhVXkl_>WppoWVQyz~b#rrR -VQy`2WMynFaCz;WYnL2Xb%wvsujtrGY$w=sRZn+MD^U_zHlUyjk#Go!lgUVGtgHD`lW|fpBi -qS-`alY+!Jft=ZCuw?VJ_=YiGE7X?yGJaJ#jB@zU1zZtKkY=7o*n!&i2PNAv&t%y9R_*7@Pa($c-H&Y -{)^wszKc*Pj~Z|CAnT9bfcZR?(rKcmTslJ_-vMaj36+|_n+Ta&e& -d{)~@s^rfpxz|?m=e6V3_Wi21lYx@Iplz)k;1@MHKay0+|EtN`sd`P5yGs6&_9r#@%i7jjIA77W*24L -!c22adzoyCB)%m(6Yk%?^nyf|nO-5PXj^ -N4@`u_PRO%Z_O|@(GBPAzoCI48H2TJ~lCU=zlQ*GbssDGxZ+U@XjP1a89n_4hxAHUEx)`Iz^b{twTzf -y939XnF}wYG7pHvWxvQkD8!ZDVy9Z)vKw@$ZzZPSR*ksePqBqg`>OKCA6`S;^07mr&dDb?t0uJNcL&JGrTyC3Rg!&uho6{mB3;*7qxKIB_DlK`;*$%pVD^HQ}RoNeC=KI -U&4#8maSNOAT8s@r5ww+v6Fhnjjb)?hFs6Mv9)E~kjFA^$n}gHf3lu&V{6N}A=fi*Y;74gWXrfATgDC -9GH%G0aYMF@8wWU+aYL?U+%Or-xUmn*xFK7{4cRho{6*8aVVIV2V;`1rLpF^YM{OB5Hnxl#vT5Adhh^ -N@*fegarg0+_%eb*|9pi@Yn8ppYo^fMq%eW!eGj7P1aYG)21m#_ea^kSAx{*w`{|$d++Ku9b2788`MZj&bAgY8kgr#_cd}p -NzW`AmerzH!RIEZpfB#W8ao>W9xdxjjb)?Mv!9}w1{)D#0B!Z^k`^jN8w+7cAor -f=V354SAf5+hN>}jJw*nq0VT=jSx-ah8i>OfT+Y_+zwRY$haM-Bw^#$Tr?OeaTvD)mEcaR$GE4EabqV -FL?w=lyGi5rW86VdNrM?Tyr-UVI~cdaxFOdvZX8H0#vP5DFQIqFJq6>&kxUMi2*12qvP=JrI~FI$&A7 -1>%eW!eLnU~k>KXUE7AL)o8yk;h++M{=hjE7}PGZ;LQAxFN<1j4a#>S>`!(r;65{Gd^wu~ElZo;@7s0 -8NPL~#=GI2m_Wp%Tp({WI<UT9m^b5g -pb|ghhFlMoq-@-p(@hDL_%ZI;K_yKVCxf68Y~2JZaTs@#s090-(LQcJVs9i%wfBr1VCR#!>2aSNBaS~e+f<91}+4pic2+zwRY$hiHCI|wSlzQ;l(K{DzUaeHOlIO-`EC%rQ6>f$8Sh3+Z|vU1XqaXXA#b(QG0({RS^VBA4a366U#LKt@d#vQ=8y)teX;DTh_aOkmCPCATR4VlvYrQzv-FxQz~fP({^{sNrY$+# -WH4S7}<;6Sa{RpMaWb2%N*Yvm*?db-mAVNzptm0;_7vq~J(0kM;rElzgXxHThbdI8Stpc2RvT=G5z;| -{{On?xmkjN8k&o16~V94eW|;v~}LI;aF{JyhZ_?jWcH`<{Nr?J#ca#41iI}cF_>p){&9Sd-<^*Cc)y-p9MIMt`Z+qQk`)lJ0C0Kb}()SDuFzfabqXbA2OvD;AkE -&rRjhRX52HMar>bXhjCA#I2j`2_A~B@7bpFU8^Mgx4j3Tg_A&06&$#^<_vE`ux+>$=9`@PFxcyKGba=C2+dMHf~38($Bcn%1P}xy?fdL9jF9bPcY*SV%#&I -aXT1ygU0PZB@W}p){9`=P{+u)p-yVa`@9;rqd1AJoA{7|Do$z-WHfFs<91}+*m|s4B@W}BLUFRmjN4J -1oP5R&c@c~|Kyebg2;L6p*Htp}#_gAJJB-^eUDo$3n1Ns>E>`VuA6eoiiwUAqBs7z$T3w^7PvQ9mYNL?SPQ$8MmVyaAq=YsFO2ps0;8R1*q{u3 -awc)ZZ#cHduW0UnQ~;@etq0cX54;^dkS484&(OAxUrKaGVUoDx1*06ay0H%H10(=?q$WewWlLk#_ea^ -*g9t1a_fdO?jXhuc~&!S2P%QwzychHabq9j7&rdlq?WupjN4}c4(La%;-mwW_$|QkGwvxc?hwY^RbRl --9)qSA;7q}|9T_*|33in@GH$;GI8!ig{K@HmEZEDq9T~U7xE&d{!?+<&%(xvHcYxw#0OPJMPF5Rtkc> -NsanEbUt%{TS{XWNxd*<5#gP@Wo8TZT^cL-GCFm6XzNeJV1pc3q3oO#^U#_ebajK*ykwOY0|eH2{+_OO61nQ-GG>$WcfB^%eNt0z74t7j48;LZ$qy20UXGdZ$mbH8>;2ok -n4O$!O;zfjq8l#hFXi1I6i;_24nd)wzhm5vgO;5E#HQ0`8MPUjw->Qw0s+~>D#HQO=`FBJR7$kDG8Er -LypER&-W}Dw_`Y9gEOWa#_gCfRh@AAeYva}aXXB=8gW+}w_`Y9b;9jq+>SPGzb}{heEg@kjFA^{7 -K8W730?KzG&RhxEI{G9T~TSaXT{Z5U8Yj9QSNz+|?`IXC>oyFm8u&J5Y(EHrZsx?S)Fzx=HOei@qIwd -r^FQK5LVX5mS?{O-`DWI3|@WSZy+hZ!fcPYd2Ih?r7YLV%&ZSx1$*_1md1}ZPKfY+pDR>XZcMvDS>y5 -m2krs$08-z$@IVR?jR+QE#p?TN$t*w#vP4&!Hs+J8TYJ^k^mVu4r5Y?8+O@*ar+_eCYwsUYLhDA)^3q -0jRu@o-;Q0}(YJZu3)RIPNy*H1ajVj#b~D6;J0{$VV%&a%N)j_$O1zo@eGqp5QZh4L+xBA9GO1ydj9i(J&dI78FlvMk+AK`W++qU*#4F);ESsFi)i>3~?L$hMG;Y6TlR*Yd`IROeh})|)*=66>u2}T#=-bh^A-}akQ(qO_paZnN<;T|7w2LU -C133rgWfPTL1040uu+iSHue```dv2)?u$Qz<>%X1QayD{HxaIyP5u9<8Mlr-tvK{`r;OqU7)N_yGju2S6o0-v2Zoj>f& -<#vSC7WnPOW8#M0fUO?Md9K*HiHzI9xE;ogos4DNyxLt4C>nP(?z_{t9di -M(>v2$tqc|A?m3TD+2Ka(PwQ*OY64+4#8Fz!m4cRnqsI@X~c(G~R*mjJJ8 -@^*2H`IEJ8(WW6oP^xOH_IHx?N~M$BIE9=c0lb|qH#y#UKHboTFphT4E}LpF^Ys%hL% -YZ*5jW(?zoydcI6c`U~5_=JKgPHKNN8h14A1vhTLKJE|;aJ&{yI{LV=>q+%-J2LJ`_i;OnyU9LozXk6 ->jN6fMJB(Ycc-QwHjXN6mVjFjmQQRR`PI@iCab(=p#_h@ecaWI+kr}aij&oS+( -A}O`gN5!P)U=;Nk8NETY#f7Zf*N$+%e-`6yx?=@*d(d!4Bj0LM4vR1Vf&baXU~+W3vGr8F!GcP5R9$X ->!TC!?+!@N~(=JQ7b23ipE{+BpUZ38MhxQX>d5;JkBZ!ka34#+z#XRW8AZ2+>q-TcbRctTUxp|Klc3K -AKN@X{K)#|@O*=lS^Ykx@$Gi -1lYe4^y-#kaRHg~u4-Kawo$9)w4)H<5@3053Zfv7~a40z@epM51&}+^;S$j(aH3hkVfJNhoRrD%mVl(H4uNABa4K$8=kU^BWzp5ep{FOjD>8JMy>$EkVo -5_ytSGsZ-o<W^TT!k_*@{x0?bM1=p6%3%^1QsitSIIA?pRUE^WC8 -+rQfuq*3q;-k=nAR-6OTGrrj&Go~He&)cTtCXHr|yv_F^HKxy~fcTe$Lw6*Q-m(NO~X%9$EkK-?-rpN -J@Qq$vjm(=t)9+a9M$3s%n<9N5!C=Th8@@8EgXqvoJyKPOAw`n)gGlbTm!goiuY0n!Gi;T} -_ksWw)nk@}}(eHBH`;UHy6-lA3ls?)xk0J^J+v^I)33+hN=?5We`-S!%sfizp%PWQUUa5)S!pnm~d!N+AkJzq! -j~P|#c_4imn>6Nuh@&rKlde3-u-cmiS`3C`d;G;vArZ~q5GaZUR2x_=a+xVNOX0WA*(@m<8Lp -MsG$2#{QNPQsLDX-v|ADB#P9DG9$8A90(3Gb -W03;DFdsrRtM^zjYPcmap?dy67k-L83Su1;>8b_1=L8yo4;!zjYPcq;n4sZiFo(JK!Gz7@$&EEU;i#dV -G20T*CFN+!KcAD67l}Ws}FP|5eWdCA8aEL8310oAR9?f;|6a)6J~AI5fhOEBsk0;Llnk^WrgAQao+LRXzWT*%Gl4&HA8VtISagS1VFp$sU!7beRlpqZHka6 -!*jxbn(3_GASVK9IU>kyej+HOO}vm%m(w2dflA<7lHYKZa{Tt%b|X&X`A!s9NohO~_+Z^0Tw;*hox%$_V*x*C~?;u?Bli(2}PQ4l -<+T+Q=|z;DIF{oX+@fFl&?ajhmNo1K4cMP!q@UUkVTXUU(0Vo7EvaAEx!y|M49rn{4`_{Wy;s`dyqwx -DPPNPK^9S_9Obtmizri$Qr?;=0f>~N{03wZWy(>09 -ra7)Pv${7P!iKof5TsXYsgeoRU6If&xLjXmlSGP=bf!ce5PXJHCvuS<{`|`jMM#`D;5-q2K+-kB( -@6k=(XNJ2cw$2YX?x#H -ooVzpJUEN%}I6Qn$v4eYxYU0M)=7lHMF68p*CwF$%*EXdt{*~3;t<|mV^TX}ci))t-|1r{Q?rZg;_|u -26HdZff?X2&vKQ&z47P$Iw`=LR<*UMjdw9!Y0!%M4cJLlHdS2u>cf{VMx)_M7at*<0D~Mth@YM$e9( -8(klLZ1nNbCq_3$H%HHpUKqVN`sCa -Gk32l`aG^yW9(i~nHpj!6l4amq^bJiwvg|n|Ty33^?J;XkG)6Ykp}0b1dw?*Vj*iIoz-&9qIwIQxNT% -PTjL7x?)aVx}BeG`!kLcCUh-?q|l-~Y8WZ6xq#JuoZY7fAYQUDOL?0Kk!yzpD`MW{r)z#U(JO27+1{w -1iyyYSl>)RB?_hGTo+{FDzc9NPowr<8!<*d7yn!d(C=d(7|&cX5EAj+7fP9NWX?qV#~_*dFK|We5_Eo -!r_SN|k6AF5-3GHPJ4_h@+-Nfzj9=ATZ?$Kw~4^OO!2ujExW>FBJ*zTY_(I>nmW4nWgq)&9K$L9wx4v|wZ47-CGMV}ZRVErec62e1tc+UESP7odH6n#P`i0< -Q137z2DG5RKQBBT2Qvuq+Khz`Yy6~aP@4%Lbk!a@KwC|8I~!{$l_P-l8`osWUA5H`khKs+6p*&P%u2& -W@A8{z3Cn$871$?yu8j{Ix{s&C{SKvRU$OGQeNd6bHjBK0U0DMjv4DpHE%qg136*+;2JDe{j}ky0cec -9D|Mxm~0raBdeV37gwRN`mHgk&=+PU8E#nZWk#Dm)k{3g5`FRl2Ex_q$E&o7byvo+eJ!(8X -BtUK#DG86;MM{F>c9D|MxLu?qFm4wq35(lBN`m5ck&=+OU8E!+ZWk#DhucL;g5h?NGSz#Y0YfPjv5J( -$!tEku0mH2#CBbmJNSSI2n^B}JSh!WBELgZzq$Cz@6)6i8ZWSpBh1*3+Lg7}CvLNABk&;NbRisSyHN0 -;@8$ -i9UZ*>_~$k$np-vhT>g3vmMMo0+W1zCpwd_N^edj=mKqPb+X!0lxA350tOq-uNNIz2jYthBM_Ws5kb@ -E#-ZUg)?m`m^Xe(ai=*kZ=1yx$QwWUz@Q4`ji1UOe+BZ!FFfYeguD?Ocxi#W5gS8nLf(iCG`=9-hz&H -D@&Isf1>=c#BQ|bsC)|zL0OJeVjo6qc6YNH8!1)F1Mr>fg1?xs^;Kl{&Mr>fu1?om@K>w5(SU+G1beB -8ASIR%133HeF(OqrgC2C0NL8*7V3MEp4VDSK=+ocA3N)bv8<^2l2*wcoLaF_X@f;oyT!NwMZwM**&C{ -M6k+(n{LBA!IF0Ui_;r)y-BTq4@sk!v)ItBzcwSzLAG8qMOWBiCpaR~@-Vv$zdqh-#NsIfw+p?zR^RL -}`5pA#K&sg#*XR+q+xta2QCg5f`2@EEoBiS34s7;^b33rvAFkSgjs9@e4s7&? -b33rvAI|N-Mt^u|QG&=a%7mKAEqvyT-f(UlHhaUlaoFq)$IWf^hA(q_w9y-m2g&LU#|5`~!;!6XpQuP -YYGd^}y(ph9}#ko^lVHhZ25R<_l?bfiLrgG`hg?+*@7XT-h -ZVN*@q2)MeExrHLv6a=+k$RIDsduE_ -q($l-skhJ~^^Vj#Qg5L}>K&=IJZ953Gaj?)d!NUd7){>{bIhi1=4EE -n_kMNLH}fN->06;6v+Enb?9HxkCI)8PH}eIv@0*vCn~mSRoZRgER%p>|{bsaiwth2OG+V!4-T -Mzjn?lQ+=*?pe&67pYoqo1CZg0^zjGOv!R-CM$&*<0-fyk#+U)**5gq(S_cwPC8{OY`Fx158{^p)uqx -<{!JeWl9{$_e+Hh(JuYIJ||JOjexrTR_L{mm#47p7?cwo#z$|7H{j%uNm8YElB~GDQbCqd<_@q6M5$A -Re2d2b@tLu5Qr;&Y|P#7G2;RI?5$Q8#srKXRqi2=O_Vxi#BkM619<{51gY!8HA|00-m@li%xKk61PIp -3U0T*7p>qNB+pEtUT_YQ2{$!^+e0s8H#i5$Je|lZ2Z^$V*$|F78)ic|&)G0L!Ws6OE#W-f!t4p>Sr}$ -hI8$A-E1Y}(DLb+2NP|wf5JcIDUGt&z#4hg)swz1HHL#Y8HiL>;6@<)7jl6`+?Os!nqu8yu1ud5%T5& -~=QfkE&NlFQ4cPq%XNK$M_-BusGU>+?}loEPwSIwzND*AJiivHZBqCYpO>dz%yVUyUT3c4m$V>gN{MT -%gfgehzcT0jc9rB236aFYOq%`pj2*vL|(DW&#ak*1W}#=GTOWP!!4vLj*fQg^(_QS4$OadEqFNMO9wh -F>+MtpMY8Z$3?FvsW;Pyri^(L1ZPR`VdWNvx_P;8pW=k(3Cd2RwA;IQeA|mwAp0}k%^Q_4YNIW8Op+zJfk$6PnLW@W|BJo0uL&4)v@YY ->96kL^Tcsfom(MmQ9(P=O^DmH2$Nk=Q#+`&nu(cq}psDUJ1yMu=sDYN}x;RCdADGsc<#$*K`3RCK|!hYAgGZ04AtvV^f2WbyzLD!AYl#BvUT*vu1+ -4sZs$SfW7)n@96-vo{r7aKB^CLeT;ad}g-0uKM>i2|e!ZXuCL6#JA*e0&f5SRQJpP0#EpTpNU+V -tG8*0Q;QK-&hEeI;+f^+o+1D=Yx;9PydfTvbI}iu5P4gwB;f{SR!={kaD#G#H~oBKcLCB&^=Nt+PR}ww%0c{*3Wr^@3#fJk$x{N9XoSsb!DYHSdCLq3Nga(2){{-@H@h9p+)!| -;dg}JLW}S_!tX+yKtK57msgMi84cmNjvUD72+wsSK}Jh>u6Lm8J>j{&3|(&u&-E^Jy(>J|d(ic^@Lca -h*ZabAeFeJS7@q3`=z3>(uCGDYTf=i5xu?+^p6ht{jOOrM$Ma`&hvzz;L8Co9*Kz)h{_w{y4{-jC2Ju -|S`8PVma~iS#|3;^HuH -*b0t>U?k^KUeZ=Q_^6(Jr3r`~yI57|(V71yE~XIFIGlTgI76n*+lEnvH?s%x8^(;mkXYf#C|H>jT4?+ -L{Byc|5s3Fr2BaIWQc2))*Mh!*Yy);XD?n*1&KcjAITA#|RvehLj3yA`vMS*hD5$DzJ%Mq*P!N$w;Zd -CbE%IfsKZ$*abF`kCX~*&Z#P;0-H!lN(DBNlavZLwK_N~!Nuq$s7vQECUbJCj -9@QtG4?If_kl37Fe7my(oHr*=|7b48X?qPavYqz0Pn>gG#@sUg}f7O_k!WAO}mW$fZwMq#44u++iIrX5}$%F4;V9MJ-;0Vf> -{vS|F0|XQR000O8;7XcSV{oiZ9vc7vc98)9Bme*aaA|NaUv_0~WN&gWV`yP=WMy7Kh_0a=o+)pe??-+uMhsnaj*@7`_fjrY!OzB1a`+TA~U>&|e0Yc -x4~aMS+R!DzC#zk74E-x%NB+uffuu8ntYZ;zgSFd1Di|NGi#a%p#Kw0-K-V~y6i#wT_U#*^_YBlD;HT -;t;S<Q`t#>s*t~fD@^hP)t~~SX#l}YC;i-oCr*p3Hu+ey|apvbA -{rwq-cr<_VQMlD)_@`!g-e&k`W_X{$pJUCt4F5d4s)?mZ_!rn^P4^k$ud((S!@oGg+dbCL8?3z#`4a1A!1{TMwQn)}%M9-@{B71xi}n8%HV=F{-groVC}y)!@D`d|B1Edx9gwTwDGXM&W7J%?Y}X@2W&XsWW(>W=HFt&XOsDDHp+~3^D -nHM4r~7%hVy>@jg2yA{ro$_yR7|pSwH-t_#PW3AJ2cVepol(XTxu?Xn(-E;lueMyKIy7^WO|-@Q>KN; --mjD>%PVCpRjH?{!=#kCcC%)!}{Tm+|Sr``S3qtIA05g?7D2$4*!nz&u00MF<6_e!9&hqY%L#tnq8MY -D~F8PI!)I8v#fn@HV=o4^4N49GREVrIpOiqzs|1Ooz3PUCmu#rhm3f-Z1xX5k-Yk(`TQ5koYm5X^0X-FAb#Kh@dGbN{J`glA8< -hY2y34BG5Ub`(M>@7zysn(_W|*veL(!c1LDVc0^$c=jQG)gK>WbV5kI;Kh#z=B{Ft49_|bnr{D?Lne& -7M|L#4joS#Kez>F -(7_4uQu^ZieDgpN%2d>uT}i9h#&3ei62oFBz~phNAr@3Um|`<@uQ!B_<;w+kNyMV2SpYneo$>d{Aizs -_?3zucpBpG&v>5=ldt`PP7m6bb9(Sd1iX*-C7qsS@jmd9ypMPT-pBL@ypQ(9cpsN7==1omxy0-deBWt!LPOW1;LMQ%31tcrw84a6#SCKFE -~9~;zzh?EPgHVYn`50f**KErw4dJ!LK8Jz>6h*%e6%O?8?V*dIaJJe8Qa`iTEXpA9z8h2Y4~!2OJPT9 -=b%tkNy`*{OF~m;*UlAz>7IOfC~~ohFMJU11_le(Y~bO2VN12KbF%Y5I^8bDE=0+_&KHO_jU#1m-cp3 -6F;tdLWn<-#V=Vsv4|gd8jD{b{#bjvOCtVQRuB3qruY$UMJ#?Psi$hhAIIWPt@yJU@iXeI6~F6eg@|9 -N`0)@G+}o`f@dFNsA9y*%kJ$-`AMLBXw<{5UV#Tjb>XEWJCB-ihzjkkTNyHDhnAMXwsmF385kIF$S@A -19{#e8>rSVI|kJWZUh+nDr0k38@r)2f4IPnW<{Aga%>QO3wE%C>)dVm+SdQyA*67frE{Age0&D{>m>f -uxHLzmmkSRQwY0*NXort0xxm1249@i{>R2Kk#|t2b@UprzU<-TSXMVK>UEKLHtbdGs>&29@kGz{ -BD>v@i!Jj{J<+s{F2ANEX7|F|8cCI!HoDhwME<9t%-l7h=0X5cb7!`cvjL7zt-we5`V0NyTEJWk3js1 -J$}n!MEty`TJbkdB=OgZzgGP2ULE5AS55pei9hkd-43hK#(q%~zw2jxiCAr|pRI>1#Ee+51Mn)p} -A>S2nXQBrO7xPFcxelX{1691|weoS*I;;&jBzp_S~miVQUy8`jY%IaCx=I)A|+^v@4&slL!Mm_PWGGk -RGs>;0TiXU;6tkt6|*&yZdYtuP_CsO>%T0K~8i>=k8C4Oa9=2#xTvPK*5l2w^8{DOJ>+L8^isxoV9^# -BiuA9$fW{v{RX%-H5GqnKmV>H%I%@oTFxpETl^YW3i@RHG_$YU0N@7h0<)b;$;)NSk2wEU6s7miQ&bF -A@K;YV}COA4~BI#9ys){B2gUfl*1ka{RG~ziL)bEaI1}9*OuRt4B%vlHyOD)w3LrUu*S92e?vOJp%E^ -Qv8t)aK$Rpru_~J`dLk@M_GPED*n>_ywy -+QvB$qAn{995Be`ymN{|BhQuG>l89fjdeFY4;@8&dNqurxBK|nFdQvNXc5;_dL%gh>Wff^#72=l^Kk& -L%PkF_!_4t9Gh^!vTJDFR1v@{zPQ;B;MR*Nj;1L;(doj;{8~AyTB9iKKf6@`?@NMTviPO%Z)wkODff0){ENGi(-Z6aTiWliNZ;QA9`HW!f_u9wA -^0;^v4K77#~^+osYmPd0Ivw~rxyINl6oZK7X-iL^ho9SV-de(@hgd6S)(o1-fpZ9FDi*&a(X18aLtSaNoLi#^lFsL{5hyqc}^~AM -$lvzE?BL3AlxVxrSPb9@J5kJ}|s?jDX{uQx$1mXw0*v(zGx67WPcqQ5ZuV@;7YNtm!w;QWOTO_9^*12 -6=H%*B)G%uFMAIs^H()gvM9;s3f@M3BF67MUMdSW>}+N2(B8o#u+tIg&FUNV~#%v>sse@RI__GuyFXA -jE}Y5bDKFA#sM+MH-#Q1GLDMTlP#{1qd9DUDy7%^6GZD~Vqa{MvK7xaxw>Z$--HjC6iWB7SW)r)2TRs -?;M9zvT49O5=}neoG?$)J2(Ryw4trc*nO=^L}cEm --f5jYr;0ryz1$e;@zeM~?a`=I#N#;!L@B=>)4nOcjP7mAKWvl!Miy!aZVq3eC;@2i~u4_(DYNtmaekq -GTwZ*R`er3T1p){vlB{zf`axwc@Xu)1y`V=%><^dYIM2R`W5e9wqVDd%H&yf8 -v4-+P&S>7QbZm2#Q~_dIaKMR>1}>@hdC!EXm^6X7OtkzeN0!;@6gFlZaniutD0}6%@ac_!IB#wi)rWR -lE9MVL|^DA%3mZlQ@fi#S1n7UTjTfZBmb9^&~FXAXz;^7Jsb0UCHW^YIAC>9&Iw`vW{=Xv3gPyKTGOi -t8;xleypB=`0*?T#EU$O`OgtdH -kt~Ur_uNJHHjHV1uOirGgE>E1uO8C!I4f@v}lbY*nQ{zEvmn94+`y*zv7MY5bA)c4M8}m3Ti=8h>KJF -D3P8k8er5uNC}~($G55__**QCpWWXhk~t-(Ms!CxifUumZ&XM4NsKBiCViKX}@;;)+GUzWuWJdNU)YI91&uT}iYEdIn6zohtqm#odH -Bz{Tp*TjFUq#o(qZd#{DO6o~{e2Wo3yI=8&GUIO5*_^+S__dXKB3b;)D$y3n;zu{dtR5}#YmaZm%H|Y -Gv}r5#oG{{-j&H@P)FU0=N?WNXvEpyDyRetQERK05!^OXFWx#lIxt*Jg88jQAzRzn;XeJ-<~Ge@*<;s~)kr%hLGSJg3jtmCZ{6R_?3zua83Lg;@58Oo+!ni&GPv9yd6ROz{{m`N?AR?3ug78|B72Z67etT;I1~S -MWNgbK{~({%j$_#oKwo`Nlg -4`pD3MEuzKor&YJkASBM<45x}-`|ovel77!Sv^8I{+jq}; --6kM9`Sc(2e|n7tCzPKP%43#}kkDrSn^{l6q1*J_I=!r!9k1rHQ}8oF3j2o923JHzn}{ueWv;#1FXM+O3Hn)OI4acJVq3h##+~fcSw2#Lu$$* -)MA1cm34F?}k|uf1@UT-+fK|?w{omKZv{_@nZud*xF^uoQz^>;&=Vj#P5b#6Mv&7e&2mf{O+ICQT*s< -M*OdyI`x=&s?C(XxU)5SX}mMqYTUXr+#lYWjP?&2lRLvnV{5$C*x8*lM)$`Dlg4|nqwQVW*>2;LyZc --2hxXPto@xx-AIyEau)8zaH{HyJX2*Sj{?xcM+}pDQx<0(QJ$n4$iF2o}zi@4{n>RPFKY#v(%?r<;zq -)z-%I1};&pdmzvC(+w!nf{vr!$?C8~2;d>7-=yXf{Rjc{HD*t$DOHMceaedy01E(asd@&ZFHa+M7pvQ -?x&i_NVB8qZ1#43$5+J9S;VP-Slt}+AR;aco+K~3_=@uIEd{f56=ge(FD&&m-!ja=EKYU6la5Z*w1l3 -fAcaw$@zSYnV;o+KE}*Xb3T9nGC$Axe3Y4==zKoPY~bM_%AtpYDE(~bL6m;B^B~GCzrKPf{d~8ADE)l -5T$EnjH9Xd0*e`jk&9KuR>oDvwk98UL%O2}7>{mS2XV|ZLY%s%4pE*5!E}E>}JFF* -_~ofd(7@FHhWX-g2(JmSku3>p7EG{z4iSyp7m^L&8)tss*iij?&I|RBl4Wb><(SizZ{?Un2BTHfBJ%l ->~>?{5ASz9=ECs9`#q1jF#1#MqQ_hqgDG~&V>XP;hjH0sHjK;<<%*|w7l!Ze6CQJ6`2K$1V>XO|@9(O -|Oc>Pcnukmn13v-RJ!GTE{LOgLV>XJ+Pv{?b%tkTrqx(aT*(e77w}0d@8^yr?_K*GR$VNdk`X?Uai|S -83#uwF%8y@7V>d!pJSJj_;j6da@9^+5>UwF&}()DBUygV>*^n4helLsb@p8p}e{hBt6%>Q(YKodvLWA -y54+PjhYd8QX%)9wmpehJ+s(5|bdzw{jfO(cCk(__MHB(zTdl0bV;GQR>}CeQ>!D`A^3dsCV|oV)buH -{taB(t;c?(a@8*OPGmf;K#j3n7t`9?!O|?t}Z`B5(icW^!y?`Ak4%1}FXFUiQQZ1}6dJ-uCp=8oWig4KTxX`)$H47xV#l2)0quiZ*zca2sd_G12c4Zeyi2Z16teHe6 -bW1|JY^!_8*b9TM)solOJDPNxR)*)-6T=XT&(KlJc9Rgll7haNzu4D#9Z(DXZXkYjoVH2qE?*8tyx?&`A$-_W|IctZ{uyv;)U|J@wTS%Uf$gqdDKMf+rmrCth#97 -@AID`)CSt>5&UU_ZJcdFKSQXCvQO|o5Nv|%;d-AX)ZS16KS!XAuS@9X2{qAmkX+;cQl444(ZU#BBhD$Oup=`oKsuO*w+S`DwZqQ@Wmb -gbxEt>fYM)75?W=^E;M$mocL}xcKA`UrYGP|6w)Y9`Jep#hIYokiKOoexETJC~YE#ECu&)tnLhItbdD -}6w%A^(Mmt|I)bTHhn6KX@l)xJTf6^jIZlR*1g$I|&0p*%zK+XR}(x?xUPW<^SdYkh}M_r&39|4OiZy -NBlqbE{U`VU6(I%9S=o_FY2llEj_(9-;Pm3)9PTD_MHz;XesAv0=u(PoRwrP5+BfE5LAve?X{>4a5B* -p-#9E>V3&P<0+*-BG9HI<6=K1)RHDH_7g(wdIb7YLhX7C-N@V-8CZHhBh;Q0!f-z#)E;}qZ962?z85g -E|0UGYq`w^KFn1nCI}1_!O7J(6p*A-ExH8n*1fBteV-8MYlm^(#7H=c~p+)A2unDLf7O+$;1Owi -ma8hSav0?nPC!NYRs**CXxrW5+2xhv66Gfb{%Zlw%O8hN6*)iG%K1p-ZIU7)WKYLzF@FA{3+8v=fvP! -rk!LA*hzU6OcM4&Nl$#fF|e`{q`=bkXx$gjy;=7hfjS#MZ%7zD=kJu8TSQ3ZXVSw0(zA6J0m-ZgZyX4t@31ym@=+ -$}`ViY-}{HjdyNukDh)o8Cl==+GuiVcWbo$xa-CG!UvFax+rypP_lCDEerGu -Lp#8z-WOs9Se`~bAd3U(CAsfc?-E7{qm)&s9E}p;q+;n`?Hj@W?<6Fb+&Ar`&@nrnUXmj5h-W$!cgS^ -`^wBQ=OJR0q74i9dP$D7-uiS@EKK0e$&7)}50aC`60@aAZ;aoR{Eqlb+4F+#_P8lzy0UNPdtC=nw&jK -(l}!iWc>6pSn|8o<2p&D-6)%FTP*yrj(=*}Q(uyVkr}&1=-WGtCRqybaB(&%Ec%OU=B(%=^l`oy@Dqy -m!ny#=KC>+rzvn%zMGS1PtRFem7)pnA^~_;bguRbcTHl)fiqeBw`rD(1W1@ -^W2+<+&t3e0X9#oc{I&)XdXKAfSHHMJUQkuG0%i~0L*GPOWUktvuMo(|8Z)9a`E^v -A6o#~ew$92WO&tHL1NhBo_T~&>h2@_M4EYjklaB*VC@dV^RB*fuhf&nGb6Xhh%;;hce<}B8cV%f30Dv -}q;v6SST0rh{St5L7I8oGVb?^IW#0FJ*{y23R2RX2WpaqCs#h3VvOYk$0da{Hyx-p*ut^5*T~bZ0a>d -2mDj)4^!AKb_ndO%3dXs^^>|w*UfWeil~%pxRGh2Vo!92?_8Dg!@-zEQ=N$4e`>b=^yt -dCdV|J>QEX1KRIQc2uaMb)1ZaN1@PeCoz9p|<7up{TC`2k*VUYg!za-rUG)Q(keJELI5vGdY=$X|5cO -xW|f;|zj5z^?Ps{IGYOQMBTo^V0l6PMkByhju?#^SY+F*tgy*w`m&?u -DKBj=x~`Bxn|AG7&uj+}ok=WjX%<`-lBmUAZgEjfSNd9`y -U?>RN*<1zoxd3An*58iODbbjmy?>KLntM585&X4iY>&`po)qG?Q{pu6h|7o@!E~Ax;Vdafs)hLE#qZp -P93`=heO9qBzbqp&8h84uH@Wrrz7#0Y_f`MUyFf1Cxus|3V2*UzmSOvncfEboFV3-K%g<+DbVVK^sIS -fmTVUmj&Zd(jH5N+NK%Lv@CWMEi&V^{`q!+|i&al^4oLJTK$xZwd|*u~|BV>n(n9Bn8O$PKGV-7pR%5`gd!oaZf#<17~3`d&{Lk#0=SXReyQXRty#IW$huy-~ry)mpHhD8l-xE2hPyz*?g4mYe -Bc({zfatup|VF@uT85rhd!wO -5#yfniQI%$cIY7*?xy!x+OblxQ>?#u$d#Fvc)+!x+QZ4a*R2*gqSV5W_f>U}eK4p#(9pnj5BrEMb@q( -qJgT!Z7i++7w-fFzjHB>xMa@1jaCS!x+QT+YMt3`%lqvFpNV9wFwwr{S+N`!@?KCaEeYa+%Uv2Y*-Tr -!y*udu^SGD;pnI6h^&<`Oi_gohC8-z*a6t4Ptp0iVF58LyfG{o7#0x2A`FHfvMD-7rv%0@cEd1~fNq$ -9;bt4w>cB9;&kMsmHynAxnr7AEGOCW3ZKo}0wHw;4wjA7 -9zh6M-1M7fQgqAS6$z!)aEh+%27VFyYfF`TR!hE)U@R;$M_cEbq+!wJH$gcwdBh7*Y41YtOV7{-0Wi6 -@3Rof0sVNDzh-gyDpN;lvxmxKpBzDY|$tOqP1peZy_ru;$_?AchqK!xCZ`XTveLVYOy%n6Z2VyI~H7V -Z&M=HykJ%h8X5_N>tB=8B=tj+;HO!Yau%&N7kS@sQimI^Bb2Dc4ckz{K}z$T5_pO(lpFS -+qQjjM91O?Mu*Pu15p+s0mTw3KhM^ml)iE5#4MPlzKp4giYq)PXnofyY+%ONrtcEq#6kXdc-*Dg&cc( --s409URIBwW~`348WoaGzdZrB^cv35!@R?!Ith6Tc~@WgP$oe~r?gurmfPKlCGf`IF@n7IVQeZsJViC -A`6TQ@iC-#5&`Fb*XGVR&tp1jcY3p+wg#xTPTON3$XP6>%HEURO<*=%^T+;AOJbS29-SZ>(P(77M5{J~ -$l8Rl%T7OG#3Ltz{ZH#KJD1a~bFtK_P~r8CD3x{ -{3p4OoD^q6_{b(>WvaJ%*!M&hHKei%{EFnpPG=r2+G;#Qb7zWh+$4N%yGjQ!`KZ=h++R|7`F{8h+$4N -oK(lKgc!z|1dfK`K9>?=SV9crel=Ac!#I-&q&xY>R+jvK}p4&{b%DB!`_*MVwho!VZ3-_v -!dZx`Xu!IefY84d&4o@?EY%aW)h8d4RbIot7BL|4C81RVz|jn!h0z*+))B%5*#>4@-hB@#(I~-Myivy*I-3kTcU(vc<94-XD -J<5E!VxqL3rJz_b~U_qgVV0&O<|ZxNJwGnOW`1EH}DcV|2~O_VF_Ky+KuMTu#JYDn=9nnjdjCtvuii} -%`gYUjIQD14JGR68eTbuITLh|W0>Ryqv3F7*e1iyZ4~zkI?15$x~-tY6pprOxX~4KIFf)A#>sG`6Li& -+VgCs_Y=&_%965!fF~fB<4NIFzxOYq>TMbJFhB^C5U<@mWVF59$Acp<-lfW1jv0_+24CDPIM0E@ch+z -RSED(nA+6|0h-?bZff)4K|ArOY)+6{p)EEpIT-WV1T!-|7pLgl*s8feLW5+wWl@CM#bLfNf`oqOYWg3 -g?8B)u-#6=x!|!R!#I*?)(by;$*^~` -ns+kHp>U)N=rDy>zI4N%!g%S%3cPSF6mGsv0?*G4h{Ddb-JC?ie*s;*UN`~@dv{52R&IDx_@VN`34_8 -o80L84bxkCqX;!ms63%7h{`wII!~V@`oHhxJVc~6t@%$Xdu>S(OW}DR%!f>O_YMgb+?=pcrrH-<%ZH_X8>Y?Htk7S%C~-LOCymJAFFgkga&4 -BI3G#4z4zSa`c(4u;p&4cE~oL8=#q?F^lB5kg{EHi}{YP~zAPx5^hXbNVFUb`p3Yv$q@OWW&A~=5(t; -3|Du)LI7+# -x&;ht2s$9S%p3N(hD>7Kp=vQV9V$EFg!4Cx->Y4#QMJAPx(}VF5Xe_x15lB}CkIxRz9cP9L8&zA&0Ra#vBfl4&$ADActWr0XfV`hyDF< -;~XyW!?kdjx1|J&!@P93WV2zr=es*7AvvtPIgE3OP<|N4!xD1XKbKfD4twVkn8SF7HSawoFo$70%;0d -CT!Ik~V-APvS&L>JUC3O5)jC`YhwTn)ZuQOQ5_pTXP`QK*kf(IV=%}!!)fi{BX0mL>(L^bJ`$>d49Nr!#E%29FF!sZYe3+3-ROhhR5Du@v50l*78jg~AI>PhPQaU?N=hk!lGf3uqBWYXX>?{$;4-3d)&XQ(EE`gUcV -?WGT(u_IG=$8kJWt2rFwTcL{Sq7w<7FI@!C^d4hx;Y``-kx|4*z*N28TJzIB-4 -;`y~P`Gjvr=l823wH4nseTIqbch&U=p^*e?P5)*y#D%js~xg!J~q(c -}`u_?0iGt7BDjV*A$I_blfyXFXjgKa4rd=^yrA*34N?hx;WseQO*J`>&@Hz8ntJFX5d_Fn$Y(;fDp}F -k_xhA`UZhiBNtRbC~6a33DO*FptALKU~r;LBy@ZVU{0m+kDtPc*y=?$?(IRb4>Z$)-{*(t(DBvmE;oG57+T -K9QKz%-J_ImFM%;EyzMZ?uz%Z{^0vcxdkKu;P_YE3U4j!!Ft(Ry^yiT9_7V&X<93OM>gSN~4{=}&ONi -mfcYx=`!zHmq$qw+WSfY-0iMEX;+}FoqhdImXII%} -iC4F_9!YQIbO5gJ?TlU+?~Qg^H*XK8!<)0w^q@7nJ)E_6#yhRO$*eVcWqdGejrUr!>2SO^-n-SBjb52 -$f1eh4b~v4mhqp$bxH6jEo9<^G3w7YC<})e_r5Q%ZrOFIGYy`)n*7Pi^WMA;9_;sjIb=0C(RJcK~Xki -tcn*;nn6~@8l@R!Rjg5(VOGWKC(SskVwKViv?^992S#41(mbowQk7=3)l!vawAE6T=5duQRcXdMS*p^ -Ecj8vrGMZcB&l%0F?}X9Z;vO-YTiMSW%`NK}jONz#i$-$_I`QahH*4FyFy>C}xOJG@wBy!c?$M502T{PS!`z)6w+?e_cHBD5ec5sAFg -In#t;5`r9k-5CMsw@<6~i94j$bvJTgPdmxpn-S(cC(I-DqwdpER1TqxdtYU2TPX1xMdat7!KMcD}2>7 -!L|wzN>2(6pVZ?Eum9%@jY!Dy9Ep1OABas3jV#9o_{APnD<_K`rV>)?`fykE!g&6diL!>!L#@DH7FYP -UV8TJZo#eh(z9*J@fgXEPqjBv6_wM;^qZQcuc_X^F&+iz`y?wr5H1}h$Z8Y~|@Vi -FKzYZGy4)lkh_(fr$?;le`V9OvS85iaZUV2b|Dfv&^5;(@p3a%uRcXw5*1OcAK=$azZ18F2P*V7f -I74n7il>X=xGWXuBk7GgtgZAob(k9L+xKwQn?kIw4J833I{rNlT09n!o)$($XSKUG&`7Pk2-Q0ZC~M= -0+vgkwpyVVE0JVpX1`9LaCqW9rF$^lMB&zlX;6*NYh0W+oxsrC@+2+kcH>?A&Kto^!p^b_tUE+x;NAx -kXU?v_vor;GcSEXdY?>97WVcARwq}J`TAbp>SSxOptIMrdP2Is(|TR2w@KIEJ$m+h`W@2s_nltb>Rr+ -`x_XJ#d!*~H4n1Y{KI!_}^`zAYr0aTndA&o@b-mrZUUHM!caUygFMZImFEZV{Uiz?Q0Y*2kmp*Y>P|( -fmrSZ=~jIOPBK;xgSXzAK|2Q>a!Y|^#$4ru(d0I6&19nkn^(Mi|VJD~B;RN@E$;W}lKbx59%q9;*9(|KkT_-)fkN$&HT_rsfkG@4} -hENIx-Xc|3NYAdLZv(o6e?~$sX6(qh-Vpb -Q8<4;M=>Y{P{FH-eYOQ?pQk*cp6`MRSINYz)3p4LYnlB!FihwjmT8+DL9#Ay`&hg4k}J&ce3msDLEJ$ -vVWNUFYSg491ERX+%6?($0{rlk$c+0Or%#I!Pk|NKu#)K|>B|NKu$%<7_p{u!zIiAZm6Vk@=qCKMt4I -jLz`12Zo3zaTNKYCy02OA>Wagy%wT)#r9zFv}w{aaGCXEdkv;B^x9 -0A4t?!iyZj;A4%1Pk-M4y6RBxo1SZP(lr}B{691V*T^AXZ`M;2w)kW3 -*E2;W=kwcvS8>v}gG+tjbYUW|+v|b}It*gBh;VJE62q+ZQDQ#o=RO=fgrd9Q6u>YOJv?_Wg&%aJ$S`| -H@D794D#*q7%e}lxdCVJG*ze!?RQlIKHoK@Pr^y$yPMWX(Owe;&hO8XYFGxKkgsEI)peTPI{5e@!#Nz -?|Dj`=+jv+G24exFob5{>c?NYuCAQV6TGM;XxD8@MWMP>4a4v?}dR$ehgIB~jmef=2X*q^32I-omjE5PQR&`KTnzZ>K4jdFJ6B7nG3Dct*hg`Tf3vD?$1U#u)R8(U7YNUb|1@*r32l -A(QJEfcz1OAM0$`X^+BE-oLEc|?hf~E-5cIY|I@X5(>vpX+eX)awmq9{Po_Jg>Gs{>{^|cO?=2p0`>s -BP)AY&tB_L@7R(f;=E;O2O|y*rxeNc!}(>A -lh7KMr^IZx3&bW~Wb_dFt%b&wT3HbLT((+=YvmEb2{i`RwP0H*W5XUbuC8{NkP6yL*%U>A~#YO -ZUGx|I+-+^RLXmI{(`IwfUR#x8`rp-;C{yO9KQH000080N_fR -R-iv52+Rfm00b2P03!eZ0B~t=FJE?LZe(wAFJow7a%5$6FKl6SX>Kuaa&KZ~axQRromgvg+Q<_9u3ym -=zCaeU2;$%*_iingA)zitUclK(xm=Vi27Agv!yOIIvcG;$>x}{1ELF(Tbe}%`8ZqrkW&elHdtV158V; -P^Xwsweq3isQ4(L{_3QZpbxmw=K&b3rnqOZB%50*|gk`6P4%iT~i~NEn(6BYdMY`A}_GnT0_pjf -C2TcoKnH2~BE2W{+v;kA#VQZzZs_T&_dudq%1-!lPa(9Y4S@T`8Tc`&xKL%;|0uTim7cG}~HjK=oj#> -eQ&!Y}zofSG_^qAfPepMl=?Y&`)BXMB=E>XnD6reATG-87oAWo_?e&8Qg2Rq!WUNhK!=Cjd@UEtTB1m -;Ohm7Y)?2I -k7SVyc>^$h!ua<3RzgVP%dP%fPz8+%hwL^>xK#%3Q-9NfSl0{w~hqdP(CNG#St9TuQVe-5VK-0LZIM? -dJ#?s(iCO@DlWE=mC@3Y=Jy%T*v@7*T02G#fY$1DCzA^9_jZ`CvGh{$TI>gXyR@nNZ&yQ8TPXcB31$Nb(Jaouvb5soj72e13 -0#YRO3&{nA%GBwnmgpU{=T3EDrKoQmyTWhO>C}dj7d{3k!36NWT)=ccP)gV7Tt$XeFT21tTejUivD;0 -X=z4;cLm%pmF5dX^saV!RW7C+;N+K*&jrZ0Nol)l(4|Z1~Z=~;@l~#AiPO9f%aU#rByqGGAaE(ooDzF -50CkEYUS^aVEkD1e*&PLal^k4d5S=SeR+%$o8wuFW-ytb(pVHiVv@7e%V4cGkH@z^f$9%ocn{e4B#xY+n<8yPf2OxQTedg=G%I7}!v(J3}zE$HN$tHa!97e^x7 -vRap6Arc;92o-nD1r^vT38E}Ud9UTOd%B~Kdtd^>LuoZApT*k@UCD#`DMp11Wq;QmtA5%Vwaosm%p)< -T(kYcx58X+)PzTSHSP3U)|?#FY?c02IJ&p8JMNaI{fyl%v44M2v+SpfQf9{;oGPvO3`9w3k^^LQ>o|$ -gk4@uHNVA#506CjgBM~fWbn+XGR45WTf1));%4)5V>(vSo5RDnA%#2U4Ge138Wwj`DFcAKK=HqydGvn -v@1bibya|_*@+ig{idDVa;_b*vE?CkW@iT&=7wZIGS*WUeWmfjV4SqL$Ywd)vmjhL~1GF9C0bCfLefVjDh4VK4+!g7X1PSX4@) -svY0wG3v)yN{}wyr?=4fj-Z)Ic+ZD&sH6F&)qlv?Up*%C08uoA~)6jrF~ENslP_Ql*qQNVq8oNWB%E8 -ujq(~69MXSUK%5JI=k%cAnvsA9<5y)<*vHnhg@6aWAK2ms(pnpS5I$$JP0006xg001Qb003}la4%nWWo~3|a -xY_OVRB?;bT4gTV{&h8VQz48Z(?O~E^v9BSZQ-2ITHQOugGYBfgYNnpxw6HvlD|kx*cnS7jRE>I2?pr -2wUN*5>pa(v%h{{sxB@cED;oxlrLXiQl;wPVE2d4y5G+GbaCG9_D5YhyBM_pO)tnEln!Y8pbYtXD(P7 -m3iVXYl$_Em)*%JLs>qwi`cB5R`I7FIG}L!AnoAke9~k~CScEFlHKYHmIbD(lvAS202&m0Eq5D$*R|S -Ef>qtGx*kHzg5V4V#rqW8^>e$f(pK3UdlvNPx$R`=-IjHoE><-nC?@McZF_#z$!$qWgSga$1+jy>Hcf -*EV={OnpV<{}$gC}+;m55o_dMj=X -k`pnDr6i+g_8Cr|(o!$T2W>2;$|R;DsFp-D{awevyINTC&?1_`W{!ZBacHu9eCuD+g*5P*zR5_&pubw -&1l2B7~9y1R`)O&2mC^dw78tPr9PDv`vGdEWXMyOHqGPYD>6~0ngShgRPF=t=}MlZQqVM& -Ut?F>QT>6BFD)IK1O_ydJ-^cj^(caj!H&K5xx8X!x5pO3!}uE*5s|D?ZL!(ppG{&@;nqyn?3g+!AI=K -(JrcomDtE@3znTy}@;??AN9&M(f#KiT@;`MBR5ji@&mQj4xy!|{3h`l2gDE|TCy6xs5({uj0u?e}?v=wpNB7QOK#G8#lA2MZZIzy5h1x-RZeG|1)W~#*_Z_CH;#&mrB ->29{$vc4&1VusYp&sgYkC^dOWDz3TTbm7-;Z-Fuqb)sdHtKoIqOZ=0})s7V{<)K{4C@!DMdMM-FWcf6 -~t~!2AI7hdbsocE*2MnNQTG=nT)~!RyPw<3K&iV9B*2=5s0HQu_kFq~SSXl -+|pA9|#nsDW%T@sEY1o@>IHTPbF68)ILj+zp(OrWuX{F^ypTE{ADHLJ1wj*ZWjlFcO4aBJN#z>>x1Pd -?fZ*3=4vp@@JZyCmH$Gx{;Y -goWenC;|EwjUd8C(L&8?iJuD0c$Z^Yik8`I@zT_Vdfd%ce(?ZKL~w_%C5VabnIr8 -n&^bbD`n4_tOCd6R_Rz2rK_yah`d_3~QVj?*|3p!ufBMBz+7nUswTW)=GMC-rqClX?D_1y1?pN-dYG6 -jMOdCLpsDZZRi*+Ky#8Eo8XUocK5fp$Yx!P8v5VvbT`Exm_2HB@P_m$n8r8UNY|gvVdvpxAc)#&nBfD -aKPO(XpQSw=dsdh`<^$o=ye4d9m;1Oj=7u8df3wyHSVa$FBov1p2BWE{TnM{%Y8OC#b|e-C*YSSXxxi -_nx$}dTGa%eaDmPksx%h05As($ylHT3y?SXYjcf7!3xpW9%RJiYiEk2#P!>TqHZEcwOS_08`jAEA!%M -mX99S0O{w+Npid@g6oI2?$LS^NI<&zWX4d0t&m|rd|Z=J%`qh_Hw!y*J}O@)ZrthhJjY`&;uJ} -&v3j+{21;?G)b?K*?p__u2S&c%vovE$y9cbDu(%1?n6`fY`9U9Xy@s&Rf^H?gP#S34kIjZLjT7*8&{T -Zp?@ipSEnjdu!nHal10!h%(M|If&-ESS9&bwx=&8`}iP~J>3&w@wSGgF -dvJI7$og>iC>5I!16i(pzUS@Q%ySR53$-!Lk%YgL_sCZEgh!v0NzNqZ7w#%%KsL$F_b2I;iMCpG}O9K -QH000080N_fRR++Y&k~#$d0D}$y044wc0B~t=FJE?LZe(wAFJow7a%5$6FKuFDXkl`5Wpr?IZ(?O~E^ -v9RR%>tCNEH3fuec(r1X{vEtNoIwl?Z_ZEdc~ZRg^~7V2@!`GlOQv>C#`nXKXMJo9uSAs8wL*-gD1A_ -hDaMm4E22_b?dIaM10IW<9zaj=O)-1>3926?rR8V=b0KvY5Im6*aMl2t -U>+Le;2#cZ|3e-0vyp5+o8G7U+{6n2G*;R^tf=nwQHEjT5H -M@ifO0&MB)z1$^??TozVTiBvLxJA`7B(dJa0>H>hGikRV4uGfLwEGB;&fQ=*@SYv}{=gg -cW;5!Kr_`ZIXX*{Q^I>O7llgQqp7oljIOltbotR}J=MqPNTq`Jv$zdWkS?bRyuK~e0q!oMPD09FuY9T -SS&1U;cHH?*9ruo94ONbpJ0m(p9ArX-tycZUoXo)!e|1(?()(!)+vtU1rmCODS&}*N{8&F3#_d& -O3138Z4iK8+O@7s|AET@|kfvNe}mim@&CD7OlHx!AeM;Tc|D4^FoHX)A(P95EqPzWXnv@c -nWkTz#LQsxCb1QFTgy-Q)J}e3GhwSxwOUR8mb>I8>6eg44#LCg_2Ma!z>oAo -h5p+4olK18>^YY1E~prP9i+uEY~t@W){tslhGcu?3>xp!p9j1I|S0?!!cS4H+0z01`qB9+<|P=77$i1 -TpQFV4(Igqv&zU)*ogIC#IN!W=jCfg^J(%$_CeRz4QgX;qFbOA|Wr%H7VsrToTxo-BR)A95)TCRJnmP^zmKk)v -C=ra$G{$g+^u^;25qR=%<2p=R`bD516jA}*U5LUQYts?Xxw|qQb+ON9_y=+}R_xa==p*3>$MP58M{2f -Z~1lf<+i@^JDn{JTbZ`6K04t8n#ytMY|r2yCM*Gggi<<&VU^nK6kb-lsp;pV)k@6cT;>vO4+<;ur953 -9L1(~ydTm_nrGR5B7FmjQ?Em+XA@IG%dlx#xS2(;j{d?@#>e|E*thC(Ui5c!Jc4cm4Z*nhVXkl_>WppoX -Vqa&L8TaB^>AWpXZXd6iY~Z{j!*{mx%8Qon#iIbd(4-L3W{$O5HHLzIB3>U2UTaloyyBim_}{p;_ -AAB6xb-C2s1%)EJ?c{6ryZmuut4@P63CSz~lM+53lrruBb4fdvXL$fufsSzuom?TdpoP?!E{Yyy6Xs* -N?Hx{0F&5Y%a67G2Hw4oT#R_(wrR>BFue(*Ogb;b?pl-w0+;C=3F%rXwsW|J!sGbgmN_%xX|+Yb;^pv -}%68_pb0XjyC-FSlZ*E3PT9l?-B@m&k)p4`22jxfpoF?3&J{obw4RQ+dr4%uOCnDy`a$=UU(q`9 -3eTQWt(LNCxYS3?caz|XiU+!Jb1T55Tbq>4j8JiG*>dck-V+OJ^uz{otlIWp1L|&KRSZP8+ZE4r&7+y -e#Lf8TfnJ%9Fm2Q2ynFS@>C5}Qm45Th!?lq--p2p$KacaMl(e> -@q_p3CfqQT@OXJc4g-`!(bW>TIe|E2Z>8DuZjF2aSF-52ewpC4{Cp&<(Gd -TT)8UtkD>Aw`8(vL@_Kg&18%GT?eW2vpv+ga&u*sP_r^NEf(*4u2ZR6PW?uiL$$49aB!m$Dil% -MGnwcSVR5qCiXfep}K(ZDy2M+!;H<;t;4Bd}b@hd;eX*9-pu!{o;Gc)ICPBcO9KTZb0&r!qWd>v0XId -I-q-vk#;-80cU^C_g4AwoS%N>yt6{srN+Zye4O^6L{8a6}aAe|HDT}A>`8V{vbD&eeYRIq7b;kfCMhN -SqBfU6V)G@#lwZ1YYq4fYD`yVXVOJe -cZ|TQv_~q)BjHnM+O1@BsdQh92)y%d`C_J)E>iCoxK6zwm{==rF&e?@bq6;DCE|?En_YQO} -1I(mrm*XNxR0iR+Q~M!>Eg?&c#a_yI0@O>DRuUR?56*aVxJ&WYuOW*?yK;TJFn6@7-sh|DNi`E;?en_ -vO7LFu8Q0CFe9SEZgT*{{gqxhYPgl -oIG+QfobCtygNT&#d(&)_A-1nYBK* -)@h1&km<~t-Y=CgYkH}*0kbwJwKibZ28lIIw1doG)(mbGeGHYh3HIrF -0ORdeBwRx$vIkPq|wMLmWT563lYqZqbf>~Qgtf`@j8H1ki!x8TcC)1=a#J%V7a6G;qH&aQIDfmZG65* -#TE5A)rLsb>EU+J<0Nf*<}-Q{qce}m_W{u+l`V#pPw!>nZ`vP4DZgSPR3;Fv -LmTuEScclsde9d*F5?kbNXjDgU$du|1cr+{-y3;=F!!1k1liJYPkz9b?vo_b6=hmFY5Y>`~i2~*t>L# -_x#zpw@%J3DVyID_solz>hovk{+Jhs`_kKHPaH5WzE#;C^0-OyeuZ6+_r%5W;#JDxJ@KhU#RoBwXay+ -4ov566BqYSWX6@qKP1Y!`BEJ}VJl+FDF0WzQ{%_&K5c)6D;)garX#CLOhb}+#_@U1aIzJ59Ngh4=WVt -J!gdH0BZ3~Z3(R<3hZ-*bcA~Pg<<{Bhlx~_*kprmZQ!qj}dUV{ntl$Na_Pp*6Gs-;U$|aHED3?rzqFfTh$5AdJ(`&gXm&6*5a>-;U%GE8#P#oow&?=5{Nn|+6C6l2jmqdo6Tr!z -n&heQjmrRDDTxwIiXQEs(8H#dAWH`zt)O0gZF5cgvFc*n{8*{TJ#OEEc2*t4WhuANGmneo+51FgA)2^ -+_<5+cDbH}q6e@JVzbR}|Dq*(RpfZJ%RN;?zwi(G$>gOZn8<3X#h2-_>UaolgKdq$Ycn9Br*&?G8uv&i44P!Oore`BE#?_lOgz#xHb$wG8uv&i -44P!Oore`tpz_tLwvsqehPz_dxIZ|48xC1hTumc!|)^2uux`}exS$OdXVo$9og1{eES)ytLtw`#79|I -$~=iAq_AoH`c9NPE3p&p6gkoGeoLHa?z#m|^xHUgqF=9nKRLxdG)&0E57JvcaIo3bX5MLv%BMpGyksg -r6(h)(PX`AC`KhRYmfEr&Q4{4OSEw~xsV(mV1^FrGm(NdoJwblT-R1Mseol~|a&YTmi1+NGreVTN|cX1lrSH;CQ&~2Ny2>OjNdytH|Kr^&G -eS_JHmYAa76jo)9|y#Th7Js4j~>?Bc|=cZ_$`q>Zc`0YYWmeL0U(U))l1n1ZjOinl4Bi6gWsCatbe(C -OSuyCTIy^nxJ*UyI5ts?*PZUDvyh8H857a*$*i#SI2_k&0U_OL4V9EX{H&%|M--%|`J`Ot$=Qt*jK6o!#l!(fSxWMzm -iCDt%z%4CQ(B{B@1GTGZq>$I$NrgffKYlmTauM&pQ3Wm`z)(YpjwQ_VTiA!O~mB|q6@h2n|8K%t*~1LTZ`ODB*;_y$zog);b!Es?u`5XxbEMv~ -{JOkMc225kXrL=;OP#dCBXC`#2McS*>3b?hE@BNw_apfefnsROrf7g6EjlzMQtTRvXhAPucQobAOjnG -l?5W#|R^*n78(ZYun9{su9Z&HFSUkoO(Mg%CX*ptlgKcx$z%xEBr=R^G8w`(i45bK -OonhxBEz^QlObG_$S|%6H91_1dc2qTZd~o82<_gOZolJwcv?{*MZZ4UA&#q7;6-Uq@_okwkUN|?`$CX -wkg3a7lQ2wk<$<&ru8#nubRRsh^%p|eBE4`G4v_K1FG!m$5z%2QjhwE+MJX(wt+GHIYEs{43t0p%Tgb -xntfl3EStuJk(`XTj;Mpa<<(O>c1zvXL(|Nc?#KNQhSy9Ja6T>m=wGVl&W3QWR#SijK!{thz4BKLhH8 -}TBoZhP;q?Zr(onojnEp5+xw0rEBU{uB)+E{uH*SNpN -#9$QirfsM{ -fnA|Pv24EBiRBRg-|#ndT45j14432a-6bWD#y$1P+@(G*YPwEfF#QVptl1j+W%8Xup9y_m*dOr~a;WF -Aj?ne)ttaXnm$mQP#-_!ZOh_fEt0p-ZsJ1oyD=RVMgEIsTN?#Ej -UHZ!_0CdMt|&LvZC8z(|lHW{lgjNn1G`V!~iar^6IuNJfA#VCje@ -HIY%_MdZHfCNo&!mZM-&>M_yFt1CQj6!|H=z8AzJ($G{z%YaYp_=~@2r}AIWD^nAGHjJ?i{v_{d5daB -mkU^l^>ABMCoeon3G|Cas=#7AK*4_vxD|;iLwCs(5va-Jp0gZZ79@?zASqV^Ata49kOY70DMXr{>s -zl#o>`CFcw3RYY>-MKdt0s`D?|8%-^A?b6T&CS%1`@SkzBH*Q+}SjScdRPBE$G3ljZQ~FehH&rDgT>G -P4+;GPwgRL-^EUokFYlUk0OEY%Ekm|KPs1y1aj4`DvPBo#Sq!M>|3hiLW`VC`K>#Gl=qADQBMsfi8wT -ZJPzde^pY^H1~tLMDg^f1N@R|(Tu5sywn5@>yTyoQ1M1`GCb&KP16-^$2WGD7V4-<=fGR2qbr@QpPRn -;Q1O&qRp}mht8{gx`|>?~t=8(PO7Fm1tEVfyt)HQR_)zhbeO2inc&qevrT;3luwBdPs-how%jvqJZ~H -uP(90hxo^qfng9C4sfvyZ*?Rl!+a)zoH2i|gqt{6K%PxVhfQ4lp47_7guRF`E(KPDB$Zoi$JDXI&Ejq`v5z~=s;TipJ%1BYM<5#spO)npgj4 -52kR9duz9R<}*dN@+!56!~_cVu-*6pOF|H*c=S{)eDiWswtIM`ICmot7fg)2o)vdTB=`4w+5h4&ek?6 -gstMK!c#k!HjS*AAkkznfJFI|-b$aSv6D{Qyu)0|XQR000O8;7XcSTGKk{EUD -z>n+Zf}B9hv`vH-y_A%!``6z`>TSvC_J9?Thsc@Xa30^x=;WmSp-bmxFrwk0?~JAnT@J_n-{}bLN#lf -O8%|>_*1~6!`fABZ1aznV6jCyp`{IS`06X4>>41l{5yzXhvLcXNM-b$<<#k7&N+vBKBNX`B!op(BC5K&9srk<2EF| -+|qc);}wU&c4-D?ij?5#fH#;IxYsqC2La>0ZdS7F&8p&@iM>(fvN$DBn^{H+%drsm#90?rSZS7zienV -xgJd8|$t#=M<<__zKNG&|XF4F`qPFiXc88mI{ga%U_fR|5h!g7973H!Ei8pFxp=aW+P`hrR(v8dUW5L%m)4Wus5Om`Q&~)b=q()=c -$Q}G3$(+nRo?}TLnuZNtlp9eDw#oH-Lh2NgMXU;bxB`tCqwNA-nzG@}X4z+TIr|xj{dWSdp*77QJeL* -g<$!ybCG0e_O~3uic`HGY~QVS;7TVuwRQ6L|;p#bc-%k5E|0E9(X(FXJ?&vXTNsNh~`tQ9DB$aU40|? -oHQCMjid?pJArG#YbLj@ga=KAh>sSH*p@G6(M}@R#x}s1Y#C5O=Ec121ebPNEnvAsMjwk)9^Tue5lVk3X=dzjW3g7@Lq=@ -PI*ys|%-L6XJuOqfDtQa~sRIbv^;F_>x8}4WNtrmNHYW9$bayHM`n_=1!fKaRQn -AodJafKtS>OrbN*=-zL6;UvNxRA9Zo?KljFmik@z}o2(pz%*Y47fS=(y9te;oQq|M)FlymXz>cz$#1P -Mo1TyPY`G+wt%U1ZSP|--r-q?eh!zsmT4`bIXcs9Lxs)#@g+8GV9N0CH7AH{e>kPIXAtx$T}AdOSj}J -a$SMa;JQt_VxEA@RV#Z-3|;T;oJ<6+<_7EdGPWQNx@Hpin30$WaN`K=W^w#jGTRflM#@i^PU+nz``XQ -Qi%`0nr|nGZ(~{clI4&T?{>}D)ypy?O@Zpt{&w)AsheTfkm_Xwl6FSA?Bmk`X{bVE2N -(hq7PXruEo(MC(;}#&+bHc{j_hf)8X?@41z@~j_TKP!%9Y#MN{_98(qU|3mn@w9{{}Nw>O7g;s~}%{Z -BQ)Qx?T*Hf(Mo8`wj*@$*&c}eZh*MDL|x}ej{L}$fInaey#bNUa*`0LPWu$;XX5e5ubA}Wa$ayd&=E` -1ggYpzH1)M!$|v8s&?_5MlH3?x-#7nozp7tJ@rk`cuUueCev&MY_VFk&|HSxg*x51Qa_saAYL{N+5X8 -YUaYs>B3_NJ#$9yX&*-Owg!2J-`0ca!p6)B+Ik4r+^g#YPFcD#OORHAV2|F?k>kex8Iw& -5RRd4#kIlOI)Ub{8*ZjBGpU%EfD#t1!MGNfT`?b0f}TaFgemIe6;XH>VbTsb29zQpLN9jPKWmJWT)pg -N^Hd=IXS8$2Nvl>3=2Qw_>N*Qw^zmb<4z#bFnbV&QMmOEV2&%a4Q{wOXnW -Ab#WXeh`O}3?KnzkliZJySJS%E7#@Qq32jewJCy+&sE28 -NF5Ds1;njSMJ%w3uPxKnKUlIzl5%ehUEjwd3og|wrkOP}v#t5KqC+nV0k`OuH%cx+^+W5Z -%#!tvQ)QzIcU}$3)Jzs ->GSws1&*}GoZxc2g{O$}Ns-mj){-tu+qa-nu)qhVZF&(xnGdoUeURR=GdZ=*BVr>#OD{yc02l8= -KS{~DgQ?7xx+c}m!(V8J~F@J&W|FVg5K4qKii=Gzs2YM8fKsp0QxhO^THvzfJ8afc=RFW3-znm(cOv^ -!O}hy(Tg`@`7RjsF2qO9KQH000080N_fRRw8nl8j%G604Wdv044wc0B~t=FJE?LZe(wAFJow7a%5$6F -LPpJb7yjIb#QQUZ(?O~E^v9ZS8Z$RNEH6wUvZ!xR>8WpOYipHau?L5HPoskN-4_{#$?o?F(WgRiu>#L -nIu}Hk!wF};KFszInQ~2>E&hhM;+(M9Z=uxIs@OKPJh^arW3rE7nd|%a2hHx7YU20D*qOa(Of2i)k8tvH^R%QO)oGeRaBKh;XA><5 -5pBvt+%D$Wd#Xu8P|k5w^cu~r+XS{SNz>vVH{-2y}YF2W1~A$oRgL_vxepOw2>)=EFr}sp ->zF+lp&Txze@%ArHsUEW1rF_g1^=+!_`u6gZwm@P@ikKLQg#53hGDcG!`L*`y%9t=EO9u?3-SEhVs!G -;unU{qXc{w{(IsAbgSE@A1`#%Y;Cm_hz@)^*35;IDqY0z2;)DFt?D7!%U%x?o-5jGoi+X53y-eaV|hxntI0s1kPQ -Z=X}wXv)(ZOC5Vv|86!tv{|?L=zt`r#^B94`&Xa%ZrPdLen&h*)mr$U9FUyA_PdGZL}^ZJ~vO6GRi20 -$bwH5UzeGC*;|P%X32b-#&f0wOVCC<-ZH!XFu1$B{T|!~ok{ac2d$gi)**E -dc#inKSA+f;Jb8}uTmksUK4lLqcc_H6Cv_Y2oQ~(b7Gg-qo@AO-_*dK6auf6>gOY>U)cVD@r~LX5puT -6fO0_=HePI#Y&dVJP_a?r-r+Q2I_N|ignUxCa^U%Euyei5|yW4&9+&&7gid;(Q0e#;YOdnD5WbFFEx0 -~x=+-ti>DKn{h$2hI7fbYS0;yt^5uOz0YMXi@B*B8k==ADh6);VC4ltP4jqGr>nncAQPU`?Wa>L!CJk!_xn4ZzT4fp=mA)JYdFVYj9{O%Pc08YYj)! -IG+AA@cW3|~ZNo8-94^3;k)7Q8^uw|A^n>}N=+Iot(8m@7e&9Fc-Ajn1{vg-}m!iMEd?6jp_$} -+_XcLY_eTHFpR+yo*imSJWM($UCtt@)NO#DyuWp-c7-@)2C_h1I@fd$lsRf%|yZbm+xq5qK2F-=zvTRVJs$R=sf+K-IuJQ}om%K2!YUKt5M}#ftcX=;7Y^s?(+YeWviKCI9t+ -ADkRt*MD@i96)TF7=Qg3d$0DkCj{{Xf3-k?rkc<)pPV;&%ZMbBYkg%8g8Bhk{;`?ukF~vUjbgUh?YL< -k@cz>OqkHAZ_%kAKe6ySv#N&nk)$|=K{sZyytSynM$8m|JYBYax{8OGb3V+%fZ0-L5P)h>@6aWAK2ms -(pnpXRas6JK&005^C001EX003}la4%nWWo~3|axY_OVRB?;bT4yiX>)LLZ(?O~E^v9ZR&8(FHW2>qUv -WrKz{VUeZZTkO&|;2X5_f)sB%=t5K%gbc<|>f}NhMW({f>IKEvL({2?1h}_dIv^-0`T(%jO4e$9K~O% -%;Qf!XCrzY&rZB&e&eIF2UJRSW32KoP;nGJ_V*A5?tlqQOub~G!tCmtK18jz92EIgv{1GNr|RDY?74m)D@A2YoDO2ordz@m!EC+cUJ3;@ -7MgGV?>>NAzmqYxSh_kR@<@saRZkeH>I`f$@}fh -uY&0B*a9Yv5jCuAyzbq!!9zQEqs|e_sg{dgT(`U8Ccd};XK@+Eh>$>Sig*kMf;E;F=izR*9iuW1oN>q -yhp^~b~>9n4<`D_)LD#e8zxH&2Cy1f&UCn*4J=r#t<};V_W*243yF=GO(K^P2S^zSRMMxKuux^GKVW$ -k1{nIVBTp2|>`{gt1q6@CK6zCQL&3Lcz6hxVy#W>g7rG12l40*)_nlN1S*rSWvFW{D7k=xb5#irLEP; -*i2@8;V5(*)^a4VEHrt<+}uiy6j*H`^_*L{GsjVtFK7%xWuaEM&CT7eW1=w#0@Ev%Y3I%|#r<~u!aM` -YP5rVVo=`}5Qu)z$|%KoW(+BZuLE;ajD#4!y<<@`gJ -+8mkqcM|#e%D8VL>rTVqI!=USlNO<4mGtuRVOb#B+5yYuB}JZrUDUPzQmS2Iw%nG0tV -jwWox09=>hgmc}tqG8a1t52{HoM!vxQ8CWEcBfa`b*e2yw!v_3{j9N8KdO9irppQK-)UJT%n`wy%tf^|}Q%B$^i64A;bCR+KERL7E^p|9i5`3MQ$#$@{w{)^ -9KPdG+ZhnKUI3c92A7?;ujXB4%VuaMk127z^D7U;3@Lrw95{|}1f}9OS~mAW9aX~29A#NB=5 -jDc6X&6(?IP+<6^wa`AWWFpB8P$XxKTLWOYxlpC=Sj;^v8q4-y2)j(mM23Hb*G7TdbK+H}ST8Vq%_)H -wy4CKm0qq*Qk`39Nuwha&Oc{w-K17P-})4%!+g<$_QU-FyqZ;%+I_G9Ic^f -2`nc!J -c4cm4Z*nhVXkl_>WppofZfSO9a&uv9WMy<^V{~tFE^v9(8~u0M$nkgo6KL1$mQ_1`x7 -aFJv})klNBSkzP+?v>X5EyF=BIa%fU9l(Tcp -K&uZ$SbLX@DQGfSYu~U}(J#UE8FA?YSI&^*5d`egVSd&hzEC=`$KIi_CX|VsR#T{w4a6Of0t$z09|^V9`@7q5&j8^v7PA&Aq12LNntjZ!3 -G-R_oN`{W-F2#8PC1vOvVlRm61$DCZZO|Q1&w_M;N-EzvScPfS$;%c1QTNdS5sU%7Z!ds!-|;-ZPA)w -jAn45n;5OT>R_IDqCU;7O#{1*7PkK=>i3E%-Oa;n}PJ1gbC5MeqQ}C`~3Y4MSQMfGt -ATM3oWLAo_snfkuLg2Y^GtAxEwXqS1o+%ng#PK<*wKp4^B>mM} -AtwXi6LnIePJ(py!8fM^ZKnVGf<>*Z2#`4@KrwYgrg$!I)L$-kMG4J2+8(+H^e5a!8Uj;H!TC04e#Cg -y-Uio55&s^KdhryuI&@-`)J%qr=F*PRI|&w^KyBxwr%1Uy{>SZ0beii?RRGV_p4akmGL9p -SS@4kyQ+u$2!8e2$awoAkFm*1Vbbj^4J6u#lmIdgbK0kay4E)nQJyjjx#f|`svM4*UJ5tHS@VtlstAd -gtn4f_0;lE|FqkSaeyZpZ_$MI0aYt}nXpi_(TLW7`J_dapVJHgCLYHxUFBD?-o -%4iE(Iys}jYl6RyLYc&yjG{cc{WdDF;+PNfU&BvJcAKKy+GqDUl -1BZ?nI{7eifLC!ADJ0f%VP+0cEr!1cIgdHXFWwc95Ez(&K4K7^I&ZZt8=9@+{H|<1RFChP#-G~K~F|T -t+TYAA1vRzs-ZDVpW<(Pi}M4GA?koxzg7vt_=ki&o&8VH5~{5%S|$*iJ8Fs=NS1B2{MLdZ1EfH*l6W7 -X+YXwkHmTXseHbZfgZX6X;3(?fvN4Hx9d0tk6x^sk@q*gcVUjeh^%i!`NHdeR{?wCiD?Y2QbjkeMBXriE;^>z@<3$dx8}dM$462W%$ftPt*-kRn`_8_+ -2c}@1m+>RWX|(Su~8emM~Wg4GoAsQ72^a3Q(TF&S$fP4h`b=8yF>L45foKBBK&zjO_veTp(&yB*^;GO -ZJ06e?_~@M*BxE2-%y(fEycZ`lUq|e$}WSHk(Ns10u=3YRaLZ7IM7+YavCZO0$VNTe_1@1B*SZZh+Kw -1!fOt`WCl^Ru><|7Q?PfK3KC(woL2*6$f|^SzQJh=*NdJBr0N7Wz)z20#m>^&+$U8+Ut|cOLEyKNV -IXDELi}}IsC%Bkh&5DL@IvX7!R&1bv7*jkY!D*5=@%E#AALheS9zv4hnE|+D&&PWSI1s6xy=b*-U!+2(WO93T+mY!`(j$ue4G%Zi8I$RcERYQ -{mYz-)#D95SFaO@aDz(*o_2N}SoTGue{aq+2%0kLO%A?=Y%OX-Lp_9+bqTPCN_WvUb-0kl|7OKO@xr+ -Txg2*03>>kKo_nCtiw -Gh)gJeZE!|~2lFzKvt!+}pb+v!s8%Rp&|cY)P0FGG@tM4F=Imb~a)%f5?@Wy -eW2h4G#H*xk}TE5(br5CJD`=##RrZ^<0?~f5;nwuC|@y?dNNuKan(FQi&XYJX}p~XkXzKE%u?&>U>f) -#buuZOpC-NvEzAEP+4@RjqvuSD&2lXqO}%565On-iO -rjE?Fe*`BrUoJFQR(xu}E1r52N&9q@1F%63JqnJ+f-OF?y}5PSO%VYe7R+s$^WyGniHMfC~pPI%4q3I -Q()vO9x-Zm!bBjANW*V#x*lOs(g+W=SF)4I~IF&)sUi<66_3hNk=SKQ<4|4!+DpG=z>flTuPK%x|)yy -tOC+xM~~Bs7G2Us!Y*_;bbXZcHx62$a-4s@0CNGqJxk7E|w?zD0s2y;CnF`7AC_%eZ@sGwv9rctU*3@ -16M^0QHUWF)N5iU?!Jl}Gc*#1EdoQ{pKIW9wt~E)Chi(CHlME3r%d9p8t#_i<1As>E0!1@`UD2&Rq5f -pvgLSVxC}lHTF>$B9baF03uWEVl?!K2sM}3y$s%)j&X$v;V~;KG?I(q}+3gq7{EC(28{mMUU -b}QA3W{=>F{|)#(WrRuEi)TFe3UuI7*V3%=3qXbR+u=PEs$fystzRddffsW<2mtDz30KcQXpphIper8oS$~LM(I+Oy+?QS8C$8tU!K(0*=nmPN&isEG_bGOf}*)WERuzCS{Ff_RARI&ppOd@W!3P$28DcWa$J8R^8ND7tk^Ajez9 -;p<~8caobf=0@-+*J&#}Hr1eAV3aVYuM6!@*_=cx{`X*5gVbX307RihS_<<|JcS678e-Ihz7XnBZG(S -Ou)LcgstrWMAX!A?-}-cL3=b_R}D(AYDzB?u8NHoeAyjjv6T*50p9VpxW(*Z>aT`?& -YT>5Cp0QN_zq(+ -hP9(dndEEptHPi%<)fT>y|e@N*aUuhW(yqeIdh$OScuI4p7b7>u`1QY-O00;o!N}5&z#vBMy -2mk;%Apig*0001RX>c!Jc4cm4Z*nhVXkl_>WppofbY?L&Gcs^;Z(?O~E^vA6S^sb1I2QlCf5p32r-dC -#3GG&Mo$KiO1!mdp(5leeo9m4t6CAK=Vm5Y4+0*^+_ns31AxWX#?rL?qv=U&y_woDgXJ>D(_<{4*r%o -5HIv1^OuLb8<*B3uR3GLnv{=tO`OehACQDH?_PjCd_2c}g3|74GBBn7i%{jty>#UNzi9Pq0jat>PgX2 -wGP0p={Xbw!nl*aU!4`DF3d~Fh>mk0uFh49P>6?_0LaGutF{v}vtuX?kqB9{S3^+uZ`;n|60@A`yo&NXNcYQePeu1CPZg0=J{VyMo){GU-@<$# -ciOEz71V*hw7MM8-jsTxqw-?_d$Ju%3s?+~M(ziSPZmZXW_Vq2C!OhuizjJYSb#@Ckcegj!y;dEd$N9 -puusatLGg$kELn7mp|&15ZuoFY=*O!N}^1EK7ra0O3QRObuqCz} -PV=?_ES$`nLw1z^m8bI|qqa@F39zJ!EeSAEDb)sjvp;N*f~me1^P@rsFjBox_F$aM#0;vIkn-%PmuAZ -^sYS1k8LYP%Ctr3Jt2NQINX;rQC_<>)x1!nwx2;256jw?g9sU+}zl~gpdaj=0rk3Gl<(W7>qkRJDy}( -!(G4a93M7gu1W?2(-*TBc6WE}rw!PcNmD#wR4etMt&f%GMPbMTkJ}9Vg@+0=%5YtyoW*$dG4w6UY|JT --tUG)mIfcHJfuaw;95$gM)oh;!LxB|l2M1!5{Hj`nHjarv8-}aZEQYp{kjbQY;81~oHIo1PKm{bsSE# -|yTD5SvPe8VL_WpM1_dEF+p0(NrD>+^5{~IhQ1*rvhILd0@x|Q>vXFg|-F!-08ZQ>$g1@G -uypv^;;MH&UF_~q1i}QWN6DLQ~_bgxCTPX48r11Q|?h+BF#1V1g)?i|G+%KVjM}eKUG>7Tiyt-^^Y4| -qIK!sp5a2cPNV*pqgc5i_rY~VAdKr)&@g@#_CG>b1w0NodUQ0!aIDr-y6SQYIqHkW2sk@q#d4W(Q7oL -jZ+wMs;V4U!IB^r1t0`4*b~SVAiSfFhvcx|}EC#AU^8YnUfN{X27`l=1o#O$)wwcuY86vrv=&-p3(qX -d<$rqtE?wCp6)tJC)gbKP-CPEhrw)MGNF6&mzWh;jq3mAGejfi+)LpUtB{@}6je^+nH3`_Ahtib43Gf -#sc+1T8GP53evurXSO0&eWF(%Pl6EawZ`RH{oNdO~iZFo0d0-lzH9O%QSegxmx{_InP3<~Kq-F9ppnA -@;~xTKC^Zak)X6RpvuQxGZfxnz$f4xa~6#J_$*Sl-%An+bgE@gl6T^HJFWsH-< -^14P8#Hu9+gmE9~RPIj-z0Db*~#7002Ac;#baGdidj+0wD&UumJ@~E2~w{eBn-lDw3aRs%{= -X{uyIVw;to$KTG3HQkzJ$=xdp?O^RRh!DE7xeLytc3tITn5J)=e7Y -oWfy=w$FDR7QDKdGrtGKVl_^%YkNI=^W?>slb`j04I*w{%Aj1GGx=K9XKu#V -?7Fz+=HThTgu=u1~MKzp-z|YHMhc)5J(Ta)_qeDiE8!(C6-o)5*dt=wP)h>@6aWAK2ms(pnpXcm`?y~O008_7001EX003}la4%nW -Wo~3|axY_OVRB?;bT4&uW;k$iZ(?O~E^v9RR&8(MMiBnauNWm?ASG_d>8j+?oJznXs9+=8=oD3zwb*M -|#ok4`>!j|l@2qX`8Hlc_>QC{!JoC&m<00qgryqE*AEyq?rX$<&ZFrcuqu=43*z?Xg1RDyjWNXGr3L_ -CyUH77&_ -1JZRmMJCwRWYSX3IlIKK*sW!sb?Fm@#g*98(sfVu6Bo-kwhFr7_d`Qyiy!X=r5d1{8#fN5?3cfD;#gsSEJ5f=DunFAgHYOp&WD(Lbv+ndT@F574FHxt -THbrWcErR*_QKo@6k&3H^CEcgOau)9FMhQL407thz0Zcqs5rfa};HZlD -(~Jof?a;mZ2lDIGCQAPgDap)l+!nkGHC{0ffXv`RFO%JDLFd)7X#*SIjF79d25_a|EJwg?}jhA2dst- -?}l!>jFEO5-xRk4IF~(8O0e`-gc~mDwDg;?ENB`(0{~&8djY<=cboUFO*dWs*>c1MxWhOIN;b)NAG8 -9cZWCw>I0dJeW6+JUxfT&pO -Tl5$<{VM=+o2Vd{u`Z&9x-&)+C?qSgB9G2MgYPC4F1A7!qoyRYS?UYF+8^IG6Qyx)6q_X=@t{04!K^Q -!FHonZp|4rD#O>dYs8-KuI|D`0UAi61=^OU{N@~qw79(CVV=vVlq&9_dzs8_vpDK9RL5n9PL_kneV|9 -(|Shke!7e*jQR0|XQR000O8;7XcSp7EVSxc~qF^Z)<=9smFUaA|NaUv_0~WN&gWV`yP=WMyV>WaCuFSu};J=5JY=_#mLoNV?jZ45)wjC(0~MpHgb|pvO3!vdDjQ`_e7^dqMVsmyz$<<&xI9P#+C^5 -!)gjC=?oJn=QZ(kMkT9ECoVH=A)KfxOF?P5rwW-cEU}JcZmN>;&9-oXlC{-Dk|LH7m+8tuTffHP7-!P -p+#xnwq#p1T3m#J}7Yw^GmeBvjhdD=1VUWCce)D!+clGEx+{536+i>IE*Yo?w%iHVL{M&O9KQH000080N_fRRsaA100IC20000003!eZ0B~t=FJE?LZe(wAFJow7a%5$6FJo+JFJE72ZfSI1Uo -LQY0{~D<0|XQR000O8;7XcSsI@ng`2+v}stf=CB>(^baA|NaUv_0~WN&gWV`yP=WMyPmP_deMks=*#Q%q6GG`F7)0mFW$X>haYYWxvooD;28qm#_tF90U! -Zxb16@hFXFdR^r?he_fDWsjnO-l7YmTCb6KKKvTj-jrO_2whpxm?#4tcnBr9?nw{9A4tmwb(!A4%&9U -62Ty5&z!7`|3w0hiLc1$=It)HPR8P>$nXG0S$sSd?X1FKTN^Yg~nBVG=ssKYGE3PJm_=qQvl9pFcv;< -;(|0$y(TCu;XrhaKhd%ysYLG#>zSaDKPIP3xZ14vf?U%wblxSAGxw3i0oFks>qC>&6yG#o*$m;&0+cd -;OQOW-zR=A1(5!4glkO=oQ|eg1-sYuiYcUwtjSjBs|a+7%Dzz0*Wi_Pv>E_x9BM1UjPR;=`4*x4D>w} -s;XL*TG7ft%U*dU`2-*i~3>%_#g})^3tike93Uh$2(yGT9;SLcV1Dy{ceDTY$7Z4;6B!kK1hllz1Cv> -83*Gd-x<1GGe<&G;+JNv`PwinER)rzvYT1`^cVs=l;ZgvhLJ-0abASK3&B81J=MSSqbFQ-1}+!%hC(Z -YNXw{a;%@oe!GxnNw5eX3hu4wPY~bwe4qd`FSwKHFt$h#X*vjc=UHTg8n!Kx;+WDv)J}Ixn!ye){}-J -RE_NHZG6?lS$;)sQVD&66Z==F$-21VO!1Ibi=4WYe{Ftr)`5%fb3jgwIg%KgnoCC+^< -$3EtN%qHEOXIi!nRnOWWCYHgP9+O-E5#|D^!!Rk96>Ui{*c$RqUg^r!gfT1hpXU;!9;Z29I5 -b!Oo%$QlT`BAGz4V$v>MjJcG^p3I^2KBlvOJTYZ_buKnmtA|FczBJ|1#?{^RZNBl(Tl@i<3)z3XBr&t -r$LGX6|<8$(+c(BA~8wy(tK*yEtEiKvW84mEx+`{ANPV>Y@=TI8 -44Z7p}A022tzs#dyR+Ka-ND%u1JQ5%_d>Kp2ojc6tQ)+G~Wz(MV*8iznf88@}T~i82w@}=GV;?=*33Z -6!8i~&WJB9f9_U3Z=0o-09oAPj<@LUz{Cu_y)htT&_A98~f>2=OP32ao{bkMB{H_ezB2|r=avEnGn3o ->IkRstA^7kM?5m8tOVh+h7!}2WOfdcS|+69rmD`|mmI -DDi>#&sb^Y{7D~DEP4`RUuR-C>-d(jxM`_9Ks@!L(oP-EDxVRks>Q1t|}>M4Y87=8~*n*w2k11q^&~X -w6*P`5Vl__0q8Y|WfT#Gi#Q-xm6U>4CH8ws7OA;xI3kELVx$1e`Zz4hV4Wi%_e5L*Cs;|YK&K)yEAR| -gQnClNo~l1pjcS8IbhguWp5am1x2GBpRh}&`DJcnXj3l8GDdVb35d4AO^B`ri<^vAx3TGpc0n^4-DzO -_^vt5jccqWXiQ7bqXQo_(9eRkTops1kmH30Oi6smF>gEu(U7(90=WF^5zaji!CDjok(W6LS@_5Q<^dl -B1?B7!8behzf*cfYrX!XB}1R>Bpw!u&sA6*z?$-Wk~dxXlS2fVJ(mBqI?^fUVoYtTnk-f*zkeM%CzC2 -;1sFJ19oAEp?5JC^d3O3Z=t}DV|jWWBZSQrKiI`wu%b -=u>$o73QQrc2k{tC0@E1?WjQ3kh*4Zq9XarVsc!4D*5z8=&33XrNoGXZ7oj}iSbq+_jo={5Ap1)jB`V -|0QwXtc{5KJt6q#-gg5GZ0C;#`L;| -ElOP71s$@UxLyTrMxT;5{9W?E7qFWb{z(v6U5S%Z^0xUJC))PJ213{6G7#Itz*t!D3l?RR*r|9K5P*E -~>H7%6*Z>241E=<_cs$0g24#T#?LVtI0r=#lAgHO?6HX!Rri81<{p$gZ{TBFAKP(fFW>^wp%sD9P~|R -lXw3RzA)R`7*4?rq9}-ErA-QiDdiBDml^G#BMT6uzoQITQG_kWhlIRsdF5s(^eKV5kIT?0_PQn5W4#AcVu12X2Ik?#>2#9FCo3-RTYq0&G)5HJX9V!bl`C1*EAT;HJ+?Lb*`my@4f@ -}b6xYneSdd8fP&H=3Yo5^G_jnxpLmdXn0Sw8`bpf2Bt-$B2pq#bJ@~aS3^akRR_PguF05kcaVJ`fLx5jdl|gsOu3~j)U0sg -xb1pO<6arY3rtS%j&getlQR*HD}FR3)UU$uC-|0vzDx7>%R5CnzSBTkF3Ym6YHthz6kyp -3==u^{1Z^v^Yd)$BK3oCSpP`$Tg5glO4o2K&G%_-tgVFJa55|E5J3yaeKf49?S>&Ht&jI^9;<8yI{j&n>Guf3usbEY)+a}<_&Y&ylL -JtXUyB?tT|`Sn+xV0^RBsQ-ZPiXW%B|2eP}*1ADd6ir{*(r$Q&_8%`tP_oHV!L9&>4P0<8I1ZO%hyy< -psGKDMcCk0R)%B|P!v|D8D7Nnm++)dZ_pUo$)u_#(lAi{WLVm^T?2Pk-EB??I<4(76iqU4^|pao(;)u28t$1=bdU#P|dHC@c>;^t&Pb5qnX8-^qn}AtFk~U0E?+bzQ1GQm2p9Hyk~t-#M;7Z2U%l_w9+M -lc$=`v>10<&l)e=E))-jw$w}$s`U}v9%1ymLOy^kk?puPE#V2C^w*Kjs(_U$7+B%TWl-8?_Y7^S -DHotTJX@+G46D&wS4U#PI#VeqUh$kxYZYk)iTv+z!!E(?I#U4~wfsR%nW2qt=wdX6)1^DVSV#L&H3Dz -U7CY-?V-GUgDJP@rtQr~dwc;h$e7;8P-rrmM~o$&{8M~JINwwQ0IJxL=XN$J@jR#(bgct0;WqTzyem7MeDzmfF}~(OXoiW31eDY((Y?dw5Ko&Uu$o)s -J5X!H*RQGv_5TE8-dw4sa@0Nv;}Q!2MB4;C`7e^fPz`h7l8$LfQ>L5wd05}t+b;uV4*O>mFL5E9Q#Gw -T?D?AfERqBT`wCC;v|+4@x(^-&Wq=>)RH-uf`6Fp;E~NNRl7rUhf5 -NgG$-`opgskO)5S=}GH}u*;|oohcUxA@ -u6jcspp&(}L7&xUXi({|&*#in?(;M1@=c>sXFxY( -(G -<EevGV)qJ@b{_x0~y8-{kUs?mPQ>+L`=sb239-H>tD2!f -y|_JNC{Z1&4n-JcP;||9Kog?(7IGa{#$bHn|Npu4OYy>Hx7=PHEwUE~ePteM-P<#3k>9{s$gtX%C$vE -$x-Qu79D2TG~6~mUFD-9BOF;&asv@p-1)4^k7T7Y20*_g+A`l+K%dlk%opR%w1g)xeTp5BP@3vvj+mEj}J-vC|%gHDE;H=?cY(}7SK>@h+&IBYrpowRSxZTO|jQ@s< -pAD^6ShEor7E4&>?CsQTvG6Pt*aT4ia^UsKZ1ZA?hem$B25BsN+PPAnGJhuMzb+QKyJ{gQ(L)y-CztM -4ch(ZKBQ+b&ja>L|q{29irYP>LO9^5p{{E%S63T)CWX;NYqC}eN5CRM14xsXGDEY)E7j3Nz_+FeNEIi -L|q~3DpB7Ob&aU+i29zWABg&qsOv;ki5ey9&m?+pVL`O+%~474J47BBtN5}w -2DwauBW|1-N7{vMQ4v%BEfpHsOW&YKQfL<#V!_QXCRycg0}Q{1Y3pzL~2RGzww~4Qw4J{|OFC^E$ZLUaTbQ2qf~?iXVwqxDwCHyUc_H29eQHy9&5z}SLbpU=IYjSrQ -f9R?8@;S2@aRybpOszm*={p80@IA^j9YV$91{2{SCgYTOkVAN1Jv!@^Gn?-($H&bq!-IwP0Cv9+D@Va2lwu)-h24 -){_+ac*4*L*s~fYb@Av=UhLdKz)FpL5Q^fyJSP=&yQ7M5C{iQ*72)pkuf+vc7-BH9$knyt|EBDZ}8sQ -jv;T``|Mz}Hz##eZcLHc(Fc0tlkbFw`uId?LdKmdvo+6m-bSKHHy0Ap5p#_pMO!&TPSc=}8^{Y68Y?M -V}l0Vg&9FX(e+)5(UW@`~@ja(fP=4*3~EjsA871_!hDuOhnW?mTF(>}G><$R#fYLO6_32rvoa07rihf -r26vhFT!NaP}4(#|ho;3;0gnXM%!#Rh)K`3Xk+pZ_WuKM~5fqcIF)RdtUr>5yGJ@2!Srr`~iCUp*@Fc -%OQk!zbr@oLAUIGS?T&`Pc2=(9jT)yAlevIT@DxA{AH>6G~KTM6!$1s$_xlx=7`lX0+aNXu8j1iRmLM^ntkh{uFXzg>(B|KB6|Kbd^gca*zJW##lk#?#;Y -||e9VU1|&5_>Z4+@cg2){uqY8`&-d~&bN4tieBYD@W4B$C&W{h06JRC$boJj>6`b)iJC -s7m!44F=)evg(z&!=$Yw2`BQPLfHaixrdc)%Pq~{;#mxSJ37umeP!BqW`v8il<&)PaX^Ul&>>#E`%Ra -V@V;v1I*_B&fm|R`vp)-0|XQR000O8;7XcSQrWGBiUR-u+6e#v8~^|SaA|NaUv_0~WN&gWV{dG4a$#* -@FJW$TX)bViwN}BB+Bgus`zus62SY8(*x)3UNpS$<%#bjU0;VRZ?3PPoH&`1ZdnK`izu%VZ!5HFH<`5 -qM_0xOZZoRg-B7T-11luHve8@Oe3FYLD3YEfv^c=U}C8On-^#Alzx|2Xs76F&gArgR0Cw?$n24u}r=v -uaITdRagvd!XM3SY%pEFY5%i2aw-?|-$e`O<%0{cT&LU}{zr_gOKlO)a6yLS3C~=~es2 -B6tZTnzY204WryQi470^fB -)f79~VOe7Ai9foE8WJmeWCj7vrF$f;tu+JjDvH&VtUI8p1I$e9A@7Ea`-G|`J1@RRHX&Cw}j&s1V|8U -GbN!BhKp2bk)pwax_LD2_#tn2Gb-*B4t8o+-1di-ig$wRFo4?X!*g`j4hNK$C4i>AH+w$8g&hd*#KR& -Y2^PTDx68z@3npxIDp!PtQUF_oT23V{qe&p?xHd=Z~|OP)8N@{e1B_T#R4B_AB;i=zn|(bzD(D&6g$f -`@rpx!_VmlLpQ^ym*36uu09v-niobi`t}Q6@S42fHF?2n@`Bgo1+U2qUXvHRCNFqRUhsae7hI>w46f7U2 -G?n_gX=W;!F8Gp;W|x@aGfSgxK7;@OLa(p@PJroVyR^!i=8OB`w2btsGYE%M{ddH%EdA^; -@bN*^wzLP2F=NQKWomei6$Q1e;(bsC%a=pj`X5kB0|XQR000O8;7XcSRC}yvJPZH;cq;$^BLDyZaA|N -aUv_0~WN&gWV{dG4a$#*@FJW$TX>@OQX>KzzE^v9RT5WUNxDo#DUxA)Kh)N~Jb~>HbS4}D_x{L3eLJ0Q;@|AMX&@IN4?&E@9qL5L6D+#*Lo%+zU)5OT`ZnmfH`DynQim5=SCcV#JgX?BaaBcz?BEt2hypgLsq4T(ex1S8A)uOQ{YHR=M1;2~Snb?9&-se -cnMeKJ>9dYiyQ`*XIqu)0risztsj)kVr55)ppZVV28CC>5uVBX$#~*C0d}bD7ATt_Z7!d392P -z|AsAM)=FKIMhPvgM))|q$ztZQ*dZyfA{Jj+BL$cLXqq=!a -rFc{D;zEq4eMWQTFMYLvI!TnMedN^V{(%=?8;!Nidy^QA~)eKzzvSlloGoB;_#kJ1khe8X`!DuiJqMD -J<8==>7$p%k(tVJ*!fWPY)Mgn)1A`y>VizU;N$s#ALxlBKc92{eDsx(g{m|xfIrC6~rjMG?$VW32^0z -h(eIbu<%YhA^^Lk8}^WQ~h-DRLFTq%#3hTfIi_VB{=^d+-Y*w-yTGs@E*#8@QA!2dDB9o~KN&MLBR8L -KEgmrGnN?!myN@mh!%UH5&pttz9^9ynPfJ2d^AP;~W=rp^H3aRw`%?Yo%Q{fq7Gbz2Nzyf}a -I+cki=1Dn;iIks;j6G~K$T0|mW7*5hxW-PwM+5y(eVl#M?I#_;~8Ug*{WaI95?i|9X_l=;0hQMK5?I?8TU|Y~-903&M5xw_v$VJ#`mO-dB&AK&%VuagcR_ -Qx2vLsal#0nz4^#`>}X6i+wdJnue_~GOH?d<4IxBumO4l4oDJ1 -exd -`tOi^fW+q%fUB+2;Oks&HV_?`5PMsQDe}k2Oo6@T1yGy-BA(K!Y}Co?b~6y9GT%TXw?r+5bck}y9nj3 -MNu=#I!7apVStO7uf{_VeCbX9drx%>zMS_{N!lsE@8)li<8=>+5#;C5{Q6jKh3rZ-{^$Q6e)`_3w=L^<_HG7XLkS2Cmi -l@XIY97k!;uqMp{S*0*f>Mmofr=Bd8i)E0SUz9al+=?M=+gTTm9h#QW)f+f)FLedY~AzNH8&GSsF37U -6GAp%<`5?q3XWTx!R=Bi9dXNl3;K!us!F=!<9e=XF@?ahA?(-U -&myEf)s!l(V;-b=*A6LIE$flj9MnyfL~SRHY)K&}-N#jVDd%;8>-ZR?f -r+HF>h0;EB`KdYifucj??Axdag8Hm=3A|?9WVWYV!Io&fB+1)Zb5qiVgQm512@@3m%jAXaDwT``VO~# -fIwo;6eg>s!$wv|=KfeK*ND32RaHY7jFMg{uW(0LpT-4T%qo#6N5e3}qoHP=f#$P`wMP1{hOViR^sER#-mN_QGmYqY6aZ|ZR#L<= -#4YQC=n}F5aY@U$BhCOA=@EW7UhsLagH`!qsfH&C{n1P`1YahKdJ5^!=^GFTb5;6!Zmbd8=&MOO>pxs -iAjK4%em!A4C_3JKh;omDZ-|Wnl&^7xD4WNNZRazFjKHnJIme;w!3#Ja}bMcy@bj;ui)W?`YGg1Dz0i -5*OD%BdS_4gb8F8~ohVH%7gvkxaCUKV$^wfqA!|a8M?k|-kM7y!`L}Pc9YtkMr^>S>E6|Ja=KNg`!21 -uE?`9Xh07m4uV&GBRR%TxJ>0d71?AC^teY)RXE*9^1Yt!pK{f~=_iw`%u0nGb;?| -)qMIsfCLPy5~M+r|6q*=_(U(1$VqIO_=kzU|Y#d3%1{;{ZhPWB=sA0%)oCXPo3S(Ym;)Gr{)6Yjaaay6uV8$xYqKwtc)Ppl4Z>PX -B^uwVQJ7q?KsaIaJOvTbd)zqX0>cBW?615mIPE_Zs`9^jWk?NeuWv(z~A-zl_83bl4x_|nFzDeoAdYL -Dr&X6bnSw7*;L0K_KW^!veJGZ?YpXf$-)1O)da0)kha9JCH6o(+iC_PZ{$1Kv50?l$KJRcMd+7~^>ti -rSB+-npYav!wkVPq%a`;B0$)4vx!h8|?Y4U37q4o)nvnW_?Cg9}@ej?v5b!zs3%=NE<=&FQDTv?iv50Hq8bL9J(FqQwApV -Dl$egP_5JaZzm@+*>7-uNR*d*4$;Ol{xP*3YP5eCIL0yBHk{y=$HeF|v5t8B9uzh}YmsE^{ioq5J=&)KFI< -vZ)b6a;>q4_^Gg`+hTM3pH#&$~dgv-z86kuX|*O*U`cXJzn)5qE|;}1$Eg%+JAV6$XY!cxWB@|z4XYh{ -Naxk%`P}ni&47@Vnfr}$?fQC%y;hpLtkUNE2`wDq;d}oPq)|s+ -;=d0vp`qiWk=&Px5HIui;LY@5}Y-w -|4E^v93SKDsmHV}Q+S4`Iru>)IelL89_Fwkw9qA7~(L$;fTwh(A*WOGZA0!gi+zweN`QL>z50|b%8;h -781oM9GltBP9l!_mSYN-}$75`Jge3asJkhaazF_~r3exZd0fRvHAs_b3gn!63q)_qTTsk9Ux9fpNt1L -TL-k;xo71+g?d}w}S7wFQzt8lxdYi%%tH~Ra{wBQGpyJa9v$#wPXHQ) -OPF8sa>cxMf>bXvHhe=qy)MQT*&S_FqzVCz5Kfe?4eqee^*0oHRIHjpP49|sxL1*xDUZ?%cx%|-HO|z -Lj`4zsDbH&_kXeaR;It!W;1<8{T??jGu_rM_FJhEgS|USe~f*)=NkEeC_oH&X>T*Z-%o<;c}GM~c2ZhF%TX5%%i*;RV -)HfVSXg0h-#4*y$tsQW~3(SWcyKGD_x!Hazq~FiV3dhwrxV&QGy-L1&^Zwd~Ai!Oj^^2pi-`*-Y6nTY -&{UlCXJM6U39WCZUjxPOZGckl;I^HMYz$;)`<1TPZgH3~8cFH-{390aA;68f4Ts_$WbQMPfpfGn^6vm -BCY!;5t;#I7yu2Bq0?N!p(WoByL3wDA|rC6gg=z>H5LHB7Aswya!Vj{zAZ|Gk|WKF#`+?PjQ1;Mp7Qb -6IDeLnnX;&(tO$5lBij?m>TJr_8740`>t|SX}r+bxlkhA7+VW$8_8t_xk|AaLzL|xA>niwkY5u0$$aS -5V}Om@&1X7cFbuJvhnS1pojg7ytkr0001RX>c!Jc4cm4 -Z*nhVZ)|UJVQpbAcWG`jGA?j=%~)-3+cpsX?q5Nq=qz=L;H3K$EFT=lXJ6IE?SYY}P@qpVc17sM=%dR-gb(O)bn)IqH})-he?E!agkuyD562 -uEh+~Yb*Eea+52(TB5UTdgGF5*vy=%u@}me8R -+h9(%zPyAt!3$5>OeR%hxZ=d3Z#vNU}T*LJY|eB1I<#t^hLj_+MClDrxY8D35_|8@Cxrmp#fMTceD0g -^v<~|xk29D5=USzS~zgT@l}_%>jT4qfo#DNPb3UB%5%KX1veiSvpIx$kV;M#i{&loK7uoyl#(rak;^% --%CEPL3$4(ea -3Jcm8!80d)Tv9^k-C92_CmqZT&u#-vn+Q$U||dYqYJf)vr>SfHUGve#?kvrQ(bNfm@a$D3Qx`EB9U%o -%4KQstwoqYWdomDfFH;6TWeanmbVMrV;ILbNf2N*iv!y3Xb1BtWhX#nE|tlhcMz?+Gw5~5U4~l%aI;u -gIsEQ!S;yYN*{kM-s4HEhg0D;e_kybyT`#&SYrmow;!9gt2dRyO2KLLBIv=#|9-K*@?6z_BLh0*Fu^KRx-%6>fA|L=&sylz$mrqjp%ZjiFH3!Vsx^)Pv~SIdq<&o -uOVTK2tr>USJ13PYRFD?4*7@a@ew)&IS*?m%F-Ah3S~LDlp2;GcFp9lDh1SqsziR++s#z9t~sGu-M0F -HbxVa|xj5D65WUnLQ&L!!>D4FZJa!-Tb+!?}ihl3D`pIK@lf4deomzY1+`v1?S&j_zg_+MKE$!Kzo -=oCebVUkMl2E0(CKzAXofv`=gAj+D~BH)s|h5#o}Wa6}Vd-KY?pLMKKj2iJ#0uj0A;%`4#;RH+2 -NLSdhM?q_zu>VtAZ7ohETMs`Ftd>?=hMo(mJLF*t-q=kiMf#9|i`*pTtuo=E@~8QH8#U785*x7ZU>Qr -jB`y&{)z=vCUm*z2WS7Fg^%jaVx1&(VdUVuyEKjZ~(j8jTA4XM%U~@;>BoWg)8LRY{KWIFtTW&d0 -n_S0lab6I=lpvA{J^g%c+%(jl&GrG37)RxE{`>f)Bv)w9-=Cd0mxM#~c+i&-l4Tr-%Jt)iB|6x6MT)r9iM|}HHM#N=XUVY~d&1h9AqC*?N|Uw|SdQ14kiX3ls4 -<4;jBT@v92J|x-=-L5)ySQgHxyMz98!;7>G5zv9;Iu?o=Z4J<(KC4GqKjF5vj3W9Co`4sqw2epZf%U$ -k~4ZP)h>@6aWAK2ms(pnpQ)tN7U^G007<_0018V003}la4%nWWo~3|axY_VY;SU5ZDB8WX>N37a&0bf -dF@$SZyHAwe&<)51}TPwP_WZ9ibNzE6NlD@2yhcWt(M)vY_sg3nOS2htG~TxF1ySu7ef+PeJC&N?40} -Mn=?>`Hk~h7bUPLB8%=yM^%MB$GZB*|95PeGlpd1QdYdG-jN^XM`%EQs2D2GM$?Ex#F -HZdizo@{g8%faS}K*4_Ijomw@!{rrLr~(R{>4x(^3%ooWtiRY10^m(ea-o5JuP8O7kE0EoZ;^AXtKku5?+l}KG3a0S&JFWhSFI6aF|V8 -%5jI=-lIPy@q9hWYSK%a{Secj0x`z~g8Vl5=l3KqYqD>P{V=@dFA<0=fnGn`ZCbXgnhNJWT^{853oC? -9BaViLRMRKe)ANP30(NNv2*qcyBP`iF97hCA0%Q>A~Y@y>ar8%Km<&N{3rFHMsNRl&saODHpW~&#}4PZBr!`z5o6_ysmDb%4#H&Qpup8ZsPR-g*R4 -XS|&51jE-YtGEGo4Ru^maXtHMeevKii0^NZXMcvxjMjMhPLu3q+kII%BD8kkUKbGgr%24&fvNY2CvSK -9PYD0dUUbP!|bCR5$GIWalwurD#y~q@XCvU|av!^mzbnx83G@9ix1@c0_%{hTFcYewO)Av0$;Hm_YZTZRfAc>*1oEGEUhi!)vw4841+%{aK&+co^bn5aF~=@Bl{uYrGo!oP_oXEsxZqf3AEW_j4S -;I5ahPea-s%7kHUXz0Ug^_q{nD!{e%JO$=u^i?$lOqF9Co@F`8>5C>`EGkvR*)u?kKhkCgp*rjx$9 -<>I0WN+>zVoYwMB$36wRnW03NGlc*%V=u~EoL}(Te2(7TJxy^IN;;x0Eo0)!U9r$BY^-V$ZcCBNgCdy2!3Fo{B=~}%eHVC=h1h<4 -$18m;;VkblvDYS6hE)2$4MV>l8RtmSAJ1av4^;8>3mO|iOZSuvMuq;cOJ1o&9(C+sK=N0U%Ms*)6_Rx -9!qjlz<@0cRXSbTV4i$Z0_t`nmye>;oUJ5tZV9|IA~Vaz&?%=@ -{~|7<^KSnFN)a?^DgCo3(KDnsvJ0d^(bh5D_CuT>Br#Y5Ni&AvG1}*$LfD*`@zuWT!=&@^2@V&w!mcV -MyhBvRjE``5S94jn0R+MKrX0#0X^Du_rT$uo2L|&2dJ%1i~7z9yS|AkZmoHjZCOGke -4_ILlHnOH&B<+_FeSNM9Z?~AS~q78UcbKWTp4~DtZJ3YJXcz<*UqwCX4Z`2uFb$j^mY0z(XhQn^}V#R -EdaHy484?f>p<+}|{0V9^`W+_A4Pt*)KTF#03D@#qPmCIA2caA|NaUv_0~WN&gWV{dG4a$#*@FLY&dbaO9XU -ukY>bYEXCaCuW!aLzBNEXqvJC{ggr&r2-HNX%34NGvMJNv%{cGB7mOQ*a7)Q83nZ&PgmSPF2XsOis-! -PSsH;PEA$t@pN|e3wBjV%gjmD;{pIsO9KQH000080N_fRR+L4atnUH<02d1Y04D$d0B~t=FJE?LZe(w -AFJo_PZ*pO6VJ~!Lb98erVQzD2Uvy=2bS`jttyW!cn=ll8=T}^*4@sm9LBl$=QXlfc+H5qHl2l!_Nyt -r{#w)=YHqH3=vrPg{#=w=vQ)14!+5D7MT8j3%ZSd}hxR&GmIdNk;*}VZ -KWy6!M=Nm(`|AuC5~F3XSmVX(735C>wx(&cgl7y$Ed*#HW=Kf@l7`)-g3dB321Y^DsK`sEN8&G^UL@x1KmlgU -h!4KbGq8i=?LDDW4Q!#P(i=L@z#fXHJfahoO^y>S-|g>6w1gig+N+mX5wt{m_0lT%QKG$iNfqHZ(O$i -j`w_}Sd-W13{7Is{dg&BJPqbGrnZh3>+N)3Weydudz5kkMRlhRPu4ABgMWkKFK={f`yN-baszdEM23D -v_wd)vo;vcbg9RqVz<=S-&Tv8cq*QrRh`civGv=!bSjqeUs>(`#cC->94eo!z>D1)gSp=dpCTzp%FVT -?974B`43T45-^M#Hd`H!T0OJJugiO9KQH000080N_fRRu*da-Zu#V0JbRr04@Lk0B~t=FJE?LZe(wAF -Jo_PZ*pO6VJ~!Lb98erVQzD2bZ>WQZZk4pbY*jNE^v9(T3K`3I1+x>uRz%kq_P~A4tox(T(urY<7g{B -D)LMo92X0sAd72~;1ZCJn#zCQ20&6I2vXEIsol{-LJQrE?ypaPIz;C*c};_dHAnxVG3IL=qYpUcA$di -k!Eo%NU+3@9_=oclZx}&g;FFjU2Qfm>$JzPxYCc7)AS7;YmC^_W6a`U2Q;z054dRE{wS#WS3!hzoPH~ -cuRFQ4sfOEolPJ9c`=UB*%a1i%+`g+ns@R7tmjX8)2gGEk0eF^xSWB;*7UVM^pG?U*?)0C!)@en1id` -)9CGRYa$1!;Tc3c3;XA9LzU{1Et;@P&iazX|64x={xyr~|)(#C37Z0#2WUcwFdr24CIM&*CdbAWCpl! -O?XqGgVkh#9MHBOGJr-szw8 -q+v_4LIRu_JG)8g%d5>uxaupT#Yfnzq@Yu2sogKuo|Rl!sO)2Jc^q^_W3uHC!d*~|r2IDB5IYy)rZ`^ -G$itkcC}5>sD=Yn~&hJS`9xyz8P6JN%(Oj&Z)A$MWkox}x!zvzq*gNk6)B3z^>G+_IDK -FavU3Se-$8$V?Kc5%uF}B-L5rD887Nb`Y<LLP{1*RVgiDRzcHK7<+6@H{mkoUMjTpXk0AFeRX_Uj;$dy)S7Z$hkRkXioox}>|G2v2|NKEFoif;EHQfLon+{jp%tN!%$QiXjsc -P-eP%k;GI3RJwXK+2{c1+Gd7=aE8nIq06>3bVsbxi``foU7RL>~Jw(!EwOLH40nNp=8K=elgmzIH=s@nJF>#@A#QnG>wSnDWd%Vo -XNcktb3E?1qYd9b56E?L(u#t2fYRLq&Un=P5JI$D^H-zCII1HAiYPDAy2rbl!yB6k4%rSg>SLtO!(=U -VZ_$~tdEXTYyXj>e$a<;FwFCVq;JJ_*28Me!w9Jlfx4<_Tmq!RJ9~(8q`d&uC{2LZdAPM$Fw^U<#&U7sib%oI=1J87Y2;qJ2gpYn<=&>vFMjT5T6~%^ -9Z>!jS~Jkj|14)P#3>Z^0d^8JXY2J!>FNns0Q2&6wDCq#-0NalLmZ-+4ly+@qo$IC<2AvWO&g$<;1r? -EKr40>~k-XO66oJ;hQw}o^ZG!r$e`o(9?X0L(| -~FV{+o&=O)K5U2>JE_|*BggPE;sFEaO=E8cVkB@Ve?Dt=J+0|&qds-v?8=_%~!xrD%UQRHv$ptJdtM>%*agMk5D}1;depj*q`lac?+9R@<*_i7Q1ZxWARGxmpYp(uKb>!ah>^xJh(}i+*#XY8j-o5j@lVW4Qv9J4X)XFd#)fmRD4C8Ty;j6Cuwz(-(MF@a%fB6L*Y)(nT%zT -HT9~J|%aB;qW`-FTa;zz~OeXWU7=0n3?l3Jd=;c~0El+o@BWXbGuldWFws6VQqYdn04j~t)x2VY(WKL -NhR&mqdnx;SlYA`)}fBxbUr6h!@O5_O24Qwl<^=jULj9GV-&8&Y`7+oL0bG=!j_@P#G@97ATqJBgBFG+Ea_eKb~XDkhOOdWFhF{Mk({X -Ps2X^PZs52>;w9n~EeN79%3fSl$AxZFMkk(@@uHFcO`OtUg@k1oN_A=cgLr+_qIAysKt$PEts&q;Qf! -Q%9uG(3qtY0z0lLN<(M_s;sgjkjHF#GA1vgcSoU$1W$tA?@LG7lZr0edVuv -EFLxXddXnP03m!#>y4)Wm5JveuV(Vl8`pTYKqHq6ioa(XVd#EU(`al&HlItzxQE4|UgGgEv?Bk%)dHl -t&D|G8FK#Tc3FDR0lCy?pRsj(`1quFF=xvmW&ZWq@g86G39H~J_y+88qUDAV@&;>Ulr*5LR;P2c%t;! -B8Hs~(XrRN#4e=8EZ<44giaox?0zlfuIMug3AY$ZvgCUvRw}C*juC}slNGhxagM@!NePQB;l3xLi8Lg -s+cDbpq%0-j;D4D_|34vPc$MCPa#z4qq-ycf3s%VUM6dEZbb5*`&l5k0^gK&-Q}G7?|6fo`0|XQR000 -O8;7XcSV|XKJ<^=!%RT=;QEdT%jaA|NaUv_0~WN&gWV{dG4a$#*@FLY&dbaO9hZfSIBVQgu0WnXk=Ys@5jm9s(FxmS$Lr^#_`Cc_<2jmg$%)O=={S#Q*({lw?t|Xgghl4I_#o5 -$}$7AMZXMnIkxt#agl3rGeK{5VIr#ek00ox`yNDFHTbUH-#w -(==kMLMj7#t)qpKD<}mshH3-##5MkWPOR>VFo71nu;QcORO=`*YJD03j*e!!lKGcLy&xuECh!J7Mf4% -3g@H>qbD@+}o_0v7@+wV<(9FntCQgnUu`8n}S=}g76jU{G48354GmN?xvtJVUv(zSAu!jsy%;mk#aw) -Xr7#DsiXvT!0N)VoDLk!IpQe`%n8kMv(jO)gt)Pk%~Q_+HxoMy9i6iM6-)Sb)Hz|_K-R=;c}s8a0&{t -`t|&WYA=iT+uX;|A)*JW7hE`fl>Pvm@JGQiQnqY^754h${0|nhMu>Jc%~O3?=H7ycd0YyAg~h?Fy~GQ}7V$3shKn$hAIH{x#0^9PuK!)EI*Y -TjH;mz_@lpFJ;N+Fr#o^nH*2{T0?&l-?_?~_4z<+*Q%s3(@Y>zBBvcMJ4roBHtKeaXJihww4hrVDk?I3tz{ -75MEN(xHYAGI)qjNp0^=Fsp#Q~n)9j;yQUB3%oxRHrJ*5a@mS~#N#%;$O{(jp1c=@&X9e?BfIN7})Jy8Bh$Up5-@66f}^!eq0&%0Ubu`B!-USWTpV)yXC40bHHXlm0eZ -*tYmeyArcQ}FdW*Dh}owwd%2vxk4b>-M!=EOg!qcP6Vo%6{_9g{`}whs`%P$=7(t{gpk`$IOOUyI0Ew -fy}M{Z(ij>*GU(2?OvCRM*DiqQF}18rP%EEAUyrW*}{2V)cpf|H-(W~X4K`Tqu`5zcMBwV8+j&+j$%k -HT+`vZ)B!5}`%zgkBh6A>z2Ik_okZ{hortWPVwgfH6yF11~5y4S62#nILr~LnMD -52F)uabQYo4nzOBB=vNzpQ>CUG)mw4Kvm@AZ!RP}g*wP#8tvOC+*>{GGtWJ2~;UTll|6;T(%kj<(h!o -lGD0l`?Q;b3gyhct#`IS$2Azgc;8+YGD?5ZFfE(ae@2@)mq@zE)?}=k4TiXMI)1TXS|i=DIv+z`I;}o -^6Q^w?3d -sp<%(4-tlO^=ZI~_K�|LC51ZY2(z8ba`KNWp -i{caCxm&!D{0$5WVXw270Isso8CAg&f+n%XV4XLJXxRp(f*vK$eUoxA^ZX$#x<)jW=y-Fi6(CH*aP%; -}e*xs?q%4+QJ_tnO!ppznQiI8#w>*bDF``;u@xBbHQqZAovoc!3h{d_8-0~xn{bYfW}I -&CDP|+yH+kVE|~})Ti!f>>X&y)x*Z{8g#~a!8MU@aOgKv~2)IY1t+gCV>MSPU@R(-YFb_)!Sqf$h+=j -gmH|b+`WP#25@j0Q+ZDLRqofrQ&49vC~9bbRq4Kv4#+UB~(WTVu*>DKI(+jXCfBqBb5Vkl0Aw7l2nzS -3A@o4k)@{$j#JPCDr4weIB^3ifOd9oak8UrLI*!!nOG=B%a -vvv$_=HK2{X(QjI*#v(u(~h2~?~W$%?Y>Jw2rqzA$x5UYW-~aY)c?RJJ#EwGH?9@l08mQ<1QY-O00;o -!N}5(c$TIPO0RR9u1ONad0001RX>c!Jc4cm4Z*nhVZ)|UJVQpbAbY*jNb1!vtX>4;YaCx0lTTg>96n^ -JdH2A`jNt}B#F;UsfW^^;c%VG@a;4qq$mb69X-`jE#*yc3$fpEUd>G_&-hCH5^g6vX-9yr4)#SAU5P! -vjZc`=!~=+2*^>A6R7Apubm0h2IB5&%6ez4^+Yql8d!twit)MVu-4RFrHH$#O1Ki)5JL9f(>*c+2`q5 -Vl*ct)`ZxY=615EGwc|N}~dt1;NH?^`k2b=@UbOh{Q^jjs%)Cs5t^uAs7lo0mCjU&i>Qr9#g41-R#9N -J}w!~z%if3$Mu7vYfZQYtfBf}qu)?TfW~{IaUQ=#Ku&Q4;Z{#r1?k-tN)_`$X}^9yw=M=G2+@(csK`! -hxT -tx2+m&Z=Z&|xeR&EOYd@IJ>^I%cp4gR)aTe+w)yQC(M-}-&RN7yYMm!oHedLzyHoeOm13fvB^#xE%0| -XQR000O8;7XcSuJs3z4g&xHeGUKsDgXcgaA|NaUv_0~WN&gWV{dG4a$#*@FLY&dbaO9vX>N37a&2F9W -pi{caCzldZExBz5dNNDVX+S+8;yXfFRFyJLRrhy7YR~T`xLq1QldHuwVhHl?Z5BrkdQzrw4+s}BQqH5AH^i{EQHa5luHIv(yTXjZPFf`klmdQqlo~*0uLeqH6j4Wd9TyG9CV2vFtCj -v9LHP|F%^c-Fi{eK5X`7zkk)l24Bef=_9u9md{$w*3OvH8Q5s8yWEA!B~ -=>)^s_Kd13deO=(uPJqaQSJj_gPf~XU-nAg;5Ag2uU%0UyuFg!+u$letKGlO9r89L^7?cJ<;$_Wi==3 -jm9HmjC48iG$0q8=hM1u(y+)4Wk8R+_tdl?o(@?)EWOnBrzQkDR^$|B@WG)b)tdm$HB#IBcD&;aDD+;R6r6};f1i7S1A)>y -%AXbQ;5o-V?`SVEcK)O_?gQ?e71Y-Fm~3?}NZ@V{DtpzJaMVKkC?*3xi->FLk|~ZmD5+8qc@ck~}LlD# -{wJsBC@P7`ZQlLeO@*!@L_wHDhzAH;R(FM)cS!C*G{ZA7OTEMy%L*yo6^4biCAi5fw#_5K -HJXx3E=5Yc|(2H9L0AwFh(^SFah-gM3p4FTJjooS=G~?IPL!`#(=2RtPOh$<+R}xLE&BV<9K*j=?FujHA#na5R4@6aWAK2ms(pnpS{D7=>N|002b-0018V003}la4% -nWWo~3|axY|Qb98KJVlQ7`X>MtBUtcb8d4*BIZo)7Oz2_?|aiE>nignU7RpK(nG$aHQWxH0PbxXE3sa -&(c-_I>&;x=DmzdS!bCnE@M0?1r$Y#GCWi{P3zH2BpoO`W$MNeL*>d+j4PF<-$<>DNK=@?coN=+4`ZdWO1CXMo0coHn;$c5Ivd_!=En*o8eu8LbUK# ->x%wgv!=%-rs$RuSg`}`=hedxgCvp_S2pZC5tz)oG))P0q)Y-sQvp495Lp?a?BF6&uJ?gbs6}Lc`Im- -R`?C+X}wc&qB8KGuey6mf`3Z*;3N&tDIm9wZ+=SF^HdRaFtk(WK@rK#05rl~)WLY?QAC9W6pef0}aO9 -KQH000080N_fRR-q=vI7TY~04t#Y0384T0B~t=FJE?LZe(wAFJx(RbZlv2FJo_QaA9;VaCz;0>v|hEl -IVXu1(q5wn-0~s?3rA&!|XV+JkgG0c`Z4~uA*UD?55aJvzzIQWR5rAx396Ucb??b1waF6G)X&~@9dm! -^}{CFK%r1os2d9CeR1&cK+K9b&2NrGQ_l}R$6xmL_x8ncv09hu&7u~;@kl&*eE9SL{`pLNo95A4oJT* -Us}P#KOlL`6C9$XrQ7;nldR;GyT$~s4`aUWX@uFz*II2_l4L&5Lh+w?DF4OC#F5ufunIy|3uMyUHl8B -e5$0x7OPr~|LEuuUY$7ioD-kg5*_Tuc#IsORk_U2`=6w~RvshcvHPDQ$06(uyku8ORwlPQ1S+mpW+mH -JdB>Ql9@_V(&>eY7XwPyJYBd&#?5vZ}=?{c=*4MR_E|zF3vf%`!R?c>(C(B_(x(_F^Jl6?p<<%@Jk@k -1Ck!G|lJ5<>M>yNAa}3Kh5JDXp!HXo+%{McOHShOzZV3sbHw|cal(F -q*-!-4WmlT;WPCz=RTcYH)&RCNk?tdNZr@)5qT=zBYCQ)cv&>ZQJq@l%txpMNU -SoIX^mEUo2Z`fLHq(rX1OfUji&^H1&o#LrDp(|o4%2>|5kLzz8UMfD<&mI)Ke_orGsf#zeJTn%D)Q55 -G3#rd%ybdXe|J%SS_a~?OSMn@Vl@II}8Sap=o;K^9=!e~Ow1TIx!lH;RbNULo)(k)?!_tr!oGd;QcmLQi;LI%v6mLq=BubmXV02?@ii>GERj85M^$xSl<_w=+xlDG- -Xw8aCbL@o*xwaJEuJFMNy+5EwNzy-@q9DJG0r7$lTwSi2A*A;KfPOKov#(FOxF5hjqVdYT&c}+(J(4q^ye~(`zz?g;?`a;!oS#&ZDeK+79%U1qC#565WA -j04d+A_t9Dcn>H}tRax991;;<5{L`Ai$HA -hgYD32N#b7XKpAPZg%cB*_Pki+!Yz*IEGFQWqI5_xH*bRnbF*MtR0L%b=lNHxd*5YM60&!{4g}EcX_R -8BAtpTuqH|JR<;jCD$KsyG*zXsvM(Vy_2-wowbU(O%remTkhvCc;0CY -`dS5iDv)G8#h;ut`KIhjRu!nF0dyghnnmVq30AOzn=S;HRV^kPyPUF8?6|`7oUc|51+QW8U^F%(IX;bm?rf+EXtcl$ -cIPee1={3WzPfdX$)yhqDCcpd1X3#c~Ofvw@r*x;V)W?%-u`sALk)ypkNppE?<_+>t%sTrA(GlO5xFj -`#|h4mY)ufu3CVaNYGGq2dmZO0Q#W;8nA4eereO!wT-7$1+LKk;b&ib{`g2lcSRZl$MO`WA_`dcNqGl -Bp158En)9YY`Y(%)C9M}xF2I24aRu6tIZ6?RcS1Z9;Bnj~YlI2QGP=&vYLUbam{pObv$cqp1q^e3{t~ -4)qX?0L$Oc!3;cF#R$ZiOEE-AN89#a?kRBugx`Rm -!&uijn)?sxl2uW{`J}0m(RtkvkMW`&~QbBX16B-t&mjE3Kp){9{HET -4Eeia)XSogq}q>qn4;$(T9#4$j?DS!k31D_p8p1QE!st0pymcqbgPRlvU(!T+SxIpzsi>aU7;GQSdEL -tUjBJs#1ebw>#&rr1PQ}iWKEHvwL&2s50k3|yRgyR1G{^5s=4i3gDiy-1Jhd(^T@CD@ol(4l9qc|oav -W7?9sRXM6fxO8sN$>Jyijwhu=;Ac&nzB%qZY-2lGNhN!ZJKZL^&o$LT1jrga3AEG@9PyhVt -?9IvXv-6WqjshARQ4ex$WEgte-w04+wx-^;?B6D3I$z`Juf;=b_)r8e+c?1#2}Q2}4812F7=F55>;7O -I&WqV?QinH54SKdj0KsUa8I5Frs0Mxr76=#Alg|%7r^KRKUG3zW45b73F)uRIsPP#5VDO7xBNJi4RPr -&ZX>dirXJQ=9L0YQ2CI;6G8J`%eq?ku()&P~o8HC;q0INV85aD@~(^_|EUg4$VSX0^Nm2|VNlC$PgK~WG=3;vG`r`EL)w7ofh<}C-<&)jv?3_INXIFwK&?z@Iw%am5H#dZpfjIk^($x$0v#B-0$FyOtjFRG$wJAG$noZYp3s5}4On@{ -)W`;oLrcKCf^PAHxY>E6W~CN00UNpORjph_hiYHW7^SSpvo+}I1b7mo8YjyNa+{(MiTKqy(nNp;D%TD -mB!xve>p9X59xFGwHkq6f9PB79p`qS7xe?*N*u&RQsqPG9H|uxw)#QUZTvt4ZP -kBd=-CSj;`Jm0y -?URJooVuTFzN*F*3Qj21wh!hT7k2H)(|r!;0`4I(0xnnuKETA;bj|S{rQ==!Q2n5vzh8ZYnjx^vdQWc -km5yMk*Sc;m@?E}pp*uff)`Xzrvba<4RScvKWXo=@gK~_DUL1*h2x0c -InGs_$RJoD)R3-)xcLE*Emf#pH!9kf6Rrq3h_80LV0zQ2YpT?B$n_wQ-rt6>6JD^)c(gMy0_aBoV5{c -K(F22^DsC2PV-ytj~u);JeI7OA(ZM`A52n?MH+J6OLV-!V10#$~o`@z#_VPS69@K=6BC_mynBVaF$(3 -xK-enh0~R_xtY@KwVC-BI99*Iil`IoXK;;x!l%W-~C>ASy`zGKCN#XHNmB0}31YnM9?5Cyr>~X>SW0q -nTp|GLqE5d8siX@~mW#LYRVe!AvO8%#47a#c|3Ji87uH^+yEvBhwGZ;6!Rsf=P?e)Qa!GFE8#Z1C(ll -nLkW|(YQblMuvfh_M+fNQ+gE4bC!>hHw6#?BqB-jF0JYcT8~JM^Z;#tuc5)VI28pZtpHzyVudZIAnnP -pR1y|RVPrmO8c>F6EV81w#o)SG$wxrKGD5+#G6E6CF>_=(TX&LsgIFOrGAU+RW?2&_l2F*TOfp!QcZr -lX1LzF*uprtsxI&>^_^6td>8h2;bgm~1Z8$88S-YsLskb@KfMEz$(p7a>B0T*iHfAb1Q@{GfjBmF0@W`K+U?`gc;&OQAtQ3Wz1-*Eon%f1Q-NOJ8841W(la8`8<6ma| -XbiS%W!mAa_-WpD;8b+fa}S0b6pAI;6FU(T2K7g0XG|f@+7fy=y6lS>eNpR)P2nrlJE{O%6YCb*e5Hu -fcd-%HywL6vu&V*|jx@5)hV1k@BLb{LvBl_APQ0PXNfV>h8B=9c3+dlKk3Q{Yed(n^B{sviJ7Izo)Ag -gmop0)liDf<5D9@nJ(EnV?^*%eiQz)|=Ls4c%zt=J-}qPi{v<9CRqrc+GHmec8 -Q)bFk;s1pn54)p?E>`va*4ubNRJtJahe+}$L2AMscJ=Uu2;?-k2{iC7U8Kk5K!Swq>_@vY8of%?4EI{ ->mK5S-L0n5Nu=~g`kELYNUf@2B{5Q-TYz?ilaNK<1#7~Q~p9Lkww^V00^bb<;MED=y>V06|S(IJ~{kq -tNW_0hqQLy|2w4AicRly5eRQ+xmLLpHl{eqJDf9o)TP{302{sV$W?7h~y?SQ|#@q;H3>*RR(@Qn+mys -aGDjrQ_MM4xNbMPtjd8^!NK0!o%umjAd;|oq{jKXuI1|3YgKtRiwjX^9SP?Pcv1GfGH4TdJ=u3loOthb$>hYP;nh6+b#7?KH~ig^@zWz**vS -c_Bq*}l;CaoFTOZJCxPnofO2&L9!fw#j?T>Brow0}yCF-#izRzY%?UM-#bBiO5_sKXBzVt>eh}U=i84 -;;Xh?;a!`xx%VlZ5AeRwEdP>KrVTCy4KA^1zPO2%m%+`Y}ycR0d!td3*`fru~D#FZG}k62^(fBy5oD6 -W9O5#tI8&q@=w83=T>^K6<$`3)+>;P~wM$@$5}$jyjID88n&HIu|4ugjBVczN+wlb|mFhJy-RJ2{6tQvrcUPB<@U*D>cox$}&(RGEJ -A*sS=gDT^8a@#YpSiP>cuqcpX^pWmZ;z-WegK8ii^!k4Ihj_Lm0>6WD`O}d}NM5iXLdYFSumdr7U`Z( -P`=3fkCzoB^CVBcd?RCaU4MR>9<{x5@rILr~>*V-XXWvZUUcC66b5PBSm!7WmWzzyr(qvjD&L;SPF}O -UMT>Vfz3@#6TxDT&B84V0sn8IS8VuTZAG{2xI(;LLyb^uP7DHwGiq0=0#xtf0&&YX(oGuo!Z;4r!_nw -oci(-H#1!zXR2g%K3OxM))(3YSNRPp)*(tx6FFQ_NZ%46I}kb)1L+siy%l8h$bDJwJh7Ucr<7T!=8aU -_c80;1CB*tK#7E&;Rg6`%OJ0<@kdM+8JNNIj{j8IFJCt9u$qiU3;zw*0R-+!2nEOoTYBgUVp}fm)m8e -H|o(?HSz!yx8h`v()^TWsTM_(wTVKxDal>PSBR9CSQSkS1&TTD -k${PSx#D)AA)Zup}fPgY>=|pu=8tL>?>EEMIq=5oD%jjLYY?hR}x=&})T`+bh^aODx8e9-n+7TYf{f# -WGYA*d*3xp2-3)axkF(XoU7-TG{$|H(l8a8%J)5;!mu6z(KWWsbKz?Uc3uHhLTEz5O#4UcsJjx6_)u> -vX=t7LWX_{pbFk>YdcPg!mR!xK=wN;O{HQXTUEaaz$iHlUF>UxQQjjw?Qhu(&BkWgiUOnuY|7iH6+ZB -RD}RS6fvHvYOPk1sY(z!qZPAT&X>EfJPgOEspG$98~EI700PPI+MRPEXSacJ;1PBSTR5$&@J0QET=Nip3pbt4|Pt|8A -N`|2l9CO9udO7WrYw2YWV@u%e10uXCFDbJN@arl|;E+*xl^02OGZsh4Q5D|DpV47;?E=0FTBRQaAU>+ -Q85S*umKnQJW8w*7*rhU_i$Q1_8aPU)i@;60HS8ByJZ|$6u1bu-0O`c#>;}OeI$?P;k8reMxP4I4QSK -u9HP{mx4V7MlRD?WhG-U?FP!ccIsXwAxuVYW8$F6Z}Z~5T{T<}-myJ;2HvfV4e+#x9Etb843wDYm|>% -v?k6Jt?IK6%yj7y!8aQGZC!hX7E6u+0u3yCzIpA)LX^A=1L|m1{b(SpUG54XjUq5R$Ks4CHpj{66_b+ -sg1u>IMmgD+J -U=|vC`9LyGnruJm5N&R@1#cI25AqD_bios2C0R#S5&(De^lka -RZe8QT*}XOYx7LU^m9a!J+&MrV(={0CsIO>Syk;Y{PWio4k5O-*tS9I8RYX8K!z#bC -I)#dg9rOoe7E2`1s!^^(?H1$U%zaovf&6u(_v}Y6a?lfZ;I)>4rv2~AG)6B2_4N$a^4n -z2d_xegLn2HswMM0jKw-cxxEOFZe(Lf9$TRfD~kDLy1sQ%C6i5*8+NCDWfOwnOX?4zx8ivqNnt{M%yxVMnvVzvbgwb%%QbDtZ5aFdNtq8#iB -pK{y+%xXCtgInnF@0c?Zyv-VI96Bq}+`d*SGO+cVv8rHwi)Xr>pvw)awmca3^eYj7#^4g0B?G8Npl)D -tW_=)5Yk|GR3ta@pTv!gl1p>4yc$X&kM!Etsa&((eMw_e(E@f!IT9=&F;mlKr&7+#LP~bJLn(Hi`QD$ -dmWL^o4;@mPz7kmoj25?L(vlR4OMuVa49?^F(p=qmAETcIx@At;w -H#+CJa9~XmE)I(|QWaA;1{Yp;~iQWxT*h^8<^rJxc0eEndRY5H+kpMPsRkPyCf##Z26CLi0FgHBMq?O -UxCN5TUYNC$S6x{lJ2NxzzYxMCqiVRhMmw^!FZ7kr)sLZ7%9~O=CL(Ra^NKUX!8l05WU5lt%sIwJVI$ -XfybOA#_U^(1l1;CmW3|)I#43QvS~?W2QrxTY$Kis(AWJ>u6H|fAd|1M3G(p$V-PKpn -dwv;>R*EQhrf(;oZgXEp1<#KlR-ZdPa0qe7OjXa4AJigN>#xu!_&T)<)sSHhn@nd;jyxRT7$}Rd#Utr --y+5b0ohBCNapYyJEI?m1j5Vjc*kg7adfewt1P@ -|N);ga)XD+?2?-U5B1eAN-=? -<#zgEQ`Cu+=`7z%`ZU=($e4+EFAI1LJoZ-wJ_=W25_Mqc5d3lveu+R(VLpzom#I7WL33+TH&xu98+w( -ic}KmA+&gCk;J513Xus3Qzzihwxfg?Dn9CpBl$Y>`Z{!Bkc~;8`Bt3ixs&o`%2wpktg|+3A49i!B!D`CT_RQ+eVraUDSPC`& -$1)t+7%hO4!Gp^^>6zXRd4nUHqEpQing9IZ#kMlfYQYYE-mm}r|7odR4sU-XG=vO_NPtc0jEiJzluzh -gRde_yp+fu* --!*4bcN~f$MDY|@Sjh|RB(z*d9_}x@!sIq91?J2cnH>wPB>LfTC=iD^I1`@Fxi3UalkCohId4*Wc(cV -q;2a3m!&YNbgqyRw))%FTrGi$o8@vn-3?$5Hq+=D8K`=LKB&G;llw7W@gYB-Vv#U@+=`ZQM;lY$Ie_VGAPwJXDtMcZh=UqVhZcBJAqPJw$rAgrD|xGk^BnwKS -p7)fic?JhKcEX|D?HwS1w*`}8)Y{IaB#64nIKOxpJk50Z`pwC=WAWQ|w% -Nr!wF$9v!)}))H0Zl-FrpB8HpuTk?(#@-w=ZgAm$I1@KUxNsVg0U*)hxd@OFT6gVD=2QAzk>Nuoamql -S`igqaFa=POtEdO_TMAb^gMdFZ8}V!ocAYKaK_ei+1~}Z(v-H6Y>6+u9q{N$}?-WpzR*uj7 -eTpg9%0EMtfIei`aY`q+_uji9b#zUy35WOs^(uoBencne(k2k5XK~34==hL~D;rwr=oHaHNV=V|7TGm -4*WsmnUo1x}%+q46IC>>$?_kM40>|-Z{hwrE_@rRywpYf#i``=6|0|;a?V2N>acF^*+8lylPvt;DFUC -u)NGDsm}7z2?R~Hb;H&j;!(+Y`9yJEH}rD81*6!G5i78MedRL#Ii>xP^LUC6xJ9XA)$DHMg5}Cn^Z8Ob*l|RpJLu*%pddQ9rMIuoC> -UZ`ZC9L|867vm4!j~**(F^43f_!b12(d#3Ls~vRQudn5B};LtEy6F&W>qpvnocRdi{T&~%49z+4Ky& -Wp3eqJ*%+>y{6FE7d%N?+Wno?`=Hzi~!%4X~r!-& --wew}u_ -Y{kBK9WpX=B{8a;4(x8Aho!b0D>Y**nx_yWJ}9iBt;HQQf3~`-bL+*2o=&un`Mxt#KJ`N2c6Fas8Z7; -`}@p*gf67+aFPZ|r`q(6swKakjinCJ#xr@rWDrqGhp+n|>^cXeuO{4gtO4o6q#f -h9}tQh3OT%r3ZkQ%;d^0)u4OVe?DXVLj?l}$Mcs9RwC+G#P|`% -LZB`#HycU{lw*lxGS-BH=`bW>FkSnhRO+bN74wkm=Kh4!0qIfK5%r7LOVkW&cdeovQp}kP+*o68a*^V -bWWIH5VNAk8ZmGgLlB^L7bKjA+aU?I|`c7g{nmotqpNfKy$#!jAu4t&!Eg7EaC5al|gHajDN$7*DIC@ -NQ(&_J$n-xuFtjW52nsMHl__X+%l^~Y7ST=BL5pGO{0Rhxazi3{B(BIq0)YFROv_;{gu5?+p7w-3WpO -OBWOFBB%_fDQeAbZb~9+|0ALn;F+I$uY6=sd9^^eWR)+_3?vyuQTghmb~K>yJf~*P^jzl8uJDNJ$vjb ->xD(e`~fpUiB*lIH@svEOaY+`U6&wT=;EkMtqFD+mA51ld=qW3d8=0yZ>fHLAwzI`IgYPLXWxxgjL@F -;MJ_rgndwTaeXkMmg?!3z*z*{w%;dc18mu0cH=2oYPa$x;W?P_ -gjXmwa8HS$GB=&jLApZDu6m#dOm{=Q>n9i_Ey7AW(kMi*@pSBnd&z`rHp68d)mQ^ -Jd^mX?;d839au;@+17Bn=HGFD7}Zoo0d-Fgx5c7b{SH(|2Hvf*(`tVQ(*4{H-OJ;4ZHOv)w7^I ->*LB>%W>hlh-SbCKLR~q~I+YLw%vY&OWXD!AoM^uj&xirF@=jq`bO)RjP13^iJ6^s@K3nEp&BGY7_^3 -*2#$Bd7-`>%>dI?>bY9UNqs=&vFwVZk@U0{2CI -tOfwj=SNL|?>!D@jUc@zu+pu~_F=pXJ6E>8Q{QmyJ9Gs9y_>$|S}&y2;`6O_G(m`%&)ouj%cNbRW1pD -NeUIVPPGg%hSn34x}U)yvbkPvB>@K#J2)b@nx`dI&e%mTP{qhn-$)8&8NiDQev%cki=`SU^p&Jp_kJ| ->iun%+{9LIw=;%RuMjH}HM$09yu~G3bHKMRA5oo>B$~R@hVBB7M6=>E)Gdyob>>p@&{u*t7!017NA^uyE{~DowM&jt-hRN$+Sc%Qa2B-@h=%4ALy4XH?jjf!UfH#J{%B1xj@9o4 -|0?kdJRjQf_Lkm8pX0hMj?SJ|Icf#9i<{qYc)>cYbv(rfS; -fB5C22x?{oU<`N{YFy)KPjKU_J(o&NcB!+`N8)_h1vr^=Mjo%ZkT>=&4ip*W)dRlA`rgTvYUhMK_to+ -iJT$)xWRu}p6kU}vMeR^eCF8ZLhS6}?SCpHXc67y5;EC^6ff&NvelOsD+B^ST=AI0{Rb_oXbH=9swQp -6t=r!BPim{a6^lqA0SvL?YnUwwU6Ne{Z<8j-v6EkF;bedG(FX6Uc-NU5Bhlg$1vPDoV=sAl5bQS -hEC-I<@F}~7I-vmk9Rn0qAn)njHYB5-k213H+ak!s^cJjB}G`^Ws4!cA|2a%n{B+6OJSvMaFScb^kQ~ -zryYxJ)!#0&{U}`2)n(YmdbsHjp>8u4^|j!)WT;mX1tUB;+-ZvCr)CQ5m~OOE;wv6t+Nrwx3B=pb#=k8$)hf&^!@d=_ -?f6lP7>}J>IBss=?%9Wyw;=Js*k$vG_{WriwwnjrOc(XHQF)tx_@+e=5yBAwKn!G+&vL==FEK&-6bwIJ92VG8{5*7Bepxsd(GWeJ(Zm*RCat~kBQK&y$-S2O4r?P!WF~ZK -3ts~UO%ps@%!y@SDPm?gbs9ax;lh-XQOxz$-PR}`Fa^uIKXxkD+I`lb|l2Be -75NDx=-s_g8zR3P)h>@6aWAK2ms(pnpVm;c-pcs008mH0018V003}la4%nWWo~3|axY|Qb98KJVlQN2 -bYWs)b7d}YdF_2`ciYIZ;CKBB#6CVC6^fpBagwvp+0o%qHg6VXeRZ5|`sL9d@y)^GgU8vkX1#68tLr`+JsW3VeD?VlNAR -CNWFM|Y_IBG}H+A;DS@w5DE3$8!O}!}kvZ<#~^Suz+%NNhiUcWz^_V;~O)Qjxdo7W%Sz4-I@AKtusk1 -wIz!J|iy-k!b9zWl>CS-DzQVkPRHfxwr8gJs*Sve|68={K#I&9F?<_SvQ`p~GTUmAz<-syjH4A1;ede -Djt1g=OZQ`BnGgzOTwl_2#zCmENii_^}-y93 -0GMMO6XioMh)YPDxu{Zg4vCNtXW^sO3f7^-w}A+>dtqd7?~~pIu$OsF%$^Rr}LhprHIC^a%+~w9q9t{c{ee>?adyQf!pRczI0C*%vJ^iVJ1`nRSdG+e__48;+ps^L;RTVvW{^I=yD)$}= -jq(?--+wrL`SR>t9;J@_-PyA@@1E!M*Z=(f?EQzc=ea*O@ag@V@83N;dk^LOPD9Q2|9<)os*Snv7q7p -4Gduh71NL!BT`U2E(6fViRdii8dxjJ;YA$~g^L~6xZ6Pbbe^0ZHm;_T%wkpxjb`fEg~=F6* -0YVa-72fLn+q@RqVJ``K*NiE1gEv&-P~0!oxcRdxaz$x0-KdM>8O1%dCCT~;^k3g}~-HMPi=O`8emU* -=E!GzuKso#F@pA%Fib_ce|o^7=~D!1ZAD!?$mN`-uZRoOvaRc4#cmut3&dOB_xBV&5YY%N~(c_FY!;a -5ETYFLrc#$_oQxy|cVm(@Bpj -(93=)a45?951n-MxtqI6F!GU_+$zG>i{9;6t%0}jZ5rjE#f#tzfJ>0k^6Vhq-`L|F^CZQ4?F)9l5Pro -LN?dATgbA|VeI=8y>h#6{4sg{5Nz`k~!GyZv?98Fbv0RRxluxgpkpY^;Sbwzb4UN)prK&NGbXP5?0Y7 -j!dVSEvrrq)QzuN%3kBIJYj1OCF>~8f8%7hnX5Ub`VP7xDzD+HBi9%b>J0bW`Ck2!#MU?LK!Yn7nc=r -o=9(4w}Nj*(HiA)siNp2WaEOs?+!el+ses{v}{4?qEIH;ZBcFPl@#wkm11cAC#6`8!j4WN&5k|M!C!X -@kd9bx3Ho#kOV{VUfuvxlafx8&Pk*=Yv@J!om^oBF)Vcq};#O?R-6Tk3coDt%{{K7UaY!oB&JtW{_tE}mPP&a`^ -!z;Z(wFy_|jf#Rdc0G9HG|4CEI%UQ;Zy>2$$C+yLX->U7$8MBAFv&+NR5p0Jb;UQxy_*8^vAU9W(cV$ -L9y7k5fqYu39_I@?NkrUZHpASx^Gc1QJoOH-(4y`4vN{mZl?y{q7FeOdyNl3kJo?}B77HR33X`-x5BDhFrfA~6BExvt`;N~gaH^YRDFJ%iFbqwa$x=vWmahf4I-sb&8gUP&MK=TfD~i=sogj1aS+4xey+uwzJOpX97G^txGZDl`JMolZ=kk`=w6GWb~LYG8 -RB1HPO&#RLA&S=IK+a7L=T6u^kGJ}y8z>+BZ35B2A{AqVDXT*scek~EhYSs=;p;5$^bEdI4Y-N3Q)J% -#YKLUUtEA00YK*(W-HcJF}LW9#3mG;VPV$kVMXxTLboE27JM}hQz(U*ovH)fKL^@yp)F>38*)aWfkR#7jC)?<1E|8gsbgPSKYGNT8P(QbexG^h>NM_|6JVSt;JXv?{c9>N -4P2+*of1=f#5tmSg)w`(E$-_d4DY{kp(in`Bqu0m~1qxkZC}5jZihgyl5iU=w2<1U -ZuO31Nk_g|j@^uv -Skm!DlxxF6ZiAAMJ);Zl4D8JI0WNx&TOgs8y;3D^b&sLQjy^!Q1H#y^GbwLjAUWBY^eYKP*5n)~dMLp -dqNk^LVk_(cODQtf$cMJ8eP4bBibPmD(I`o^9Sz4CkCCBVw;_CC*l;O`yOmVsmJvJeA?Q=@k$qpy|m)p( -p~b45@-K-{+a8z88BiaZPLoxzg=BCY+K45u4R_rS_+EP8q|`BcE(bB$i%OKzc)~rlml0`fG|d{kM!)i --(&}*u4=?IET_WKT1#CLR#n;azS5rwus%SKPSagH7V*H&`vN2!DU1t*iDj3TS7z{m(c+- -a1THIP6l*KA`=+mm(z|A(gcbUOtdG{%?DO+yXPW2LmUa}BGbz{LXmd4S|_|$OHHB44I-;7H#RKy)Dux3V^7)e)gPS(k(2xk1*dxQ9#h3z_Ns -zc|Fs`NT%lW1%S`9pqWBLn6rKn#xBb_MP`L*7C#Bdb9GRqo}r6xXwMYie(c?U=mGKG@ENvYPcu|1rTw -u+O;SVW)G=^^3fX}A=S5w+*4P`GiY^~;ph3km{Jq*t6=ZLIS>z(I<5xh2>;>^9TLZ8Ur<70`$gIvE!a -91ar{NaRAY0=Qas=ix@-y&{dXl1kkbTT=X1o33ZEL=gshqX~WzQRE#FvHTO`9Hbu-djRSWbYU~+KyKA -p`r~p_f~C@zz~UDI!_`DR-|9d{VC?4WzL$_{yxr1&4cx(sufXdO{0MVg6*^(yb_6!z -V)f9`_rmeal?8oYS#{tIl>EBfJm?k+XTmi_CD-|h6DiJ8V5bdh{?E7~wX<{hmaW|pZ(Q|rUOfTeOum( -qgJnAzc>CdnP@6e6U=PQ6-s}hEk7-68X4vh0O!(dbZro-%vy}quBZD;meP$|@wTa7va%-Ja17NtDGs~OsI7P40he>4{CpJ}-PFfssF3k!lS<=T8ty5sB$ -W5=wkx4q*=RM3jzYU3mgx0_lu9?-E9SsU~ -+x2xvK1`ubT+JaLz-304NpV)?5Io${-F#V^t;nYnxu@JYP+Jarx4xeT_xwA`~rIZRWDYm$p-Jp31C>t -#|6)0&{Hzre7Lk;vC_{J)ZRS30F0%Y?ua@kR7U|b=eGdiv6!-VVy);Ux0#P6&|S1=wKvMSe9cEs)z>` -%q9FimF%{?cl{V|{%MN*OzJ`)h><(@*1yu~Cf3HM}$u>h8%~dTD9|9!AT%==v2gm{vDy07x%l;^3n1q -5JX2AEoR*S~Uy7)?`f)v>0`ja_M?ORQbHwR2=0))s!>_=6M9#xH>pSw#aYzP;xhifdErjOSj-FYvhTM^cj0z_~33xTVjUU@%bB -+TDr`ZScCIH8QDS?l+5#~OsC2wcVcuI7)ko`-aY66yGB&aT%sfnn>mZ-1>zFS-%>Yx`RMzL~%(JPNed -6J_XA*2vp&`de{uo*GRXi1FOwU|{U3ll^2Ec;AXHSYp7G+dx~PJeiTJ_EAAEf*}wUf8=r8D~mWAdfAQ -3L0>z0u5SX2+1G{V~)%lWo$Sv?GY&tVDfgfE`>(%BzyJz>mBg;KsSRU5>x -~iC>gCgEulGv1Eg=BYd#fp0{T;^qu$Nz^8xpTA-ZyhpN6;=caFsO&{R&F*514uR$0k>=_blDRf<| -nytce^&XrxO`uhP#1Uq!CZ>n%}psTo_XzL)UPkk-DmNs9tF>%Dt!7nfx+NzP7#y`Wb+eZ0&;Nx+! -32{J@jg&lEz^1T2ArKTA9ID#_EO+|7V;jtiUw@2-!&e)I9!Mefqi)%Wml;x5qCKWU993iLUh-hc*(`g -o)icjx;bie3x-48zCz2k5gf&F9FWb!)59D| -b#=T0-YM1)ZAQSOCcu7#+w&!%5|sU))RY8eQJ@>@@wrQX#CnOfzSx -1Y`g_5hdxsen9xBK1j}WXXYk@riNs5V^U1Or2P6_dcxrNe7fY75QQ6v1OH6kOo(e+ih!EsLV?ipdb%} -N&n?3=62XcYlrLTV(Sb(HJm<%5A<-?^S)Wn=1-n@+Mn>jQnnUl9xW_Nq6OQiP3dBY?8t--)YJXdFF46P+q@#1fExX>r=A(W%W&b!m0JzBxJc4GPbdP -rLAzOQ!bBtvfa5zGHT -8tdHWfc-%yBx7Qp`c^4WZHcZd#V_9P|!?YQ%1clCmq6I+M~kI~d@|3*B`mCDXaMsD?g1`81y(m`)@@t?il)7j{rN$>I}&k2)lj8l9T18GAC-|iitvM4F45p|(Pw>;5lBnt)83CAs{T8J0RWqC%m&M?1*eUj6OmJ<|r2!_k1s6 -t?}UCFQb0P&63^57`YZGhXj86tNu8$Um%BX!%vhJh6HCj07Wr_i>}`{N<{x?w~uPEKPP%fs>O#f*vSwuUvG&tn$o7DMJ&6^n-JSPoo*_Hj(Jn!^z93dfw@L0tCcN -E@og<}i|vDKY%289CQhvwAJP?cqt+cVCWw2|S%(B!{Wj@A&492eqwGwSYf81f!v-ZCxfiXo(`Yt_gK? -=17SjOj0+P3QV1s41cB!&6|Aq>tbR;FUFVfQ_mM6Gapx08{toNvn4>CJ7PbVkdWG1IZogXqS8bp#a;y -=XJxFRA{rrV@B1CuVE(FvZsv_kvQ-bIjgPtODa!HgcO1EBxE`ta|l#z -@|kVk4l@(ru+eL&{lC-fv^FLrc`2}(2aWcmFh3A(v*2XmIC@cAxRv_=YNH49m8+d1_DaK>JC=zyvq(i -#t6c@x-6BzAC)1?Bg1t;LG7~oB57yxE-4rGRLkLyj(CMPa-UWnRBarEUMzKPbRU>Z)&aiR>?JY-@6NyB8FC&bj$z+mR^LnIfhgIjjmvHwr|?bd02? -euYR8!DyWFc}{F0Voc~lR+eh?Iy^*JJ|i~;dlL1Qe5W0 -aol@#_0%ePb+u4^nicESNRB=qs1a04@r83;`nkT`5XtGXT=;5Did2^G&$Hti#nHq>>AvNAc&gvPeM33d0R|Z(4$O3!1 -7OoJf5i2(3Isv1L9??veXrGikzjFap`5y;`&ebmsOuAQ4|Xg7ns&rqB@$lP9EaZOF86XemIq%pR`;(z -&+!zy-ukOm3Xf#!gQT|hN}1m1J{3>`#d;RVEQtYp&}CA=|5>voCYh=L%T77D3+2q9_!*^$OiP -glf5v7PkI)KySZ!EY9kaZ2GS1abaxFBV4;2FI}TR5jwY_FcTw=PIiBpf5nGO(lgu6uP3EjVScg#Z^#( -+1d5K(n4MwB<6J1Jc=Iz&H8PlKWHO*;7fc+>yvb0q!SVfQf_KkcpN^X)A;5@e@2-A_-=&T5<_yDMu8L3#Ms$PF1SlsiXb!mW5!$!9h6Z%cAj6QGH$*_YvoFfo9}H -`g$sHThzU?w^7=sR*Hqm;L3MtInl`OZX5?m?eA-rBpwq-TE5zMcvSG4Si>W-Y!Y8E+r?4|T8d4So)AkP -8LM|}m1`8MEwk8&~XH`&`?;&U{IVC88`?lo2 -w-|fT5e^z6i}8_vSbwrD32#tTiG4aw6C;=4ihdH%aVrORO<@kX=T(HEjd5n3kN_~qDem*=rAK|IZv{Y -Z^paeby3+$-B~vH4o-KsC#PGosXWU6TFVs3)Q3=$vA~DvV%>cJv*@kiDa%6UNidf~#v(e?8U6?cXPY& -`2&w)!?H#wD{7K7UQ5)u{bR(_%-?dA|P89F0y)82` -|zi~ESv0ly*-)?lc#<&!XMhLUlZ^Q+3)9o-?LY@56}R^ZW#r}@Rjk<2hJ7A>O{k -Jq2VB#`RyzGK{cACbFoLXr>de1N&X^w=L22eQ1schomT*ifS!icL%96%Pj|-IfpNFCDmOpgmfLME?VCe)?V7sQrakKYy`08f=|vvyv%$ -*D0{MevC>IAz*<9yxyb> -FX#pFRbP1%|!tubX<>v{z3-M;0x5)1RUqj0b_L$D9mus!p~O5cLD`=6zNNt|GbZ_c?C0`=pgQiR{W{S -|94b6@gQ?EkE$Ul{SNTFKVI=sFzDCY=`iBO^UXPdnrtRCN6loEx>Y(5IAb$;^OUpe0PMmgTQc1gb(7PY}bJ*7Me(-@VeObmHhq`px)WI(9VGONKngc1s{alb%4x_ -*`WA(?dUG>sd{MGX~doA<9#hy{BYl=|ta7oLi -$x5Y*D25W^0Vh>!AH4Y!jnjLsXZK>^jWz$=>%}pxhcPEF`S>ra?%q(FV)ufwc7k8AjcVuzVF%4G>Ol; -c~Nt!!hLj61Qg##il=UmXFiKVQ5W*=H@er9LTuh#)n%uW^jdAm?2GCCCa?3wC=8iOalf8WSvMCX#Yo<>H2hEjY|v}+>&$GS4s(izoc;XZ&cwx2o-cEFRu+kIU*5zkxnI!ww`^*8fau$Q4-OZfrLj{mFAkL=btgg$ -|oA&9+x1inT)k-4Slwmy1zJ2lIt25Bf>qVt*l4gACR=uY)tqD_P_%JbY%>pl5UU%ZL?n-DZd9pMaVN_c9f);@*&$2<~iGIX3={=3IqCohYapi>> -)K?ej{udNgik0b^UUaKcfCR(}k;Uq70PO=fNA%{0mj8B9+@QtgV$Rd(UPBPSCY=6?y!Dpb!0Vb1L?gDmU&|FmDg^2_YV;t;WM|4DN={Qs!v|M#Mz;}Q8mz=$S_BbuC@saEVGFY$velWYe6 -dr)MwY)U!M2cwwr8M2u7k7o9W>R}PhiCEEJ>%3lMTK>_8_l$MA -_di(c-(Q$$`OMT=~7{os>;>PhlTjR@MayhFu$$#=iC&E|^ZWtLzh?}G#paW{vU^1zm;f$? -0SbUURKF;G>f!>0A10xt9_vJ}vbzH`*SAI8Vf-)koHMGxKq@zEXqvszbT=3r21ehV)QremnnJ&GN4y> -@g;tqi%Ip3jB5=P*jNe?d>Tb%l+=2cVVDoaPh~nUIx7hOi8l8$ROYLc%fq;$WDFvHMRM3R88oPR?8?3RK_|09o(8soo -X)Da6cyS9GR-3U$Dsgyml@H^P6i5U_l7b{#o~(WTmqv)hb}JYCjg}@T7!$2RQ~UlTw2`*BnqY)SMfvR -X?9w5&4hT-3gaHca#_wxx`?YS5K>W1v>X-iV(a$q;^H1At3CO|QKxuh#$i&{ENxG2wPm#Gq*W4+!wdHWxo -lkCBhHs+h_O16qyxeJc-{5Fvz8W)Q2EOxYC6^o*^Wk+ -a3QH$?)ya|3Kl#_6)=dI`e_+N6y3jB-=_>6S-0Y=b}iix5Imy7Wduu&`af|;T=*dhr#6Cf69zyP2_HZ -Po5_3$o8M5BZR19U?)&ST{XjrarY*y`;XcpQ}a8vcQ;mGdzI*R#kpm^R`9(JbjSE5?#Z^84ByszB-Hj*E)~(OWgN#bu&~u|NQu4 -czuaJJINI+I_R6(qEU1O|3mWO?x#bXoS_xuZ!Ei9ofv7V*?Z52z=gIT??-WcuI&&c9YJ_ -dIzvE`$`s&zq2z}>@$taofLx+8`y>xCO%v^I9~N4Ojj!88*; -E$eKUY#ekUk~EGYL1xy;??k`;%lYKJws_ncdVf{UF{2SI>7o6}x1vQ)F77m%S{c?-o9NPTQWdQ1+vHx -D$jyJuc_R4YIjm`nSQ{|jI7T7IA#LgCS)1ogv{RxJfaOKJg*}0(>^3!@{**m|zvjh;ebjtYWC(6vwtV -HEYtqvlu$e^Pd^@jprE0hBuIyEDgE0)CSu*zPcPV^rAv97A`Kyz({?m!uj~Z22bc;#~j-P -$T!{0!1q+II+OfANcjnI61%3dOMqUV(PQ+gD7{ys?=UJm*d%{z56}<_cZvkK257i%{x&x>RCIaAH# -wCfgc~_qezRR_eRRjoy;+#npaS!~aBm#8t9Ah1pZD(~9i@j%@|JWJdj^ik*qMlqOhi9NMoaWmm+Fttp -X>-k3Mr+F7J_?7)&xSvA%%6!dfFKfqBEP0{*LquAu<=f26*3sxcrcO$^N@KezN<29q39%uYx#Q*SQF) -B}jZH2Mxd_^Ws-V}7^Qd${YR)`}CzZ>b`L81fc$XB~8GVttjQ&tPh2%-J_5~DzYNbi_oIp=phwZ%Ts! -$LlAxw3}q5c^uyo=VuBa?6X{93th&<=`}<7Y*Su8uH{ey7S0qCi4IJ#BD)h$N{G6*)9mKWVs$Z6zeUl -8e}mpC%qNY?ZTZErp+oah(jH!o&7IH79G?uFXIvl3(~9x)feJ+7RDNLe)XU2b6{Q+Z7dFpW7_EI03zI -}e1YDW=&_vdYkgGgFO0NAd_CtEprgh85np?`R0%VMovCzeVBF>H)>Dp)Wpj7;KG;B-J|14tGNRXM3Y%KBmFOsAB;n -){`DBZWJalLDPi)hO2v@#IcPcFP$`s>^%>=)DzST3v~nLYY!RnI$|qv%5p>Mv@AWdwvsBe~QCanup>T}gX -i|I%tF#;34%ms0m@EQi?Zn?-|a1rbZIdq>q3>QOStn3naGy>jC*Nq+61Kr -WCELW&>n>n4ljrHbZ;8mm2YI;N@T8G+JdM*?;=%F5cHpbCOi;?DK3LqHvd{ -cxK-=nlLqzy|H28Dj`?h04nocPr(s;DZ86&`#XoEL_O?rHn|tu#R@@2mdL~N;(3wOLvjAaxrp*O$<{MbSF7{i)04A@XAi}Tyx6N`y{Ux% -Vj`YBdHR+3OOl0q@h1E+DFU>3nM5)xWh|;(R2wN?@2gFoi8uMG+J#DrZ}U2f!z#fu+(;!t43$+XS=Lp -KUuz}hR%R8!dLyNHdG+G*)tk$p`cR25i^Yo{Ufo<@{psz^57%$#A=;fK+agz$*o5UKO_ug&ny=R&!T! -ukdslAiDoLAP^|DZTB+KS~CAY;YN#$9k_OmmAYo+ons8KQ`rU=vSh98{C50NY?am5cWmCDsjh=-z3;d -&d+M3#fVJE>YgalPH{=ZChlyMncwMvUnm2xVUb&|&OypS1zDIuL~J+JnKEGK4s;-DSs~`QK>lZK|p$XOABj`yvT)wdNbIX?K1 -3{N?x5PCq`2QjjHHhtX}gmRC@y4}QM5Wy+ZdC33U~ktI0BzVwY -4KDDUg5siVdW$_yrWw4fP);GigY2$)f8DZIdufN{I;qLdq)4A{m@D4Q7yPxFs+%@Ii{V*DpoBVzL;CKwPb$rkDzaj -FMF%V@)%)TVYNT7erEyDou^49*m+zxCa;$tf2n^rz7ibJJS3)?7%8n*NUx!KWSS;8<>Qt$Yhn~(G)VP -HuOJ;DyIS}uJ%*RtZ=P|VjcGF@GY2RW%>{<+>36wAO7k=m<>rLeAYv6YV^@_SWlM3d0b2SLQ -7VtJXsp6zGiQR#_CVu%huDa@ptZ}gl61tjTiqq0orm{%m3@doQ+edzgolY^?>OV(|g-F{vMvAoObGzF -H=n^p4n-BjjGAwXyafB#cOVy7ch -;s0%_0Ar8$3%b7sCm?AIgG^}JR%EbaUQjx=3ET;Hn)n5Msg6Vd#;LrvwRZ91j4u@oE1CMsJdSWZbZ7IKUB3y`aWq@rUGh$!0DsrOb#`Q+}^qX4tv}Y27ASNx0o{F5q2P55YC^W$dy$N@rf2 -=BOKRgjxfFCA?($IvQAzp7tVWM-1~eFqt?1jz=QJHV9+PIs?ydXG9CDL-n*v>-|B*SU%tv+m2;igDZH -dV@zmbh_o!69L`<(qPaE@5Ji&}WIZQw;-8M2>ryMaB*%Z3#ITrlm|=8k-^|2wG2=jew)oyWTQpHEp^n -%XV4;Jl3?Z*j5Qh%CZj!L^_adveOCU_n%eu7&ZRD%VBVa7Q+;F#XX%tlx%h9SV;PoVKBAMKQVxFaJS! -%qYuw1~DEE}^g-A{r(Fx^~(GhHz -_BTa~z;ANMjsX&@fqosSwj+5fxlz@lKkY~4*9&o6rD+?ZYy3`IZ()=_8VrCJPus}|tBQQoyGq1|W=fZ -B2AWy$hb1hnhL+{zSQLq09w{--+ -NTr#LzctHgSx)Mm|dOQo6w`1;J&q&N`7hGGDO40KrQx*ia+u6{g}=?l}Z7MTCzq@H}%!j7b$zQN)e@X -%IHVjKENTEm~T{l(Vz`8fBrk+T?1iiu_()8qe2)Y>jN|(?{Mm+ -uRpsj0kl)j0BH~tXS6pA`_O5)@=?0v0l_G5w6+ -dfE%S!5M@S!uL}>kIxBi76$|wwZZze9HzfgRi(!4dV_BEGZ9GH3B1rmD;HRZMBaGmo -ET`FU0Cz4vYaX~i)fA~tU?x`OA?-ZXp`bfBt=!W?8pf1BI+GyHZ?K -Lz%@thGVVvsFe2ix12?%gWd3h(nWAax9W%#+NopfC2p5>RP=`gYn*#FxSg!ZLCq;T~!+Vu@&TPIPGmL -$%G7zC{chrsovDdgEmkYpc*!I}S?a9BbxK)-|0;c9-As(gX}B`U6X*2FOhYULOw$tP}Ruee=mpk_;Hk -DKI)#X}zv9UartupYRVjp;%a#K4k^xnm(;o>@{3LaN9{bG?hR>Pb>?Xd~=-*>`IH}jHZ5P+EX@Z(ig- -O`%0R!y)`nl5;7(Sb1{m>9>dmJGuGHomxAQuZGBIZ{Nfu11O -7yuGLZDgssjef|5!t4p^JpU8vUN`TwT_+tUbmGdHk#ef9csI%o#q$C~}GYZzLw9<~Y^qjv;4(a~`awi -7)Nj$|y~yU&17_gT?{!S!IC3}1YqM{8%(L-AK+O9;y=au2Mgbw*wY@rl?VDT3ZaA-&p3u?_dgV%f?&0 -1&*0D3$PEx>h(S9y(>g)}}oLk~+BdE1)E+3%1cFP=_7>%?sbk1=BCkx3;e9ScK{+-i69dd8%h8gC}_! -@VK2Cj=JEV4Zxo$S_YbA!A>E6@!KAg(N>+PP`}uPNr$SZ+8}mt>pd~%u?X~yo|_KqK$}xeBgaK{`Tsi -Ld;>7Q#*_cA@uVH{z!G2^F&+l>Nugx8Ec29_Hv)A;0J6xoShgbC;~;K`3UlW`9aV<_$(l8|3G(`>)O| -XAk2w36m6$W*qW%Q4xVRw+A^VX-b?`JbktR{?7$X&l{}?Pq9jcHL*f!q_!Jb&#X-R8M!aD^^k8m-0u8 -M{w86%X|(jbacO?iAg^jMUA@C4u%V_q_Q6w^Svnx;!$2JDEYv0jVjbzMiSFcNvc4$w -x?ZC|5;Qw9h0c}I${(L7*%%;-UH#^*sNNW(1X%lhw!B&Ni>A(5?N9nO|gdyrP?wh%8KiVVj@~RA@EZn -0|%x4g$R{k!J>kI#bQZ6<}imcbz@dTNTbP`5~~j&#_Yb*Na(tn)>-`RtWplIDi6fB7@X&De`5^gHX63 -cJ$8AW#z&w*g+LNdGm77H+B>i#%Y)2-`%(+y2%3ErJR2eM7wiOo9!m$NDrzeNNZQJ(Z0iB1xebD_qD@ -e?zS;Eu3`-P_7w_z6F~t?x+X7+Byr!x%toEA10+JmPKOx_gwlHDWq;=sPTpw4o&NVO&F1>DSF4IyDq4 -#5sHjMs^!NxGqXgBw?!+2_`_x7y1Xi^KEom>dL3CmqdihnncleJ!OF?%ZmJoKAhlVBr1=q9d|HsQ11e -Ld`|pWoLz4(fuHqL+Hxg`t`77=pITz2cGwu~m7L^M0w)G=JJ}WbHm)+S@*uecQje@3m>!gGTL-eks6Z -22}*y-%dTiS=I+iRC;*ldt}NmPrYMhx@jxK$@|`nU~TJ4ywwi-{;+niFwyFef;8CLB@f=RHE%-oF}&@ -llOsxQ$DDMB(%W_ewXKwtzJ(0)-v#W3nI|q6G7&#%#n1$-aURvQX}R5N;zq7`OZ#I#A`vzrW(VxgFv1 -+*cWeRuU<7H{GaiB-^X`YEFc&WqxRo0lWpu$(Kz0yNCze<&H0w9jmUd~4GU4CJ!6%3?mES1m$?n|=x! -~j#Ie81DHDXzRvB5NfwQ0HN-5Y#lKOyX3jL`F>fJ6I7tKUxWpUutl6jQ*(S&~#XIoz};#qel2sOe2+8^d6Glf=lBc=52sN -xV1lz#XqNH=*JhXHB!fxu7?;NDLS_6E5{dK+p7UTG=(l3KG&E!WEFbbRd2vw`bu>x>tENZPhP9;wKW^ -TPMEl#ZOyi|BF2I=Lw^Pva*74{3lB>cq^UcT>G;)P{GttpswK^!?s~%x7Q>vr0TPtzi*FHE$?>^=wB~ -RqdT}Wib=KA#?5Zjq4>_&k?)2_%+;CSu`fmA?9I|tL!m3Aqp~9ZSdNLJHPmBRIRX=^r;-1wCbC9PsO> -w@<`pXryO2In>LOQe7X}(#hpi>K~+T{7|G0S7C%zP~NPG*Uuv`rrrU>jtIZ37syw=|;zd#zT!%GH*(a -oPec?d{~vA#Il?ouoE-y~ebyl|tN@?%M!4*JlI>r!Dd~llS14p9C_n@FEPqlnrtwxoMz;*`C+(CXVeS -17hd`v>$2nN}Am2{A{+WvuH-=VZeQr$UBLI3y<`9fvjT-XyV7AqV1wf71CKib1sT&?X(dmP4iu8gu$i -kdNgH?>0Civ^R5|72&ccy0Bt)%b0DgvlV(brYS3;i8FPJHekk<*SWX5`JCEtCxHv=jh(3^G#z#`@)@I -x#A?X6AoPWN&v2p%zPq0FNe#uW}2hk%;3ihV^XP%2HY%>znGO@F|X-YMD$%PH0+@Hl<*Fb3*OhNcMuutll9a;mgRs`=-J? -HQgq?8fBOCZ+djwg$fPV-Sb3}UFBpvbOI6c6u@*!pcQ75oFnGI>H1e`w?JVQkqy!|INXae*H&bwZKk$ -HvZEdkEyG-+0PRATwX+w#E#BSvs>9Nq>3)p+4+Z7Sd^b*u-bShh9gZyp# -G&7f}r7TdDoyRg#f=>6U0$#pp>7^C1GCPC<2LGkS=3!`rWT=l!Y(2x)(45SD2k-ImEeDH;0x)Bk)nQo -81M=TAq*|n=D-6}S2>6H*VX0$O>Beg_~~1NLy}d#Y4`5I3j^b&hVgz#8ihcug&76hz -V|KC)0QPu9(V}&(2~A0*Jl{-u#H|jWa2`Lrtf_z?zPu1%rygp27$~#Z9e1QrV;lR+fE`Gt -g(nNl&sLa$FS&acB1{(k$ngGq3m36LTl-(vzrP*r$RJFlzT?s4ae?ist0Zo# -{ANk=)@%8{Y<iG_9Y{`mdXmj1))QSlEkB!PRNi^dld5y<#HI1KN3FSVVL3?V@&}Yp-@-{1jEV^1cz -OLOWU|Agi%$8Y2%2X2V+Z+9T2o-N_QKI<4`8@s0lW=Ny)fzWI%_0n!w_ubdK5jsGKqr&3U25sam6dDx -m&lnW(9ooZvHU8f?lq)?+pqQOD-%gb2S59lMsihr1v6G{rXKGZy4?^vP^iQqIMas;wv3WtCxojj?rjW -=q|GL@1uLNYk#(_#;SC+iTNwG9Ig$!?yLs4MSQuB0OYUeFO*on7r49aSNUo0=P}Rv~IVFE~Xl%zY_1D5Ru#5& -cRbZGSz1U$^g6_{ghG!WWJ3CG)PZ;LD$_lUPvyGhSLC1CMp?DsLMP-)~^~a3BovEq9QQko^q8e7{v~& -Q__ibj69}~j^T9~?%RH~NrfvLv|A#x$h$4`Iz^;b{6cD9^{s_N;r^Wh`bE&ID^K(f0v{N?Yv80qw_E* -E~pom$j74}BYx=$)T?;>(8AaoPEvjql(W_%ju}FAoT8@K2 -VRl8c<`uv0CPSr{@Y1^AMf~BOYgwps=L8H;7L~ya_?@aWu|DEq_96%&clKD5v;Zaf5B0Rtdd&?2vBZU$}#{E~LqWdYhpvN6jv -#sK4vzMJG+6ZAZwGImiaOjxMyvkc=_Ec5HRP#Z2lkwU~5#eW;?1G3tn<=u=$q0V=F=b;`MqZbiWW=zM -9etB2fzIH8xsXZnFdKoQLg`tlswINzajD5;XIq)$D46+Cf{#`N<~TkW;r0z+tzMB0|?!818klhLTXf# -Z7|xO-Hb_!m%10|XQR000O8;7XcS#^4Z5Ei(WB7s~(u9{>OVaA|NaUv_0~WN&gWWNCABY-wUIY;R*>b -Z>HVE^vA6eQS5yMwZ}r{R%`HFTjL?E#)!Y>?j$x<8(YHop@}gCwmk(1ri{I76~u_D4A*Jzwdojp{h^- -DLcKBJ!f$eiv+7~y>8ui-8ugVM<+)o!IN^ctMcV_6GTr&!TF=J^Hcce)8KD -;k?ew($v^T<48^|9=UGu_Y0#8GbDagxcg=NK1TV`)bC*j)oyYWz$34k>ncldo{q9N^K8=u&*=Trsw%5V5 -S#>?Dp{_RNl=t9z}u`cE2rD_dN9pKrMOO7x{pQuH=P$A -}ud;db4J_XZ7rYMsoYa}~dK@&_n`YYV0J0y}iwrtaH)8@y^E?iIc=0WL8p%umW+gKKZcZ4X7EIRI`t} -^gJr35%O*T#8wbWl{O@c5~{lCihvHtX|xJ_1hO07yIfVa|)ap&(Ev!&CUy|D62K}{}-;Sr -cJ7=L13q97zTFm2k8C=-)8CGxRg2cyX!2|WB+gbG7j>3$_SayR@u=J?lM^Q3$@*1fc`DLi>5q)>FDU_ -o5wG|dHQ0Cf1qfU5l+J_MOFCs=%>4nMi$C-%gQ=JpJy~^ws}<{?vvMA{sutZq}=}$p#i{PPFRbo9Mb3eYsvi(_cOP`tc -9nzM4M!?yILiLgnzfX*Tub;ls^tlgDMXqz~cIQJO7iDwEZUa7>{djk?BddhuOZWFw|4$H&J}F`0h+=sc>k)dKhE&*NaR8KV#a)Ms5U$1=!z) -Gj!P1~_juVOAYPc`+|5T-4QWq!4JmT{Zb;mAR8u8&IOU1U_BPk{JxM2AmI;C2TSr$`3D|!E6UVz=#)l -1)GIy$GUcr-7)IpcF=FJ>P@!8^^U@ov<$Q-+*WyLj6imj6qTM$Iuu(sA|)=N!s||{8Hf%y`YnK!YHF| -ciX--(Gq*I*lct7tl?V|r$dTEKDi#YOT>vc%?J?;7i%b&1`XU3EF1A1v;bk-$2QFv367|))zBH@hxy`T_r<@vFU -}Q(q|H%QQ8_~qq(cmeUU5mp>=l=;gHzb*z{`=2Bn`jLEDqw3!@As7upGczK^(%Lp+iv^H%S#Qf5GiRA -7{UutIzZo#CiU%%FKQVdHrU<0;*jHUbb9P!R$>&fA6kWQUQeY)iwpe%&oFX7vWfD^~7L|O#-6>-bn%g -i0F6M`TRN{d8ZC`JIY6sswQv24zop7Y{zdMZk4Zi-4?QI?W3Zlc%zSn7&+uGQZ}=R|tmBGpLh;a0@6)(h -(1|rPv}QF|Luvs06zU=DG@!x2q -OTK>0Y;so+@%})hL&}8KHnuvzmX@j1`RLrb5ZLJV)J((Y -_F4U&2SKIZ*%p5z-YH~$CbAA0znQx-0X$vtxyB$@OfmLAQxf-l9ztR?1pu>85zY^L~4M_APwHmNVK!60HretTcT-^Qu@X=J-N$QD} -;?y4MhqKNEJ|ep-JhG4}r{6FF-6O0p>1e-BdwC8r4H85-j>%**t3pLl&thd`^mZJ4&T=t8s=7N%Pob4 -j^yPK?K@sn<2Y*UMsQUUp|W8G3Fs6)z>)Fq{`spWX<&~o(XLY5&#wQQq?)l+lY0>E~q}?h0z98W>f?2O2Qk|G -y&0Oz$^mvA_A_Zc?x`q?GmYvETR4i_*J)-NkkH*n4#_4CgKs6%ibhNgxWa}8%1zi$H6c8W@OR0R!!5S -i%pG-*0)yKW9NG!usdjOF`O! -V@q4=Y&SwtLyrKSS~_3jo{TnopZjlaOg%EXtM~95g&qgK@{Ary*zYKq!E)5(QoRA`(65s9}$ohIWnqb -|8Ioa&M42RL`qqqlMlgKrbOELXIqW}6WP<+i3_*Qb{+n!92gf*^<8g2-Q+wRflw&n@$Fu~; -Fbl_jY6amjTMP}b{$(M|K?kZS5uC9Mcs_E46Iw#s{mT_b$P+w2oR5yWbipZUi9-!&loAE(C(fAGWBZ<%01k&aSZOlGHSzsX|cf9TC8pd -EasagMt>@qN#wLR_0YFUl}SC*hS0f2S9tjg`i6!N+R#;JodKDOt*tnww!HA*}frDC*CuMw&6!{zDOYh -w5h!~N4}0KA+)MHgyE7P5QowYMmFiscns5HrA|k;fKrM7nUrnr;jD*a$#v5y%!EEIi6P{toy_yc)TI5 -?$YSr$Rwq23N8?tTh{ewXtamVjr>X>9)Y>Z%A+GfA((&ctUIikjLo2aCzB!x{3-+8Lp-1p{}NR%WyrQ -B~YaeZi*t8B&n@(Zvj?_F_OHtFU`iP -$vnY^lGmwd3s&}g$j&-l9AutQU!a1V8}=`!?>%65YQ@X>|>M^qEWdNcH2F|A#U -LHlYu4M4CA|U|+zv3}rk|V&CYnSXgKkXPYBPOD2K7A$l1_XS`P@&+sB}v@4kDXW#~_`D5lyP~FC?7!+ -?#mfa}r9N7sh}h`K(brAClJsm*Tk(ZZkxZ`{A>Cc%d&{!j4uog6aj(iNz6gL75CCJD<()5~S8C3w&Yl -fQn%w{AQo-IAv2d78Rum^{YPXotS$`wiE-up~=j4uv!XihI -AG%X3vPbtu>C)H!p4Ez6d4MVx_de^HUq$X=|eDOF|Am@$80yk-Y=qOx -~x<7^DVDL4L>tqvJe-xkBs(z$BW -18Vdtn#;pH={b6Atc;m-ZCz>m$w#(>vEOW)J0IjEgR-?l_f>%i_`K61t^N0qtJFeW#}}`n*J>zLJl?= -Z^})?jH+D%r9qoT6#cXGT^%`IcrguoqMZy$`c-RR)^0o_>O>9GCC5eXzx$cRT79oiVZ)mpd -y(E443#u6s!S{&WT^Z}XbYlrF>RO1qU_mFio8ln_M`H9iFLO3zTd`S|`CbJ%aF`tyCG -V2aN8PN!m?S35_z|PyO<%Re-WFvUL}&4%QHWb`lU3KrrZ9f{`siHy${HLLF7JSGpmdmxKd($$*W8_U)B;Q7Hdrn6|(lG%SZRn3usH)gjFkxO%YgJW7!56 -_f%r8tZQXvwIm83=TBqADMCn(*vVs}Epfp~bN9=9F9(qf&kO4lo96_+-*xt*`-cIK3MYD#F^k&$kYt* -Ms0qTCIOP()70tvuPIL3)G1@bMZ?r3u_~s=I7-z8O$ZF@_MQ$~B6^6sIjHc2McnzIhjAoQ$KIT;a|}@ -HoHF!8os{?XSc7G_8~hwCm{#J|}xR#AWP(*EczbvzX*A90cLOQ(_P95?}>nzqrwJ7yE4~uI24;{nItP -QBVlCMh?c>a4_y$Kf;BR!TFWFNkwpDo^_{JZKRsc0CLeW?$iq*I`FaU&Bapt{H6?%V$j7f#Qo@0Yo$> -taA|rc)T7D2+OJ({Q!C@0V>nfuy=kh%v&SV2lz&D^Rz7;9DsBCn5?yP1LSd$gM*Q>F5q)>$EnCX9qpN -8Z(hfjHYzStDcG3Bt!rL`3C6n@XdN{78N}{d#lXp(E4&9RHp?G9R!;@1g7!>j1`4e?mMgBUcRbClUcN -m3K2S5Jx+f%64MpQdTRDx#|;0oe%S#cNUNr6;Mg)z}yt0}f4SmzuD8_|&$GC}Yw(#nXoBeS*7y?72Yk -YN7dhc~drEsxeACmCFM(K_$RXAEfZW#FBo58UV^c&;POIkFH0S)OPZ1x(O(-W#|`Wg~k%*iVOIf(%rT -&R%jfq)+v6F#ERyPmAhF{hyBCR1wH*bBq0_Rqquf+?th{R7_x78zKdMZApSFe@Xk&^i*+WQIAoHXxBn -JmHd*85HAy~fFt6eG;W7t;hA}VB{If%E9t}b7y5L4v{!+bg0WaI@be{GFJAi#w#yzF3sJ^Xkh-UH;j2%Cs-|3> -#*j;zR8uR;3;*f_juSLE91B0*JvhoV@56EI#{3z#Y2Z0E`a$tSJ5V6CZ$mwjqZbw#@K9Uw;4HeYqjl3 -+n)@!mKn|wMc-c01t$huqk#Rh^=!u8nDYaIB%T0^{y#qTjb8PUe -|85vXf1p2E3UrjcoCs^-h5tJ4VIRr1CUcB-{)d<)2dx#9@`VG<+sW@JtI+mFZ6H2OM}NBLFT@_p$C&L -V8i6W+r=p_~$easOA@4epFm@(J;kAys?x}T|}hq9COK8z&2KMP6UmwBY!GDC -D(q=HltJ&&w^+0Kraa+_3J!|9UlLm7{$(ezVWgGtp|T{(=>_fz?Hp!>;vFR4GE7bieC?&ydP2Y@TFt~ -0H=HwdGa309?{??BeqAdh+#KaJ2A26_+Muefi?3it3XNKO4sJ>~s2rc_ZIP(FE!v>Q-9bxZjWzH~8Om -poJ)X;Hh}E0xeXypLE?-UrEz3h#vJ#wg##GvotvD7v5Y%^=HlCoX)~0cOr)r|>}%s=tezQQjoc4l{V*^i*>K -T%pX%**!Wh|t43mWtcM$75ug17kRCI9)6aeYcjb?n4-P~mfY4c(woaqhay@c8wY5j1x -E#p{noF3|pbDV(ve{|u+!yx69n`Ju>BDyPlU;=3FrV_Tz{3uTT>8}*lgtRYJBHX|-vEsnl-?SpGgys# -_~M+|p~G}NKv7j6r3{vtY)xtrq2+hSU|%Mo7wJvsg5(di%m?SFkVemMEl#h3pPpFEiU^wZnZ*E*3PLH -G|R-=kg$LjuUrZ-<`a?`DE#ZZXj2)1)J8|T8 -<65a5p9J^C3NtL+l47X2mxGdE9w$aTWtey2dNT3urg>b&he`pq{rXgpZM9##b(U9 -2*kW)d`)k6vTH5NdW|TlD>s(@XMOy_EeqY%P4OO@+MQS%#`x8LBp&XqrIC(aTP_A&F+ywy4`IjGW)Nm -IM$u3(p>Y|0fKgB5H>G2hVjjC~ee8kAh`cvP1-*H~A(+S&-Zt7z>7OZ%N5kRyU;bk{FhN=vi)|XGwjn -yMv=_Wk2M4Rhy?E&5{)p*4w1YvF;P*c&ASb&V((rs8*>fkvCGhr1k&+rY2j#+=LU#+e~JyH3>y6O$jk -QH58CFolPiTb^I6j=WFCT=tcxV_d+sOM>CN1*-B=>D1Z`MFlPMYuf4*6cE~mB-SxkTN!==`=I}zzrv392X-03RxM__?u3a|CK -Q-l))kHTNnO$s_q|@t?BMUrWFz$yAU{yd7unfhP+GUJ2h62VnrzxO%H#km}pgn#8vw9Pm?7_&=_Q|Ic -%u%P(?ahc^GGstPIwnnxIgu}sCfEv+X(C>1f!G5vLY@R_Uf9qcYrARy1Hwt?)oBO -LOW=cf!PzV^eIEIMFtlBv@+tL=M7=o*g>J_%q6-i-lf?A~8j5XUvv;aEURm<`O#wToJS~nhk7sA+21# ->T9+InH$!I7|2oHm!HE8zDTtqsDAEzK<0U63`P%{b)!8w%F%A{@Y2sFiwfaadBfolMCSZmz80FDSH(1 -9SzV}nW(R+IRh&6uT*2J|I0Qagf?tWFfxlN3vd5j7CkJ(6uL11kr3w_SMcA= -7!JbJ1L5+{;D{$#?(&l5+FK5RE&02_aUH0X> -`wnyf&Sl%?%Dh8?r`)iO1jG~kg*RNC>{$3PMLX&)Con^ceU_jYB^|UDustrS=ES44YC1@kHcAuE?YtA -nhR+svXswB3?Q;FL&PI-*G6;lcv>Kq3tx6ZLPHViC}}8&0IGAf4*dUP?>)(hJ5+VcG44GIH6W47e%hpi<~eI(s{-(&iLx-kf@yHxzK76XsaSa=h7Y -s%!}=URIf=CzY1ab7;=YQfnWT(`Ks9p*UzNBssMnJ?Lb|=@*)m$SFv3)ZKHM2Dv6;jqg -r~BccaF5;>bhn=*`|d!dJl^qtL&t)rRl#=w_mPFKodIwg%ju%3M_l3lQ3lTFW-7278!Dr7rqLbdq_C7 --NhICN3~Ev{tww9j?oRR{TeyGlA1RwKhIbujJGcr78%Yu=plf2K(jJ8CVNC#{Art2*<*PMZ9W`iUvK_ -quuVJDH?}SKBHTrTy^fUO1H)FNOm#^E+8g`W|iY88lw?-vVAG*@EaG&vm)Z5CP~gk8C6NG|%7!@JX%~ -UenMO20G*70>0mOLVKtWVa9==TndD$Gs;nfeVi>M3MbIPvymGdiZ^kT_16`?4ZE^KPapj -Kuqs&khI3TJ*#G*#8t+|$#wn7}cafP%EU?YJdHGm$8d6y}p@JB@#J{a_yVC_ia(SA{rL7IBV@frNL@9 -4tivxRp$YG<{vyti&w~~|jvg?L16k#CE#Pc!1{thF2uS+(dZ41-T;HOZWe;wDP6CbWk?^?KAX0BG~m3 -28dxi8PnQm1Dpp#dHLy>TW)2$yEEUpgR$29sogq6$a>6spim?|Kj8;j_@rd?XK;KoR2zXmtip#1UJO- -QQ{z!)Mld5C55up`xId!sZGC9g1`U{jT&#KrE&CfF78Pm}jVUnCu@0KD`Q$+Ru6?_pZLbZ**yIA{FOBv_MzeY(zHObRQBF@P?QF_TxFW7N9J?U@&+>ug14gOEQ1_@yF -oR_g{Tas>eiKt|3Xq3-rCUItLj6@K8Mk(8H>4*Jw2Ybwz`t@No=$xGPazK^_1C3s6$tRgaS_iAWGhTB)Hjn&pj_rczTsZ{SVE1sy#!yB02xXD&@sm!*>n;q)n55LN8pI~@;_3&v@@19{7R -;v>^QFKbT2%Z9qxxWOvbrOCWiKx-#6%t!3Ys%9d=XIJ_lp$DMOv+0#$)4Ky1WSLGPHIW`1O! -n$yN3Q|UBjnb_3$x59|PbHOr34MTl6MGTIAa!_&Xuj&{GC -tj-9=%1?;`fbCx#4?8CnHo)hGh_O-m6ttzWhs7`*nbX5+hUAeD~5!|N^^r#jFW`gA+i8b7FZ}vS}4p->nJUt7=VX^==HcJe@sQYLV -N}gBD>XpgcVK{Py#+!ij54;;Cm+K=VY!-x^L6Zd?bfi>0ZbWPNc@kjE;l< -_Ozj*!O7t!V4KY#tv==0yxjY$63Nv~DFHuagp9p@chy3$-vuBIOf@`OPDP&9|d3?2kMust!H#$>mloM -b2PgmM}YhDJmuP~F}I+jh1y)$u%|NRxgh#o*{vbyLzEu4ES- -b4&^aI+UB!6>RoZI~)Dr=>ABYp)4JHmqT1DY77@LbDY9azYpD{5F9+_V%q_6W0Ia)>2Jxb#=lOkY}uK -%l1D|}H_@7&GL>M>Zn)jeP%x0|5;VGtF-wx=cduPZFyN}swaPvpBPZvK&Pvpvzu;M$#Cu7}z&%A@29N -9Djv`<`-Bje83{NU>76U0$<=rsmT_=Do7^g++r|PEJqs#oG+Wp+53Te0uVE&b8Y& -NM-wRb^?ZjtELU3c#mx8W{B5l5RuCv0)d8?G_ -?0K(C-uz9j8c@2`!0z-WLngbOeLf1v@0a~Z=l7f8LL*q*P`@ou2ZI!+a^RYW`xscNF0?6~&?CU$~B)`5x$I})WtotdtW-4S7{q_;UyB=c*8Dx~#&du}QBM7R5=w -_w2TurH>9H6HC&9Zl#+-zjY -V;>4bl}r{8$+PmeqY|a4&DN`4i?>iqeKg=4_2D?EN1U4DIB1A@?c&IS+5S)@Hn}92VkG3{sR$tWCSQG -FvX_O7C!2dfjXhC{_BB8TAVty#Y_)aeFH4|E@NkwI@5-?v{3j}-c6>+uoC4>qV8xqhpIT95SZHrAZMKN3SiuUvR{-uEPhjW@4sVUWKycPvl>I*il* -g~qHkdGpxnBR30mxdbw@j$#-^Mx<`60U36`J>5HU|1=`DSu*aDqBP?=*QEqthz6THySHAhnpUy*5VYx42?;YHX)$e=*x2oPfy<(S=+kpmluc!A1T;Ox?FwDoc0 -6QHZNc$|&fq6m4F!=xHTquW$3*IO^Ci2^ZmzEdI>T}rak -o0jrU>6i*6@M4sw%3KwI>1!jHcCeunXgOVO2h;rg>GR-|PaefbPDnXSt4B5L+0v%30qDw!G()4Pxry` -7a37;9IjxdAKW*@*ui}$*7{$KZV($p@_&vupHTerGElhT -@Q;S1xfw9-a0ayR)Oo# -TaSTrl7;rx+qKKtw$@+jggsCo673xY)6#p694H~bK7#4a#f3IP#Sg0)79?EYZt3IuxXohGi#u3VWfaL -5IL2TKiYUR2g~qr-5Nc~6m&V3|HH9+9lSjydRVHmX`AMnhD|!Mp%}nM>-zMA$Uh6-v{$_f)Ee(^%U}>-v4!+leMG8dS}E_W@-h%890@Rc{#ecXO>bS0A0C3PoC3;C6K -8LK^bGK?B_m=<#Wtx=9I9_QES%Cxel@+ND1p~OSOgQ)C!jYJZj&!H^#b6MrKCh(xX5s&xZ;a5CHLC8N -gMKS+OJD8JDNFY^c3K6{kv<*Jl;#?Pfz+I{(J49(ZiwgiaP>Fm}?Mt}&(`)>ZDBqqI>-6@1qj$o9hC$ -T_gi39#XD*v2jqFXhJ;RgfS}1&^wFKep)Gm~Ho(L?$M9f6!`ybj?AYgRsZY0}sHTIwQf?a}~7NkEX8) -b5zbun)}B_2X#w@D0O(}J+ARQsqvs>je(F&ersN8=#Ooejq4JNmijNaDGokhN@T6Qb@zu_KeIT~gf8* -uJ<`K=nG5H}Sw)Sz=BMF}G1vra*gmr>mGDW~gn1K@4=Yo -3NG}(I7FoPvPm_xB$4$dP}5U^NhWdO|1=Q??j21ZE=DemLe3J)Ru09lewsLS5LTCzmyJIh;LGWv7C*N -!V|*b`kw|8_PqHs#k8r=eU+YA}3H`_+{i&(#(5p~f&6WEtJPRU2c$ZFqG>BZq3T8S5?`P_UU6v@^$;0w-*oahT1E!*#uOLNz1ie>Zbce#I3eM81! -#;wG+ulsmV@zNq}n5DzC7TRUR94I%IFaoC1XC7re);iFC(Cj@){1CZZDy8TO4pmbI&rQN`XIg&s7ZaS -SZD(Hhh?mB)6X3j^B?taER@t*`AluqF$E<~`D$uO@@-ts&i3^oSPIUExw9{i5I)>+*SRf~DlpgN-Tn6P)tCKv&UNtf_(?M$3bsw#5p#I$hg>43XJ -(LWxUM0I{*4$}q2(f-l&t4K!mvrYdYow@hrzj8v}1poiF|(4(bMSs(FMrdvw3+|D`X-J4tqa-~;h9=@ -#MWbZuvNI3}xdaGJ0udFavR|bMY>5Y!?xw@ilHlh_|{@C9U!kj5ul&5Vl?@+IdwP+2Bm`l2>n^TEgWQ -&g_{R#hfdhN`vmOI+{RPqCzO{+QkH-lmkLf5~#3b#cKE!SuZ4xy(?HZV7`I(;VW9v4hi(U9<>D)BVy- -D(sym=D?fF~bLDEikVGPb19{-7*8RLLg# -C&2^@62$=#X$$fZ;sE+G@_CNek;!?Sv=2Bsr6|xZWFm&gT7-=(Fk0%;gO)3Roe@^w2g#o2G1;Q=xf>AF8#Rj0{uAZmH{nC6Mu&$?k6c -G`$2b#3R!_P4BI`JY^}csy+NMlPc}YQ~CN?vvnX2tXWlEv#B{z+S^EeKzUrPxudtcvIL|b2rTyJ}j4Bc)I1W?8#M>t$0qABbE$k6s>~s&vA!#fmN>=)dk16+6bip3O&e2si1GL^nyQ`?l#q+I8#)L~BGCYoQVC0_JNj -P>#As)%%kpIpg*wLPnJ}|eO01&N6Pq%8FUs6+D(nmkdpfc=y^k#56ZRUg(6t*}IO(ye@|yx4*7H{!j* -u!aa`QqD0113+J&1i?3}@&OLKt-^{hl+d7rh*=@6(f}NcmOw&=KM3n|Ofu-j{=`r^nD@Sy*~zaTr(c&9{xgX#Tw!UU$5cC2K24l&7$B%Db@{ -wkddofX$EuUeiTfAoI@6aWAK2ms(pnpSwGHD_!P007%L0018V003}la4%nWWo~ -3|axY|Qb98KJVlQoBZfRy^b963ndCePXbK5rdyM6@{Z-%5RF^w~`yQ9X*WF2SgX?%?B9y_+nP$VR=rU -;cFEo-Jfe&2flNbr!O#BHX^OiU5L!@Dm)J8ZN&Vv&fGY&K?PF&+II-wbvJJM2I#*LgCV7tB5I*xt7<_ -D1mEOLn#{<|1PkVp^=ioU`|$%;K;}MCQY)3(nbxql3efi$lM-FIbqx?BMj|^8DyOKVF`mU*JoaH+cH= ->EIv@rDQo@=3Mfu0328`=PXTR!NinJlax!AWGrMcyvmbFsdgD0{$3_`VG3(lA!rarQt9IgTs>qk71rO -wdMOs1EpstR`9k`%Z?ag59LBRnSVVL4H5IcNpkTfVX`XU!p5$5%2Gd+Dn9ua9cd%WWOb+iOzC`Twa3m -JXurQORGUmW!t_KlWGZcyJj^{-Hv*&}sAPB-V4Fa~$uAJjAOQu{F&dp$e$nhLrYb^a4FFw#aHwdzD!G -pjX0Q*CB&88wv#frylvR2f~Wf%b`zF~)_9|pm}>4y(*&n^ywv$vO*hvz2%H0OjcaL;wF;j`Mk&YU5>K -K5|I@$uow<>9;F!_moMYx<7A`^J5r^8Rs!TL17CfQ`E|IZ9xM00)-MaXex4}qI>?oNdI2?d(8KJ*gcU1$^e^iHpxY -aIu2@Pt$gYKlZgz}JC>-d!P);Vzdt<*emXqAI66g+fhPDMHwh9Cl58rj#(N;8h!on$%@vd1cvN`f0fP -@H-rJUHPs$`MkZ9PE-!D^<8xx@MwJi982!O8z5Q+>USmAP+u5s>Nm?xr?473L(WD<#5%|Y>22m@9EFp -z>lU_cKspRxe3PKqFKB~PbdE}`W6CnDn-Su@`}AHn1#1nfEB1H6(&m_-1$nlN65dAJ}rV|ED?;1dWa2 -L_0Ijd&>vIRkIObH8^RM8>C;`(S@Q+JqlYB>r{H_e|sqdO`C*WH1265Upa@^SmY~a4g^iP+S$@Z*ack -%jQHdIwg{QhFoY4ni0th*Ha|#sQ=knIZ2a&Lx5?D^C>I#gN6ZrF%@{Ah6 -c_|aGnutKC|QKN@^K;xISPEFAp_j8w=4@j#rffXhxG97=v+N~IQe0)kvrDo)lD@k7oxDaTrV -%e=oaVVjC%f3EO9yx`tV%8FXg-%043*HT%)p@!^Uc?=BKqg0CK&?fMN})5*i+8ql`2O!BpDu_D&=*=smh7#rO#LC)sGkek;)tWSp%M(1chFLBL^l%hsZN(t$)vX -={9P4K`k9;sRof;$Hz%1N_>VlT3}=T^#qi)Z)j;Sxdn+5v<<4yE}y5sZk{bo3uF-h0&{rc0}1*q*aC# -#<6x%3An=z{^@NDCPfxtY-ORHaMwp680Djk`QRGZ#)p>>AR_Q^5Eya}(I>g90HR*^+Z9laG$LFSP+rJ -Y0{+SJKrNDSW?Pji+tGCPxF8={(Q$(`yUDKrh+kVwlMiyO8I!hRpKS6^S`36t?(;c_CP+*H6IAdU{8C -N`h*zAcNR{BkxY3SPn4yKs{r6!iH^s4Y$~5%CI>D^tl*qvwH?-HIwsX -H7s!#AA_P?rr^L3kNP_x)OF5E37bN|$9i#1hj&wJZ9b8?7X!g7)#FemTShF6Rqz$NN_6SzRYoA)y ->mjT5*UO``VZaxTg=Mt4MoB!~p+i{1dlRLzz^p~%pI*L5Xea{Tt>=>6fvrJrO#3gI>GhJ5eQ1lZJttWaVX?M4$cCQ*AU?^W*ZU^C7%jpnO7bu7rxeSygK+Oz(Z>}z=fG -)2>PW-XrVL*0azAO+seSgQ~ufsDL^3MwWXVbVOjBcWL!dc|jWfea;&LVz_;$Rs -6Hd^QjazGMQxPEz9qRC9?VL5V{e9*nS(KJBcg7ueY}f*JWZ2eq%Q_cQjMK0JJ> -AuRQTw8~$oDVva#J>_Lnc(<86fLAnXu~{Mm+*7fS=_~B}Gddl!{tZK@R>Hs??@NA2hIs$?BE^nl%Kgy -T#51sv&{A!xBGTk2E_?-s1GbXnmY7W7sSelQ129O>JoBZT4q-b?9MBA6FnjUZE#c*|QjTH;6M5W899v&G|lK!apDP^;^+f30iFSE7=H7IK9#iJ+&KB^*KTdf=(X`zF6XMMu2%-vo;N}t=>LIaywK)YN -iuNB_AM;J=0&>ZRtF@gT4Ct(w%H}yZY}Z+!;Yy1z?>*Zc&xpX#mzDRey}xTc(O@F?~2MH%iuDD5+$5- -$GB7;?2s>zh -TCZoY6R1GSvA8UC=?khGVh5*^O=G#LT9XXhT<*8SdY0wdj907VU5!+SXZu>)lolCvGiO3Q1=HthOGhU -!|DHq`+T -~qQ)M=hS}jXHJz*P)J31&5L!PzQx0Xhz6>%#!<&EY{T6Oyej7{c_Rqc!m_K!+K^E6#H@*5`Qm~LOEfH -XJwf8Kq|u*JS)_d4IFaxy^Y#0FGO6XkO?@u4ux6gjbo6@L^hJ3L`j&kXb!1E1UrH(RQ>o=4_OCnl40( -Iz1xxM5W?PLCeu*Pu|0~y&woy`SghoCG>g_DnBy>FrxzA0j;7csKoL -_Pv;Z+P*NR3SsgG*U8P!%4!t8~}?Q?JxDPjF|*I%xms&ij8`RP;$dWV;mkmLB``6SHorH^P-aBOs@s6 -azD5rt{6N^XH|(V?`H7Rqu7nGugQ_9C%Yn;gNdOOf~pYvs;46!H(*7kU8AY -0z|h}gb5Zb@Q${{9&>298G1$cey}+US&g~KqdN%DZA&JIZ>sgChd{oroo| -8Is`f&4+iO$*%edEJQ8i-FtNP38+ggF4i^KCnKYaWjQ|IuUj95|aBJl00`RgngmPSmYw^d -%4TXztRrhHmt29q;$w>o9yo;k82=jaeb9U6KE_A?uvZ?zRhARiugitlmYR#v>o?Gyg60e)_P|tHWQI^(dw9QulbZe^~J^&5jr -x<~&VDX>x1jS0*1oZK#|(`us8t>n0QA(mCE+6`qI!?fIdK!j@R%3ND>W)*>s_*$CC>e!I?rypd=Qv)YiKlP%;$3b?mb=m0$O{D^ -Du&hq`xKjA?Qi50Uo4BYRmOIu+jE~v;k!w8>Vn|ac!Y&|1HN~&g?4WPe51I{+D+1~#`}fcheP#zh4d( -3V`@TFBOV*k3xw4qQSzm}=W1Qh)>2Y$=~UwS+UbiaxHiYZM+ms7t-m_#8>X*~1AL{KH6fqh2E~u#?;_ -ZGCvO`s)4{2yB=uJ&Zg25Xv;5nn=hy&<{A&RGn#fVF8uA@L3~8d9%Ey1t-SP8)gK!_!_V-gLWG-MEM1wbCEU9&dL+`?5C5V0<(+CwydnnWAYk%nZt$aD`xcc^bg -eS}?&X^UeM9^t)3$Jf*RdfxfrP+gL=z#Scbe~O`Nl?&h)D7pS86T)it!hQJZT -Gk}7ycRR-+4)~AvPN-r-r@KT+MH{h+Y2gcZiz(@j+D*r_NTgNO=QQ&{5&OD#avCiMGp9ly$Y{eb?t&y}_HH2!GEK6+!^meFj(5au8HDTb7mWXJ5ecf~ui&YXe{X -rdk?C@haMk6n-etjly&s|X$)@o?B-|*U=!g5#t2T)4`1QY-O0 -0;o!N}5)eB0xk22LJ%V6951n0001RX>c!Jc4cm4Z*nhWX>)XJX<{#JVRCC_a&sPTtDqp!jZYNb)u%-<-Yv<`lmEMXtG^2XaZj@FoY?dtNZ1SxJl}X3xmQ!R)0VmvU -%ash&JK`vGoy3I -SVa@v7JFa^C;qXtW>_wltMDIy@; -Bp7fzxY$|HNq;(W+m8?nb6eR%&ZWFtWIW$arKx=pvwz=5cgC8=d?Z&ym<3MGNG2o$VID=OFKdij=8=& -g?I*K+MT2-43S(48&Sca)aF%#dy#`Wss<@ty8=HiE|tJTLfAQZFm@rorXPLiAQRdSQVclz??;br>!O* -~$@iGRO2nJk{9aT-Ms9c07xrs8lYtrD3oA_5=2B|?I3nhR~HC|Dx1fgw@?A&3y^2=D_kw@Q$Aw9+i -_GQw{Bn}T&C@QKoS>4mB#XwBt-4|9E&l!^if3Nmj6NiL{5aP@cF`s^fJvJDXpjF;c+XolrxB>e8x05+ -uF5?BMXnj{w@|cmsf;>XllS9^r{59r}Cm`siNAhNXeKv!AHe~lbAjXjIhlu426Kj&kN><|!%X4N*scz~*hwVyqjUaW?w!p|zi5bZ^ga$ -)4-6@u;VU@Puo+lpfGt1C8&{nm12Z<1d-b_lRH56FiUx?u(1a$w=b$Y-U1l<%dxlY5ZyN8vpjG5ypY0 -`Su%w1vK2oW8ytU>H=2DV1j(Z0x0;;_L~O!xeLR5QaXkl!D}qTk%!M2SM(s;uJ2c1$m)k^1|{=pBB*{ -^BG}BDW?)b0bt5ZZB=q883Uwjg66So;@h$LVB2emp^_g9#Ec!SmT+I6*G*;J%}TFr;Bwpu`pPC98GEl -gf#7*05mUWwHQDCFi=xLRwW&AVv^>(Mlo_~;3rGQ8x(-8eEd?s!{!o>nU~6l|e$Nds$Zj|E2`Pi+&Mn4=RcocU5=X~X -mV_)6B-=&M*+X_-c7tJxP@IGHJfbox^+6jKX6vvE -2|b&&$VppV}|Y;~^vrtNU=bGLJr5s)Kh9ox}S{4e%~=>|2r!uuivrgd_Xrev0XB_jf_yO*j!xf*=pCp -;zpsXsBdAt=|3c>HXCP=l<2duOO%qQsXVRlgPPM^a>X2;CGxJe8rMVs- -JlwaGX&vk~ph7l3u9w=?p;aG57M+bUhdiUpgZ%9`F*ki#OLss_3PxHO1HPh#O64;Oq3=oW>Ee_kB(7z -p>=0{g3;Z`K)3~lfhzzgGf{HKSu0*BJV;J^yo6?&|shTia?LBLE+s3iq`72PVJ^&q(mKZ0!Rjb=7Hl66imVG4URYip%VkMyh0R{jitBL>n -otb@O7a*nNp7!=!oi>($-PzgM*?H~EVmlZ=9S8F=&5EnNVAWiX{|lcCwg=n6i*k8iWmnft5WN@%)1BR -EaC*&xclXV8Sp+BLWpkHQEO=F}iZp4mvY0@p6UKtqhc9MFC$mZOp$U>A4PLxGIz2x8;+xaA$0zs@+6} -h0whkA|oGn<pCchBXO*OM=U?l4C8C`Au@g>fqh%T|F5LPFBlhSv7T#@5H+Rn?xGHGOw -lcoZYhi^wgO~1v>{gTzApkW^x`d#!|B-IT7lHIZbX11(YBVMl>Js0R%CG#e}xQ}nx{V2F%O-#?k#3uq -H*&g55^J`ee5w6Yi=R5JYv*VM)w@2~uY%suCvntq^)1N^5*Yqrk<04rA-G@Mkd7jj@TKG3vT|?VhRh3 -oLrpj<{5Wo*C-~kZvr&U(5RC7R92MgXCSGW!MMOj?t*}Pc`xoOy9*#u1qLnLVce0Wy@I~bgnu{^DTU1 -2eB3(N)NRgzD9BY#s=Y+ha!**{tOEvMi*B)%zbit?_|V@k>wtHlMYyu%z8w@IF*>nW#!Ci#jX*)rahp -l%1t)dfr^ICyu+cO}xbOjp3#aSU4ycFTTn7Rq76Q4qfS`pfw6=+)bJcJ$)y%fq8Dt%vW9XRl_*$FrA` -JHm4uW>#>)6Rc`jMcnTw0HD_xdj+_c>VX3p#tunPg@kIwE?I?KAP6)GzABgOa+T-z!CeOO;R4p@Iw`J -L3e90nK_&!cF=xoI!KcqZ!|B&tpa2vGVD9g(8SKz*^brM+FMvS&`tWE*4GzDLcjGC%sTl23Kt2k8ECT --Xz60cEK(F73noG$AHg=le~m})@}xmw7>)*k{S%(779bApvDHgf&# -R1h!_)9_L1Q~~a9IQYjSNgXx2}2Kr*V&vEHG^pk;!k&<|JL&m3pUn`{w1@6mM?G|m^#(|5x~9HUtEujD`2ypiqY5{c$|ox1v~_uS&Ky39U+!Y-0rt(wUh>qhc`c6p; -cJ>TFXo4zg(AH7YoAokCvpZ`D4{h#7F0-W6@4bzL{K$57Y<1dKlC#+d5#||eV(4qr`!hVM4reYSG)mw -Nty+&k8~8ronGE93J~uX+x$QmyL -K=Hw3`Q}`ycwT@zu=*lpJUouNUJAYHyqnsx9;Jv_2RB0c{3I~pK+A*I -uXW3sHPO&~Hd!rUNmyjqSN`|fZs~Zhbg2KmCcOW>o`V0qo-j;*_WkMc0r*w6#aM-5NG{rs_0#=*_)oM -Io&A05{FC9{2-!`()_ugnNoHz;9etMPN{lUa{Qiwd? -7n>Dkq5>g%Pb?Dm3v6hXI7kzc^c4~M$@c97hbSsElMIT8nq|qhqx= -S3iha=yJ|D=DDPkf#>O#z80+M}EM+T0#AhJz -#b`EU&&C%CKZ@)VN4n8UiHnb6%gTTxR0}~u~k}Q#GNQWWEW?6zIagj4ge?pD6?uhTj5#L<&kJ>CF&Jg -FwLCA0wTa>rpCl5GNU1k-m6bSaP4w~v76%#2M*gRr40f!<_E|aRkNCBWP!*~J@lQ=HL0TMo!yT|Z$Nw -*^U_`;c-O(N&@gwG=)07I)Sk4Q~YcCosOK%dck185hdup}_SC#cYft{q4kuB4E*p(o`Zu}2S2T -n9DP3(xU8k|m9rvp@EW4}-gQ*B)9!5NoCdzcQ<>m*+6w4~x}%}m6MVbkQk_^7-HcT`C=HhN9-p+(_bt -=LA9@d+;5NVs70tN95t;^7%BskI0{Tk5UGvFta@Fx}yes3e-X$lFaIFV3#x~Tjron!Xxa@?bqcRHCl; -hPYFuGtF?$c0EgrMyN`#p@^1aJ(L{U^hF~eHzoy1tQ|sLn-~G46%6+WzL -%HI|16jdOzYtT@h0kD-@L2B|N(#<>nuYFIaGl(es~ya*OYkG{7;tBVXE}5xh%yj%C{s?(Xg;ONz`*%IfM_%5I-6*|Ns}jCVjtJloFF-9HTCg -VWRFDJehL)ISqW=;Th&ps1oDD70ms%vrQG-Wmm4@z!vU-jh{Mzn}uuv4_FO0sn1^fDt5d|6Y(ZO+}sX -myvV;u&+WudOIHn16;zFhc6CJXJ)|HiMzRxXFH5J97qm0@xqazOWn?FrXq!O^mcM;yfVYZb{w|vz-Da -#tS45xX_#JzUe`r@JA&W72}T0cU=lVCDzriC{*95E`jabphs7 -fRYNw;UowS(lo>QCV0jU!x&)dCG@IgbX%gr^HYKg1}np?feGvVKrP^;UR^{m%81@*b5g~yd`%^>rKAf -3WSmJj99k0kNj(NrHFy%(ORY0dUbCxYelHD?i1U|TbxeNBsfjjRON@n7EN4m0#A2)DBxO#u@{!PAz=e -`|Nl~(D%5h2oGL{Y}0opwCgj)jODl|#aWT4);HA9%vs_1A7m`_P{wZdGgI*91BKn0SAyq?m*r( -z;8E3r&3b_T}3kE$1{reyGBSp$ruyr3j&6pfFkG4XW0GjvU5Wku`A~)hxdp5efD&(l!djbj4o+DF4en -3E}wdhhmJ-j_I8tSOrl5I|pI30>hUgd%>TBY0K^*(-#jzgt==$p{dEK;;v*L=J~3Ir7=8HoYW*1QB%; -?AMH0HNvbB{VFWC7R~~_7#XO_;h^gH|EX=;3fH`YoClLh1j`r*X0!bQSJB>2=qjHYxdlTxBXy1Y&snZ -Wd9H)rJL$?9=pRwd>r4WXig}m>vr@;i~LY%or+vg~|tPr``!5Ay1WHbI;u&m-LA-FJpY=*u0>j`y?K+ -d60{$pW^I_hB#f;tebHMK2B-Z};`;RsD5E{=`Ln(#3-f)oDF+sliRPxF){qwMID(1e0=9V8hv{R-) -AB%%M;3=(eX>1T>z<@mZVulqbwD}pd=<&Gu~zPK2?+8kfC;c?5lP^%)6r>VBAa<%WGDCNqqb?Y)NL;_ -a;xn2m&?gKFKcF+B)Yq4BRpcF+%&hQx~Q*Uu1;Ztu)+McXNSoHpw2=${P4pgzPzdY& -cWp4&MXn4uT)@j0+gtJfLyjOVb>-;;U?##R)Lz(FQrs(b|A{M-Sh%s0YHD3{vC+f`DWL?Uv4MDf!^Fb -RQnht}y5dajxTbigY0xSs@G+=nLrVI9C{pMNfc+e{R8P^wCq-eUoQRiI#;+l~M~15$FEWO;It>zNV&z -2?j09#cFcdkdXy89}Zs+%?ned1x425R8#PZrTB8)BR=;r! -ytHPDlEkjjF4&?!QWEEP$#(XW&gm$pbY{EpRGxc|SF#K6BihGQFMIFm|HrGY$eh_+-f0S7f2@&SX-hM -n}!a<)}P>uK7*&kj3^;lQJyITAg?WB<}U>6nn`um0VL!tlTfvz=>R4)Cx*3fh=LK>L8jvZ>u-pOu@NA -ghHwGz=KE(=P`Clvw3r%!M0lIp6qCBTU(k4<|Fg#yN1VdXI$9M8Gm6S()Zu{bQl75RdJ-I0})5kW!L_ -ZV*#!LIjv=&H#6{8an>dpvS{{~m|GE>j)jghuxiV9d)By%z9+D;o3tdlDDW?HszH-%!`tRl)ELfflbO -3e*fZX(Zo@KE{Mf!0COYGbM-EM7%WT_BEc3k{V7+Jb?xQIls1}*2p!ak&}iSU@#7U6yrwn04YFx=C~V> -~?}JmywXGN@5zGgKeq%^@oCYZZl-$3+J`x{4ba_{_?}@T{H{D9+MXWfjT7_wNplj}DK%Yz@EU -C+KEiTZVsZ<)w~bbisXOoXt2^nIf>0g`r)iUgyzXcfVDj|0;84z+$G^B$OD~37{pC;QVuAczy5YSIYzDHeJdP -(xzP(*r7|HhQC>;g#yD}Tljd`gk@yBtz@amD31@Mv2mR*;XP{?Ze$0`Hb~6{kA;GF!)1v|s*O-P)eD@ -XAa~9rDQ309ZYVl}jAiNRDlvPPt4f!qKAHLl@0n3X{UVK{(0fLwkF4xuYA7U3%F()&@lybUJNGGkW8wSS#6+}DpZ1;TVU3yH&?O2qac*W-H@?dkun>hrgBSYhX -nzd6HuK;2_v`@csAS2lX{3Fe@vC>5QyMpiPmsJ50hZ6BtKRNn9f|3WNgSd_J;FKA8*412ye?3x<0{ps-b1_sb^J -HK-6c+;E$y}uJq9sB^mk{!GD5=f9PfEwT2~I%U!qi9bR)G;3Cf4JbqGdVa}NqCp8$nf3qO_HzkHJrRu -?>1<|-CeM6ijB{JdEh$6l+O8(VdVBDMpxd(z^Rr9l$Re|-E^Ri-N%4V7;c;wdH8z*_FhUqrA%i#Kc30 -iEt$UXoRY8qt|HVLjl#KkD$%*IOY4R!R9YD6fS8Z5Eg^Fb9K{vhUNXG1be^daX$hJZq8N-3u9mXD>`( -_wy-EHV}}a5{Ed@A!l9S4#etl_}mFK4U;xek+}w_z{X3@G-W2{pP$qL{qMgiXP -HZam`WYucp|R~TPRX@3*Er!^dW_tk9nI`+0xS2*#Ou -V-H#y!gT2R6Y!y%Q>BL68iVl^qs6?5}_pQJ90r^)mRoveN{iYu2Pj)lGjDIa)<{bSkBTL`j(_MFaPsr+Xu9+K4W&` -ol_mN;x+@Ln$(q?#>o#yrw8B1-yXa^q?K+ha@*9yCG6UXBUp5E)g^#j2E!bp*@RT(PTqJ`joFP?IGQD4%8Z(#&!kq -=x%c_k?3NXk_73rrxWgDx|g4L2 -*vQFpl|SCibU?`pFn7VCrJOlEXb@$ -1#*?@oQs{ugtzB_Oz(dYnz((B027tD^F+SF|8<~8H>cHA`+K_Zjs9w$I6q!cZ4jwsGKm=kb(2imVe}u -2@lA;R=&%!9Fb}G4oHSAgDF1aR^pZu}}=aQ=C`7#DJlGiGPW%xBvY -rn+V|W_qGJjZ_s$Xp)a}c_Z0YP>wZ(Vc=cg^(`_2y5AY{XzMvxtvL!%oYp~=U{FaeB4HR7b(xSSfvH@+-f>fB$ -Q1T>mUqp2v-x+-s*gMLJo-vT{3uJFUyCyCm<`bOal}K1`t7NcUCJK#Wg)@Q-J>Yzo&+yLdT_Dd&OQ)b -`-Q%BcPhc{7S-L-vIWJxlAu%4ILSx6t)U;4-(g+@q3Ns~?A8U@T5ZvwPPnXR_=}Uy{|2qn~LQ&g-A_R=kr@@nY{J0g+2^{l$S -Bk(LP^}M>quT4>CskMj7jZ3U4`1%TML};@gq`-sV*NzimnpqkzM$KC;L-pY%q$&hndcM-bspTNwSerp -!7+MoScVzV5@Yqx^hhgQcZRfEz_v*RnE3!OtH%4ZRKQi1f@c8T=En$iA7az!k2Ec*|7qBhS(5q--~Jd -&ksF@xU=RQG9Aw_Q;GLU1d;Jg%7;j?7`W$_#+(#k%G%Bsk$tMp86UOEK1pXbP2DUtG!m#SkmEvo3Crz -Qp3MWwW1V&_ck0iS)lvo9G)3q9sQ3eLvh$Oq&&K75A|>h>8y3b>v<3N`79-C1L=!p&x{I7G*&<%tMlN -lIos*1au@MIeTc}MzPi^;`>VtXQEf!csYAo=i?Y0=?4_VbFtjOYaG0i=zdWTQk*cXj{G+$EIPqh}ZQI -H;)9k*$Y(HK;jlot7)!Nrn@d9qT(H`?T#K&`Gcf5`xX|nqAo`St#s_{#|K|vYkzx-0o4~-5y?=6!mS# -X5+f&&V5A^2K;mu!rYVK7)MWICh)?15`c29a$W{Pd1E9Y?GTOdJe&GZO_h0Ze)T!r>L97fdFYv$`?Mt -|gS>7C>}N-uQ?Q!*vv&miDd2X8V+=w#j~M2}ePaed8<0k$46uo{1Z}Cj5~tlyMFz-*&iSKGniwuA$tY -DgSVVK?wb-D;TpXfKlXCynY2EJ~_8X+RCnSO-(k+uP(Dnf+ -c6XXt>wHaIU6+PEalbWS?n{k5q!)lk0L|uU~<4#zD!8Mk~x_5^x)W@s(V-}hQ>RaCt??>{@Yrgi*UML -DOgVP91SaqCm?()6xd?J4Efu2ChZt)*Htniulh-kR?q~1fVhWU&h^q5{hKZ^XF{CZ1AWM(_SuZGW86( -&r8OOWRy`V2$X$a6p-*CH$MvSqOR=1d^n0Ss@|xL|a78UGTDI{fS5G?ECOxYd(dAJT9-*y_J~J!Bbxt ->SFuCOGubjytMFWSzA(f^A^oF$hYh>i&TymRX~Q*U#}*?j@s|ik&DJ8u4LBtaYI~@8u+F&ztz-9wP(x -Av*rvN>7vasflXa%yOpjKvU~6voTmy+;P*s`o^Cypi-Sw&VYrac*)t`Id&Uj*1k7!!#AO|A1QQ7`fNR -~zT0QS1Z6nU&ad=eH)6Z0VrE`_FRwRWA1gGFwLbJ`l90dl*7u2uJfkEN5&w;f`z*SN>saJ^dI{u@*U| -k6RsozyU(eK4N}DpauTs;BUGr*I?gzHk#HdA)z1`(#-2|Y{g!j}c0BQB`{CimI1g(R0U$|nE+#IK(uv -Jd=DA6k@D8Sex?6ITQi9elB+*ML-pAMKBpf#7Iu0h({X)WqYsaiKUDB3w>kIWt0C}&LPisg&6&6_4=s -m(SONomG3ZxU5^G_6aCsrA=W(!S512Uh6SQ;kcb0oq=HcGHSVb_6Aho1hiEe1IE5oo}31d>PLQidF-D -XE$1+-`w$MT)h|{csGqHx?~FRKMTWFl{EFYZVRWebf6H&yt&ik@eH9TQbuu{ick7jsY0GKswk{65h!* -#wo-f=84bI* -pC#We@--tn*exJ3=3)LuW=n^u4ENxf}F@7<8N+Bw5L_1z;Ay3SaS)}6^h8%FQV -XmaC4`K!`3HcbtKsGpecusBF$7J1Z|U)%s9?i@HRcbx(ym%rR}WYf`%K9GNEdHN=VpHCm$f78xaYY4$vb*HSX6kZ_^gnF+pM@X8ufbomB?CTrmyX^Ld>YXo|<i`z9plFec%HXayzCo+l;Nx>-cJLLU -|ChN0htbqXT2FnxvNtp6crLgF_rRJx`xRb)Nn)sKTESrh%CD&?dr3>q!iiLf8s$Ogdn-q@FrwH*{$s6 -T-*?OSU`D&%uBM^Qwpg$p>;1@oFM$Z#fA4~>Xp>nhu`d2aKtv$OFKf&7($yCN%apOm(Gq+z3X<0oMmO -LLnl3%MC1&2k-KJaArZkQ5X_p%T3=b~bXYmm_g>Y)1ubk%gK@cX!J;Y^Ef)#!bquSZr7jX2P>3rMS)P -k=F#s-25pCcX%xw0&BM(PRP9*B2x2F@WsWu1r_Gs$I9SFEQNgGBvMk$I|sZ`ph4{AXa`Yflh+@Y^?TG -?w#dtTn_NNH(FPllgrXm?q*lH{m%M!HK9d;235UMyXM53D)JRVsTQ>vy9kv1mYGCpZ2GH;Tha&l+U&AhK&4JQyrW6wF2Wy1+sLjry|eB{?T~*a9 -6wiQ8$UKKeL}Wa4m>^u_9B#cVygNUXwGKk*g?}j(L -e$3F#MPg8>lyFYnbD`<{v4Qox=HL-O=6qI6EKm$X*3ekS2-c!Jc4cm4Z*nhWX>)XJX<{#OWpi(Ja${w4E^v9RT6> -S%xDo%~pMs5XuzdBZyO-;=FuH9oX;K78lS4Ks&>Dt9TeQurED55#yUyXhduN6Zk$QN&cQt~nEzS&QhV -%H5)RV!H* -)?axBlZ{_XwP|M8zR7W>bA4}nWe3hmCHqt7^R+E27RcCVb>R~NPG~EoNOiQxn>zzoGvMNeZ)yEmziaM -c($%-p6V=wXhXoNa~*RHLyG0?rGXHk;md=K_dN23vO0@b@B7YsgQwyp%PVO{QbB4@b}sYsD7<4Um)LK -TN0gVdd#Gv8Jht;_a_+2VbSjdQ?S(e7NdjT6*2`5b -r6a{ID8jB%$X7{WX2F)-(SXoD4OINRwgcay^FsTGLJ$>MbjD15lt#%(*=!9rc)iQGx~+sN_EOJ4E48=13@Ks~2Lnt!$ -$e`YIzKGY!-x0z8T&4}Mvv7srgNG9_}EswVnkUTl?RR@8~*{BX{O4`T0R*rRGg4jErNt4;Y!r6{jDT8 -=kWn$0f7mfe*R5VlLVOYhMa|hh|PXUF%H^&qjQg(L2l|S}4Qs!V~{~Vl -8L9ky!QOCTL~8DI#aHpHW&we@+3zA*(?!%6B6oQ$ut?%AliTT~_F;o++t|B$ZX9e@#tr2jXCu{L#oWP -a-{0NDVgRMeRtXLg|KK8tRE3pxg6X0R+lXosuUWpsXr8b61|uxoaJ0{y^7FJ~?^BC44K@+xieuSJs%_ -SI~7RNLI%h3tTIL{HTRmzNWs!7RUPV@i^$z{R85A -Q9dO+oZWQHt~ilku(r{5(q0qJ6z`Eq}PB-L=!VFz!(5YsR9l55N>iM0lOTVBFQl-p^xurB~BE`Ak@einlEnZqj3qjgENaeF -fK6(nS?xB-O1vB=I|PS>(D`Axwtn1o6-Y;%xbwGD2FEOycnSp=v$*z`+ExrIooj|6U@Q3?c1za@l0ou -Up`&;>Q+ySjzZkiNfKS&ZD)E+K}xi?aszgIw2w$t@~b#gXhYfsb~fnx(ySGfgaFP6$U&8D;GOG?7JWx -~on&EIvaw}pOuZq5g^_|7y%tUTS4|#{Ond-ETxPrmmVFFWpsE#?+i3EI-|>lG*luN6f}!G}hOG^hX$4 --2CUJROPoN;f--7;<))O5?VT(COf`>L+^>$yRhpba+^;3|ezl4KX!F3r1|MD8(uqJ}Jl0=Us3Cv6=KI -Cj6Y}?*@ -J$}hIBP(sNhO23#$Wuames4>%NKb>niYF8Yx6sCdJvg5GkIcv?O9bJNp -SCcXCb-2{@5ioHA!!o7>I2;Y1Ep`HPVxcn| -KBWq7No+2@E@2uT+9}SytSOG}?4Ri)M^A?045#d7*7ksw5LS5`)+r*b0a|)jf?OuG@vCJ*i$ti;Zrhx -XT4AGssumxP=B{95?zd!?Tk0K$H$(fiM;N92rnx;zBo)>%D+do<_m`(pLnJ{ea<-THtWb#Q`>h$N=?``TZRhe -#aF-V^2fG$0TwxZG$=uA#k?PCjIav9`sqAig5y8o7$*B)WX=k3|)jif53UsG!2oA#9xEoL(p{s0D8b- -(ORnc()T10%G@_~0AmG5dc7EnWZ~M;v=>)P?48gl04R4;$ipHd1m)|2cnB)*}WcFL98U -k;XqZsM;XIBvrp(Jn5FGW1ttSIko=*XHyz-JjQv>aw`BzVHd#~x;)h_-$L}~P%& -wJ)EF?8L;c1uU>gY)^r5UD6cZ;WayjZmNCqMsU<}_28+qllof+E_xwD-0coEav)sc`Qw&@+7t@87_O# -P+Vfd$n&b=Ip7hd-Wm^;I8F1_Bq1Oz{=p9K<8^PzA%isOof=p6N~j7k?m2LgZmb;O-ww)9>_Y;jk}Y6 -k2{>!RlMEOTY3>ASV}kP$<3ezL`bB!!?~jQK8hS%5{ullHh_= -()QHdc-=C9^HJRkwR2KZfAVGT7fFNE^v9RJneGZMw0*e6k}>t0Adod>?D^}h0e-0RpFj2sVq6`J=@0u!67*o2w;JMD7vo -hQSRR3{@#<^n_PF#0GI(lO3nsO*&r~})6?JG)5rlEem7)cG8ggkgcWiz{0X1*4tfXdb&_r~v0O>!zV_ -JjXU8vw@YfIQHxUP0b{%{XsSm@>Mabiv&zVe^Tyb`_m8&FX*U3U|f{e4Xq=@H%6z~jgc*X))FP52@6* -7Te%Z&3ik0rvo=A4~RUXL%X$G*ImEQsgq_2tFQyUDBfH<$0O@ga=sEwW_IM8d>6O)|+|Z6(hqmp%P6N -|sC5Px&*+%e#!1ce%`pP*%UT)etGxT!H^8(uIh4xyHYVbP_L;o_gtr$vO=rs{z2C7GgPIb1r!(r#x0f -9pJ<>fTQPSJWq-&?{(U!sdI3M+kEI!G@6<-JWa4 -o_t$w7pMK_xOT# -Q-Z{MgbF+6^Q%nUfj}&IZap3oe*uwme#avg;oqZvkWb>fCHC{t4zNe&(nl5 -cz^tQ^#4my8KB$jKT@Z=`2Ac_QnOKy1FLD+JQ3Un?eju?HBFjN1Ma{{Cpfa;U(9lGmeUPRohH1p6^H>3g{ScnBH)q#yb_NUWz07^7bWoB#OagF+(W1JIp;ImfGj@OvTMLw8Zcp_jX!*F!Dq_2zs5di9SYk=)Q~x4!ih9)P9;e?-jc -S0|NuH~=NOs{{;d`35##;}0SlWHLu+u4Ap@cqf*zgl7Y0P!yPFf&opJE)a -CUjy-E$O=oj5daO8+<}(YGesg(3!Cc%q%o$oDhaEDviCm2W2W38KB7`gd{)Nj`>!&m!<6tRGX+pLCSI -$!snIxK%^<+VYj-I(FA91qr1}w;N1PB@^Jow6p2Ve-m1)wSZ0``{`IjAQS@=0&nmTcrh>tU}KMqr89H -R;q_5arBGW(Z90uHRRpa>~>|2uebTV;CS6W;_64SL&EE(t72Lt7kY0j90bwJmsNSXj7m2)(UFQRPr_Y -R7AI7ih8{ki7#;XT8Hu#p9S$USHn=dr&AFNIi0#Wj}`-s+Z2>yz<`nHz3D!f&!9nD!#!ueFJEkVWF$p?DZP+L_UorOf$C>ONX}EYarX+v%LkF* -Ti2%S0Jts*^J0(nU4&KMmY&0$+I}H-Ifw@GdfLDQZhq4!Jz4f7?HZpvJgNhk_wN|H1>Le0+MFIavhw2 -`2nQ|jI5o`V^D)w(F8+gZQ8qRD_%5o5ktTZ>K$^|QBeqTO2;FPJ;74+a*Z#Eh+VaEJ-Wl7>g^&W%Lv` -F-ozSj|0apxKnyS}QPd)E!}^z2ti0Yp+LEm?NCPy`u4~f=ahw?xfFak0&zkLGMhC$VzCL(D!JfBwIY? -mI-iTa(lJeMO3VM-6+8%5Wa*+a;g1P(LBY8b|;xrf&@)Yu^%j9cmw!zlP(80QAW{*da1au#CTL%3?7`H -RR|o<1PQf7U^4UaXSGk}-oI-WC-qZjsy*;IZw^@mBRmy}+5|DZrf}u~T#47yuAU@*=L@j|fsfbk43-= -W`!a}X%v&%9zAJAkXP`=WUptWyO_OcXo$7?@Z;;hhwXbiTa79qQX$_O5hae+(el9J9nDXJQ%u(F0%2x -Yu5mc;4?yIBSCEro`^23Y{Ky-2e8GUK!_hUuw@(?a^S>|SmX(!BlP=6Qlv-gAY65d2YN~E#Gh0F -hpi2YgQXCHd%~b`PbP7|PUmy>g2;j96nqW``=yc_zM)(`FBb5~wjFwbsoFFalp41DDLpYo9v;1DnLNV -_k`0*$AX9ON5m^WK)7GLt96xW^k>>t(PCb79FZ&7Sx-(4rP;;yV+j~T)=r)%7dDMY~XM}P{3JZagh9% -022!p&C@#v}PsGpj41%Az(PqDLy;}$HfwdM?C%u^WDcN_;-b6EeOby@#U&-(D!U;2CDVJWeeX>DZHh( -0U?@ -j?Hx&W?7D{;FaS;Uz#3#uZn^_(P*&KrA7CiNs=zYG$_3UIF#t%b2yK7uX^(t8iaV{#60|)Kn}n`&&WF -^0cW&F2)!J75pGos}VAGvnn8}J!Nr8Z89Yk0{rN9w|M9Tpive%by-;OVC#&6i=`x|3YC&OZZgfKeuXj -sU9h4B_=v0f1iehF1CPllTJe+Yfg~=L^PcTO*Aftz<%Pbp%1?BAE`1$ufJB?tY#d5_E2MpIL^ -id9%Jcb3LXiK{rLPX2sTu6vA2L?O{AGbI>b|l1hn*eyi&g$Cs0Aw7Ymr*ey9L$Fr^0SUGRiCe_rLeTyMB9m-h}25xM$DaoOz12a+A= -$(K-OOxqy%upwG4jxQaeG!*i;;0KyH5VQ7ySJ?6eCArn;v03FWQT+ES3sv-b1i>*LjNC;!L=+9z~2Te -h?g^d}YLQs!P9~)E>q!?!u`PZ0(B9z2qv8W(I^@oO6Ic*r@t8oj%op@~)ExwXo~ZaL2^dIEtBMNvy0i1UwOtJr5S@(1FJUa*-h`! -78Vi!keUXTVZt=303ZMh96GOXkr!G8qt(R>uPurMZ2dw!h~6IBF3GpMxvDqmPXD_rgx>$2I;g%OM?sr -S(#eOAn^dIEM;jv(NQ%>pcIiwe2F0y6}I$o;{E+S>?gSuT&Z7)B$_b*je*_DG+f33C~z>KQtp6+rVSA -o9V0nsCV)*Qqy+OgY#7tqjPM5EN@HXFY9W~<$3Bo20w2%)GLO@XabIw=xBt)< -#aj-Y8=}gf_n?4KKviiOkb5d9u6{%%V-tQKy-mbA0YdV_wm{1Zvu%802VAA!j)YxU=>?EIW=jJGUdp+ ->`1K)HDPAxR_b65f8q$Y9N9_1YW+i+Z*T(*71#XGYf@w}U=?#U`DfU%rH&=_2;iQ97$|6UbXZz{`*^W -&{!`6FJDc-V?MnaH>08T8TPs*qS=RHsPAiG-N)KoPGSP0#HTI1gDnVH3n_W;`8VUB3R+X`jqs*3|^neJDZiu?-MUy5S#xxyFB72rk?f2+#X?^5f@DIA8VYsBRo|OIaUPj -YB?gZBVZ_s_xq86TpQ}3I=3z3An9I?MdAXZGvi`vm4}Bk>bt+lmy}&QvVJ;MuW)>S+6AMsUh|yuxcW; -jbITQB1tj{Hs+8JssrgpslaYdQ1+%(HnG(5QSK1JYjZ6!;^<#A8lCcG_uC*fJ1R2vUgFmK`kix_)5#W -?S^cmzxHDQH4j9b?iqq4Xh#@nhXXP#)lphsRjOiap*Sps`VEU94*P$%g%nu<~#RQSsh-buHU`G4I5wG -2cue1XjC~RE?SUUoa#^qqd2LV*X!SQokN`xI&0YC442!DB(+>Gwc%s=SR3y^He{URm-5Jw{gDht5Y5Mh;+Kzvt>VY`Lp6A -!s(U#ahMp{eSm;GRmu%EegqC&IWk9xV -!ji#Y8p7pWmAfDI$f`;k7uPH>10rhVon}&`Zv}^n;P(~nar8N4$4jag#PsMY1d{0PX6 -!>vz_WNL{q-m8-{Jo4e1XRW5*rcibVq-hVdOPCP9e?m7goO@h7uo25SsLskGEF#}2V_yQS^5iEoE -0>c}LeSn@DuZjlaUGQ>p8t8yW)VV=+ym`5e2baO~$7t@> -dg89*Aa4R;{A0P?UP42uk_R141Mvp{`lv!N=nDq-7|W`*ybI`4uE2#+foIoYgT=GFa?k19Y^JkXuUZ9 -7Ai#TFK54)>@C)y$_rAgM@Ue -b(gDQ@2L6YAc>OpR!NbRZJZ^?Gt~R*kQa&wY7R!%F8y^1j1itNs+q8)aj1yrm0&BVypeMqa;I-VBSjl -O+_RdL}6J|8JqAQ2*&>SK&%|mmN_jJ=>A=&Gzw^E6lt`H7`{|Ntlrqpu%lt+ItAC--A)CnTb!us2pny -EW9rrl(w0%AF28l3wcqUX)17Tqoze8HYKKSj_N}T&`|EI;)w`V~tPUqyUS^YjrGa+Y1c*`Yq%iiIq=zfl$q95s2$rA2SqyOG2TPy0^ig@19a8I9x` -(Y4;x%diU<(2AW|LKHq`|I-Q_8osC9%H&9hlRqAMt^u<+GsQcuzUs+dJ0WT#gXwn(U*zR -ngfgDtZJ^IONAd8^rZj-OvvO%z7=&D{k%5OeB_0>da<~zU{JyknE>9|3yTlQH-i9*oxn?x#8eRfLc&~T6aQ%RkD(gza2HUz4XQ2lNA+5o3S -0O3ReKeJt63E5Oqxl);M*-avi)&!HQm6HQG|5)plBKN5E|DkX#4m6sza0;*&WvFo+N{+}%Rc+CzbJaZ -&n}T9iVRqMFTD67pp68r{QUr-)c_%KTt~p1QY-O00;o!N}5)LN_i6MyZ`_IegOa*00 -01RX>c!Jc4cm4Z*nhWX>)XJX<{#QGcqn^cxCLpdwf*YwK#s}k>n&yat25sydwsS1~oFEq(fj3Cd5i`a -AbyvNqk@&r_^FN2k=TD@nkHA!&rN-TJ0^pQtGYN_FHV_Wd$b;=Aoj9ue6{>OLdP!YbYTZNXYrEwa%GI -0=Bom-|zGN{{H##A?LBr+H3E<_S$Q&wfA0YDsF$Avv3?|g+EQ>xP6@d&&B=E{}}w`OnD`TdpYySW&2D -^j$C$I;QqA*YwEs#U)^2bE4b&b2OjvoSaA2f1$EK`1@}Ktu;>fURzv$F~f9NQi|vaZd(b6W -CmWwmo!JKWz3^V4EPG)o=bE^=_;9C*> --K&FF(W2!Una*rdz#}W{u7!%EtrP)4b<}v(?5p4M!a`}2>0eklX1JBe}Xft;kR^k#k*EMzbuKqp%P8W0<5WWX4fxGb^xA6b -}_y6YKa`jZ>DJ#!$JDR30;2f_j?tZzR=OlO7ZTD!BEgb6a)wF;HG9rL{<6(b=p(`KG)jxOwbF&t3tYj -3VMO+@XEeAi^f+j7G>vC~wMZe<+o14vX?NPlX>pv^0Z+Jw!Lae{mAWJ)^i;TK|Bi$%hM-<);*P!r5AH -QR))_nLwcL=)eIhaD33@W&bsnHB%c%$-P)h1%^Ty&^Hx%(9R7>r0M4Y|Claauy&BLszIuU%#KKq^I+9y=m-f{2ym$hsBY_o2qF6Q1tM#B(G)G7Q>)tdBgR_iNHL?_8D0CgxJ7YyA -(H1{4p7})l{MAvdcWFy!D}>$cl0Pyg1tO~<0>nGCnos-pfbPs`(hui%SV7Jtwm;6@-PbbEjs -JnUDO>r^BH-%os%>l~173cC}Y*X#g^oDeSb-rId?+ejm#lM=a@Vk=~D696e=-?gOk*joM;Vx1Kk -PHn>{XT?yCp^_TAm04GAV#y3uDfG6!!;Jh_~HSieB^k{iDD8UhN5f4L|THX@9731ZESxWD5^A<@6nvf -abTP}R7iV`@&FRR6Z>b?))-xc;Q=l$v&^_}mwr^(G$=eu=&uP>09>*B&|djNik!fvhhemqrRaY$v{VDZuzoWgCLyaT;1S;0{^S -M7wi9Xu|o+nGl-HaF+)#u~%q13)0cqB{cmN?${hVjQ6HaOl%RFa28c(yMTP&V2}1;@T}Sa*KQz%_8|; -GHl1p76|f1Ll&s6d%P~(mZn+YfA;7@FFRsR?9eXH+ -sfjyv7`k`>{c?gT!-r_vSJ+sDNmxla=_z1l~R4bVG|msItOcDcS^6SIKy+DBe2qogWr&eVR71kgly*?1Ce!mi8XMu=$bCK0h3_jT$$Ooq1iJZBNjXtkwm6hSpDFE^W*BnIF^aV4u+4xz@o -1yb#j(h+C)<|ivB?R{yfD0}Phkgo3{2rEjk1E7XZC`OvF`PQn9g>({haYvF1t;btg7-HiY~_FMQ6*ha~-AX(c@;Ll*{E=rw -@z=Qk?SFU7L+1Bq=r#fVJIkpT*i8#X9Ffoh#Yva0MI}a9&L_A=WtnSY -B#@=k?jf7cK8Lq?akMeKa7+^C0nO*s!(53G8BR_9-kW4|&cX)Qp1j@~M8*`^lt2>Nm=IwwJQ*K1D2qQ -};>EeEy% -5C{1Rsmn4CQ<(nDQaD?6u3S3nkd-c+yfL?lq2jkWqYeAV$l)mqGQ)C?623W3M7vDM$rNUA+kYUPI~PZ -jf%2w>XZMF{R9^fss*w&@D2;rwI`^9ggD8hTYSaRd~jLrY((ZktjJT2u8(Lu?dh3>6#Dv09!Ly17=KG -gY((3*u?PsdB_xxy-|EuqOMkHS|8PR4(vwyfD1R93P3r{XzJK;*{M8sp}XAJ4v(vgH5LbO7VTF$Sb=~ -08Bi)HH7!iAyH;#^+|kjw1>BM!o60p-PodQhAan~uXZ>hq2ovrE(g<=0((}5Wh}nh`>{y$(b!5Z -&Y|++mK1XR9=EWJoPm@^nGPps>>GCnjWHT9F3}q5syAA`RjJb -$z5R2-FG0pn4hz9nWd(%gvLgN<~5Y%JAZX;8YK@fentNBVzjv#(&`q@@+10XxLigF;Ijwaz!hQP2~@ULL!*tG2{0g4nK#0D5kW?3UnyKl(lqy;u(u1uau?3%kURpD(=7W~Fw@ZJ|@UX|`6F=*7DP)8EVix91!<=oxUijZq)Z9?t&sB>VYDGf6Yt4n4l?J -Wl(%YbGIiK_p@DsMQ5gS50KbGy9l4@yMvZe8R)CyauUHrW0G_)w^q81&679AD#nl5QkGqninbqwouRE -$!+4iz=WM+c2Tgq$MN3WPn$NnX^D`a0Kt-{+T0kq0>`pIul8BXKfYd?UvNG_0F{KFtTmMXMSG;}lG%L -6%*E6ImjpNmm4I)g@`K&H={A_A=8V$O7E;0*ur*Kp?=dj?xX)gLtl&bwVMP?6;GV05%SXCTq=47Ft^ehFGV?6xwj(auGS(f*Yt2dzG3HhyEyVIR_h<5yHi9mn<~-gw# -$Ojc}Wxw$|-WNkdx0OD)oSHXd5fUpCEUp>^ENK>t$g0cmidS3o=O7oZLsx<>`KHk|PS^=e5xel`5*m! -OYWZ3w2jU!SWWgnGuTtjIC(oaldJE0ERY%Gh7MiqNd&{6xGU3F6%2kwNj*N<1#7$!D4GH*Wm%gZ9~&i&oY>UTJCJFn^H;z<~QDH(>7~bQ -8P4@5Ve$3c0KQgA$co!M0qZ^ezcK?D*59}!QV3esf!A2UJyCAs<##Lj^kVJD75t+!VLv+%+@UVkZI0_$uldiscr?e`YQi^aE2H5X2Ws$ofv){6OvQaEui4WW|(N5!pGF_AoDrhd|igFDt`bZR5{g^3mVjwY76LU;sltOdL*d?YFFIG-Wm_pxvCQ8pVM9z0`XI+wuJ9 -J1xA9tPcRZuj-HoO^sL@S-f`SYnaS_b2K+aNO%inRj= -yP_|nbm}|zF+vkA0WZ6U5}Qolwkk8jN`7{WHrq*)hCKR1<8J8eZN}Y6~jdiXH|FI9ddm)Cr;UqGmGPx -^N;H?)#hHQTWyYKs8M`~79EO@poz!XvEHmko$mhiD}m?=Lc#>A*!zc(>ncRt@jw{{$@j@S -4aTBiPLF%nCbdNX{I!ALSwwR!KH*27DxVu5&4P8MKb#ClcoP6qSnuvXZ-NUo{mJxFH-}y*u(2}^=4-s -mqtw3!p0@2+o*<($5iamY`l(@%HiHqc;F{Vf-OC-B^ZHbgCUR5IHOIH(i0d+D&o@F4vDL>VbKeJ#*ve -)xTAIsN=yMnaLAI2>o(UNlR5G6KESLNcAZTtC@Tu)^SYMAkM;=^3hH+NxG^RTMNl`7QD>v?A%YLrnx@ -$%SIr7|s~a>ib#d9b94w9cq_LaFEd?6q@P!>azC#Wt7peLurB8Y1}wTvQ#S9&J9K1_I)R^r5L)Xg{C$*BQlhWmW_8;R>zeIf -(#<$JS!XDChaoKvpH|o3hjy3dM@mz{f%l6@}a&3v5mq3GWhsoZgzpe$9$_<+2sjIzGm6 -b@|=Q?5H=7LMWeuRf0sNe^ea$u`svJ&c`C9~oSx=9i`L5ZF4s)SGA^~nyrZhs%IyN}}az*}g?Z+kL9x -9};tZEvGn=rG-$i_q;iufpx8Kcr323H-7=F8{UkRVYhYFh##(Jq0c1WSRoa)CF -wJo@02g;e2*F@`ZSZ$cK8+3BoL1(iWjeh-hTvM;;uW=k%$(}x)639MnHj+)tdmPseB_1u3ZSY9Mq(yg -C^94-@$6C3FFKA{zBkd9fU*6Mbw`h4!p#EZvlOd=;mRPE^&Wi`#Z=u$2IU*kX$6ED)Wblsaw&P|A+mx -H?=l3*RZfK8!Vr8Snz6u`1_9T@j;k|qi@K*#FdyGT9exx5&T1YpwIp(1oS0T6rD^3C -)l&5^entYUL76spuEy!o(-+odbp@=FAiJUWb`m0QL~TnvKlg<|NFFnWXpQw614@cW44kg6{sJ=H8A8k -;~ovHPxwk&*p_$2$UvgA4rCuj2^Uqkf0zL?ggIq`B^6RcNfU3L`jXc-lEi4gC;MSqm?A*fRmk3VOt-L -K|knTJY%J3$*1!lpMJvG2}0%G=GuavuLKZ0Yu8X&ZBGXYFERzvn12 -P8=W84orOFo;H3#_G=>`@Td34xDD|PB8E1q9+p|L72y^#K1?pl@KzK`AJhNd=mSoY~ybE;MGrfy#cv2zm!W=XWHm)${sE -5+fcArC51BjOOcJ&rpPctv_z0Iiih!%BmJ{63mT17+&!r@BX)9ALi`>WAz1Ic|9CHKlvB#zxYh+`5mr -c{HO?*es9d^+;&L|i*Vn;c)RLKWv57C&wsWr)PPx>F(%4RL=cvZ2zM#sNjvE+Y{QmOKz?E=g!r01C-- -b2MqTT#ELJ33V1}vdlQqUM}+G(r9n6JI;H9XX6&!Kgz>hB{f5tm<|?Id*cw{npkX9MVeIfrf9!O1wUBM;F!JJgtks^X#XG -o7ollimIn=Tl0M7rtoodLQPJxpk2MX~zh3dw$9~v;?Aj)=7TS3<*+S!O~`YhM8h=)2KQLQ{p$6eT|kJ -@n^fycebG__afd&?|pXRG@po;GnDFRA9G*}*I(&&6ezs(ySQ7kE~H8KBGtQthY4ganhiR>mhgx){~)s -*~a*!ksi833GVS9GhX9AuB9~Iz%1Ep&C$#+nHJs0y@A<4pmRJ0~!%tWU{4ftzdq@J`(jGL7$&-(eFfX -1RLwr&21iq#a(!UU<7;JsV`S4^&PV262eXt0<#Vv+E9&RgNS&&cQqnk{_BiFIa3q&mP0~tv6VFL -=poSX}k>mJ6pai8&xRexWO4W(D1&D#8fKA7at3Sa>W5d-puikFNDNgX}4Ut=1aapbJP^C`5zwp~g0m| -@23xLTvT9IDQ=7Dq|W@nnE3sgP1{-h>7v^X{c4_LT@1?-mV(cDtpoiLr;6}C|hkhH`o1?tGgL)4~2Ys -a>@tenhiEv~dI`A#19ej!u*`kiVRQ#S -n-;*E5r#_~E>K?bFUV5@tS+r?D*dCFYxq5Jg3oIrOjwfxYx|is6uZn`K!UpnwupsTB9?4!J*`!f07o* -7vb9M%;=t*|=%T(r=iWq)uLz8-<-W+G&x~tSV3%$O;#w{+6{fLx|e3TeBu?GN9o-A1Bv?t}&L)F>-y2U4yyu&SH6}Hm(aI^w(-N0VZRW4DfuWIl?x>?Tzby`4+}h39*?T`!%Ci^>h4{ -DH1#R*He3lAS=s50HCDXt=7;;rvAWz{}o*N`%*#f@UAPh3OQ_aA?j}V7unbu#4~vf -CHVLkX(q@=wxkdUL?&(SI<3iFX%s-V@ZsM;F79qc*K|kiQGkl7Z$^rj~*7%~HGMg;U@v+jG*z*bYBy^ -OIdH)V}2b*J}Wpq-}-qGTt)Ut`VpX*^?e*sjgod{M}t&PLwVdCBm*iC=rjcG1IE9OZaerT}dx6kN2oD -D_0#B4$Vg!&6WL_snBD#^oat~OjPLvud -~SqJiDSUzaRO-21Z|y3rx~E@Ci>VF`0UY-LqLtQ^nDy)Ub922$bAFS1omi#t_b0-eo9%2VI@PyL0_6==u0&Q*rF5|dj>ireoT!*6_P668NCu -}hHwz7A$OX@7B6e-G03N8=<1)%%RVsF+ql5~o}Mar$oyzCc=c{5FAA0QvVz_rQlSe5yje_RPZ!amDf{ -fo|?_}~N<2 -lb{>%X=2>;JLWS{~`)9hJx&iI}IqFy^c_)9Zc+7Krn*l6IOs_n!V3t0?Q~QhsAph$XGef -&QT8!ZIQAr-?i^eV*~t}y_LSX!EnM>wc%9UZ*V$coEj@$?6-bOc^Kjfa$QokK1~0I-4qrW4mH1BiRr^2FfU^Ns@N0?u*Fiz*qOWL(~@EKexQ@ -u*=7So8A=L_7^4C+-3RC{ZU~E+^KDW7#Q7N*FEpnid-Ff;svRCP;22{g#9Pb7g)++*ua;Ssc$v(sLTHB -x4c&wgdW#gr1X4_X(;kb$eZ;4vW%fi}Lg+V??xKCvR(BVI#h#&$W+C)AjoE(r&jX-&$ZwiQv_ku14Wz -~=I7v+5Er>rLv)jbmWtJnl%YhD1sXUpb3!!lU&>Q6EjGW{Rp`w3#tLSR(wH_4|LGy8-{+i<7YD$pBl^voTAV9sm~MSmK^+S -;)d{xL&L&Gu~yTd{tr4*d}5%1HjV6IHy&C8-R0w2I<;sVZzuqrTTAQ2Rkn(LrQC*#d>gFF9AyKqY?!E -&+i5ETriBial)uBHNyq5`2=Mult97dt^_os6ZHo%wH*g@~mSotvt0Z4siMvv$qL#maWS16%%Pzl6FFB*)QZ -gBnS@qpR-E^chX*3kTzW4+X>3g&jcf}{90MUHZv(DWGB`7s$FpX)vkG4LQ8mm&nD^rx3iSjM>)GRatI -l7g7%;6+NWcj#gsGaR-cUq4;4$?#%y+A&9b=~Q3`CsL8BiH8yvsZwYWIgi4R9r4jTZG1DP9+{(zr0zF -@KsT^U?R;C>H89wFW{n(7G>8Yllt`}o1smx&o$b|TBh*q5mFMn*sE|?ieXX@99`hzR%xKXK~)zO+LhI -X_AvYvb$We%5_;FU`yH=)lzW*bC17|OZByKdu)Ay3PLA4E(X~p+#>dJU+*12X)w1M#d98h8dko0z67HV~>T;0$w`zHqE+6J$7(ohq!bF?rB`a*= -sDMtC_tZA_l%A|sByhxCRI5k+G`v=If1<-DYB>)Lyb5x@f_+oswFynPz=MJIO|}3&#m3>nHlAy}t%wK-1XW6nq*TNJJ==%|el|_a8DrK6%6~*cb9-wD9#;I#;^1y)T1RS&E^8=#Q`S*3#glDY_-|> -69Is$4eKWycsw*n??#X_FldN0TA$3DiFRqztuwd#kc_2Mol5HkvBt-TAZpk;CU5KeSJc|0`8(Z-(mqX -yg)$k*1`v^93zE|3rcK331bs>N2GEFSZWxEFq{5+RZ*?sKm -zo3oLu*x{NxRJf|F@Qx1oLyvk3Ty|xyWss!N5rMeR%5qSTI%(K9y}4WE_pup2b_SU0xx^mkDUcZI<1QdmM#c@7X0Daq7Yt# -OQW=}pRU%|<>JXe{_19H_Rrpp^3=Xi7#VJ2$Se%d^9HcM%8j#d@b(o=g`8?2X{&4&UV$Ng$Ou2F=;&- -c-ZbG#nt#OwA~>6)PHQMz{1wS%tv==wff*%9CamPPr03fGeDh()@J^`3`GU7ydEfcZ9O`^%6nW~rfFa -F_2~a{*0}Zm?FJXT)Q|-WYw-6_Cop!KOpy@EXi$PFQbOLeD}TP^x}V0J*fnP~|dof04u3G^qd6)Cy`_h}s;Y)`o} -*A#82z%S_b1nnC3fzauk?c)iScaavInRUC^DYQyuGVT9*nucn@@v0bTWQ|uS;+(^%;J;k1c*GwXGY%4 -t0%IB_Xg_DTqB^mem9aO>}?M(;*aWekCh_ubJ#L2c3l$j6~hsC8; -C~|VxmGUjZk)9gc9FlU-5e56E}%|IS~-chu;HGS%{*iJs#4 -14Uyspo>2O6WnTUN23ll{cAZN%?Y%)yUqE%DxJ-Bpf=-OdaMqguxR?28@efRtZfv(8K*g(>3()eW7U@ -JxHKP)58X#X*4~o5Sp^^;W^|Hpa8P*vhZ$XwpQwU6o70a*cGwQG7LJb5`K6sX!1f+1UJJ`BcFgrGd9U -=foKP&sDwYhC@O?L1*s}G7qk+KAtIf#^_IJ2>Ig2p9bFe`UrO2DMLdT?K?wglq_k2Opd^l+g4bSR%3` -EgsEr$>Au98O-=qv9U8T`0_i0iZo`Ts7Y|ukc1w*(2ixirAt$5Z%8nL7EYBZ!UQGV_e(PTHigpLc3*` -YaG)0;s3ONS?2dZ>!~2P*NN^Rgt@e*P#0_k2va?qC1bWd6`TY+e+RYS8N^F1?5>)Cwq}w;9Kt(DX}vgV=ACTlv^~I46#&l@B27eN -vUqon)>pE1~C2>AKKpB;H0%bkhy$Zc1sX!mVodz(kxpLx*)T+lO|8+7ZvvQDR0Ybv7OefP$6K;;oL7T=s&@!9ZlOMYy|MHGlpftipD9n`tQs$r*;=9L{(j>6rfsOK;M{?SQd&a@@h$G64o5e -4p=mWh28&k!^S*^dAW%874Bp@FOHR$P#RJr3b`%U1h#E$EbAgzz6QrjZ6bIq8#r<)suy=9)Gx5TN^#V7yF1xmVw3AI1}EbVRF^ei -_ZK;oW_BVu8{%nu0=+&FKgsUaeB&pSjiJ_p;NtaNk_4Y~M!wp`Mq|m2674gpmkaa+byqghPm^sHM!P9 -!gOXKnjU1u?CndLv3l8Q!L)5(ePD?<8&$2!WG9$N$j0WjamKs;P{Sb-CQfr;lvC%Vh$ab{$51i(E$W8 -$OmvV0o9+!fkJh7-X#{jfD{w0!K>pr&zs<06iTiJn8{d!&Fkk!o(>c2@#BW=Oo#RudEcW)gP_W6)KeyA0I5%ajV -f=*b^6H|6D#mf=&9aN&-D}eA8VjO&P-kaZ&=Kr1pDmX1iDFo*toX)U%rkwcWoU(o*%PI5r*1vK&Bw%F -yx6yW-c#VJbL2O&`8`i!|!SWV@Q0Y~G3I>(%DeISrVmCKzXVoo?G&fvx=-tEQi -wuZjx4tpF?kbf`x%m4Vhf(7ArJFUSu)r4NS8Ot};f=ySM7QIo4588}8;LSlLn6__>^b|@^p)r1LPmR$ -V{n4`q0GP8aD3xnm!ZLh8^Sc1M8f}i -D8{p%i9G_rbE;?UG`Jcwlq;#0hhD2u6t|fZ|709z=VRPh*%un{`GlOblQYH7H8Y~F-6TTPxy&!{2na0 -l^rC<9^2N1COK+uibx+qcdf%n6_5$a^FY}M>Is^H9DAb*7v#K<4yhM#up~eGA(NNY-+{;$836r50Rpt -ci$E&~s1WJ4&5gzMG@Hbnh9&8f>|3{`A=>!Jo@TR{he-vP1cbAjhD^Yhe1_yqXios_O&5oP4l={R*8q)fVOg;Ak+LO&o{2UAWD(KA=b^owLci= -=xBPINqn_?bBITXdFN;5i@-3;2XG3h(OBXfJ)Gi4M1N8&|&*~kEzm0DB$z4LylQsR}5_wntp^OyHCoI;!=#uQ}<<~#x9`pAOd8g7Nh -3?Z6UOJw7kPaIibmin+$FSyhnoqlWu?{8lmBZ6MY``8Tt<%yAijW9=0lLZ6(W@@F%LO!(WA9t9w!}zj?>(oatkllcUl2MT}*9-y0tFk$x^!?MSr@o&=y{34=b|((e1VBb+t;d -+>CqK-;qwMXV^!mGQEth14}HEtS)Esx*kNo3FmS29SbjMA*EpNy -yT~s}cqALE&lG)hLLg+UAXl6>--_=3`Avcge3I@WIui$G%r^dFW<6uzgPcYoTQfmUx=j=f|6YS=l3#~ -$vAG@Le20i;WI*+5bh0s(6iTiN}1BQg!cjh_ya&m-cFOyp^9eEN$*g>jvLR%L|jgpaSS)f!OCm!}xD{ -j?R2fS)2jtuRip0YJ&A@mh0plLWdO+pA4$YF#$lb0NV3#~in;KZ|#-#M4=ww*4xJ0c1&ULvjDUaKxyX -s=al?irBmiZl9BicC&_c#4TG2uD}m5{R57OdJtIoC}Fm2nf@*O_Ju~HHdXD>G@4Tt|F{J!J_*yj -+DFL|ZN{Nh43!;?GgmY|O-^W1L1Uku%gcU=xmXoTPS|m)d~YX*yPh9GT2wBbfs4e_sNeG4Ppg|pOTO{pL?O^v%%m_V_)UJeAGL*r*5r -HCu2t|7Ab20((-0-34jweZYM^6?3?Hy+NUZxrE|bq5(Da^ST#tfF3 -Fc}S0CM{zm0{r(H@rmI&|Y6%*ERAz) -i{(rYzF|SkK$(NYiRrxwR+fNlyua1YanEppGk+w8B%=|8(KOY$ugnjX{;00#_a=XyXSpczHzraYzCl7gj0xnwvn%gFrfG08&Ca+m-%)*7dJ`2C{7o3 -G{?5UB42+(Gu>#y9h+Q%w2UEG`;HU;lEIEsN{ -~d@|;#v4~SlN`TY+BRuC@!fjYro=t(m<{mqkys -1Bd{kckq^G@(;>ClONP(~!*T>UA4?2SES0=Yq|H*RrliL+ee8*5NOkl;Nhcs3!z5wBY%_&IB0jLQiRr -`#)lnd01CnvopW!PVw`xk@3{zH!#?Tb3920p$l{-n{@#-x0)zO>yvmAWy@I-*@2CC --?<1o?!&+udMVdm0`x*%`k`Ek5S%(2hs91D2I3gGw4B_Ev*pqy^ngytg*)D&!!MAq14lz^8fKh-hl^8 -)J9g?r2nXa&W8?@;&8R)nFa&XqN+8MB=S<|Rj8pw=9LL&+I*d_So!gAc>O<40ES15&7(sK)J!&cPV}P -r68Q8Rsw4*zdqk2)2pMT1y__=sEKYv8LJOO!mM*qdUjInnzNS|{=s%vz~N#11gsa*6R6PkWNb0o$NtT -@HSzJ?rpN?n@kIPQE?$^+pVE`P07J~wW?wO03+kKau0XF(G=piM^I%HK|>z0nt~QkT@g^UqDR`Css#F_cB83Koz(UN(|eN40S(Iwpk@FXGl=n4t8<|4v|Kt1%c-drCj{_`b?9LNL|c#}|DQZerDz=mf#*>eee?+^`aCko4VHq@`4yEd7=(rfrW*6dFmJd-Me_yFOfu0dxT -jAN+S9dd;c}~+xGQ_{a%RKD{%*Libl9Hjlr{lw(cL!lrtB%HBY;~V(02(yb -pWFtwwIfycNtH7Q;XY}Nf6?mhe4GF}pD+MA2LU<>K$k}axcgIY=cFrJsnsaefE>7`hs?qbpk@HyMLcr -YhckMV#Xg34$8e6;oos(QFw{31QZeKodnTEROBO+nDf&CU;u^-k8LyOw#dIHcHWN>p=;t-bTaUgvB5D -Qiw7nh~aDgW2k`rU<{)U~XT3#)qn-}i?$_<#ANodN@6F -TqE*Q~M)2PC2CZ>Wt8^wSdh^=L`;Yrvwp7Eu2lpNXN+K09U{&=NwZjZ&bYgNNXg&s)3mjadtfh*5v&G -t&{CDS@{Df!D`gNaho5NsmN(D~`8#F~_-}R&&=~tXk&vh -2Li7`;z6vI&(At;Hx8*u&uP1{$&hw9mG+~6y}-l;)<6b7TcCUP#jCyeFZK|gM(Wn`T%<)g&xmChqi}& -EvemYD%eFLr0E0zMTrBdgQap20$GqVX7T^ho@SA5#RUeaZa3>RdS{~Cwrs_uQPxq1$YhmkF>ZBL*;N| -|6I@zZr{l3Nokm79G07hxWrwOEf3_9EHo0D?3)n?;M%I{Mk!IzAvh7l)I9{EdrVfV{Mz&>>FsrIqe=z -?D9Xm>X2u1x~Ghabm%x}D_hGaC;%I}feBUXG;6<$YRht4rgulyVC^OyROxT$jO%V@vt9>TEh`9dU&{e -T^;T81!M?5wE|tq~Z&qDThw}FlV#SgkkS6l#>-W)Dk_2kQhkylZ|HelM*^pUH{$J3gJdBNN<^p9nocm -+fjH6<;ZY0uf5KwlYFOzYq)btgM6oh)9VMoHg}f$=nN1l?<%KUFu!G~^Uz9t -9r-EUtK_oUlk%c;qjslQ;wF6VF1hR@`RO7Rr4VVOs!wpQz8Zyi*k2v}R>>dlXN~_vn+I-_b+9D*I8UR -Dw?St&+3|@ZY*A!0O%T2K^|5QRvhYEx3Twh3g1!=#B>|B&oO(^$aoL(EOKiMK8i-V7hw+t^`$LrDl}4 -ZQ{R(t@#pcNw=eegix; -_)S0G7dY6i_1BwqquX#YLz2``k)!P`%sKJj@_s%?@!WFEw}YF%i^^q%Xw*}hkZvgh&~yJ9v@dy&r7+u -3jqCbt?@~+WV%7O>1VhtT^4V0fHK@Uc#L-v6%tK$z$j8NcoTGjXi?oK*b5)%J%M|DmH2>;U%JKW=y|O -TcuAgn_SGWt{|#Hu?n4`R4vk=~SZ>Wv4PhHhPK6ua11Voq9hD0S5cii(tD0Axgv{YPh-uJ~ASp)6o2( -`=+poRnXCMC#=H4q{{%PSG2RdeeJUl^=HR#eMW+J3y@o4W2e*dC+Fr<$*>-BxKxL~-<+5+~`&^6)rv1 -=A%ki6q1lW<#1%4ef6bnIkyM{jZ>TTNjQfg!@PsKOwR^D!03$8^gb^R$29V%m5tRi6(J{7){Xzv70wm@Z0Xrf3Ch7QBChi|N5P!In -8N=wiB`2Cbji(Tr`uL{dN6R8@o!mpN -g-dW! -v&hk8yW@ZMI*vbY62~aj*5~cI{jM(M<<0>m2Lv`CLtoi8Gdu$X46GOEr0xv%$Cr$Ay`qgBc`13OHyfi -wJu*jEQ!{+*jQ|ShG8@hoexa#>*0FeXUbx((nyb`> -Ene>ia>U>2!)?C<@Y&NUIq-H|4R=J1O4(6A(Oho|J~#5owu^sr!tnr`X3f>(2vXAy{yA@B%8Q -&u}JWcf&i-suJmxQCVXUX{*ax_{iKxqznvl2Zn9qCh}&M@~|1hot!a7Lyor8D(o>WP;%nAq+WK~<%m5 -KdIsiipw^(2o2V`)5fB_$p}0>e%TEGBOknrnX^#SqEqOb|j=+lbX&mRppt~D+Cn=J3Q&{QSI7HdyDL} -Sizb+J)reP#fXqx|`Xc$|U6k9<7mvR}WXa3?yGIKo8h(`i8uV1QEbvxhFPf@}QErc#uF+hY(oV|5Xai -KYKG_l1!ARLU82d$OjxN<2+J=A*?hlKq3fU?}KR@v~!5dKY1mBz8Bj!;P(kE9skU7&OPdiBt|OsTLto -9ir!8w04Z)9CKo0nIb+jBUB;0&}8_Mv@FU=%Mv}Ruysk!Gz4}N@cb>jD!B9<2x`_rr)5dg2=od -B9Z#USNl*Z@=wMf51-WnqTL#VYs2SRre&Bay2Fdotvy_W(1a -m9pk%YqgiDa2b}_5LnI)w)@YcAcp`cH#>cYq`QKbr|s%~e8Aiv9zlgn1q-0?!wZ{cNbwrJa8S-1db9Q -zSX(B0+Ewzc`;1tyG2gQ0%lQ;Q`lE&=`H-_zXoAnmtf1S@TLt&^_6@C4LhKpk|gO}CbdxefJNmbkygl -C5TJt+^XRufcSjTX7P -umhlxLg*-`pNheakej!TXlmb(zA*MEDKjo%PkUUD6V}b6q42t#n}t0iTn+m>XW;T6+d5j<^M-Ix!Pii -`l+C_=1NjMq5yt;*fwN7rS~}t`Rp?oC9W-g$!Y#L5mj?FU#>}mwRbk6*Inx%R$(MY)VqsB7d{l48GeO -g>PVpeNd_8^3^WeLw3uV7&RZa(kP63e?`*&1 -TseZw_0NV)(sZ<=I{R%Z+1Pzq1!$o;)2=qI|iC-+ft_m_Ig>z-i!R*4JFLW{{37s_C(uM*64%JnJmg*8y8offMmZxiIDj! -u|nZ*XFRh5t9+G;dj9?E2@X9cr3p8V@wC`SVBGrEbMkp> --F3Zxls~hGwxV~pWXP>1IcAc2)VAhM-qMUWJKWxoKesf;%wqbP7XfjW4)+zpK>;;UxLS=6ZaoWaE}z< -^W`NowX3Gyl>%knbnbPC)kM -m;vvkob*e^$-Sc6haTup+4syg{J%9Y3pbs5@DDk5r+4{b<2}q!?o#{(DYaq$1Qa9DBCgOV99O-6t+Et -u2wg8&P7M7gNH70v}#T{T2(5cZIHv+oN~1K#iK4x4kOuswp)n8M7P~U&)r1H-9+KtNXb|X-K-8Cy2#C -{yxefJdV~Cx5T1`6Og&p;ze_!vV*gEUR``tE8~btUlR2isbHn+hn-xV!ME@78i*rB-uO7tMO92>Tx06 -p4KB7<5!8dfDDEc%%6CIPVWwBWX+AD^mWd_GH=JKDgg -)ex?I91VRs?gdmc}eJ64Aekx-0f;K3RWz?Ag?FLF@^5-fEe9y)?PuVG}x6Ma@RuhE(1)05jJ?5Hod%= -MX|e*D4)iDMG9gn#%BgztA)f@81`iuE)EiJ6g@%AT(Wp_Z33ZWL)gtjr?#K^=&wWBg`Z0Ipkrj*N{23 -HH3UuDNa?xIPSv4Z)|)8R(GLZEczPl!qag>Areb~5EuvrSp}W3_K;J}ilj5vE70-c5^}}@)+sE{Z6D+WjQ=S#4I~ -|`bWej$a)0Qg_??H13dP<^`btd&Z58Uhxu{ua!q#E^LQ1FPWP6iyP4=>KgKi`jUL2XmsnO&?`@#QLBxfLC>f=6-1`cwCw== -A4KFqtS;ez2^)igL#H4@k`#55{K=K@H5mOwDaaL+1i>M+kL%tfA6gl?E;Rl@LKF!@R2y{r~7)l>{0eI<|QXc~{wcJ4Szq&Q-}48e?jRbJcM6NcvV0*BQQ5L;1q+t)eM4ES=FO -8I1(gP{%54w(eN<^p%EVmChO|$0{U*?pWnMLta(MF{MyuWj77?yUDBS?S_(K(XWvNQ0dxYDt5)^-&70 -fH+=e?IBlWiey$9*M7tPv5gt*Ai;GQLnHffrgh))_i!R#uyg*{OQlN1H6;kM$lEX=b=}X+c?u` -lz64ls7t6;?Y@X=@&S}Y)S;5kQ6smj-PMW9;IB3#koN58AbtzcR$G?cA?hny>F4YS%t-v0c000Q*@AjGg(#zZ -Ru!>I?tKYV8>qVzn+B#JptxKeSqZy+3KS245JA-2RVEw}na5Z8n&0!d|r9JZhB9JOCxQc{5mVm6Cwwn ->{!m(#Idbx}yDd^qcIr;h`+Re#*Y=YaT*uy?FN?uNQ2vqFA_%5Dm<@g%wp);d2Fntnm -iEGjMMlmqBcSVB33Z5wn8D;dn>5Ic6GJFNK_faTyam}^er#5QSkQ(WjCju`RAn;+-}OZ?}OrXGmxZ^YG9XZwv`-@ -g=V}JaLn_3`1ME218rCH9WM%0Sav~f3-Bya&9oRMeM(a1hx3dkf0Wi@p@2$#P!m+T6wd1mNW{KhQXi~ -vF{n-Ea>Y@{c9?mMeLSjAd9kOAdAvuAd6YaKo&*GKo(Pzfh@*RAPaJ1Rmpw%)?^@yqlT|B`#p@}%2-# -1(QGiDt|RUHwWRTcapo|#97eKe7H@|?9*mICXBf%i(9lR0#MLU1*a#sIJ}?-_;=o`ai%`3uJT^R(#U~ -eqvS{Z9DR+ST=1>;oYmQ<#?KLvCqNz|8)b;Ahe%P<-g2EUqfJB$ -UMgBb3F7q`AOQ%MhBnF_uMhGL{809zeUT@Zwk&ph04}cMpkU;Y(E(dXarFQMc4K -kfnBUAPY+>kcFj{gc?=5cW59B#GjSoBHcoJ2EAB6Q5PmuZ-49q-1Hm;(&IkKKO}U)&Ca$>yb-FPt?`^ -5ydwOPZeH#EBl^T5YA~;!@B4<}6^UWND=db26-@@OSeOc4L7koqUUA3>TtUqr7P!Jc)V$iB3|#T&q^a`)dBMz!i)2@#>F_8^Gptlgz;RGXv?O2d;RypIE%n`+IUgm3IrVzxFU?xP|S~}RVXP>g%G|Ej%{(G{@~K-gJ#x3GP4$fnKjn<2Bb}zS_EYz|DOqFp$9bhX -TdCxAiB*}IPsfovKS(WFOFp -q%l`+lEU0>VEQ>pS_kSmrh2Ad8xW}-tE{$bD4Z4J6XI{EAmIX>9GO_T1y`tiDM`@KRshKK`3eZLzJxW -N|MO%Q4j>aB5i#jOk3!u7FNQ?|2WIFqe>h47WEW!#}UE!O!->WX}_lk@A3;emZy0~rd_cZ){0)HRCx0 -G+aT4e{`%y2|v=_Wc?$VuZ_`>#`K_T;BQcfgrF_63JA!ttkj0OFT}5dA++LSP76KdAxEPuJx!c@U-pU -}(wK_$AOQR6Q7@3r*zjsLT1H4~4zfnHT+bW?S5>woweSi+($^#e6gVa%MaJa%P+Oy0G`Cu(!GBQ2Yk3 -552AfCOdkT_LUiqKhi|j`=b7Xbb5UTef?YGb~!SDUj}~(wEE(o0u@4djKHAHZ(dBb%A9I>6YV79uYi7 -f5EDuy`?_5A$ROxPPtjIk4OmD2TYe^V#_*pBrC-+_{KaH9|8Al@^&5%knv5~5@eFalnvVX!9<>zr>hX -sRJzlT&5uTuriVK2f5Bte6-KDf25{fk`;R$Nm^#}t(@2W5ueIE9!GF>;@kVjGcol$9z@!NZJ(7U9nU+ -mGOezs=|po+&;4Jv@YBj9(SRW}|@w(T71@rhE=wAjZ=a2SQfvgGeOec=sS7yFt07@d--R3_1n4IG!~u -_f~!E6?uwF!SYN_t%*6l@ICPo9R4oP0Ug -npTiVTS3a`)Km$dp6{?V&2x8mDN$N&(EHjqHiOAG5m)r#L3U|;&^Qx&+dWBG}hXB`*5?qQc1^{mu1!=Y@l -+Db13NQRq_VAMJiNXxupeZ|1nO?E4>VFIi*wamQl*No-s*j>?8WMWef%ynDn&E2+*DMxA(ELhjmX>p= -l;gMoaI2v8y)wOY9)3BDU~;JeBHft^2yMnVy>0TJ@iErWw-1hmMh`Ig7*Te41p#Uw3gtT(OgsVA6fWU -?6$b>N}OCcY=Z}pX0&Qh16hSrMl@3c~uDyleMk!9OB>jSCvyYttx$t<04XK>;J{xy8uL0ZU5tYV1QB4 -!PG+292FJA6vG#eWYcIuuRb+7u4TNm -AvqAJvP?4EPq5_OOIjy*Q+AyI!;-`C*%hN!JR%6kRgJ4L;U_W*jwjuE~jGgrqyn(17b=?(yaQ}8l(-Y -n%FCsnV3pVWh7B{c=f(-d&alGw5|R&EG);D~pH&0m8#k^KkJ3fdnK>@w3Cg*IHqZSTt|q_`terFe=^f -(9@H4M3A39s5u;0G#R@mr6}_Qcv~R(nOlt`ksaEj=fwYAYE4m#+C&84{VM7k)d>^6rr*&WB*MX)YD~C -TuDJG5tXUV0M}2h>4AH&7YBEH+1g=|&8*WpyO203xuvfim(-XWU+JsAuW|yma*pKzBT2Ag(lJG=h`_t{DAZ-vJ}MYw$+jbt<4!{P&-s0ZOz={c)lF@zbT3 -4;RBQ)X?8AJrpaHxhlfotML=03B>6G8jzXFvov+ruJzfdz>JAAFm0 -`Gj5Y7@V*x@72?Yo%n$yg*M`@1m}olRMRB-v647C*zW7JH@c=bVh2=8O2vvgsXcBbFyl~56y-XuC;=O -)&hw)2u7;}beJZqiW0iGevZUWHF2XaOwGC3D`(8>*MFRUSstLqx!aWL3ai>B=rQ28DW$lH!Dq4?3oHK -qY-%yhk8KH>Qa7DC++iTNYQ9)4lo|+m~oqDLjl$?^9>NMBM-P&&3=wzwneQ_y9BfZ_2nu=bH+v_M4dN -p*YjZ*v7@;##|iby8zY^T`Odu4g*>!zS+wjDodtsb8himy^%k3*=qD~D2UG{9P_!_pv_HYIJxr0+~`y -+tC08~4~cmQ~x@)gRo1D;3<9RFom_W&m#X#t3@@@75Ez)yl`PVFrtLaV2lJu7ZZT2y<;jt+C!7uzfP6 -><%hBYY%ko?$~)EV^zn4I@CIa%JKS7oFkBn*M9y}!-;XunS)AFUA4|R$I9nia?WYkW8NCf2fnDv*LgY4JTn}e7sfZ<5)F`Kp|iI=#{L5}0TVb!?itP* -<#N^CK4w$M16K}vcO8)+S#xD@`Ry7%g?3Jj=fz7$*Z>fF~8ZX{rkETd#k$y&!vZeQp0I+wX?ZqUrID% -&W68wq+51UV#={i(?5b)wmxa^JAWjEf1h`E`sa}M>SL2pvRtl!QzuNta1O#PvLNx`N2mIWx6MbH%SnpH_qJEdKfREKL097(6N&kCj1zU@} -jZZX)}$^JTbhb=+20Qn_IiYGztc%M5lj_V^GdP019aNZ!j`UFO^!5GaxOI8=FnJ3E`S5(Lulh~77yGK -^GWtS?<`>9EtqE>|gDmA?0lv*Ll2At`w?6=pr*B(Yyrm^*3WvRo6SwyE;6!-Foqg*4~`jm4?-B@aT0! -McA0yApoHCb99a$G&mXpjBXG;mP==f}mV{^QD3KBXV(xvK@0$5U+Vjv<_?(b;ClcrG6r0IMN_U< -RVaesib7oHYhf@AK&_v%5SDmZ~vg=*uWBvBn{n{l3xqaK2gNOF5D1rKJu -HEiP5E&*>BiwzNB#nQy29*Zd(yt(4O3U+*$KT3@;jt7pCy<`XE#!3UI5)0Zw08)$uOxx^RxGAvcBT5;m^TRWJ22B;Q? -I}`*z5F2QG^mpZmFGO1X-Dx-`F6TZ~&0SxLlY=q_QL-#*N4LV`5O<;JFztY#ea*)Wtr^bewc~{nCJS=a#e@zNv?>E64d7Qmv^w@n91 -D~)wjX;Rq+=jDu}NyyUMd7Rui&DcXQIElCO)yb!~;fzWt!8nxM+B14_OrZvS4%ii@mVXYV7V`Spm^%I -%uk5}l!$Bv~mW$udu~Rb@%8FGLBkPJc)k>`v$1AgV~Bc=n@f9~JGk^?XP&jFd{(;M>ebEVGPsedtAnk -RVQNCmOxfO#g**apYfmMhzSkXFST&@*?uDC$sd22h@44v<1#tYW=;~kZu#!sx07{s;MZ!HMEl)av6PQL49Bb6jecAU~RUGUNn@ouu`H -W#NwqC$r)8#kFrH;S@>Ubbn3*G=MfGubCu_~^t}A5%z`)VrQ~0*!jnm)D&z@}()_zOaaoR^iUHNL%z+b+NV>%>ycIXyy|F?AN7RKhNiMG5y?=Aco+*}e^ts!BwnD9P5lTd5rc1o9TCN2S_8`}kK-bj3$SFFzpCGL|Wy)K%H_L7&IBuHLd_?b2p -Av{|cZ(yM)@=Tk78OA*s^Q66KIy-&E -p$%RMm9V-vNU6uy3aL0Xn=ChiQthdYFCE -yN!n%Cxct{7M%9(;T%DAogPo`dqv}$VrG$6I54kyOP+J>)kN%z^b4Wcul~L&R}~tRXfIXZdR -xdEjiU+*Q76d`_S52Go{G&OUWQBaCckuPrSCyUEsxmgsG`BPMzhK$xuP2>=FO!iY$4Cmn3UPNKn*Lm` -M5u*h~~&8tg5;q`jW?X(PL{=Y@X$M`KB0}Mt6&x6J!e-eFL=F>S);Jhs$tv5tW!OD2wb>MPiXXaz1y<+FF^qAX*R1RxnG|%VA>yORIn+PxoJtiuB{jDlFVxC -MyviymG&RDcAft$4HH@CCA?aI!7s^aunkA&1SYEHW4Sm$Y`_yx2-pFA2%P1tA$f**C%qZzxP4nFJWn= -IW=S@XBQqwBf4f%clMz72>i(r9 -G4?1-C*4MtoF%#&rY|lFV9Hb$uqe?{)2l>3hgMk?ga{1;=~-~LU9}XdD}^9oT -K}EzA!{cigWvh3NxMm5pj`~xtwuL503XREW4yHML0|k#p*7FQkc?AI2LPdW6V|?~bE&jc5>GDC7X5#y=6CDP%=?Vp?8CqmMx@vjL7TF! -`Rvdp604_w!LCh7ar<+-L7e<=NJ{}_-LOVQ6r@Q8yO?y=N!QuMTG-4A%L(+^NsSR7NN+Bd<(SIQ -IxzHi1<-{MO6?XYDd{#1(vqc)WS -ODDXfaTRtoEld=yrQD6AI6XKTfjs;Jal;EN@Ft#p1d^v3I?Gr|m%YJ?dieJ#wc(r3a9mJY!jDZ -M9N4bo0whKOq9OG2fWg*jMyPMG1+lfoP>JuJ+g(w~JnT3RE_vC`_rz|h2(n53n`DOM^FW}LK8n2A!lF -q5S;VNR1K3v-4vQJAx(al)J@jS^<2G*p<`(m-M6Nxg+xC|xH^o1_=!GATfqcS<}@M&UIqI7w&djlYHu -Dbjbs3a!`D=fb)c)`P-|&ok1y!iv4K(woBiAgq5E)<CgW15upWc8m#{+0NY@A}zDG#`!ivF_)VK)NQ-XeB6{t8=zfq~!XpUQ5@GEMt6f-wVa*j*Yz -vgqh1CG-G+_;aHC|XlVZB9I2g4d6tl_YR3hQuKdkHHp{Fbf}*0Hb#2&)O!##~rqVLc?q3+k|yCtS<=bJXkl1M1tow)9qxN>GC)F2_4k|$$Sj^c$;}QjegSeAy+|=y#{$GFx -_uGy0V%E(yYANuqH?sY3ne9GQC0cm{=_e7&QG=I<5pY>iKQC~VrP(Lb*Zai5_wqA>%x)981Nzwp|v(Q -nd*6#eL`a_lmwJHcJkb*X9i4kat^=_1{|MqS|e!Y&p#BIJwgwdFqUZ(Kix)vnQ%2l|^z#TE8vDN5(vK -1`ajrs+WRZuutl=I5ccxV*A{rx=2db@`0Z*oP2O1IA=%?ETxHu=T2vg2qJq*t?Ts=P?<+_8=OCJ9cW@ -pRj-AqETh_`s*tX9d}e}s_S=(8F26#AEK3#`JM=*NXP1TV%6TZIm?Ar3-b7oTz4b=cPagM992HrwOLNohel^PnGgiMx(9*T4#>e -rEuj9PVI_T_EJmfF6uVWj)oA7khXsv;c$}pAi6E1p-=Q`B+Xqjy*mI^|U9{dN~YLIuP8Wfp58Y8sC%gF~NRY$)w54IvtrhGPPuCo7at8Mv -v0(W`b7<_P*&=HxqmbYp=Qx@6GGM+pSsMwa|BUb@Ix^g`f&l1=X2~30#&`xw`BZu_!zIE}DQo^(2WU( -=r-cUMqCSA9T}n#^kliCVer8dZ#1`Tb&*LmPuJX*c5JzW=(2Shtu1p(fApQACu9eMHPeTj*0D}S!!gm -)~0uzS#&PYm!xTBpmDeL)S`WXzDc^d#;PJec>7?jiH{g-RQ0Yxo$^88T3+VSPk2NeQR+~9tF4=>I@bp -uH2ccu0BmHp$4E0b;u8@C#PLl`rO^Rz2Z|f<tA?a;5J0yQwpE%n!(!o -;Cj`qEFt1njsyAlFwK{tV}l<` -d|czIqWV?y*(EaY1KmPZZhw92d0q>s^!QIg>tiPMk;X_FG(&Go48X_e{*hm=Z37T^&tSoX(_Uu8y%}@ -fEL;Nyk=ncO@O80(GU$cE)zraq}_v7t*zli$lX+E8<9_H(#2W!lxgf>F!R2=~{8bvEl?&F*B(UY96YE -UvsoNyUZ$1{x0)D=fup2N@-N7s<9bN5ZA2MHzhW`imi6*#VsI;LTXtZH56Po(iE!Jcvim}dz4(4!Y)) -y)H)ipR(pzc|3Gp%Lhmz;M~dQJ7s_vs6#2NSeXEVtR(&$|Cro}`(dT__MNAO6-XdHh6<6EPD(;h9G5m -FfYenYNHll>a_)newj@{Z+{^=%xj9Dk{q)_%WC-3G0z}wtT>i#Ue`IDHdVFR67SjBZWMVCsIgqBSl**{bW -Gyw0sAMW_;yTH`BKy^LLOHb9A%Z)3FnV@H3AO%P+KHQKu$Cb7unEoi$^4V-2jQ^^iSSSHUMk+FdET?d -`waDc(>$`_h(UI;oFd$2qbcCWl_bg4ZLG3QjO>W8wsFa*bXZ*t&_`azZG&mb8!GlscCSb}HYFEJR8w* -_$^0;`bvtKn(Ae9pN(y4kz}yiVfs4^B*#;%c3kv+8(|ihXH_lLe^s<1}kSFg#Adbc@b6E7jx%@9&pJX}4Fq=P(k|x{hh^p_y4&l3xQ`?>fN% -;Ij1G^t1Dk-_06hT^2(loStP8~Cf1B0?6$dBwnk<*1DNbz09dn{@6AhThS7)yR3?^w=q`nV5zVddlg* -tHY4>ITyQ^Nfs4Ck2^-gp9kd>rB{B`fY*!Sx#kdtj&M2&G%Nj8=FbR0%{r8mn|17kVq)Vl@yqpoaKy7 -xHO{%*M3nZ(hJ2NN@_5TX}a%k*$s~KJ}Uzq=Y8#6H`We;7!ZcDqx>S>UhEOCyK@zNn4Wvb?H%xW?b>< -NZst@g8?8GE{b6&2#B?X6xx>YEfvM!0%ham^2cJ=HvzQy{hsy$Orc^0nv#bucm*dj$CGV$7{qQdRw6a -MFDr!{vdL?#csh>hOtVEObcYh=8Yv#UOc6aS@zo*cOU1Y}hmo!~(7*wQ}?(<6B9j*U+Qc!A|>rCVvov -j0?sOl>&%L49_j>~%(iEX+Xzbpz0JDZxze7{PO+HDgHKscVOs@Ht|L=P&ipl;3YOqZ`>qn@#B_(_~*7 -%hIo={IskkXV`gn?H7<+Ivg-l~4jI{k+0c_Lv)?e{}gP+5%mdQYw1NCw6@u-}kQi-hWNv=n$WM2hTen -3!ya2E5^}p$$1}}U&(omeIPMi{UPiI>?OUlLOut4e^c`AY|d+XQQGHXM{5l>JuXVXH5p60iZ3Cl(wdX -<#TBIwK_`Xpx!3@0iN16#t`zI^Foq?05&I(Jx>l4KD4_nns$`chA0FU3!@CW~mactJdp?gs8_(DRM+? -;SrO7@*;Tm}1F;OHUGWD}%gHb5vApKqa{BUl?bP|dc5UI3MU$&5B+H*K9_YUaC89L^bCbrcyCA!;O*Rff`FNuftpYu-xd+E&vA)Lx(cf31TsF(t)S0Yft;0qQ@L=H-s(*aC(9@bNnaL^d_< -x?3ZAw>xgBRDJB7cru36xo0*}!G4`4%c@JNxLe)ai_gq9B47dx%#B8MrTrXTL=c-vrwMMvAhY5jTgmyeE-_`W@pzfnD`=B|}aX4N3 -6v~5emoW#+BHOt@K1RQ-i|?1dAIkVU2>%|Mt-wFGzpzKx=Qf}*mRg&yND+gW`!o0{juaISQ{Y5bQwrezk>wP~2X`N)E+9YQS2{dbE#JSYe?CB -kGHn-MI4YHyF$%a)4JwwT^s^nBf^`mH+M~q+UOCL~Lk)WN(*qvNaIs%bfD*#)d?^Xmfep&p!J5cU{WY -#8^*)Bn7m_qbuwKzK9Yv4G-1u>y{ly5}{K76z%*=}-~I-ZIZOf2FyPv0T>5N6MFyd%QcZp!tW8!4Kgy -{oissps4Oj-}9;=pLsu&+4T()G|z^1;X4!^F4uM$><*96G@1)RK)Lz_{B?QWe$4@0hd4|Of-sF@(rzX -rM)TQPLH7MpsqBszH6zMa*7x^t`xfTipnW^D#0{OSf|dvI^`5)S#2q&$ZzmcPVvkVPs)E^(x!3>{Zds -q#Ro`MD3SzCFE8=X)J2-T#G96l&1tztifYQ~&lyC+(Kc!D7c_jBB2`(uXz(W*hNVccaHC1;=rdwBXa} -Y0i5RWJa)OD8V0YtQli -%l9dGQ2b(n&e^O~_|G;}BmSegYQ)`bt44g@OEu!-UaArAy$aQc1;45qF-cL4XjW7sMk%ThM<} -WhZ&Fkv_E%IR_7ZA3gmx>(Q$q1mg-~uJD@T0p3o+DfT{+^#3(%P4r5y1uEtMmFjzjftc_~NSCbTq6{} -ttkTU6zU;6yLwh$;U)$`LPIg>uAws`ibZUdj<)QIsP}zf(CPZqV~6N8EhzYLz1{zf3veSXsx$h^tbLI -9$urs;>!csU7jh&#(=+v#K3&q|ndOSJjTlRV^E@Fj+g|GHBVjQE1utwxxDNS;qZ}W<<+pLS;^A!mn#a -R14_pH6wljy&IQY6B}Gf(2Q8#64NHlh -_`P-)=2Ae&4`a)Y^fPBW>Z_55d~3~m0E0Fi&Aq46^cS_2P~3r943vz?Q+eCdbzHZcJ$H -fF(d*R#DgL5W9u0#81tN){ff_m{{5eG%X=GNigg~6N@5n5NsvC%kTfuhV8w+vi@Mdy{=vTSuG7~_gdS -#s%GBjVoq&H^-T~0Wz1cpZ2VK!O`YZjmpLdcl_nh0;2DI{0Y1~X$KF{wl&wyBTzg!fx)a1k;>IcBe5} -y8hz*x}>|NB`4s7j`rRr?Ve-E^+YLPOVPK55moomUM{k@tkA27r{tjCp&_dTWTY##f@Y} -$q2LozAh`g_7jchEe?eMp>WsTeC}8LnDoUP!Zo#9>;;*EF|HmYz*(F}Lm6?AoSJ<=w+h^D*c2TK^ -}?nr3l_?!AO*_JCxgda(~nC72$^c6aWc(wbcXvKr`{nORUif3gWWhuI%hPFfOK@k2kQ1ji)(Y-o#{ne -5#5!%$O!`66|Hk*Xqi(pr#ef2x^hYiE;7P(z{Reej&F*qqyXC}Wy^V%zF0#L9fThPe!}r%!cQ`O=HaK -X!ig>}&VI1$Biks~PMQVT^lo2bIK;1r4~ny&b9|$>^>pow_`K=|ADhnEy&_(lU~h07_qF+#caM&<|1x -Vvwd+Xz=Z@;2u)`6RQ(cE0-@s23onZf^%8fXblJ-`6!)-OwsdRGN^KN5_V>V&$i>g1OX$Lz^Z-b0y?V -XJmmUNW&ru#U9BP!j0l3#osI=+fyfV!lMWX$q>|Cu7b|D&vj;Fw14``Ub9J$}(0h8 -EHIg(^K*t(o#~Tm;Nf&E~HwEy6s##X~A-hy!+fs@e9QoV7#!@AiZnBXCCBwJ>`mUWy&sfajR>&zp|xX -KJqGdxsT=YQFeq0M|YMKI3*=5HCI!S)OAXVb55Yx!yY6~pxL@c&I#0)i4RCgI^+Accbppc8*;;PG~A& -t!-*l|S$$~{7gy}wh0S;%<-5lODK)dyPfsl_AG=p@ao46@Ze7dHt?Y<$ho_L9 -5FR_y*TqXon$>Ph7jh{1B(A!KeNR(rJ2k*UGXg&DB6N_yc9!mKYgeYv-uanjDeLUY}~p)h0`RYlS)i9 -MCU2XV>Mnll<>S3&X+sZef>_rM;MC;48OFI|^UP|LGWjGyK?9qH-cG=)*mab;jLP4xcRWtc!$AmOl@n -&7`=3)0}e}jbGX|YnwjFhbM~d -RNcOkE5g_oSGZHF`5B{by_@~?#9>|o;|?p#qTO}He8FkaHHy@)*;5&BXnWT_bb79S~H6D>5!VCTFz#Y -&x&vlAqjCgL0@SeolID+OB(?!(TS*^g}AJZ*jJ&QnB~+_qw}q<| -LppG^@sZHos!18Wy|NZ^^T-EE=`=THq6tqmzPIPu6^dtT4XNA-l -r*}+(4AQ14I(rJ%sA!aqP%EY;jBJ#woiJbFQ~y=PL?7cG{n|20F-lGYH)<#6YLzs?5WZF8RD2^UYr-xmjkalb`t>GpHYL!NRJUe&*V1X4UiKTrB{A1DJFU -{s9HeMC_Km1CwR&ttD-N#YGU;L7{1{AdN-D0E)L<*W&M7Vhl76ViC4iDR*X*2r3QKk~aUUL<@Q3wKwb -<`H+=+Ld+oG|@aYayA?e)Lt%Xbq##X1s9cVScZTj;`4a!FFm6B{bJ6^cdGM%y0x>>Z?Y>FOzd$A_F6z55;Gh2q=qq-={8r8G&;!{<0xF9Xz<#)6s1HDI#5c$`T -|%NteV9&(y%`|Wg2ufvk=An5^5^3vn!O&`yl{)B5kd!6GFr3UTJDMGh_ghaEOW%Zf3Zb|Tue3!1W5-i -456`^80+7eg$io -{_dYdV*Fv#R7hO?hYcz~-*2OWyNwOC=fFVt2=2W9F`m;*L{E&6iCMc@^Zjxhel -m54Obm227K*vlY&8KvpTf~(+DUVO|zLT=MG;yx?os{C>U`>=pxs~$9xt?1ozuuy;U55(>aVI6VCAPSe -5?2pGl}fIU()2lZy -k*zc6jB#rJ#%EgXRqLcp(H&b>?!H$6`(tCAHEJD*^%6E<~%NgwMg|G09$j)^^IL&F4_McSq#TAtuJjL -b?a8(O60rFK|KGLyb3{lfuyTzbVUxw3Du0xKmi>rPJuvy&x6_3ax%L0FbNi?!7NTrcw!CZ_i0|+K#u$ -hLzW;!_)WYJ)=AfE=C1xskKS+KH@JQiXAT7UuQQVc+g3oFFgk%}GoO|Wk&+h>a>@_)e9R@ZswR~%5WB -&eb|D8YW(@wMI-;;O<`RUKW|IyI9d`9jm>6%bpD{OmPW78u9tk@b_TCiNPBp-_ -<=2S-RZ_Dg;_PQ<*5H$&wB{4h>FRQ?mDZAV<~hG7s8gotc&;Y98)K$iUulI|lq%V7U#aT15}S3pNt^gyIXIf$({`K6{w4^L5tVYm)CP}WVr&Eifs<>0&6zn}0m-uRhNfM=;^=u|NKl8pIK6FehpWlzzup%C+A-I_!kzg*t5`uLE&k?*$@DYJTpuJARdJqgI7)y{ -$Fpr>+poCx@!P5lW2`2Q^u;BzD1nmiegUL=1P7p^hkHAW>j^G7?N`iv~#|i2PbloW|!FYlh1epX@f|U -gK6a0<>$U=6{a37#bQ8$l((QGz;x_Sb8efnW?l0>M0jI| -#}N9wd00;5CB11jh&(2&Uo$6+N{?^HGAv>ok{@v$L;>eKo_xQns7eV@FLa{Xvt*ukt$+8`IBpSseB8> -GWq0=A@u+hhu5BX`v$h0H> -7@eW0k6Sk0`h}`ickUdYy7xsJ#C+A&A;d96jIA)N20rYB6Sy(77D}{uc8ZU$5HMz+6syM26sraZksCl -dT%K0q!*>W7l`_^%(vPzta6x)d|{=0kUr8ynn(-jAPtJQ9BCjv -;vx=9$*|e2nHeID3Dz88o0e_27AbCNmdt#M@-odX+mZ_Mg+q#6F*9t4i+Bi+a0ml`b}O~2sl+{IYH<< -lW;TR4Dv|y~etAU`tQHH*6pJl2BhN1E6TR%wd3gm3)Hbj2@zwhI2k6?h?-1CrlRl{PHC?)PyY{-^?me -#W+3SYhhCY4!h4ddVFm%w3VS{fPGBkYH%@M;#j2tyOa*T0o)Ggyo(c@!c%@ZcZ#V6dFm^5i}@|3A5)2 -64U&6s)Htl4wsrq9cmzaZ0+wJb(+pV)|}7L&U{v{tJKXApFBWbGBcPNepfLVw<2WZx8$N|V^cR(#MVClgObix92( -PbK*lPNf|oTyCN;(S(gGJ0L?0Lb4cytefUG(7KmKoS4e+(o)~h9L&z -syP${Rnm|Tm*J3=m^bYP-MPCbuIn -Oe1`WS_-eCE7BdVZXvxm)Ez&tGr_jx;@?bT3N^l6 -)aZPr6t7eYCg9yWdie|3P;Irs5!M3FUNlvi@aie7f@~%1!K8A7byOaf=dK9ww`WtJ_0s{V$@|*WQ)o(t;u -@tbVmJ3I*S!4mm^x7Riv8fkpYW-HT~biFU@nx6y=?vq^_ph)DBUm1%e+!g&fTmeU3qlcrDGi;qvwv?o -~fmj~_zFJcv45EZ%L+@C)~Bz)t--{PbB1ATsSkeh1voqWqP3#)Dli3CCWI`3~6BkUZJDJI3_8{~4FD7<9nT2Fx -x3z)H8{mH4#Cnq%OeRJ*FE*H1A2KV?nTY==9WpU?EG6>}ZW-PW>1UgBhpT8mf9 -FWbEudxfhz}zG(z+3d3j{@$G?Wkl==EIf1e<&*=+X1Ga{VQK|sUkb;D*u`|;9vdwHTv<_mHxcny#214WQFeL?^jE26WuLc#0?m%WYua% -Y1v(Ompj+E)>f>$XZ?mh-+SL*?tkFHhaP_9(Z~M!_!AqS+_d?rr=QvK>~qh*@LzxX`-?BV{K~6aU)%Q -j8*je#_B-2mR95Y*-u3S8J$v`P_x}D5K0I*n&_{LYu9{KF(=f}SI@~h)tfAj5$liz(W)%@T-_0J -zq*Pi+5Y~9c2>Ko4ga-s3!CH^ljOtii5a8(Nv|I_sUPv`${Ul?lJ|9?gKLzi&}MI!bhyH>H^?`6kLJn -Fb%otOO{FZ+5g`vx!jpS|q&df9P1k80oQWrrf4c5-@Rm%>Dgx@MM^lb>0zG{u%-%PGi*`}879;KIX8l1s{IR24dKbaGk=jk9PlmYfXTdxp@G@)C;0XgHRgovqUaEGsNrT3Fa -@9EL9klL+u_0XqjLC^MWq)_mPhUZcn(A9;S8EqpP4>`&uddCWQ?!6q3hKy^C6EwqIZah(xZQ5CF3-td*p`2h#b)#JW{Wcx; -kC$?NfhVg6S+Bp6g5DTe}UcBS^(yq29;eKVem|EW!AnxnVs5%n><%oAl8_Qn7l%&&d3H*P36)1K&965 -#Mhw(1^G5>L7pKyBR@0GV!e#Mrn*{au~Aj!*bEB_GA)LJEJLBXjyy!n)#YzBLq(oeGUtn&hbl8vJmzJ -E)KKKqSOa799YQz?N)x>kii2~+W3-T9R@@<}sn&oA&F3!o%5Cuc^NU?6Z-Ckg$`XNqlo>Xf{kG-tjq> -D8uE6v$vlm9fYtF=D`ltBCAU}aw3>y@w1_JA_BYszfY$VB6K)!Pd -AbAp4K!pZ*n?A=rQ8Z01N#gl+Vb)WmLgHaZi&w2aoR42R`|@i(2mM2GK5-|ki^N!GFTQD+LjNxaz68k -r4**gz;~Psssfc^MIkJlgn@y)3`7fBW()<1zT@w#)7FXH4wJXWI5pe#^wBz17^mWjRH?bLDz_bNiL? -f9Aa_`hqs{O8>rnO5HWypZf3C(A*Ou{l=CipCOYSiz6UD=4xkiQQ_RI?0?!eRXDD -9%C*BG^f(AV~Hq;6dJ6gF|#JcW~KjliakbzpsJoPs+pz4C8k9u$BXC(eBvw_g<{JJdtcb)?I}Mpb3P3 -PV`$cqvmhfcg-{VS8tI#8$yj2!%sodg4=dF(D5P8tYp3VSGl)#{vIUkxgd_ZH*bej*=xp2DH@+y=GT* -*%p~aePwG>fdupbB?j5w1Ea)1|m54(cA-Yd20h`EVFDg}qjrKvi8>l2?(sAuHm+|iPV=={u-!kqk=0z -2h*SBusW%?^vwY2GFn3)W7xY -{ZR@NoH&m%5}0i3HJ6>E~$ihrf3J$HrTt`X`cN=dtmqMGun$c&km&BcoUTz+|+7hZlanhLTz~Q?z>*) -HZ2?T>3Ev;nSGQskLb)yt0>?8erZ&Kg6UX6lLU|pkR75L%Cp!mW0jY+DR~x4A-l;pF(!!$RPYR8QRzF -CauSKLETjgjTD>eo1N6;JlQKCT37?}vI<(@!x?CKvKK1HIfla1Y@NDnxqv2nhM1sTLq^Q{@8Wq%}iW~xQ5#D`_BljQ={_z -Pa|Lr=e`U$}2U)nu94#8cUIVG -AC!rwUFS`w8{l6X*40X0ctypg~+w9V3*cwKC-`|&F9~a+JDQ__Qy=wzwM80|Fd}ik^p}di=P!%ht5AM3`GBeAT9-n+$CvyXul`niO;ERfdmN% --1OVfhSKq*@K;YQhIV$+v%^|C~Q-x1DSGk?ok6vKbm{==F7t$KJw-9^NbB!DaXY66=Z(g&n6a2U?Lbx -Fq&XEK{!Dufq@{HAdr9&G}M{cDFTV$1i^8FV+2PCJ|;Lwu%BQr!7hSIg0~4?CD=mn1i^z!`1J(k1SJG -Ef;@tG1k(tT2@(lR1cM0-1nsm<vlF%x<^K6KpkL?hlQ{YLV -~Lt%>L^yT-wdJ%sA{sX&ZhkB9zSIA#}r~Em09l%FbxBmGz7i`0R(!2-W+@$r11K$@%ixK!&y>N -5=%)*VRzhdM>8H@zkWS??z!jKtFOK)c>I%3K4B+Mp7ii}A(m}kq;~t_wgA+`p9=rPU(4FTig%pek+rC -R6;l;u?clt4hdZ4(VNvmqKc~M&mg2vjoW=QttQGrCPM@uv^HqRd0n{)73h3o>LK&GvIbC_hsek|eEG#UHg@=c;sH -i9w9UaZ$d$5r0zUNkUaML0dx}CGZJ2@M+o3nAdI2-XEXJbF)Z1xA7 -#eB@!tw%YV@)c)A1k=CaY}WUjEjZ5E{8OB*TD6Kfoldr4!v^-i0}rr=9(ss9`skzVi6@?5Pd)XNsNWY -~e35P4x>d-sx8Hu79j<_WqefM3qZ{I%l!3Q6(Lx&Erk3asH9X)!KeeuN??DWYa?C?*Vef{ -;-eP45j`enK6H28Xa}o?TK$XP-E{z4cNf1VNrY-o5iQF<@|Q`Am -6~Y@|W1h{E#Y7SyzhRm*R(0{3wc_NbzS<{Dl;M8Sl*2Q2a+J{@*BmCB^@U;-Bz}KY-$!DE@5}-$wD*Q -T%5q{!WU2h~gii_+L`|Zz+Ba#Xn8)&w0fkI)M5&nnD%QG=9B}`tfx%w||!U+iGfrA9ZH@$S}sgn8Nsp -+Zq311LL(XF@DY~epia$m*Ud^X8kP`KZ)W~TD3V8e>ufpL-8M@_)`U+alKm{PcvQp -lkc?xqx;q7-&f3SUzSwVgTpX&7g9Q#da(2`j00|Y;1biAOx5=(V+M -zB*mB$#!>R-nCNliqtgc?K>z-I`zZeLNv7z8=$P0TiVwVo3=RvsCA|sBgro%ZnQ(pZb?HNf$SH*M?PK -US5%DSggoOBU3F*DMbPpzf3J|IU7?4i!$3-J@OhWqgUAlCa{RNI8eGP*X|AxRJ+a!|{k -@K28&W&#QcltzyU6S{QiLIFJf=_CEqO+(F;!6fp(VZsD~LQju>jNVT_x>LA0AvTFhc|vbNM6U@7dyE? -s9euN}-YBkZy#+yfsY2odaJ{3)T^q3ajE -TQ?6)WVzd%Hjrn$++V*kf{7)#&gB3K&xZ95;m^Ic<##M6m>i|b?Q_x9$9Ib=ox!Fv+NdDo?~VYT4UI& -tIh1ihgY&ududETaxU&u&QiaT#|+EJy#N0D*&~lU!XA6laW*x12h8K?YbobvzbIHiXo1A6r6AwGe17pti~g8L60Iux3wdl-832 -=3A6#@<1lI^95g*1d0N|NaB}5A7VJAJmcFd-Ulya3F>49MpSg*w8T6v+s?eLwmI!+L;1$>e%syo_+d< -4(-rB^ajPjUtZPX8^gjv!ovE53Ho}{gKx2Y`p9 -4WiuH_*#Uh@s0&Ok&YrMiBJT_ePme+@f?b$pL#BfD9dliqmHN@Ww{FGe(JD%V3$piReD@M28y?dij0X -R-Mpk2FmBw2(`Vk#-2f`lZ6*v_Gr_#gH7D(MDZWq6b;x<|0T;qk{GPosY4t<$GZfA`~$KYmYr&o}@4= -RZ%9`BhzA-D#Sao;Y^w*h_o%>~U!{ny|5B#|~9!3Rcp=))th*Zz(_2H9F>N1`HU`k4%(Rr>l$`JZsjh -aUyJMA=&w~(RmJ1 -SkB?w-Jz*=)bxhuB16)wA?G=Ds-CBe#JiQQh@#4i14Gj&rKz{IVz`r|{_W^2y!;!|QQKJR`Kf+7k|K5 -A=@i*RhgA;!I_19k)c%M9Zl7IKzcl_YNgZ$8;Ln0jF&=>*kCn(P2FTM2Aif!Art)L;B+2L?ZE-WmJUA -JysGL5T&8@3sRU3cAe5l*M`wwrIh8D$q78yg#nbbl-UXV0GHG?v-WuV23rREFz*_~8d$Sy|~R=K}{0@ -XtQ`OyEiNBXEcP`0?ZX^UpsQ@1RKq8uJK~c&_funKKQ6c%A;XnQK)7gLg;~#H)`|Y=1QC{Z} -j_ACX+S>@iVIAWBR{Uu^g}gif{8a!ADxgkO0RAc+s$GSaw5UKhdw}ZP1K#d{--Ca3b@f`R$G*f9rJ!N -w&Yc2(@W;`kM@1cc{q@)49XO&*P#YHJ;lqaoplzT&V4~j8b`aj#D=z_i#GDVQ#DczJC^L_}ZWg;LN!^>7(2zy*8+99yFU<&H8(9f5Da|B$;hXA=lbCj4*xT&7 -|C$DH3nxQ-zjMiAc=9+C0SIm~&;+j5(@TKuWc;Hvxw|5Ja&0WIr9<#UuP>H>TP-cad48wa0(@6j$)6Y -T;|%GaDvA{r8i|0jGZ(-3u#^T-cm8p5e94Bp9k=#JlxKgr?^{rmSHLG`c>?F_P|H9ElSZSfb%AO7eU5 -D#+3`$;`PZ4@+o!FfEu^FFyfLnaN_F1P2K-j>@mN!!;OmxjsI-9B!AD>1f0aM8bS&RwkK%tVx<$}{XHE_0GZh+=zv4WRaEklPt387Tr9BUUOd^@upJY --WqM`TevTUViRcrY7?c3MG|J28$pTDd=(0kv~T?JVi8Yw8{7vo#uR=n`n?YPdh2MXUL?4&zssaXi(cTXi(cTWK!r`BANP@_@kYn -f1z=f2S9@gE$L{jji|KX*;X9MU%qn;|Jxl#{_HZMVM!GKx%LPC=`S)3=|sb -vQqG1cs@b*ImyzX?(RSBCKqH{6T$!N7bD`Sj-+gryU@Hay!`kLGU>4O>@^;V<547NG5Gq9L?7*8qdpfVz^^r3@^@%!1wzlFa;G`vnUyt;yDptgYa3>uzPXn07WVLfQb -9nbI1CK|G0`N~YQpaBnL(ipEX#)x-Y=YPly^kEoB0Jdz|!k>Tsd5&?B3f^^crFL@h;zfS&uNl0`F^a# -vifEv=@CwoJccnc;CT+Ce!XLBV!XGRg$M4HG@q6;3xr=DHi)dI)G^`*R@U$Fb%st$?`~m*N3xfZNuS- -G8U3cBZUwGjKLC@9Dq0)l5(xF%Q&eBo5l4y8~Xb|n0Xn;&o+w&77lODB>;|~;?_`O8KI-+3>(NIQww8 -|px#S$_p+G~vQio13B5BydBHyVutfCKO=FE97d(2|ZT(Q@%(BmcVUVgByg7{0?Xn!lyA=a;?O^JayHM --&?VOnkI%Q8ahv$TZ*)V+`t_6A2#sUi823v&*0EsB`LnH%yr_B_TgQ|2^P}_J}sHa^*@vgExQuTAjc| -n`$}7YVG-S*WWy247BG8r9HQJt~mYy{;2!7xH!}UfA-mD#n=mD8K=|9mn>Q0q2Wq&T&Yg*KqkGq@+#U -h(a?&VY3u2Za$3KBeHF=0K5*bbo}Ql0pL*&kj()kQsEFHaHokW4TG6h*_~Hv8cQ6)ejTYdIz5%idV>PK=J&uCG@vg)KcUirISgokJOv-3FGL=@T(SJ4XMq1X{@&&#O=FBD@ -)!f{88YeNWl2E)SLa`2$BuO-B_*u_{}8Wlpn3m@ty{OgKy8?lA78d?8K*YE@qX*Aw~8^syYId$_yM>B -SJaWpS89ELKJXsqIT+WWF3=v(rbTkkh;_#iJWEj_zo!v?;3_3EE*yX`ifmzO8Xo#vH-mp}vB1?U8Bpra)%Sc5=648BJnjkbdI2+SklhA -|TA4z#rL5c%i7L>c|o^&dp0w);e3Vc}PQ`qQ5-0nfCwGy!PSDh)T@cq3oBbg8HZ^cm{fj!Fmc1^()qF -Xjd?(H_u7&>mX0cl6oba}Ug)*>7BbL)!xX6EAICwQAMJXr~DY3H;7G?-ca_8i4=!@#Fc788d`C>HsvT -02)w8mR%+fYsL5##~*3i23rr><`hPWaq*wcjrU{zUiMkt0X;r7|oTM3_@k^*=CA{Av;)W=xMOSz{=rxq?Eq~6Z35{+1{3a=D4o*a;9wKg`;)tN?U -I=M%_rb$@khSi;~%wL0hliWAF5kUV+-sm7VUxRn-jkY9zY+3GFIcL>xqz~C{xJ)mtTIF|Lt#o6Mf*{| -NeIo4`of|B#~^JLw)3(g!@i%yPL`1J+AiqjTpaS`~&$!N>y -tO0+ke28{{c8NLxpP&vPlfB17up?d65$Xf|Inj%gijbRrSBbj^e{Wv(=3#H%25z7WJcPDz_uY4Ml3Aj -k_I`ky3Wx(a16hOz{DV0W0Jwv$#~*(jYm86$`1t%*+&%cK<9{meQqZ8v#n$LRc|!(K-!0||;3@RAt*q -$_{82aR7y{pQ!1v%KlsVeagV@af+snNf{@(l#8PT$jZAlAEtg+9YJ)1x9zypH6y~|w%gaa>u*YS=%0J -y8)M`&F8*uQ|gz~6iROMTBe@Fn^n(4nsPLw-Qkp+EAb17-W#Yp?N#AAVTyv)YCMpj%y=$G8da;2HJ%0 -m;l~e0_cY72G}ed-sdpV;JwT&6Vl|@Wc~Oi1?rj;Xxbl1#dxif)*8b8lOJ>JNf-G{DBL#FTwxRf0wHB -uPf1_u6e58?@%{zLp`Y9GoJ;~%`^yBq+#1#|cA-9ql -74A5S|@4z4JfcSCqABela-+TR&5?ePcWjt6Q@uKhOy^1!}_KSTu(FQLw5$I -_*ZEP!7cw{+=o#>UmkCfWXA(^oMyipl;UQ_~`SuY5}sv+|F?zgRK3Y-$wKS1|(=Q?Ho46?2?o7Aq!~O -%2TE=XMP2cRbkN6QF<}yTVuz>wN_K2+p;bFXA0vR9dbFw)G&dU>f^|Q=gw;u~??ict4h8KDJ?F+Zo2( --Iy1jBJD34IA8J&=W(CN-`KDgjBg4zS93o5L(V_>N#JrN96)PNKR>@wG`G8*+H?ct8I3uACV5*!a_JP -wrK2=Hf0D+wxikjG8HQm5eQCULdf^HAI~mqO@tx18tmS@umh%H=I3Kr5(R9LP)rjP2b?j{=1%Y1-i^?ii04P(L%ni_UH8}g(3%rd@yqILHjtKI2Oe{fwu{M{2+?80pkHb0;2-f37oL&JL1;uLHn@d6z><6mzVd6$G -Zc67H9a@%ZA=3a*4?2B99o~KCoBd$B$Oy$96G{23Q|3Ch%j+4N?6Nv=9F$9xJVmzoRcGRWW>G?to}M_ -Uy@Hk*7{y+z0SudNqFZW0}U+OfI=1W_awoNTihd -;_ixKZIB7zo$>9%uNX9FP|>hq!}`Qyujm8vCZGih^6S8wUX9^>z?qN_1wR5~0=6+ChA$1tjvg;PoiF+ -z_;Ke2?7MpV)v@5}7%;|v^C(~7UBHTv(?o7O;78=efv*6Y5Exgi{qkN9h_>3t@uR!r;_-)1HhT2v%xT -l6r9&1G@54XGbE7Yy0nWSU<_p{qcop)hOJce0nK66;G68%9SmE%Tr1LaDiPzD=ymm?b429VSkkDD)omE^Ht4KX?K30578Lc+Ba<;k}XLhxd_8RO82j#Pe9$&$SP -mf;&G@_k?AU4c -#K=jTVpj2R>1JM<~g1%a-__<%NNj_!}VH@k1-&m$7WT!4Td=L~uvvhu}}$Y)0mL?V~*e>~6A+O=yp2+ -uKe=+NSI$-RgJVe5g*0 -9ztIEAsf`kBjHNT&}tL*aUVwm|IEJW8U-6zu-^wN899o90Qh!ym4}JvdF)p5B>V}6Lg0@2r!a>2Z9`O -zz<|6&J`3C^d?>olaGWKyAktWDW+-yS`qCl^YZex0^>oBzDt)b5sU@!HL}a+@dD62;KN{!NN^@w^&Qd -kNvdlm#plPR=qnpnDouhMKk9&Q2YMry3m!x+9k>SMBOXV<7(g%JKJ*2&fZm4AL_gnnP -0QmpOa(?DQb!#yF!7y?ghLv~1Zj(y?Pl(YGM)7vMv<4tx{n3(QMgxpF0z)@*bYZHxBNCiKsU5hMDbKI -G(K^PzKqEp+eRU0}?R3tWo=8U#6B_{+dl;J4E=O#20GpKrf<4l6z<0ee(hS}Jq{=BfsHMT{3{jpv3=- -m_=Vf?wFSXdms6t`YkGQvC>g;1w%YM5a%lE^@`tjmS9#nBuQ&TeOdM0{aVI!t(|`IAkxtCD8})7%&dx -pVqEj8_W~@wQZk&{;SD>LeD_=VVtX~s=$B8i58=!X#V8a7QAcH@K+v?uPf=d%a(IZhWm$VT=ecOjw`* -h8~^U^`TL~kQGNZDU+~^;!e#qO_OQw2ej|RoZ|2OIug#e==PS}tC+5$e|J;HF3og<-OP4M^Np%!2Uc6 -X*PuJ9%J9lpKtXZ=*zWVB`Vmt#IhH)mD-WPvA@U+dFHzUvbJ=JlD`0p&_5V0}%bs5DVY5$DQgYwD0o_ -bhRwKljP*Mg_v!v+3KAXCs~J^meync$!9CbuTE?IQnJf(=GnkhLHtiuVOGk4IzRwO{cfyB(PlbL%Z=oQDfxo!w#eSlW`10BJ(VPzQ2#DE0Ka3M>P%sDe^=I!F{ucZ__3WUrcRwI{6WkS0j`Fz1iw -`G#dmJ55`KSq_IaNh54#%lBfB8<7BD%?9|&wI%8H?0p2-*OpAE(zya!zmKE+se>eNZl6n -YwC`L8$UL{>iCUd;cTKJcN)+kaVz`&S3|Z``<1_-es?9O!NMTo@1N)A+vNGi-T0|Ks{#{DV13s0(%y? -ZX}+PC(tz%Vhh9#orG-jeesZ&;nQyo(VP^`6S$nI2*Qm%a$z{-HS4`&eFt&bVxO0hx9W?a7~@qaU;I3 -A=Qx*5*mutp0EO24XkV|{=)ie*GX8f7%K;0^|hK3RyW39SbMFOB+F6lgq7E7$F58e>#kiNyD~wnx>iT -3TNCbHx|AmMp#QPUXPT5O_TB73=Z?|?^ciJCt&=}S*TJhH6nJp>^(h+ix{>0QihVwNQT^F;#nq1)0-t(6xxYF!FGb5F!H?-wU+E<{3`uyn8=dJ_@KIRoco{$L^=ehs;+f% -aPGMHTpoD>i1w~=EY5&q9JDi=DQ7(nkE!x7Uk#Wgv-)%O2hfZMQ& -52joj4xP5p!fURK&aEcWNQ%G$K(eRO9yC%b=Xe%YYd-}FssPQU)tN=~oT()K>*H(zMH?d4nNZ7=F8Z+rfs>2KaPp -r@Cbn3|ZBl-#j>Mh1O=^K^u0USCd>ACt@ECGr;ei2SwOL}{TUDs|O7b&&dw+CXcpwb0VE9$K-sO531q -*LG=#wI8*%p>ZKs@2Bt7|I6S;2jgKQ+bA$fjj_gLW0A4USY>=*oG==ht;~DPQgggH*<5A5W$rcin}^J -L)*r09td^E+c~+A3u$5-@v~sP!)-Y?l^_=yI^{v&MJ;$cAjqCu6unarb9&c~7x7qL6AKO3L|KTJ%g-* -Hirt_ua@Qyr_m-6TNTK*yL>yCC8xNBU^JM5MFBm5VAxP`;%8E=$tlUvEAoT1cEWz|scS4XO2)OqSEb( -6Y7J)nN9exd%T-k`PB617LPURsg%g0@ZDrybO4hSX3aeWBHfZDsGWlk6+@ls&~hXrH!sIsbHyI=Ax1{ -2tzlKg>H*PkQrj+ybwGKh&S(&+)hUP@s4z>pHoS+**EEo+WRWKazit|EN5wWGR)(3}vD6sq(F&tB)b -cI(_TZrt^b_A+W)(M*cVDg?2~-E++6M?XUiq>f6JrfDe?^Y3;DN-q9iH(lnKgVWxcwEDEhV9QR}ZgrH -u=n2ub<|eSxvs*l8SRvNM=(=EwPs?h#KCn`ty4W7SpZu4F1XO1@G^we(j;5^eS=2b52gC)IW8-&8-88 -X6Ot9GV?k9$FWAGxSxchJJ(IOmCwn>N)x}eV2Yj?`-rl{$jK+JD3~HznTZk6U1jXS-&GLOSW>XBCE_Q -x1P2pS?jEitS_wVStmA|{hPVAkF7-h=1xB3{PJ`Di|oPv+D4D||U$&$sd&M4@l -^Z(Pj{yMx@h?knzc_bvBBx29L_&GHr#=N&-P#SSNd!H4gO -~0j~)JQqV6aDIncMKST~n=rM?V)Z7esFTgbBP%SrNsa+(~L2g#G+16wYh4mNo -um1qZX^rsFmtsb+x)deOKM19#QYm?$I9BIuk$l*Jf$=hPs4$hn9u5hIWQN3!Mpl8>*u_dI!C`K0#lif -34qTq!?X|9>!>6IgQpqqnX*#Y-f%#Cza=$QdwH~lCtY@uPtmW1}ti#p`>n_%Y*(}V4unP7TdynmB -XV@+F9d?raCp+ElW&2JR$!eu@(7Btp<|a?(Jq2AS^BE+u@9p%?w{QGM8)fg-`>H}E&_X&6;ru -i?M9M$r?x2cgr282Hd-2UsBa_931%Csz?xxgwIqAH-PalIEO&0?e;^+3=tJPKhi;Pmf%1E`J?XKO&^* -#fON}byHDjHz-q>VpHGVMan}0Nu%mL;Mv%(6qv1~b8$IrQ@KiFU3Z^w94O41NItxy_=5<<;F%|oq1GC -A>9C|l=7M`MHWol(zBF&{NENyC+!Q_S~G=&?Vu?M$-k+Yb>1dfNT$AvPzT>cStVXV2xk`3L+gZ|vr|W -$p;Kg7{~dyVw2Nt>rcJZub(rR$dpcyC=-OXasva`*FW@GCq(xbIm6V{yNvvF(z+eUn@+E3c89M!R$4o;f$49WO!y+^%M-X17q#`<^cMOfdZr%MpV24lujsGq@9GEj(|S##k#Uc)n565h`Mp`ws%tf{8d}WiL9#W{s<6gcmDU -T^%hoh&mUYZJWu3LYvCdgptdRI)B71?o%%-so>{IqTJHc*dH@92avK_K5o7>OY3TM3YoHK_c^Y4O#T9Q=u;r;jklFO$_bDiejafxU+*ov5SUtUjn_si)Oc?TmJFsHWbE -sBy-4*PL#>XB{ElPhuajn{CHlP4*yS>yGcd?G*B{dy_>#rmU2clv@C6emaFeJ_mLg -^mwDLy#5_iNs@NK0y=bknPFlB-PMU2mu-7{8JK1~;-^kzNmF`RK9CwMk(fz@#M?BKZ`r|JKr&(fFC*zMP=j5WsV#%5!;ajS_%x*;EVN`X?MlqmyA+g2#+l} -*YPZ-=+nJK!DhKKIUg=e$~e1OFDkvER&Z<%a|XQ-oIQ;2OOtyEEdPtSD23m8igO;aNX!Ep1+7|LJj%syD);fgp@L&lwB(Zg@ -Tvu*RUO_7+vk&AMrUM!Cluo70r29iD+&PEc?jboKDuA9Z?u|;ett75OQb!ao5%gJ-foI~yr_o(~1D|xlNx?Tg4`desB8}#6-f(ZESK(EUZ?BbW@6aWAK2ms(pnpT_$dI3&80 -RRBX0stQX003}la4%nWWo~3|axY|Qb98KJVlQ+yG%aCrZ7yYaW$e8Td{kGNKYs3=ndHt)0(qId@Yb0G -XeR^I0!c_}Yi>ec5~%Hxq}8pvO9E9VfZ7yL(pobCUxub?hoqvxHPBkk%vz;wq8)7|z`7fn)h$qK)m0K -`-GtB<3Y1LSFu(6}&b^tN$pldA{{O$vZ}VZeZ|6McInUd9p7Z+QyB}dD#+VtuXq2&MnfO!L<^L3kv1! -hqPGjBHU*{(RQE%A3Hh4?Q`kchvbdzrB$`j5q~ -%w-Zp#h;1Qwdk4j%jD+?x2*CXWOf7H?3Gz=Ev~z9O*JG)GqIbJP|OOM)n0-}K722c3@=`kSg$;F`fE3 -Re9IF`dhLB1?^}y|P7~0E-G%FhMCm@h;WJ1`G$L9t1=j$!f&O(n -iV|tL-(detGPHp9jZGETDg1jO*fjk!~@5r*D;lRSIio>_aaRoai=o*z{fBk+n-6f9r&a1qba?5bpv6i -+*}}XKQ{MJpVB%cwwy^jI1{W-`!{qjy+%rjxCo08~;uXZvJR_@N;z)!6xtW-~;#G6s&iv5tWqzpPP~P -CgfR;ycK{^9z0v~Z(RiYZvj)s*Tkg$W+smuw6WTQ66?-mzQ}49JA*og@}YWbSX!~m6-}*k?Mq$5lwud -dJ)?V8oX^x!TuY7c;{Pgq?2O66YU#Sx%xd#ozDNa=&Kxwc+Oib&EvQ6oGp=Kc)Q1d5(%Fub#d9$vh?p#`BojlWS6>C+~5{Pkv&y>B+VDM) -}uVM1FQ%F_l4Z*D!anYd7w9)4i+MbuaGkrTbjEPr-f4Ut4$j18%K(r#nZ9rY78P1x+6V+`Ke)crAV|R -~_KHQXd2SJO%IYb1}SQE>X^Vt4r3r=Pa439HQ$9jlM+ZywkfziM}TDMEdrEzIjYSdFpL+ok!QxJ4f?Q -w~emFbDfLbM%R0AC3-yudQAtdf&XEmG0_^dJWO;a`s;a##zbqPIniFH^<$tlm9thWli)uFn&Qc!!_sUc9@P-sKkOx$w@#-+>n_;VaKFGK!K&;v8{!2-QV3g$62GH7Cvvyk -<3CMk5@B!}KMnL@|$Ge@I42TYlvL6ZZ|S)miA>`)DK?M~?0N1$te4_*5hbnPFZYYe(ZFfLxy@=RADKTe5+7c^=`)cRkN>^ -a3Y=zCb#rIHc#DhfU&|nGduGG=-{bnG>6_DCs?36B8L4G%i^0xIq!Az}`cRA`f_r2w9#=0DcLVLv4^&8W!8I2 -aAnRM)7tebGJcqhv1(}lc7{5dYk+jyPxBO(opL~E&>4M_V3)Eyqj5hKsQpOUS1!5`v{D(d$Z)h`7$Zu -h-Zuf?KX2Hxzx_t^M*oiFvAFD{KQ*9pF)u<9pZHwaHE_X)G0`8bbI-^UzkNkud|&ZA-AIel7cirr>al -9McE6AC8$%G61G;COB@^1*=bR^kIQ2|lPgA8u+h;!d<2=Ywu%G`yZb+hR<6+{g#u{8(fnAI5nAJoxuf -@!dBX3q$2~Sv=BTe2c;)lF@|q -%jYW5oj>hZfDjVQz{J_ZRrH^zFtmT?Nk@l-iI~FIYhs#h-nVdGV2e{Jvlc2jRMY>&@z58|iSPK~y;&R9lqgnfE0dfrd$KcT&&WzootJmjtXxN0O2O4}e{uFfZR|`@^Y*2xc`TL68-JEu6Q -0W@(N>9P<2OS-L!MZAmO|G`@I{eqt*nvVhIh9mvRg{8uX;68MovNos@}V~t-!+0sCznZ`w!5fB2C?~b -u`*@IeS-`s=ftTs8!0@;USaKU%`}qwb6fD)qA(J5wGHZyo@}p42Qa-;@xOB(Rac5Xf2gZ?c)A(f)|O( -TMfD1kjrY9U&YeA-Zdp_6{Ww9Ib;5jdw-XE-u^D9WEzoXv)UD@y}v8KPnE1A1Ie8;**xFf1l#mQb<~X -?r5gbLYg2lEryyM&=rJMPP3p65{KnHMNM}uu4)X8DZ_@ksyByd$H-63Zp3<3-&hq~~K2zbL>;9ix?v& -+eaHh2~#`pCm@xETuS5hrUOdtiUpdAk}pTl0&q7~G$8xH_!! -+_y9Vo;h?(gY_rCu>jtyfOVqTcSQF2jtm0kA{T2{m@mW0U}c~3&5Xf6&@};XiUl)SBp&a#H9z(&{Mhp --^MXkV92hS%hnIN*WgkbmgYajm9%%{6ypX9zM6CFWu0NMv-dcfU^ -voO}vb=XxpPE*Wm$)6}`I66*vLh2k<_C@>J%lUYr8B@Eas4BXAt=H{*RDW2co5s}UEzGpX!lIpNz=+n8!zXeR!+`%Ihnki?}Bo5r*_2nTlsrOh-JD1Dq@s}l31Wiw)I=3>{g;>emXncCbxB*fv-jJ3zv!U{)2-P@yI0J -Je2LinHuIUaFSx`!wW{o|%oc%XoHtUTvf -2?HT4(WfE&#x~FsIpefUXIJNx*-fwmJj^qLM0Oa{Ab6NW!m52Ku6OB<pG&Ss<&w}1BsBN -fc|GIP*UMjKHdF1zP-F>7Bd97P_S8tcCE2$i!DV1Bu%X4@Lms_uEN72UpAGrd7x0bBi`cOTv%*5;BOY_vEYAuIZeszG$E)+eH{gJ}c?h>>@mynKMRcEuwDn -uF0>{CxY|urOS@&;H-cW`bfu4qpWg5#vds{?#C@;NBM&7!M(H^2fp~ll6qnu8eHTEGtOYiJRLlSRp&{*YHL$Q2B(izjZ~$vFyTh_g!Fja?oM}(> -Sge>cXC>UD6J21DwWIoj*`^3B$Ub1WT}ySz{#V!fTxs}>ZZd!n_NDs!;jhbedBhD;42L6@L*P8$S&*= -!TER4$;U>QeG)oPX$U54*Ny?$s6TR<5jN;-jRF4zb`UhLJ^&aeAfqHRgxAmUOzkd}MK<@Rc>X<}_a(8 -Xs4SxGKG`wy-He)dd?~E96YuF=r<^tNMZ6oZ6Ai?>X1u#6qxK!uuF+!-?6l;|AUf#Jqf}1Zy9?A0qP- -(~NO*n|cod;-gyW;QUxNF6axTjJ=sSZQj+-}O`pik`bvzTbJ7gQq) -<}3K3!cA+Hg>sk*meV}S)I-r=egB)cEcxKz|`=j2h}$JG)Jp79sVeM$rJEV-MtH1t&l+%WH1x&Zvovu -i!__oh<3CSbXWuYGEKfC{x7Se3hbOSojv6RE$c2WZ@URT$HsgXpmZkKH?rl#$A8eS(EgAgLUtk(c7o?mRU^H3-4uBhwvcQF`DtV~2oBlrp}A_9!+=-+a}=PstAa8(?`egs -mYMdS0u=u|&5y4H?4b@H{QqfiUt6Jq}y;APWxgs}yuTDC1|s&y1fX=v>SqJijF5ZRnF~*lEeRuf;sIu -ANVyYv&BQc2;Ybe{oT3m!+J*H^!(>))DH}-?iif0%M||_GkLLyxhRUgfnnBe>6FG_Er{Aq}(M#pJZXG -$I!=Eke9bgjURLCDo_)TR>hLAZ_02pmE>w?&QQX}+YW+swe7It=JvZ;}D0Qal5uEPSyTUH@ -LZr?zt(&Yqcp`8!{y7MIJBG)FBOh -dr2z`epS;(z$7`{H>S(!RooWsgU`kBg$@tF&iRqoxt%q(fHqVXeWPa~Cs%QQ`j1Gb!)(W|$0q!8Y0w! -suF>R2pb313LjQ*ZJeCMviz`6oz5sZ21{!@Y4sXh5tnYWU?|OZY$}B>4n;2Inuybg~qoz5qb1Wt^GlX -m^OyEglw=50z1NSS;usQgZOWS9{Z-f89dI<0AKvuv8-eoI*5r^C7G~D_$+{k7+5To$2=5yb-n#V<&-V -(j7pI47kdB|6L0pCo3y%Y5=u(HF74gTr<1zS9byDHP&r2~(r1%CRT#>4%26JmfZc)u>g9B7tpBUyky1 -bb5fx?8h)OUjB^Bj{UORv>&mr(_#huKCVcXn#l!gdFB`o_zd0P45<|k;moCmH1xzCE)%ld{45+RA1Ng -oiUvs%qLttz@?G$---O*FEqC~^OQ4N(^>5>@;Ms{ww%RvXz4_ndE)p<{I*hTw`Xp^`BlJ!%#{P41-R; -Y=1i5ReqO-&C6T8vE>Buqo9?|V``TTLcpnA*&j8XX1LT9cHI8EaH9E}G|lX>#d-@1ymGc) -{i@UR6j&cHS$@ax&E9dvwAxwAY%&qS{-=)^Gc5YP93Kjo0I-CJ4Ur!u!Adr8l9zS6iLl_zOBXO(?NIJ -{Nmk;js(t%HC$aL~cwp2xLI?rj>T*bnt|FY4VggnBBb-lj!}0Z*E8`TI)k{SeaLCgt`I!|of?_u>5lD -F^AZC#0`LOluu0Z}V7MTgxF|D=iPVZnAu})d$=7fg}xg>6!^LdGuXQr@f}ZYXbibc+^Mq8t|b0nytv! -lFxWtxAtApKK>r|3A)uzdYi$=VZ`_g{Fw;()^+SdFX`hd<371WZKCM=;p4F)Jz`)rY)o&AN67x(g_z( -+5^MkVJk}nRcwFFVn9tfX8RNbQ8p(ELHmm6}vBDX|8*20RdjfYOZ6|&n#96&)chR1-|3u>Up^&H9lNV -?J>{r0E-{7|c-*Nz#t^}_V>25~c`!Jrv_`x44VsY`!0G{_sf(|;)kMQSMjHSPS0q>jeyLx_%1{3?eem --93FKKmh+gTxOMD@Pqtn?nd%f!1vi9O=4xIIiUV4aQZH7jx>jlW`A814LvdF3f&$6jPD_5j80q)P)%U -v&j^jNVK2cJc>abmiFt)A7Ah%S-mG2=_fG3q1C`g7O*#y+hF3NEc$vP7N>k?S&ih?oG%7m-G7ah=>7w -N6N{^Am3dsd->yr{7BdRbuB;1E83EX1w4HzU&MdDdBjsSa{oM{pBff@lbIpdfSttiyEVQj;Pai}#T&q -#`iY2MKVv*Lgo$DfN_&Tvb_jTOEmupy%c4Kd6=}vEI544aka$=ok#FIvzEKisUf0t8b}sQs@b6bB1uW>n&t_#2FfGF6 -SH8Y3y{WLpf)LzwbfRS_B$2#7T=MD1T+Zqct~|6U!!uq8uqf$VtP)}`a{f`|ET+sB!BUCj`aE}(3X6wXEa(WkP+utXCKLh(dHQQ@p -O;{%3q+_tRV7}?1ttG8Lp5;-$H!9j1dm;#$9kL@ArXSd5Zdb-hmzx?xce*@Gp11=(DYpsjn&qONVg^y -20bj%+9+f%hmG+xl$t=lh{X{Qszjxg~xO+Dubo~_3v57j`a<|_i$0%H(ia8ohsOGqCTRC8{c?52;C)L -tUyv;;Cc6$0>gHZ*Jb!Vu#M`arD>U%W*9Nb2-=$=_@TBI>kGrkQz=$nMc-P$*i!9EJl1tr(7?~HLSL@uw%0A00|FPPc;9k;Ailrvu1Iv}cC+ -sYd|vo9R_ZT{oaZqe>L)cn4Ov-jto#!2DrJp9(xnLL$i&#nSP$Md!$0A4%8Sv-X -rHLPXoDOTm{=~_mN4PMW1*S2PiKvJxNpc;!<912bxX=hr7X#e`wl%vf -Q{bD|}kJOJi7ydmTuj290fr)-Wd^vlxa`wM}<&ZomGj0}glN^&9;`5>#Sk3DeR@65QKGUhs??{t+Z%i -p?0b2^oNQE6w>!`au-Bx$|f)C~19+GpH6?{m!T}hc!(>1@Z!y_ptDORdV@BJP57G7Mfl9WCymlQu@*? -&Vi@?LlS-cKvY2FGgz>e6s=0_S6-vWMkbZo6;BHo -%=!c==RjgR#!PYTt#JyHt)zSxPK;9zC8tXcm#E@0)J|UG6?^#ZTxgK%BJ#f2dod^H;lSaJ*t4u3e<)0 -vP-sy+>(vg$)?q*Ps3$BXx^Z`8`A2z8Zx=yy=d(s>T7&ZZS$r2`52R1tJ4b9sZyH$P?a?8A;{!N-#gL -T1Ju8-!CcAnw6;Pi9dP6W_i8jt1HKtoJ$3sk(2nq`1nmg_O5CHqoOWclE92*mV|FMai3538ESaQf_QzJ% -Kcs!=)o2sRkHI_L -e|=Nye->jJxgqjjsazW8IE(hd#mmYJ`A`nMKaMme6OG|zhF;58Bd=zwkvydFMnyaIAktC2Mv#~4+@8e -Jsoq;bhhK=fYuqQNv7{g1dnRbwDW|O8n#^iXno>MJ1U-gLHcy{L&|xmo!7A<#pxq?eCP}mItK)u+uQ~ -)D^he0^ef*xRUeMZwe9aZ0CF;dJ9W$hEH{3ELuAZJesAH^@ -EUMsz)E?r9L0P`d3B0pX|RKb?~EZ#E+pBEPM#Ch$m#<^OqO2)_@LFKY~RxAUK_}b^S?`)pKGrS}S~$g -I({=RU;GUr;E7(WPgqA((l+rAD6}+pD?@|!u>l5{M&Ims-^oe(*1$Oe4|AE${xf*J~QhcHnUvVLrx=! -WGh#+GkZXL#RcDxzDri#&L}4SJ<^A^(h437Q@lA_jY#_oTA4$QWTQ-)Pd$zIQL16T^*$WZnQ0@73qTkCsRhKpa1JKnIoQVu(c -FRcI)}7=L)|(zMaYjtiG9CPZ!sVcJ@e#h&|DMNdesl5dMnpqD|H)sy%X% -O@6pmfxiO8sZEsP8BZ{t50cNW341rzc-l&+`oE%Kcax3#L94=F9Nj&%)>Nj^;)vI(`$&;XY3m9|O+}t -(d97ZV^5S_~CJJzKA}}N$t16zvey->>PZWz3x5caT*Za*$ftTn%QESFRSpenGXhZTqvE6_ih8;ELL1UlHr&DCz(-E -6YM365$1l-%mQiMouDc_A6gHX4bD%uJHLJxE$U$s|cwtrW;<3KE>YQC%c90h3tU9!AdUz>fXC42<{mP -`zKOY}=eg^H=QpDwtAfD-yd5j!JoJe?PP;92_7V-Q}lNfV`zP1lNpgv9d@k`LL#gNy5eB{TH98=occ^ --%7bxAkVf7`gWuWzb&AVGnq9O!>1t{dwGoQ2ocY$@Y9Hn9-<-W?FAj~l&q~?Y;@UO;I -$9&RdCwN9Ul^NWHdhJc<$x#w1dx=tV^OXz+8{SvS@yPJJBK;_tWv?G|RHoc;WvjQB%5g4yyr=8a;qhN -xv3<$D2%PoeTJ+mo#oc@IOlM%_5d3`O3rheX??91NlNaFJ>gwP#^#JbDqN6#_1}JT{6dK@_peLO(094 -iDytPwMl8kQ{o~it$MwOQ(x|IPk*_?Dp~tolB1RMYpQmB?17(+kLO=lYXT3=oOd?(57S+~BlB>LZu~( -1S#6Hn4Y@*3MyZdA^CLS%K0o5V;7ltYdnG^4Qvkkr#;RJCX2I{J;CB}I?I3>Nzj^c{W94nz^JnhLo1s -SRpc%c3pp1v`t_ttUOxBU|B+Yj2w*=HImG>i<`5a0XklEJi!MUQ(f`LbZ2iYMi`vT&}I`imHhTtbg;W -MSccNj+6h2`$nlepTc&5}j?I}LXEs}^>c`kyKw6O|HVu88sY8U8x=-6}13SHK$gQy-Lt1<21=z=K1Fh -Duhzzku%+XqIwD=-YnyZ$l`f67^^B&$U>4M>JUtJbyO2GqV0B(0O?j6Mw2qn5J%D=(bXX1k -x>-uU0-RuT10LvKrzDNMvF)J_!XI(qkvHHM_~)xzp2T;;Z+%v4$3AJ=2(1OFi!>jF&*7jv!`u8FMdEJ_!i3e|D>L)JA>oUp9|+RsTcDK6&<*pXARj`N2or=s% -Mw<9q_bPp{*l7))`@?Wm&9oEpYDwOsC`+$pihVuGQ|?yruX#EQ$Ol!atK_!hrXA?gI!J%to8ocai*$E -FQ1)ib4$V=KS+IslIW|9$C>8eQC~ULi)g$L -wz33zwG6-E12>2F!M9%kc-f}pK;QivM=QZ+;{T3lbZ77VOGn{<^|VU@#wXpPt^5=0{}A%>{(%FQFxvY -7wbRswT0gJ0@xCqStp|Er0KHY3){WZ1b61{yS3hXdkY@>q{y}HLd9l=w&F4d#N0)I}`)>|6BNkf&ee` -PWK(S^Qasa;%HXxU5UViQ_5A+>6@RS7E`Oyq+QyV4d0(^)<>KCWJq-Gmyq&_d2Z$dgrb5ZzwI9!F#C2 -PK%gZpv>pZp?%Uzo)r6vJ#V(0}z@-nNE?Pm)+}u81z>Q_)56pLj5E4Qq#wn*oIhXOi6KurTqnS(Y0gL -OmVe<2Qb{akSXPdh)|H0~ogL|l{?^JD2dXi+@=tvvRvClj$ZbcEI``sM6?E9j% -79_q-Nk!dG9Q-G%pc-ld~RD7#!+A!LXmr8AawHr9=&(zSCH#*sbMx&HyKu@Q`Emhu^&ZF`DCW37K60nQcJ*8^Gr})SqIqf7W0>VSs&?7+>9?#}sF4o}1wJ8 -Dk&s@jJM$rl?{Z#+k|*8;Gw@`DaR!?}+#K^e}_}_WaeXJ(v2$FC<6EX1_*bW*2UyG0z?^wGCR@I(&N? --}H39*V1{#7!a*L;PZ|$TNw4zo?b>a1?gy>-C2 -mX@0tQ0<32)hSEhzDVzU?f-o7|FTOttx*U5uIg+RyBK -W%QvR?9=oU!-ili$aWkB_f0G0C1<@aL-hSRC=6BHla_KgN6ZVzis)o^)M|7SddvF33chA>Uc(@$Tg;k -c|30j(po_4iUa9CSUa^zU_l8Iu4sfu{hb7r3-|g@eJORudy3>(vX*~ztYx=AJgMMLp(0#AxemCWF7~; -nHR%>{Qh3t(-^j#=BuXlI(0IO(0r!X^2C_9alB+a-cJx;{?-8ZAwiRjTrCEpc$NG5MX5FL=?V$gj~DP -Ucpkt0pg{O5_hhm5RtNR@j22TKioxo#)d=+g%>jR#v&Ed8BL$)jpB#@Rj=P^W;I@`cj=RTWk;N%B1fR -x=!YJcy(6dpa?Lje*o8x;Qf9LSLIf34yTWOO=CVwaSwXdmPzJD-p@{YadUaZ+SIVcC1u)Zyx -|07VE7u=MDccXE^8WGDduCG@Q8UMLvz(8hP1}9T%8Ymp3zuxB(c908@D(>XKR%u0vWveIFiD@^`&4GTj514AE?BQ&RNIB -E_?*Ryc+VA5!GdGct~BsE3b@LVI8M(;qH8aeXzToyTd!V-)=W2SyQUe8A%Cuj$Yfk)3qGb^GoZ;Cl+p -4v0g=(5fOOZnXO*}(N9Cf4nMzqS#2O!EUtkM;B_{EL0-+$94w6%jXL-=Py~DV0fm{3p@&R|c1dtxZ>D -R0T~m&fx*A0@s3O6XQnF&TJAfR|fg)I(&+Omf~HP>}YkKah8yupNJ3Xm*K+`t{5Ng()gez;6wWR#s|< -p`O>^N^4IgCX%a8)cW)tH{9@jf@uL6DzknA>;KiVG%b&*kCnv7ERM_bqPQ>bDtH@5?0^0jE--~SC3_j -jd5m`Fge3bm2W;yN5cBJ#m6%qKkBY4Nhbf#=em;+KU}n{q;GHs$w@sy1TnkW+bsp(nG-tbHU1|M07PjGir3Jj57u&mI0=_ -OIz7UI#p*!HC8*qQ8*MR#STA%6y4x9wht1{hEPM`H_a2$nYUOx}KEPw~#k;v3QE3b+eY?!~Sl2gkwUU2eVT)-To%#rxBjv$?K* -KaqFy@U7HHmPXX5meAz3;_d~4aTi3GovbnDHe+j;kS!yIcmYiz*4(+vv*0R2>;e1}l8Mcb%#*4M**`c -CT)=qOFoD<4)tRK0k(dbg^LjIicPX`g+8~6u&8zupdb*V!cU?G}u_=ryiOwtVZf9SfC&GG-l*R+up^LWs2ln;-UTtwDIfK@ -Ojvw$>Xxxx<{f1a6Irjt$WNktk1J{NMh|}H+WCuQdzT!7Azp){UP{H>%LbWBwvZrE|dr-HL_BoIfgWb -rABCcVmK-XqbtcDGQ%ITjGm;mhX+|xbR*s!l}e*!@Q0Smk)d1V$jCFMV6@E~KFx$bG_brP@+hreUkm? -bx#qu^Ci*X8j4I1>=vvW^0{_4_QIGSq4m)oBV|;zTJVkxCB&hFK|C;)4Lp}ff(sk~aVs-xL71sG-L!C -dCpw4cZ-}xZ*fAy9Uez!@zrI4}0VUyw+GFd%kQVO4^qs;Ctp?9=K#%_jRi&);PrG0%C{Gd6op;^+ZGA -VT(%~|u#=`EqO4QK~ENVj@FYosw_&)BgNy6=rfYu#e}Y5l@aLqz`!ruSLKs1vve1JGaXo+-0=`kIE{dbb3lIm^b=3`%_5Hbnt$3JcJ)J{|u=LH{&0qOT!hsNYF9Uk?)Y*?3<@&)1O -8hdg|KkG2Mm@(lBR5fnb(d;2sNG5S(oS&RYS2|jNIEZ*NV<^0XW_}+UZ_@d2wAr9X)e=~e1_9N95S43 -P%th>Xmt@%iTe4!k_g>`%HyNS0Y4fmPDWmeX>dm0~`dc?8c9B8g);pS^u_#PS?2Y=Uj)NljvIhiuLY( -vuiQh$p!ZrmU>4pF=GpxS0_VTTvYc<|^$87%OrhIP*p-l>H5wP>?aQ|%snTiLMb+4X?ioW~kz4Mp=D* -4RaT%669KuKJe}w^iZ$rjgD3fW8hwVMW<uBsUDEi#%kBD_p{|LL{!TWU?YGlY{>qoo0!z0;RSLU(6`V1D?(6aj34aF?{ABgk3OVsd5Q_9M9c(zJ -cEooT7!Zfx(?MUo{84hfp0$s%pW}a^Zmd1?Z_MP^5KPi(0o&Z1wQsXH#Pib_1ko -p|sU=NJTiep?>*2Kw5=n7@UtI3K&^Nvy#JIPCdq)d_**Sk?JFJ4?5;^alr_ONhhGSe4{7S^NeHIJeFe -k?tpK>n{6WlWNjLXFNJgPeRIft(z@7~NU$SIWsuO-^R~1#%)}gpJF{DNRP!8)W1gnvD40nk*v?Mj5$Q -`1j@+x8A?!bhI{}uX{9^G3r+EnecN*UV3dPk$s7mpM?hb`NKOxel{kMpWUgGZOuQB{8$aP#y+}i{g>4 -y<-N{oFXX{`qmZFKY6l@dHps_z$j@yJ4P1Uw#%)asmz~=nI~xGE6SAX1W;!7|eq5_;Bs)KtU~7u?b!q -QJ3oj=puQMSh&2e(F`F)m?=J!cXRvF~vkD8oRp4H_?pFl2r3GB-1IJsDn@|VfQcF2WpSB$dZ(qx0|ifD&ovO#`4*^qVMKVn`F*^(^VFl2jk|v^ZAs}lRC6 -h@%;ewp85fT(4l(VD+^+M7G96&18DGwJ^()d*OPeuZ+sj~@>2)h@j_O48B>&dNGtb##I`i{=FAiQ4_8 -`te7RId(hsV`2*F9>a>Zk}mA|dq;+4`fbRVG4q~UQHnjG|8o+ey=5s!$rkVS?;`)xC0wy2Pgn+YHLO6 -XUw)uSw7J?baagVrtU{>PAlxHbVUbp~A0FM*4WgB5yHHbdg`326f-Uptz|IGKEEGJ@bu#S%oWP-qA(<`8TjI&1WV&is_mn;>Fd!6!Re6G$-DJ+!8}`QrcvKdx#j32AR&oCl`mLB*ZG)M8)IGniqszpK3nXDLyMPOg<(ECB)#0$j`|`{FAaV -O#HY_#LI+#AB`!(+q_EjInby!;yJYLtQCf0Sk#xI(WV!a`z2l~1WDQ&AuGR(KR6#wSSm*?M0Gh+Pv(* -N@Bf1ZD6M~wXIGVt#!8vp9!_~$q9?;ZpHvNZnP8OJ{*nbq#T4F3kl`Goxu@8 -|R9H9<1q%>Vw*);wfYahIg{0H&xG&(_n~L4GOls`0^Nvv=4t-zhfS9rjebv+#tk`|k!?#lZO+m?eiV2F<@Oi{Y-fA`6X}Rh?#9Av0rL2`CcWWP`y{sG_2{`ip82CEz -J|6XX8+^PT?$b$GcJk?{&i7QXfPj8XC_TFE2@ycM7&vmxW(|_5|B4jV|N -7MjrUPh4DBZL!OEI8%&&!2;N4&M6#(}=~@5L^OgSINsxZJcD-;3SjO^Mg7R5{Jh@C9E#^p2zRB<|L(6 -|Tz4NETj%7@(cQ2b_diNPQrgwfzOz)nTFRgcr%uHe&sX|;Cqeq@+V#REU>VDg*P|v)590F}^(el4li{7NNAcsIxBQ9khZXW77T0yDF -9W{sCEBo3gD(A>6w{^G%rRZM?=re{()9l6QiIl)sAz4NA8pur(j^nurLaxtQj=HHC2yQAtvBeB*QiS- -)?}avSB&e -Bjq6bJWprrUg}<`xG6|jg_bb%7PhN=W+z!i?>D=8HChFYNuT37KCi&i`$^EuCxu@qV{k@YQ{dDbm;S# -Wn<;UyYHcfBh^BDCmzI>D6-6Xx!_Lug)Hd*hymubU3Cdc${h{g0S*`Rmr(xvq-<$ct_`S0rT{^e$^$rr&%!x^ok*G*2X^PuX0bwpcEuOIci(`2O>6$8^blNnH}JjuTI|Mn -`Cy2Cd*smWSO3?^!HAJ^wYKLg-gIPmLIQ6TQpsW&tuf3`0`DLcce@4^L9yx#>X106UQ1hx2zsLFR||K -BsJ2F>zWU#Vd^)nlM%C?2M@1ik)W(LaT%8Qei+r%A6@XER6}uMh_M$drTGCb(pBN=p3_?*_C%ded%^W -n|7$~aEKZ!TM(D4_6S7ZuX8g_ZjID>DJyf|(f(+8R66>yy*^m{|Xt6h`ocomIE0RBXhP)|HX#j-V^wapq)QK~ZFOs;z@~H2oqTUn%D04%)%ED}TfNtc`K{K?mQ -^%H)PVGEOGN~><&2y5PC$L9qUpUYtKX{!ywjO%3}yG24KU4s30u-5<6S*qu3cjdShR1$CM7i2T-lnBG -@r~@`CPAab{76P>hy{0xowN|&xO8{p28N9p3=Mt*sh{_@UQM_HF5}gI!>!Of>yM)QO~p8koKEMyY6b5 -L)Kf`+`}66bhM6r9qMP5W^($|ckg_yfAUepJG9r5Ecz!wvt`Yt(s)9egA@36@hT2Ho -KlMT0I>-TChL3`yI*SGNgMn-4MPFyc@S^0p>o+LYbIr%`kE0vE^Xa6se4_iz=mS09b%1J(ST3tpy(*9 -QR@nzQZzQ{-1xRlYx9zIKZldBPKxA>m6bQaV^KCEq7y@mMDVxYIq2N^WJhv-lt1^iCd?vgdzCrhQYcH -7ABh2VE0_}-RdC4PyO3Y!^|5vrF_P9}}FCFpOU{fsxmmX6C*Tv}kXVxu|IO8W-j<;b2NJAvNw|MOXdQ69V3Ir^1#YVs -u}1fFR$G-ua}Gk|a}G8gU;&!vT?}8$3Lnm!!N+3@t*CDU>RSNX7C}#WKd|<$sAYA@Qan>$q7&u6OUo~ -4hWwLxv?U90=JS5#Np0g6XB@n2$p9}wTbdb{UQbJVr^U}l*xb_jERCa2e!u$JZvgM@$nPfq6?q?Jqdz -WyzR{fb^QNqRvVXKk5tl94AHIJibgG=rhd~;$U(dZ2-T5eFo8!?mGlTL{dweXP&O*=i9OrY{Geb0Yme -x>y88Soik9$wSS$;M{*g7YSzr4ij$woe>)|_ -~scgW{_wt!BblUPd$OZx1V_GiK*5VOeI4N|0_d(whWb0TM9X9nnH%|Odvx|myn^k1{wO-w=N|^YSSbc -vX0A8Qz99<%OFF^1{q4UzGH98BYVG#zw_VS``!3?SyQ#ku$!X~Qz;=WXGGxR#lH`L+f)3G|}?c1rh-aIvoztQ1S!|{GR&AWam0q(89-EX -_Kz{>V!Y(yPe&<6TszVF83BFR6q4Kz)COZYNqk7!@+o*?akw|`#1k8ewHB|P_h0elBJx(Vg%)JpL<;L#`Nqv}5u3zj;RB-*tufe*^fR0&dw;)Pd&1?UPyKFZnq!;1%H7;lKFNH -a-lwi_K?Qzol79zt5Z0){zOnr&G#W-+D1x`|uQX7X2;Sx=u%I{ePF46;&YCeuK_9QCK>ye|#OWll}8_ -ULvbqH+D-~pOhS+JwzI^)Ey~S-;srRDZ41%{()o-_+RTSrFLA;J5`5L -oU!&t~gC9_}M-4h9>j>>ZU0JV|lD<|lp^H^4Hm|4>_cSidkS2}hFBsAgoJuRL;bMU*D~s@F&{9I%U}x -eSP_HDuH%PJddjA9EH%%ztIKehXqgtqzMUu{z|S%+Y9PHTR)uUk%!O0`PSodJgLHHtY_qdt8LN6U_(as!f- -h$5-!S?asNA=NFQmevanwY4z_pP~1v1kih#a?c4js_gBaF5T3lB)p%TDSO;X_cTpmKPer4bX2obk>l_ -C`AAOD>?WYl6*DK|Bi2;A(nxI7MF2%XhvWNC&Xg9OML)0(FZI5k)&n1Cfq4Qa2y^&RN*lF$u?LX*(-P -nnC#wq2DWG&v=L2EQ${X=x;3$m~=Rw=8s3O0p5TeWAa_6(T*v1k#UcS-#Zygu+9cpo&%3CfDSfv;)0^ -7W(dS3Mqkr}^m9#(G%(mi0)y&sD@^4lOm&x-v%Re1}F+FIqE9Ys`K#U92%%YGRSm10}8cIyNOPNqqm7a0MqE*NO_utuv))Q9$l{j5f-WywlwnJH(aSEJ -Xvuw%5=+I5Y(WvVsURVJ|pyVMz*15I>e8r>RE7K@|X6|Lz8-R1#ibAmP9I-LktDFNN?0=&;^ben1qR? -(h6%V~8y(-a*1x)dD9VUa=LeA9Hp{NLBbIt=n5Dx%Tup|xmtlFh-P1uQbWjRojz%;Co^!J!kl9;ExE; -0coyIKEs$`y}ymmu+v*SxSAEE%$0exxaZI%KhEz6U&`SuST_f#%M1ZT3>zvvJ){`LhqQ8Ld%j_cMotQ -ANi#uasCg@aow22x@+;HGlQYawHKzb_SZ}^Lk{ryRnrXG6PEU03O$wtyy+Y@;6nT8?T7t8HI2?L6Kgv -6z)u>&vxD}B2He*)IN5P<^fR&!y-sIwi#>J-UOCza+C!b@@V#t+JBa5ac!vKIrZoyaX|xzJUP^grUSm -JLRhq@#;(gO%bZ>e+wr(T_*nxTuel;RPVUE~z0!~-u%ov9`u`jXH#v1!BialZHo{H|IF@CYi|zN8e@g71c -6y5a%4y$J+Ka}O9NRbA`b}}B2hA0a?LqFmPf8MdkdsgIBDqH&t#+r|IYG+n>`91tQ$jUjBJ+v-g4O%5zf0^VM;rm@9Z|4E -`ND9SAlA{&vZlobYoNeru94oyUY~tQ}6ZRjQJT6Fe*7>3DrAK4N@21B1LOh{!57t#9o*G;2FKC*bQ8l -LcyR@_3jQn^!D&ll6{O8Uj#^<=w`+dXFo#Yc{v8+~lejrQiaX@>*^Ezm>r!i~tS;x!TeAR@qXm2~6PX -&D6Hml8P(Z(0z_Wq{5GQIgMtn*IC^Ok91KXGmEt?~1d;^X){@cItE&zH7OC}U^l<*M({`rT&?^tlIeN -BbQ*$S;NdBV7~CQy2z)S1{IJ+0d}XJ)do%xdVA-cDN-P?SXFbbbC^Tei58%z){VU&yoU;Ju01@#ndKR -PvgP$6nI8ws@U*6g6pu!?rDbHkPK~Kq;458Sv?K3M*_`jSg3CCU!-&U)TWcbsS>ehfd+&2VJHBMR6J9 -jAr2>%!|`)CVqXRtLn1g{z#;sc^Vk+Av(XtF5j9<$zoXOXIPhI>pwH}6T(6H%Ok0k&j{FA1>ye?0(e6 -Wra|kc7KVJB$VQLrX>|FQ>;0x)Vu7{+9q<^G`1<*m-*Zm>Jim%u9@t`>8*3{U(tF)h(55C0l;i>l56K -AHN-45$}!!Ak{`?nSu;84FVGmS3ecxZdWZk5H}uv6Ix9lsS4D;}z$_}5fGZTS#<`V;U0j-%}#+{gmYi -!-ks)3tJQ4CVHX=yvkpRQ+t8s*`9(AmitO2aRvio-%W2y#BZvA-$w`m3hmle`Oij*K%%8DrnD*VzMQr -C&e5g75Bv_`B|_d17l=^9iAn4_ESIBVC)POHpXS-wDDXNzMlxvp9G!h42PgB&Tg=Q9`2^~qtstjm6x) -sY><^c!}$K4o}ZfpUKCL3ZeCL(!eP0izdX{U{~2XIq=NIz(HX9XgGewo -YP2R3`k^2=RjOygS{n_nIMIO|*Yy)vMq~g8tNiMT?8ftlMFxGk54bUdM#UPp(j -XP`C+P^Q!&-do1F+^p{<}J?i!hVZ=j~ui|7e9lw;cM#X8+6WvEaF6$mCg>}{5q0|Uv!Q<)oCuS0fRjq -0Nv^hJj&4IntTnGD{S_}bB`wPx7hRh=+4o&{YcNzS)>NI@0}F(d4m|2;CqEm`#qiUm^HGN=4Qd)q4{P -M+p&LEBfYTA56NoN3bL&iXkCb1tPA-#YxI)dw6JvQ=YQy0b&Dq|_AI9LFM2(}yA0yJ({EI@msxLP_p=nO+AOFQGIH99x&d2 -b`P0l%SRpMQG#*iAC%9@DqJRZX_AFh|JDQOIN0&vsQ)?7p!=@R0UOrhO{kwa4Un)J}dU? -Y9eG8Z>&%l;e37ZMa@fq8Zio+By7O`$9UeTc`8li(-FUD)&$JSp92pJxgoj<<-vyfdidKMK-Cff*meN -6Z`Nwf%nb7PrNTA$%D`j<}jXfrSGXs`x28~ErU;ae68@U37^lvt`0pe`jt=GC+=%xJdcXtQ=euu+UXy -P9`jQlB7!x3Zo}&|*FZZfmEyP1e09r$dFqx*i?qrK8L5JNcyWJQ%l4TKxTkks-1{VDCEC>@$YEgx{D6 -v!(H>*F$=i&U@~{`Sf^>uStI=h6=#2R5aNE1l -o=fpOzK`ls=LkkLJ2MJ8z6;u%MGQC!IsQF^!w(AYXFykMg}Uzd$k0Okeg*3g-wC~iT2YLg6?)d_DXbTGH>^0a= -bqaoQG{9w%kSj8{oEAEbFJUobFz}tlui-tgI|w*4m)O0I-8cX>Zxiih_~H5&xciKz+JXwvE^zn;&Uup -Gjl)RocFnL$*URt$(o2x&U4iUdzp59XiDpdQ9;N*q*`ZbRJQTCky_Q%fbp(#AfXWT>T1sw7Us -@JXae)#flCo-O+Fe1P{;)Q!HiLx%27W{2qvB~@ajL|>w(O|rF~oDLu2e6(l4G%NIF+Fv~Z?+QVO@7rQ -F{eIe`LXU5x*-P~JCdn9MNpqGM;~qNSS3x_@!21naeETZo?*!!VIOLJek`rxky#D{(&`-?!33=ZI$t} -g=J5k5Y_+`qh2Y%sGK90MC(nRG6hyk_7R#h*2~v?mOty19P53w1{3cQTTy@Xk)agUon=uYJ-F`6W -@o4`+-VVeiP73tcR4$JLGbI0cCJ*$$7nnSGW6Lb7I9b*XXmrV7RYy9`M)0;3Mpo%U=F$293ueE(Cqz(@|SaX+8(Keos3uG||{VfU(}M;`cTDzK-7``0c>24Zm)g_4 -eRL@`849FU5g+dncZm@%a%NzaPPSFJwU9JKnSCg^tyq=$ep$%# -a%gQrc5eyqJA`~kW!88hr*r0=X5KbA6q6Vqw*p2RonQ6Vu@czKQaZ2bQQWu76q{yw8uP^YvXj!wy`_4 -3*vCK-((HT>wrZ=`i)Y`}tdYhjDQ)vx&JwasWJj|IFXVM2J?%w9X`S;0j{YRldnKeuy`>S_?^|Jo#yY -uy!%jP&YZfQ~9t39rUso+;)qfQ~gDc(HC^hbeZc^Q89s&ILWxqz-;ZN!_9y2Kv -kuOP1Q<9V3o@C5muF?*MWRXVSvo96CRf)8!@{^~Y{@KOp=KZ+hZ6OPpWy#1B(V7?Z&Kc}@v4)|;Pl?i -*TADMxAQT$GOC2pOT-AXV|@c6;O+pihOi#CJrDKIo$*oRF|F@A;)?Gt?x&y{~Kg=tNczV{{BgO77J$Ef(P$5q)d1L(hisQkEB6%g>*Wlm@UzUSM -ZdzqxN-1_{U!t>v)&x2Lz}nT!g?s4ue7l4+YwKwW>&Zf&o7z9IlgGux+liB3ilDn27cNF9}oW2XOTwl -8`+g2_MoRT1-9~-F&i;s7LOVAe09hNf2vUUNm-#KbH$lA&r)B?*VIw}d(j@kEs6VPS>v*{H$^`iXMbG -%V)mP42r&5mYx+J@e+SuWbH&cpqqAUAG{5fy;!NNk{d^eSHhhakd|zXHE(4XfBSpykBPo|UC&p0zj#& -A`-=9xW_T7ofeiUWzh?TujE4wj4*;DvWA+j$gArmB1)Td7UIR%#O9lYO1U#EjBoncDnLcu={EK1S(2E -g~XQQmgI*lwmhfE}R*V?OwzIY?i2UhL_gC(Z&5&C&QyKBegY$_f3>jQW{a(XVA8uVl;1knWu9XdTk}k -llu(JrfB3#VROdpC-%EsS^Zu|8q!`X3jPoNB^`A8zqyDq0=tOfI}%VMnY5oS*$~K1GVkyA9hu5zY=bUl!De -iR%@DGa75bW8^ufaS=w8EZMwUm1^D1ayv>h9rM%&>C<>iaI1p&j0IxDapjEVJ~^!;(Wem+y8{^SXM-( -KZgs0&m1*&4JrUX3K`Wu)!b<7nGz7kw~O*#i#u(aXbaii5j35nMxiK5oMSN2N2~l2rW+H$L9-GwOSW% -(c-OT#z|R7r)-*{)>~xOLe$}1DzLC2U+_M>N}(Npid&)SH$6d3!ZuUM-!+2P+a=!l`{KcKOkLvNZDcwud@MZ$68L7gL9vpbbOLb`)lIW8yse|yiQu#HB);~I&Sj?c1^nHfq`*Tma0q`{QHc -3fTcDS?Nhe0*xJl$R>rNvVOa(7U8q9-1%Sm2WBa+f=^SlvQG-@wVYA6WI*L04tZq_UJ4cdcSt#rv_qr -_}ut8na95(7pyS}e3Wu=<~`HStfanr8h;H|wer4h+9Qhg%d&_3)wW)DYZdS+lkDqhzpcu}YLj!3!uRK -@{E`}WmWp#lDkFUU6CWpAO6Rz*+Ba+XaZ|yGjVy5darm$BV+U?!fhN --79KI&7kowYfJ3ugHCh8lvuFmr-mpHd`fP7w4Mo3uORNjoPt)8pbXai -#~l*)Di4&hs45z8U3}VrglQoBPegJ9oW+L;XR=Q9qJ-KHi8}i>H+e0_0C~xGhP>u}3;@t6P^bLu~FL` -Jz0#_3!1ed`4Xm@)qkKpm`kSTKm(Y?^U2ZKd9|jK;Q4z`sZ{#I0ZQVJ+ZidJ>q`S2a0*E3;R1fi2onb -%4w0s+2;h;tHCjjmpy8U#Z9-oD#o>vgwObhVqGETKWOJh>0<)pv0s|H%DFl1K8jtO*Qt#InocQs?f}# -Dm}%=&9x#-%P%B4=M}4PdX)48Wk1Uds19a}}G&=vaX~Sr;)pz7jUNRr!UhrCP=^fIH48H%HOKo)F>Q; -e6)AajP>aSzvjV=6q@EJ?!d|J}UAYi;OKY3T>YpgVt&s7!QNT#VzpmGMwpywpRH$Bg4$D=pc0O1Z)WD7>%dUn2#UnXkWUa@5=@M$>(VtnAD#@_Tld7tX=6^9$ta81$=F*^S&x+`^@G -fwwQRnQ5I+Y^0N+XjLY2#vmyRJA;x|A9Pg&9#NM%zbBWSr;&X~=e(?*SN#z-9c)(=!#QQIt-d`#Y$Lg -ca*D;H}hCV}COF7J9t3sNS)W31Mi9$h0R2Zn+g-40?fL95%}J$kHb1v3Ge+Pm*IJSHTd*hIwdIke$g8)T) -MnD!0xENXB+8;SR5qli{_zhZ?LH}Igq~O8zE1k+I|J`UYcH5mL+9}uHQD*N<8f__%*W>iW`%A9?+Ip~ -@aG~6^)&}{4i9L{*E7)BK~^5~R$pq)_aMo<<~Pzz4^YK3ZH++?Ju?4)V9;PONxsH6-D4?oToBgZn7LaesE&B{OrzaVtyKxJ#vxC7X7sxc8e{*edjY~-rm -H`6X11xMZ{y=C;oL*?9VfCzKlr!(0dcV8SOWfl_`mFQ~9_!gZ7?0VSD~fyZ$&L-aj`MgER3QF9C~a@Z -0}_eVxr}CeBAN%)n`3DA)8D6rIoO|LCx;cJ{xuT_7ZUNSEL1~pPJ;PJDK`_(*oX$=JB?7s(6^-* -PXm6@_poKK535d=QnPOJWkJVXwOfpkxqJknu+HhtC3yw{Nq^Lo~VB0Z?f`&fW*v!qb{*eZX$Z~a|39t -2=Vd!t&vLDs${!Zo0O!D7wK@$B!FYA&$d+7o|&Q&p55^=6X_()f63SU_C)hk>0DyH?fdEAqMi{g?BFTbu0H6;_N!Qp?Y9kEUSPS!KR~Pf)Dn9ObG4|g7N4Ba;UyDWkw30ZN>8mKS6=ln<+9#UiVwsfVL0b}VX!!mY?aNGOmeTxBnjg*U>fm#pZ`A7g=0J4kZ=~F1G; -gSh=$2saPy>981}6HoV7qu5u$a%8%J$G1o0ZyJ_#qQ3yvCqEpJQwpWG#dEL-2P>O7WG!-^<7PuP|)}? -Njp+=+@h&?3Gi^e~Qls-;9qNB^*bbLjS1mihKw&$^H -BXmKF+IKUbYPQ&#iYg|L?1t5p_QrmvKv$|Qfu0NiFZ(CpWBmO!jce`n{u=H5HLLFA?+Y3qx6%6o?R~+jJNWwrjVJyOd+#0}Rdue9uR -W8?T#`WUA*e&(pvfS5fCLhI$quLu#MTm`)%JW#kYk-Bdd`WUB`PLBFA1?N1K70TwBgd)WYktmP)2JB+ -V+5GE1;;okwDc+;tdhVfMI^mv)103$z+0h&iVa!{>UeL_FmU_z3W}?`>yw5=ldDP`x(T0yq{S=O}?LL -yq~#vfqXx!ez}eBXBqEjE&iN*Kc^mN9p29|-p^S)PrfgzKc2w%MaKK0#l+Rd`6cz!_`bG8y`NvQc!qr -cnfm4NeE%8a{bv@_E~RnpXX|&w5k8+a;PctVF3BIQl`wn`{A9VE&$ha?+_!k|vDhkTb722SmDxd=e^` -}a8#cVBEspK{f3mEywI!{fU8`kXCH;989#?B5%VWKmBhI7=v}N%mDBH`L?`Vs8hLCpD7<5C%&sr-MOF -FX_H0p0+G4}%fk4Yzw0EaFz@Qtw?!D}}-?1Fm6pvQ>+$h#TRN!DTca=SQ4{5rt9ea3UwoOP6MX9Dku^ -GA;=TR4>SF2Q%!V|m81Jd)NT>Ew+gbn*!3WY*;W!_WW2PZK{`FD3QHdyZ+e-BIUUD8@N=W@?r^=ZL$- -T8`VKdw1}Rv#4CtEf&e=7RtN>TDm;v)(M5DMZnY7jC1bC{vycg~T=c9zZb(yr*b)%xM)6RQu~YwC8pguRYD6K# -x^?h^IWX#aN|*6JF?ziic1jtATOmc`WBJMeoy_Pg$FkvZ&J(2gfnc&F5OcE{4Aec%wAu{OK*Nq?d^X^ -(H)Aaka<(>3A$b4dE+xC4>p9yiK02`|gU%9r%li1NZ{7gD1)nr}Z8SrGV;}>+*>2 -BpsHz5VQ~HS5KB=9qrpj8tr(Cl+Jbk?98tq@Z-neJ@2UneVriuwzr&I>cnWi;4*V9JL0za@S|jRvaE^2)2ybbTk -a0U}ETZHTU0hfe`zO~sb#jZ4sE(vPr*E1!j!fN)YI@ThxS^u<0hPG|HOMT -8|^oYxp7`Lds8KGZK-CfmBZg>)mXucX@cd8%i#)-t(i@yErsccI_FWuk$7u}(kM&y6|@`xOrKU*A(Q1HWtDF>xYk3)epXgeXblT*kqPJ -Od}Fk7S=oQ8eTW>Dx909H3qDS!5L(XJzpb+=AFd4as3X^E?SHC7F;ZrTuxp -7{{G?uO%&DOT}LY5xACU4JILpqUs}w#ZTb5Hv}Y^4gSNFO(}j9Y)ImE%*J5m@{~7hV%hm^DY*NKJXBqcSH;`qLG8qWo$<0KfGTXf^wCiS#o1L*>+z$`^_Rvy*R6s&z_dN6 -gK|{|jrL#1f9fwMD_cqTm4BA!ep>Xo|EGv?JUbkD?lad!R^++QSP|~!e^#*~cco+8~^^-a4d@ -P&;3~Y;y32Kjk^zUJPLT-aG!pdF#AuVpPxnalctG`yYs>@JBs-qnG~S>U1OrMIc#()d*)0{%w1u$aj -(&a>OF@-45NPn_3zzqZ7c%6s*u%EDRAx#XjMVhh`dGd~OepUf7)=kQFw(p%B4X>WZK< -pw-I9X<toL|cFIWo6A|?(?~PMm)&))AJX09=F3uQ -(oU0x9+*9I+8=5Qkd|!gM7kDS_Xx2e)z}~0dft=R@QNnd&yd}sr@8<(g%(C)~TQ0n7u|D*BmG&~)SUS -@C5#)(%J;37zp)_)En;E2bsPf=VyjycSf!q=d<2EG` -9u#%<&R7$FZM&cE0TJF{|CD{BpD0w;6uIWs+agOBmz46R>$3yh6V<+c${6kR@qwE!IZn{HsxC@X{g`y -MTH0K*tACv*~Ia!EvGFQpGa=bf% -qs;FY4O3T!8qdQYh4=VR4LCD*Ab)2V_6M$R6?;Cz@L##_BSqU-miKL^g|hW_822o!)B2IxpPM4uzxpp -Gt@_=^oa52@TNS5D&OuXlF4V`$wf%+O&`F-?NVC -Gcl{7zV@21=%z*Cdnv;FLC7B6YfB;ZBUcl063F0>7C*~H_Nsloe|bb#wfy7MM&X<55;Xkn%ZcA`Ajhx=+5{*GX8-8dX7Vmz!^wEE-t7|tQv80(}y;U)eTW6WHetH6&rF -z(MxY^wYrWi5;;aF1tbKgKjC&#?t#3%Y?%OXI}}>UKQG$oEc~?Kvh&+_a^_f8H}N?gsCKs$uQX3vt2)gVF$5ns1v;P5nbb$|%`X>4A;@Qj>%jbJgo@F> -D%=Iz*sV_)e-$A=e-?m9O)9}nTSiTv!$~s)5p7Wt@> -hc~r7e3=+#l(n&-!ZKBREy}AI+x^Yf^s}%YCM`@>o_F_?f%L+r3>=nKV(e*Xt<8HFP5+^%O-3qIsdHq -rbFP#4vWQETcoYwhifVy*OZ@Hr={GFJ(b#c70x;E#$6Vhf5&+R_c#LwC(8Tgv9`yO4xk^#zj2_CDcBp -e827@wcyB&!VKvvdaV+uSrNij^uqN-#<#;*g%r)`eY_x?jE$#xWt1Gj&aQ^#H7UNsIALE-73Kf}n5i8 -#0xZ^5|9@qGO|B^nGP4V_&%xBkHypzDwG1dtAk|D@Gv|o4``>NHV2WypY=krr$KHp9{SDlPKpDcDAwd -4#6$hOVWw{(u2pF^{G`)6ofb$GtFEW!KowfgRp;Op6*^qou)kM|^qD)QDv4J(H%Vohba!VT#&Aq-pBo -mR0+p4q?=+pwY;u7A-af6y##q3zydMx93>R~YuQk7>)o?;pxiJ{5|eu*r5TBYau7FEdUEc*0$Ql#Et8 -=%anOW1oy8fNukMS3bOS-;!bbKGUYInRkpKY4a=FnS=56&nW96OqPM(n6Q)WVn0ZHUy}fMEB>R`;5op -rcCWXL^`TujVN$C@b3E@h#xVioFxz|^G?4#mBJ9FgUdB?u8aXxR^D~Tk9~ZA7+Mb0lw9HDD|FyDYX)C -{AqVP6B*1lcoYkhMxV?Ggf$kg#|MgO$nAUr{{aw6#(^PEgK{GB7|h3s#eo&Pszd+lEK#l5)L=u5^_iS -kD_`-rw}xzKsY*e8(pr0&F`IZPh~x9m610r|%2UN8l`0@`F8#35_En{g1&SrdI%U@VN2QDTW4%Op9Lz --RQ}Th__GH?6t8H>^33d9!`T!A~)FjS*)^#`2qDEj>aT0W(k8AY(wYtvs8gfsu91dc+TvFXqB=L8I1h -gJqdR!E=p6tsmw^82CU -#B$)m6C62P8AJ1<_t)El%m**Vm54czPyHC^KwhQ$)`utTeb&lx46>Obe_S=JgA40$6bBadwI}%es%If -rWNi_T3n`rnFsBdQf9~T#l_Yex+&e8bWr^cc~zFlXG<%SqzQFjIkA4iR6*~oa@CS8i{hw};d*RrJ1<6 -Dz7vcH-vWB1pM=l}QjSGu{s%KkU@R}6gEtLAuWWDSxOJ}@Smfro`L@Q`^#I6mT{Rq23y)j7&fEPDMRZ -#?GSJC$ek2HMM(m&JLni)%WxRI?4z2lnlC546*ly5ienh;rXHgP$C4-11ISlm1MPrQ__cp&k=w^h%un -)sSI8oV(@uPQ9NYvox-C4VnH~CcPaWPnC|1GRB^C@QUCWe+9X6h2qmTpzwyB*}}i?*!5DECgRY~=`RH -Budf(dh_jdSXx9W0%r{~!Gj=Ead|5`IOy#Tc?rB!Fimi~^i9XEwQ}zmPEpzv+i65a`WK2^EjMYc~fzJoPt3w^Ce -uNcV%eK3fd}mSVTQzIWdpI$-z(?^U_iOl$I+t<69kdNwMN68GM}duOEpCYqv<7+;9xr(Q#!(EV(i&zu -YDx<_qUL!JtKqU&`2yBmK;D%3Mp*ei~!;W=mUGc^?w#2M}prOghm)`_`!bM%v`QX8sWK_oM`w$A_^I? -)V7%3UhMiH>D{!I31DmYP?@`5r(7qKG{z=CNtw;a&K=yTf`aA6~>1S%9vcFajC-Z$`q8DnUhEDpGk^d -b$z64!{r__+Lv}O_lYiBj_}*QEWECXsNbUvxiU~c!tW@CoVvkg?5P6msmx`{_cT9Q9DD-%i}zfNUB45 -wcL~qF2>9epRi7}H4kaa~P6ef(V`<03FVaEkkF>jc`L6uQ2s)$fa=4~M8?9G@P@wXR2%PS*9fs2BX7s@3z3 -+*P8AluVYyxWcTzC5UOejZE8 -?1fs>p)|v;MJr43Du1sG-xo&8OqgxAG##>=W!9t^`iBhP=TW9Q7($tev-hK305EE-3UdoXy}hi>PnN;XNT>7x&LimB;0MVTQCz-gl -AMEU=%S$2iMRT<;%r8E5l}3I6cDceLg%n`xV1E7 -yYo#`Up?%>k$4Z%iM|Xnrf&&;R0cGWVY3wcOX}K{-~AJz}iY^#4B>i~kwlFER0)io;Exq3T64R&Mv#( -{aWvl5s&d*iKv>q~8wX&2<`nOr{@?ZKCck2h3jp{xvQVLGmP%KBoWZdA)UZ#E(BnJy4#;7!Z2!Cq_Jj -_)pp1;j>{lO#z&mFdy4T$~VdOQP?*Lb1RbbDN}w)I_C3z)McN6v!nYQzV~TG$LaG0JPWvly!#0d_wWw -?gY>QKl0N!z1rly+E|Yma0^lJT)2#n8`oA|-I`f79IDN*h6!iUn$zC?y%eYg=j)VW&qV{s;EM@g3AbYu>({s;zC(2X3sM-{60`6O|s{cl}uvw|%sql) -*=$&E6fBu1@3rmGhMOOeSOgE;X-a>Gx(WunQTx19Ind8P{0(1=@Y{(0*?=aK2a%7M_(c3xZ;%9-L)9& -(ecen9oIeaEAFj9rHGy3-sW0^Z9dnaH{!ShWVS%ePzLm@GO0wBmDGeXD9jG;|8CLcUOhNK6=r59nzX6 ->;c}7b5Hy@P5M2_{lNDhw~=FIvCXVw{D#8rwqh1ZuL1OTQg1 -x<9jl%2;|K}v~yuO+MjJWC*!0PY7L4PdL*do@cYZ)d8z;X?l~3v^B}&_-kCIV?K%2zi6Wz&L-(Ikwv@ -D$mh?QN>iiCM&FdPlx3Bzsra(vH2|e -j`mlLq&I-=`_%?~xKDm{miZ8x(mWe2BY8JR-FHR6+tnl<_mJ-s;sotK)3v5{Ij_7#FZC+CyBoRh6Ql0 -?9^-xA+wX<%`+lAljOFRON$*Np!!^SeOyrc6Y;k13BgN! -~X9CwdU_=&lvY{*y5+8>UE_ua}f3jJ3s|$$g4)q_yA7Rrz+=|1>*zr#MmnJ?WQdt*el+CuQ!k6K{YgX -KZ1{LdyfJ7bl6$tV6ucN4-7I<_{j%sORb_VGOq^c-PAqq7xWzD_oy&6ll|IhjHk(o(&b1emL4T@F4R6 -VE(SYIK%IJEdR#X>)WJXstNz!jQGPHpC%e0^PS)t{LG=B<(kkoz{ooxZ|($qm#CPee#qhVcR)z5Z~ien9W|6Hi;)X6ZMbo>t-H~cNqqvNXoZWO#$Vhnf5SdyZIvb -)NQEd11?FwProy57PWY{q)yI?)!MeKY?+uQ2SfKMEC@^C1j-l?~1)`sxa3^?T2T#+}EPF^}gs55rGo< -ss$I{GuU8(AH`BXT=iJE`Bs0r1{KqojEngvy7bUCl>ncoeTVUS4-OW+C&wbC7Mr)+1~KSxAz;zIPG2F --Z~`nvTDA*3Y9C6@nrX4?-GX?3!Hb?%)5BxBC+JGHPPL@wIla~mqE|25UC;TsQ~(26#=UP16Ge?-Kg6 -v53W4y8g`vn26`LV0{+~Z>ke5(kh+97tQpd#^|&?12RX*CVuGj3oB_X5F)s@_o}Z$vZAt1L;^Yj-rs< --4-z6d)d~Kz>X7ZAXGA-39M2Ra&lx$?bV(5v^cxB(tG0+BRpG8#WUM$iVx+X7~d$C9zYHT{xfcHxauK -Qqe0%#}ZaWBeKhq@o%TrcV$6sLByQGO3(DFHvE@K6MboF7{2yPz^ -&Ar7sH19azNmxyU{KvZp%(1X8K^%N%a#Q8)7)vvKxhK(=J6Yn#y{BBoJXagFY>7i1=x^VENTsaO%$(M -MPmQK*!96FA7DL8K^_*}ObL=n5J(A(p64W|;_t{X}iur}D0h}9;#?uyB)R)&yUQ(C#<90jNgY6LZx7& -r6IAGUu4%n==1Ercc;ojEV&i@|N>wLU9*Ap*FmTsGHVhidFT9bTE#v)(cbf`Ree>;8C9bNVk--21+YUdf=lps>M-_BsaB~FHHpRW7g_!{&03HNb)UyJXqU7~(4yQ7_J -Gw^Chd#A;5z^*wDlxxmb#!nGidh0ezOZzV-h4&Hd1mBvWtG$PI{$b5_tNXifezruR;{AQHysRcaVR57 -Vde5^Rx%TPUTbPgQxq?CRo{YBu`r$rhjh8fpxoB?xAWSbVKB(x0^tFqTC$P_&D0z@q4u{(2T4bJ3Kj+ -?$xx2ND)oa5?auG5DvW=4*}vmU#M0Iea?)TYA8MqW&Og{8Pl)UFv?N9k6MYF&RaDGHv7H(H -3)=02lI&z3oQ(wHJ%xeHQ(YeeaxBSE6`)4q(0Bk`9>XwDRt6>a5vb&Dz{fI8FzTI3-aORfAr9lW`?%i -iUJb-9%4G>0acbvKPsxnc@#(j(u5be1 -D{Wem^LxAOlRXZUFA%bPXIw=26qdKh@+|8~5hcy`B;a+2JA!oLv6HAaeaGm@onGu#y3XCp9=G!z0#L0Uit$v=2;u?<7-%FA7GLLI`d -8NY2|>8OUtTbtiw@jzt`Pb4jf-vGp9HQG|K$O@td@tG?VZpZMxhl`PCv5{^T#X2D$IaaD&9Z(*RQ(JCA2WQ|Wevd3$s2N_m$Vdu-Lu7PhMP(|un++iUOFH<|Q$^4<%trOa~^6?K~r -uhTMDNW8S+ApPQ<;BoK@rK?4k@}0_bzb5y8qWhIe1|3@-repNI;F^(duKwnrQp$c%vJoxJU#eNn48&`^7F{>{R?DGNel7)(h* -uX3A8ZB9a-*o=an2ap1rWiqZMF|`KiJ?fO$0v+h8x?vRz2|vZP51%dq{V1By2;fgJO=>mpH1{97I;4m -P6=@-s6VTuZ)$x&1rnNxycb_hEZV>*Wn~LyWgFV8oja$JkCf!2SZ?1>MDdo`JFf)S=vFL7ljF!@gEW$ -Jwh-?^F7S(@V8cx~gUwuS4^F<+J3ovevu7uT)HbwS5Knl68zRI~6?QypCMjFTa1W*xY0lMYN&wpe%VG -H_BdzvK@Jfr=h$@KYPX#qs(o~d$k>Fc+jmm*DnRHMSFV5e~p(o9|+tW*9+^a>{S&$cgCn8tiAmDh)n!uR+yY{>vmbd -=nPfFebUC*crg}P_pFAjfu;?(_GXNI$A@@#>aZd)unuz~7T0Lc~zzo_2CAm+752w6!oUzyp8b{lpUTd=N-H$?TSE1~l&00P0S@--% -t7rV5k-F9xbrV(Hcd(ZzpKb-+V2m@;2^Z+ZF_e}1Q`CC_`y6tnU*!S-jlg?JA1+h$fqJhgp!pUp)7cF -Aum<$u-?PK~4Si|fz*yqA=hvBgUg;&4qJQTnoact&P@CfMM%%EA$}dQI2%P!J9$EIFv}4QC{h5#p<(> -1aq$QnpQA9fO!tqcWknnx#s-D2UW{e`f|HE;W%b7k_{Qc~4WwXuaJ$R;H9Al>rS`xjUhTDf68T!U#nG --X43(uSV7P~k94V>k}M*O6BQEyLBZT;%Fvh6YZdN``DUqtlvvrpPrANsNm&E*{!@AmqpaovRXv%m{s5 -k&fKX|7Wf|a`DuLbdH!TE*B~##?uO;04Y|cu=fu9Jo}o9?A#>$5r-8QH#p0GU;olFQNUdL{`wVCd -VJqXKF;}G~8d@yMuVTHtJI{1;&C0MIXC{+(9h(m@f1)}!3MLBwLbSd1V)}pc-b|Df@IPoUWA}rm$ymF -cGDoW(?84d=ym58Vq3ORa)f|InoagBK4;^z~`l8B(%KLWi>#rHV%{<2o0qY;7jJEk0tFIhw5A&v(GdV -#Nvh1}+o08X|4?@{xUh3J{f2r|Ji#NV4yUgpO9oLEL!*`RWUBr(tUd>j!&8qBVD!$xQ8SBnc(O2qb*B -*NGY^bft%r9_K-HmZfHpW@MQ+P2(88cDkofiI@smjli@0o9o<%1D9p2oAM;e1JlN7=PZw@bSgsRuZ1* -tL9l9J?0u%lp+>@h;RIOPPP4kw>xoy)bPLzNm5?^8T556sdDt$}{$SsA~Q3a85;QL{7z6_sXY?oJ(dN -D4vtdJ32F>ufH38O`{*C(HGYhHEWS{_!)QIG2`}D5^`)x$tGt@A=WULi^S|vS+AAs;aGt!sc#!@##$4%_8hAH6#vcPFjJ3l#YnU -@+lU*|Jam2ijq>9a?6^WVTCDYw+LcRno_wg*8in;fq{L)L*{13kSKc9cB__<1NW|eZUkvr2(p24)meF -yVe2Aaz8-un!F^3v|D|5%MfzcTL)|LSwYf5HU<>f8rmmQDm^4uG1N5u-i5_gxME7*8-9IXX -cSPqpg))WR_f$ynm+XUZ?Y&HI2s~%Nb;4MEZ_Id~%Ku^4Z4v8~^P=gm7^V+Vwp?MFz;pI|C~RLBuPq^ -6pe4b132$JC|i>vg4F5I-WWVi1J32 -_=$y{HGot_RKd-xr7$HKi@gYoUL*avH{-jQQGe?pCM>)FP`e;Q|uU6!$9Bro -=_4(7+PyQ9a|ig7VMKl<3U(C`QQGh>l4-ep=ihVq!aV4(A7CXCMcaZ=?A9kUiMofy3qm5OI;7;i0pXO -!oi^@E>cEw+Z&qJ(P^JEu^Faj%o@{|4rHg-1Ov31gZSH{;^87GSNeP18)42O1|{L1{UE=&4>{NV+ -gGC(WxFQ(spy3anm;BcdsIrz@Hmi9?#GYNl>;w-BDwmvkTuGgkbYJC80Ou}CWm;8kZxJ -3(7`fD@kcUD4{Qu{aj8^6zV$Ab1)?8mN*8MLS7jx5<3-)J;>d$fj>*8H#%{~yozBrCK=AnP)=GuI*%# -T+@9_E{Mg+rUCVmxR!Tgz@;GaRbQvWD}v#h>7q(tVwltZ)o_ls&a>eS5a@NAB+Vjy`k_XU&-e@E!QZ9 -JbQ`|9#WfVtl{;SUR82|IW0ZiJeDO#gylqvwT5A7ebr3(euxe`P~B6LSG1coE>L`sq2cRFAG>QT63h{ -G{?t$UR&N*epTR!yOj=O5_q2+dG~iU^Ta2JBF&m{;5guU4CB~}`k%-9DR^JAUGL&OC}o^#i?qqx#T;u -*X!qOi)8*J|o)hq<$4`qmQ`-hU{vWaVIhkgc=jOXsaA*v~^J@0QwMQTcPEal3-$U -`>o*V0*T5V!IrFYA~4C9l;EN9pc#rj5j{J!TjsjGiySo)v@3d86MbCR^pL9ESbJnAYV%O?N#vW1N^whWlpOzp`z!f>Roow<{5xZ$l{c^Mtd;pH -iuVF&Td_%Wgp<4E1RrhM94e!i1wc`+h1cdY|d2Mf#vg68LVmddul&ok9hY!6>1AkBmG&>71jYMTBzBi -GmR)bAGQZS?HtR~kiVp?&U3$EXU}p(@2=*v8>8vfMMRV|k2$7(B-5DElRo$ -l_-adtVg61{j2}O_lg#jtoRTe0}(nBYgSR}1Dxy0HP0<8;8(@MVf!herWl)nEzq!ZGHSM%N*k}`7;bM -#*E6z@ieKhgPd!?xn5aV|b#*osq+)Er?`U$#u@nqJD>cA0l8^<>~*w&A>+3OFs@t#TRzPcraZ=C+%S{ -(e57-ZN&$jr&KpcipXV-iL9Xw4$B2(aw4;&f7eFZ>MMan$8a93zNC+fe(1!xOz<|^WN;myA1;>2FU#V -VcU4-Oc^i7hFNBcCT+$yMB22!{;nDm{bw07m+g42p&z9PwivlsD)76;@F%E=kSBXAkaylwcWROHg=<5 -K@(0?QBK?$HFQ>?RAgQk?OZK{6OQ|QFwk!YY$Ap&bO)#JLCdpXv@_9{?H>{T(xo39wDm$@5zXQ)pIk; -4F_!*~;@%VTT4BpX?z3@_go?Yruv0rBq=SF>l>>O#IE6b&cS=%DoAitLmoE=ZMWaeCsrROE>*>sDH382OKEts -i|S!^To{FL0`9My{p{cPQ`1~__@C?I!L`tb%O5C$Npk&!yX4?p3x3p!GZFC+~*EaXp?>l;N8)_O~y-% -tKR{JBRb<-vKwqkbD>YIq)tSW!^%&Z=% -lr>H4aE@I5v2FK?}=xve;V8RI8iG&_HpC?Q_<3!Cxn8^*WE@|%p&iZ&~1u9Wd7u@2rxu@>JOW=tB9LA -i!-Vqczbs~F(qM?I^>;@bK7t^WqzYvD4+8@p(B`7)LB&J%Bu5TRpGU;4I?#c<4uDKV9B~rHwy0^rL*EF5Jz3I%`D%`efsQ1zR;Hm3O -+ivWWT=h0-8~liLS?u&8ggPsf|#`ibFA(U%dM2#xJRCRCoKC -!(h|nZ|I$Cym>k!{rg4C85xtuMxribb}V2Sm<|SPxIbnFV5S@d`+ -E(&kpl7Mf;1?gMYg5Y=}0hlD7KL)1yh!B?-*l}WyqNc?=+B2S^E -Yh^sZ-wyTDp_563(l+d(MaF9#DQtlBUbtfrg%QIojBX`kSs5!J6|1?LHr--R$RycVwK$5ub)g9fbW&o -|U8gF&=A9^HA@{{vJ!m8EC@V0~v|W1!Wg|yUeBeX>w%M@wqxoZEp7RHwbyyC&Gl$b%P)zJ?Pc~g -|D>dok7<3Ec^?fazoYT)YiI3N_qF6%?lxiyW~7Nijw5SLo{Z`4OlUfE!)pC-=l#wt_L{qQmueYxy2FU -;o@vB&2VLy2*y?nm ->(c1F_2Vr#r8yi1-BnIq@JrI-uvQdb&n)8;^n1Ftk$FX^8QdTe1F0lg#ux;sPDOTZ7*mCM-3&Wc*h#f -iVpMYY9s^kvg7ncca_&2u8Pj`BTda6V`-<-7t}uBNzj*jmq+ah;0_ikAZhJRedqZkDM=|E4?$8Q8y{@ -n>b;*F}C?qP*)&W4zvP$~k0@%;D6N>WoV)%kz>Jejo4tfd7BO`ghJw*fN-GYpuoDYk3cdxo}R{dv(;c -e-Y!_6CYPUpZwvXJLK3~NSigAJFsYGG0Q*7HADIRkbP@0rvcDi(!f7r&M9~%Zmrxd3J7P$6(!y0TyCE -&ya(_t#oBb}#Wak?ow9{+BK_`a@T_W?E>;mvUc>JvS^3CR^3G=Kldu$B*s+R!&YKcRy(8hg&5#QqV+Es2X(?OUMXKSPGlRwS<7RKP_8MsdABr1;>`uWc9{79btwA -pO__K!e+Z56KRqQ05&eXGFpOy8FaS~Snq3Aqt8hwCYQ1`fB&dRxguy|P6<*KiLUQO{fpo55F93oV7CkJJbXKD&2~r2m8M?H(F_(CKc&|8G$0AR^{urJRm6$?}y?5u2qB$|_F8rQdkAI$cyf4Vt?02YN6!v8UuoJO|qKAkG-Wz9hr9LQ}ab -R{lT)H^+%xyHMtJ#{AhReXzQNM?-B>Qbjl0Fzc3CRo#D$s7t-VQxilX^{Tv=xsty3KTvwroAAu~RTF@ ->8>Q^G%Pcn?-?na4<-UYxez&El{$5U2`Bk#5SqB)~-v&HXJ|8xj7xv9F$`6rzjJ@Veap@^h|4)n3Oh#Nn=r)Y?I5pxqo;VEn8fo;q`ATkH1B~qXD(Z*8nkIyEkJhyCXa -ztB6XzRmx%pLu*t*q6ei!k=bi9%D)9;sU|)UpmVIVAsc=-`0jo9|M07SszcSBY|?-z>#PXZqei`;=e!d~86*7nVA>b#IR4x&J(1^4#Oc_ll+ -4p8DGu_YKm2;I|`t;*7B;Zhdp~p4iDd8qAmbf-)-cWbFP_v8F?Qc14TNK&#qx29wP$X4#_$u5uz%oLby(R_9g4oA_gG}yvO@zZ2W)rw_w*sgvfC$fv;zO|{M& -wY-dDwmZr+RS2af%acdyd6+&;>-{07Z_U~7V+L64zcPwgBT`{;G~ykcky>fVAjwxLWd^8y1mYk-Gc!y -!4oKlLjg@+0HicU_G6-FM8S3;(k@_0y -63Xq1{C3eS`83+!=4;GB=Fm -#_+2I6U4nO)gx`IU@22A2)bP7*(#L2=&8~7?{#rq=VmCq(T<(ei;IJ2@fQ^Hk+e;5-;H`aOPG7;mHYKgosdWDWkSZjnX;y%eJf~@OH -4dLncVhS=Clxl*U^Ud=zYJQFnsml2RY6aS02E+dLavRH~;v@@?0u?Psuve-*rB{Mf%pSm@m9$tnQO&m -$Hu;@AU_0NBLo-`^<6X$!{6%v*%R&3weeb@u`l{U&A`t@ZX-~Hsm(9As1H4xYL%UySvc0X{%a2UmUy! ->sfBx?JcrK-#m(rGCo$yv*Jm+SR=e)XW^xf_sM)rwAH|!Xr;#fKULk~WW{$qYyb%AdyFYv8t{BNW -c$$1mKj$WlhD%X|{xwK^IbA26ns~1qO#i-X3QLlW>*CkJO-I}FCKTsIsl5*zg34bl#Kte! -!}(Y#*|))=(QjGsiiCeNMJ6^m}0ru(U%t-eRvmUr8P?r)|&FXYl{)V-6ry6ztR?RDeZll+EuUNL?j#( -&RR70ZYt -T$Okk7w6gv}4nQJMq7H?bnC)kp`|^I@Dy80ge_uf^SEr3h(B%G8f3=2ZvQG$cNriv?N+5u~m~gjQ4G8 -X3Kj4#@})LN4(d#OGu5pOX#)Q+$wJ8V`<~X1zi!*9(C@tf$)62%x~aI(SM#-F@)B>HJY}4%s3W*+&Fp -@K?lQoV(|s`#NrF=iNzP#6N@jfCl>!V_r&5)uqPH@Xixkad{{K!Q}T}D33;c|Y{bssoeJfrP2dNXKu) -8--B;dH`e==Dx#nBEPNDKu@!Q>R#g6Ip{L!)TsCd7?JO!lJ8G`a;`k-l3o+@dskT&IqvGyxNAsOdtGt -NHxKk@Ff*@y#1Ig~n5eoqLgm`x^MJSx6=l%2GZXH~{6SGi7JX=iT4XEBBcj*X5-lwtT~u#f+jspe~*3 -%l;m+M;}&Gkvw0N@io+lz&UR;VkcNw}Y?dnbBlPZ?*hd@xjqNdxTzZgRL*D*W(;Tay)I4PV^>rFp`X2u%CzMYXN($=H@^3-dBZq4@ml9>nES? -1w4&A7kOer;yl$Z(9sdt$YBv1+dh?Sbd^x4miNRydBL%O>i3Xg880>SeB|&#FADt|}q@a9ua4-^6kHN -y$C6E#E8hgx3-Idzp~-BodB&`O=<5KI2o#g -DL3t|C!;;)MB2GPlypoL^_TPhn=zLhm=j~RqzM_Lwj)>NN@G0Rjw^(WqucR$l@GP~MwuVHzEkP1+)rR -^XR!WxD7)G(XO=V(0=gYclCw!AD8 -xo+US!#5AddK-yX~<2j%FSU5(!#y#bz=@)Xv7k|txi73PBnbOHySx7eP)5o>=mL7b?@{yqYkmGcac@1 -44)(l-6&T<{okcSG*l4Z5%=K?Dge`c?mSFw{1AqV9h>Tlk;Gb8{-jGg0{EcTL{cK4wq8M&6e@Qtho3_ -+111EyuHOf(SAn0Plg8#*5%0%<&xNz;OjEGXA0*`$>$QV>9g>eu*+{pZ9b>9aOwF>5sYJxYw3}wlgMn -kC7`P`a9Q(-#AataA;(nw&6s~Q_XMNN1>|k$oUEXG4yGU=TC3&Zl=z=_zLs-{x)3{GQ>J7K|=pJ?NIVw(H41YO!&lM;0H*Cn(=1F{5c@cTLbf< -lFxpTWi?T1$Toa*yr3`wnY0-yE9xN~n!_r>e!!+?T<-kv<)kzQY-HGkK3FRIW5T$_GG`^J_f2ZQ -9U0m)Ba)v(CQyzDy6^y?RSP@1hya+48iSROE<*{5&jW*ac$ -H0f) -)mlKB7rJRz8TS9{vOkR&-7OuU#@=fSF~-n9Hi{aoTe=pkD1dn8{;u^U!KExxoW} -G)^l@2uz#w3%TTt=YY_}wDS{rnXI$Kc)cfa!VJ&U7rwM=Wan1Yty~_SOl&E|!sBg>UK8DQdpp0(K863 -Dw_$@A#Tb1LWKb;NZ2>c?UYsNDjmG@eDN@zQ_RCCsSpScTBUvrA884aGHWa=LBNV|>lOi}zW_+Z)qF!sz$>}C4Tyv=%RcF=yc3{K2}3jP)++Lw}0va-%K!hu@UiqS~9Ld1*7u_AWKr>rDeM_UznN`b^8bu7K;{rH(DPpVC -X3wM)|2);ijJ;9V`&WIla-)>*uEz}({kP0?(Qf$v&MJf}oS|2j(v`P*6jp*EH+XH2x$0;{^Tp}Dlhx; -sI5kAlaxB#SE9j?`ZWuXj-SU^beF(3Y@66DJsd(_!Gye&Scn$>Kj -Ue%#)I)E%501)%vETTGHSkXmqod;S8XC@*l}Y8+QN?9br67C4SG)9Ib4N^?gQt#)qKH!*Zlc{Zm -1g@O=?}w_x1;Xm`-<+~PT;Ye6JyZUUZ?OAj)4X9m0e6}l&&dJ4>Fe!Xp#4^UtU<(6w9t`3+h~%4| -(aAO8-XMN*`~NzJ}0$G>xSUK>S!ae`+h~EqVNTplRFVMb+u$Dn9tbSl1J4*B%;JKC6}AncJQ@(1}x}M -h;u2CQ9<+L@NE!?4SoO@MO%%n5kt|^r7D|IAO*^TCQxd2p{J43w&2E=m(5!n%x;l6p)WI>lSEAKH70E -R22)ZeNM(8qz#)ME->uA6$V3j -&!nTLqELrMU@sfn~<7w_j_zGpGNr#0pjOLq@0XH2Wf-hegN$MW-|;7Q(hGT<2r%jd|GY0d*yz;J{n`q -otbW7=ddswDtImEroA_{pPzd~4|j8<0I%AB^_Eg2Oi+>FvMc%lb -B>R>oez^&kIrLlz?yKs-hlU$kAA#9`IF?mH}otcdGBZZUFBb%^Y<`6bUAQfXPo4}!g=rG!g=poE|m8k -d?b0khNoiZwVxExPtxBb^V(;bF&#(cwSV-fa9(?1l($8+;s4FY=e55OUfvA2hOC<8=S~{AHD1XQg^cm -=kH4w@-u_!yM*NA<-!JJ$r}(ayJ_A_f8vLK<-g|~}0FyJ|_XeisY^i#qr=z3iDL7fsZ;9maCQ%2Ju;j)g -TcS=af^ETo@}L@h%$`v;VM#odKnYI8}h9Fi=`lhHi_?V$HI5urGl9*^K{LY_>k!~bE#i69BQNO2IohZ -E(ARGTZZO-sHq&(GB&IO<4BZokw@xnIIrv;BHz7=ckxm0ilshV1eqfz@SO1KnbPl#ak&nW<|tSy+Isx -38K=w0-^zI1(es%j{LFnpyOaUoSb<&l)8A+z+TxxLBu;J(rgt?fXD6NSLVlwgY(aac17w_B|V9VW0V!Kum0=l@#7f%HT22i7 -@acW#8VbNh4#$H>v52RpO$VtY+(aWnqg@PCRiPukOhuQ`|= -3hnxI@p(q)$2w_^^X;4B)q&Xw7BmSG;uxwr>=@=a^J5nsv -TK5o^>*UNiO=0f|qvYB*uqg*HXOW@yT=18_Q`3)VxOVK(4H_qXOz_g~Ya(JA?lE@7G7#rk;X*F+OJGxqn)%om9?tYK-shU1WHis)dN%CMnG -UBCjyp4{DcTRzfMLWnq@;}deB|-N)L}#U4+B!B>PMRQcIuk5u^bO;^nL|8Q$>$y^gY1^ic}b}60PLOE -`*u;!c#?)e4KN>@~_HYmofdj?sqNu8+~p+C(`zZI^=ygbvBnq;41C;`j4 -t_Tr0L)X0-cLquuJ^kc1_9%*cL!Xny}FRJFv)IG8;pW{x-Ng$YN(sZZJsbW}2r))Jv|j|K6}{GyvQ#h -0A|oVGn%*m?{2F}D5mup##bLsc0f!%00{Qb^r_d>Z?xY^hELA(|bg$c-bedHXrvD<2p7ch&!1Vm -VDN$fREJm$E$OS^B}E$^)I2eY{0GMDU}DrF7LE*=5_$Ts-@5QZaF_2aLXe9KUUe|$VsDLPN_Cg>Xl0y -G9_M@YH<=qrJAjtxKOGk)iZYj^%m46Fh3FV!PFS^yj07Oy7^KqM~@x0 -I3JhPFJ@YXa;Od^WDnH(yXH|Z@Jr)&TbC1O${b7G -y*K72?kpwH1}Q7q3o`YUU{O(>9E*pi5H{|1Frz5;}u~TnLDpF|N!H2G^tqA-EnMX9x8 -}RuT9%_$6wi~n8`6ZoO2c`YrTc3+cP(Ld4f?G~;n_WLHsS7uyk48au~g4x+$g)2Gn+A^HVcoeXV(&Co -z39u)bIG&oYQ78#rPd3zsHJK9t-EhP8FA$co)7W3-j|e5j2(bbVR2Mno1gKvo}@F=#zd_wadW2SHu;Y -{N_ggU)23FW0aEjDEJH42yjcb$hE!lFKYj1DLqnUXqsqHG$`GDH_mODUjuYV*uQ!Y{gTaG*4L+~xS0a -yQFxE1yMOW*wa4}0@ZJmG2gmY1*lpgsF;1&I*Mm6Mdu80Yc<^6wZt`jugEtt!|5K${r|EhZWxz#to%b -uVJkv#2tz85;zY~8}I7ptT8E4j+KdbqDM4!YbWsFFfn}@XP&8V_(^S8lQeIWVQrpkdY=>8C7h<*6ZZ+ -)AtEeKRFAJ_`FT@z`61-ifgYm{vu6He14&v=byb4y;a%whOtOp-k0xw>l#{^7j3fOlRY=1Rg^_0QA&N -uUAw@jOeC>X^6jq$cK?_2)K-G`4Y#b+Vg%oOTJn)J@8Ge5zfuJ)QwAINwcNA)XLlOk9aP-)Erx8t}3_ -=kteE4(Rome>diR+NCRAc$>u-ztY82TgURi#LxRsFIKKRgc`>K^zk&tvD+eMb1Xy4MM>nI;djQNE5=yXqfUi{Q{B -))`8{b%=^LVCj%J(7wl4}9Isx!O{9XB?jJ@N&4gC)+XRdRdxfe<#Uar$5UMgKyy1Ng*P5k`zu#8dQXI -pp4I3hOpJ3Mb!>zf|Ln7b@SoIH#n--wgfzo4h20^{k#x0*M`j`ebUYdHnDmMvN2rVbgjzzMwcXpTkAr -$mX%YOf{lvqH<6OW3fTXuOyKc+~VMKWz`-u@8KWUGgwE|G{5uikJBKlFe8z6CdO|1IPE?BhrZ5CY};U -P5dN1Aa2U?5xDd2>uS9&I40l=$3z$>VE^Jw&mON1*L6y!87pMpxV|6(84J_``eFs&9LJc>G8P!)Nv02 -*`HV-$Y53aHJS$ZUfqlfm5r4-OtEOnFX{OwDA^BjuJjQJQwq(%LiQ)u(?0K&B8~j%n{uiui&SmbP8jE -O%%vT(no|?Qkcx)LfUC4Y|%$GCQCb~bgX89hB7u^k5qjts@K>Iv9J&<#Fk08(L1ofNu4l?J81G1+k>Z -e-U+nEzb%F`J0RmsM^2+k4EhHiNtYm@7`$QvYx6AQ8C4)EnRv88esJgs=w>=53~4&KS9x3c^V=R&(a#JV(FvJRYN?5yFkO?Jcn2RwQMbH?!f{jZP8fwfWUh{joa`U2iX -zbX31e8PEexBPHq-aM~AN>cOI!N>M8&otJJKBAiw)Y$pI-^fu%e%h3a!Kdt6DtK?(bm$7&JfJVe;^#e -nY4s$Te^+|gY!hIV{W -lpe!rxt@@=cbm!E<21bk9U&6MK2`x2Hs5HAki4!PE&Y1F-yFdqrWNM4QqFB=2f@$J8j{B3UP)^^C8xq -#m*;On34$i0*?B@)DD#v3%>KO*l0MO6*pbpvgpwH_&d(cg?YKa8BcMV=3q7K5iw%QS46c%R2O`-FvTY -p-F0@&tHpe5b90U6zTHvV>WNe4<%KH|!%~`$>-V`=Bh#c>Bj+3&+9P{G^iGujX26q8sq4r(96p(~--V -)}=iKgBX9+5!6`{r}$pRZ#opw#=0lf-T54R%fg;$O3;IMqm8=~WPU;!M~!|VB2L*v+fb%6OBBzK6N}j -&Wt=^fTP;KL)__JH2hVg2H0{SmZ0>TvwF`TRu%&Kgt|rg>V%Hmh8RG?DocVYsVf1^Iuedou0)uEe^a{o0K{Hj0GHBH<^2Z^dnxyt$i1BYF@1$wlkm8s+!#uY -n;9>3EEtK{$-E-kL}nWi=B_AY{40QIC)KSE9=p=&NEzn*tt~{NS_wWxq`9<=(OrLc}%~J;O&~TMAi2+ -XGMpWTsL4%au3QlDf%Y%U5@`(pnpD3!2hG#ggWxujE}Pv<$0&>le{+Ndr`%^$>a=C7y#^;x9N&iwYvj -0^<0E!j*0PGo=@%hsx5O-h15%9tW~M4xi-Ad(lRQj59+$~NbbJ8mvgTG&$?^s%ef)&T{8A{l4@%P+VV -_4lAEbzx=D9`j&V#+9-8+Y;PH@1bRHE+b)C$Oai4-=9LCNuGS|Vg7~8@)1=oET+kjOB*=91@{70hjzb -yTv^`LM1k@iP1hNIx`^7CG9zh1NXtjyzRjKOJ)Az4e7w#4tD&H`hN-nBp1KG3NDdfzkFEk`xSpdI6)o -+YrZ`q%q3TdRG#b<4Z>9%y8YeA^)7Gdz61e)v}?SGzi8%RBtG#_pqS73W1)zke-3#60e` -oi49(>}Yen4wtJ6(C6ASIjjB&eG73}8sMMeyY1=99H_y@7KiDxy&USRA7zGplM?(b-v=25LQ}oOQO?%ApxbPkYy`$c^lzC9V -_j>-Q@}S7QMEkC&JSfeEZ>8saI1h?PbIpD=LFu!oqoE#1#t=(3Y(P^*eV;|e5VPb_j^ka}WMApapq*< -)5%qzf^)halMbo@PMxIDZAK+|0?-e8UW}%+mB=f;neqcqtv-(EbA27d(&~E#wV|eA^e(+q>=`1bKKj^ -oLk|ay-A;RAFqQ0@;`anD6oL0{9I{Gwd&AE#TL|T<*b8ZC8CieX6B{uO`+U@774+n8h1$WvDz6vw`k{_z2HF{foZN9}V*T<=z$0Gqw$2SVmsp`H72L@Rz(ge#vFP3$Ay9mRNy459R0mp*^hK>cX^lv=B>=}j&v%D`$$+?x@oWEPeBulPiTs?k24LI{`m-l*j{t^D4nQZY7xh($I$y -@&saQox`!7UctoZaZl!`)BN1;9X$F^wIeGHM>8s-0pwDuJH98e18}1?gy@R8u;308;!3mfF1Xh4 -e%p8qhV+V>`GB~;IfX~8x5GXU=HSZ7!!CuU{^|Bh4M3Vi$%a~kpUl$$Al+g;xXXK`Ik2|r>l1byXl|8 -woEv^ZNQ0e*!Laqqu>cv-XFhY?fv&Ff4iL%ygPpmxi?Lu$#_e7`*NE>TL$p{49>iTHy7?Eo>^Ake>gB -`^>0rU-MuSp-lhMXcmlF=RUgV7*b!=*%R3d!xjFU6xx^>pSNVlt694}*Ojds~m~;XrPviI65)}vYKLC -s4uY}riaV9?4O82(B^PJ&&5hP2{z;;caZLANua#~AU%KYUxy&U?|EPk!pY -zVK+geQ+uXN}occthhYfs;QxY?5FBrI?Exr`Crp!}>Rc?t9F_^#RQt-3v<^)A4*e{g}Huxe&(t@ot=P -*JwL+qd{1qWptzO&OxW8NSM=Tb|NWcx^2<0N;$ATTy!HNt -M#@U$n`d7lSYCjVJ=Q+VpVI$h^O%_$JCWq$~o=^I?^Lc?XHGYSlj`s(ETYMfw|D4zIS?k;7Z#)yuw-~ -?wX;xb<`TIB0T5^duq)$If6ouco>ECuIKn6Jq-f1uJy#HjDcOT`wo3Gd%K>M>WAM%RtSW_6csPfi$QM -d4u}*dWvzbHyY8mjcK6}^jGOM*{Z^bv4T<===G6~vv6o%h+WfhM$!_p~cI=6P$ -s$;A)6CuP&C~tl4+BqM~~$ -V#GU+A=feq(iUU@e`*MSgamul89N62A1W`yCk$eADOC(-9J`r9QXkonGZXJ!+JRbs>=aH!q?Sf8xQEN -KXEZa?%?XDkbH!Iw39@+){ko(1@Xpw9e?_|56Cql#CK>LuLv(H*HE6N)?x8$IHHs<}!2zn7}C%tI(2HZ5foo{Xq!;s|aLtK%-~VzL*RBMvoxW{h!IB7CaU_yfjLapPR)pvBqNEjB5ws#p(F)X6v;x2J -9HtdnpcOxqwBq-m69wSAte -d7(**g8?@qjgH|wpB>Ra)D+ckq2DF0mE@4%RZ=9H*0CxvN{b^J5iq-_(U$B1`wj3|2##>hF)=85^->4PF|6M96d2V>*7 -0xmr`KwH;%;qMkh^C%lqhp=H|N3O%-a0aHy97_jF%iM$1Hx$fjZZFg(OS|VH{ND;(c^5E)jGyx*+h{u -bqC?yio6e?$=V%$9&X{!eLhDc#u?~Me8*1ZNlC`GFL91~8z>;2Z6nprs?2g>GFkjE=C$@wjFC?Mw^{c -H*%7JtC13CwC-~6W7{um&lk(Kpx+m26VJDQhI*M7UwGk#*l}B=J -*>>7V%o^byp5XJb=l#tuKKmdO*^&GI&;Q5Yf4*k7C2sI=EHk&D_{#cYR35AhOs}$c!oxM@zTyJeQ+({ -lX6(;$Jxi8$CW<(t%!RQhfQoww8gRq{OyQOd#}s^lihq`0b~Fd1XM(YaZAJv*Dw_aaREg{z@@TefI&uJz?nh8w9q!xGEGafOtj -^Tv{`9si($54E-6}>nqpGnQfXOXrTovi_uMx#Pq4n<-|zeX{+Hjw@x0Gn&OP_s<=uDhdH1p%6QPac*= -cy@e7V>YIs(s1c~2LVQx{t~6z9mhU|Y~b-wpjryz|?{6^+@pJd6bY;b;m&t#n7axsYe6H6^x>he;jm4ms;(t*u -2OHCi-#?+3QKXmQm-#t#P3y&Fy;UDX=fkz|!1Lkwx8+>^Ag69{ok-u!xEbg9jPM+0!NPCTE8_cE7+1V -nBG$84=yx^a>)9x~Jcp3)v&{GS!Eb0i#Gc6+VvU6FnT&H1U1RuJK`68H+t2si_7BqT+aS-@JNcn&S%z -`j#u3#{o8qSQhW6~^Q1>op6yo|&-)iUcx3RdFT+Rc8jH2Ct#S0A$Yw)Z<4A0Mih37P$DTH;1$1e^Ga8 -29EH*7$o?!_GgwC50N&ptd&`&7hzP3O+yo-ly7DA1<^EeU0TSFQ;^+~=jSyzErZS#-MX05^ymaO3^9o -ch1J5&eI4=&$vUXJ9s_{{x5qdHqlL59+_}w7dS3r2eB>%Bg=<|Iv-gnOmYjZ0nFYL<~059i0W@tm$md==L7x7bF -!%{lDL*QMq>TY+L|4QB{lK1CW_dVCXK7Qjp*Iw6&J-5XkYa| -cJyAk9mgK{u>7_Ydu8`nMAa9^Gd5p6#g;|1i4^rr?9l?*{g~%)_m -`=P$}>?zM)kx596vo?XHj`*f -H`$oaGFS?Xb32)ttjpTF!8f_t*3ianFWH=A-Vb%V#q&(Xfw@&4*{hjoEGJe~t^9@^+RkKl?8fYF}+Az -koZw1I*5(L+lt=b}n25mE7N817rJE!d;&UQDy}PmE{0vIXtjuf`k>T-f$WnWh6|ai$xhriZ%`SX2Ujf8>^j;Olrvxo3I^xf48^miu~ML5=eIJ39Co3u)w8f}cE?!*5^czBsz@f)FnzZS+Gkr8@HG -$~)A8{L+ODt%V$^C#wgaNkXQZ&CN};( -NNG-Qm^)PQ9C75@$$+Lim)1hOK-q2IN1D-(J9TFl@73`!w0}=L -Up6o&(37_dH$HZ -}=gS+99gp~F$Bu2(u~;<7R_W{h{^GueFOI|7N1&b1vLj+FHpPbx8mdbgG6d**y0$s{^elCBBV##j{JS -WAp*I_h=OvZ@lVj1x);B&D9r@*r$D)Tl*j9Jh+Gxg^LcWwEVq7Zsb`ay%K=llB7()-1x(WD}zURPm-y -7NccWiaTnj4KpqpQVOl#e|jKjYWmcua%(MV;clXs+quIt->40sOwvepl-uNC$SI=D4hGQ;guKG20HnEP+)jfb -`Z{T^~_-z}!V;nJQ#diz*<{ -am8S&K1OeDK`f7!Nrg%Fn94?t6ho_8VOd{88V-k2b8qeIr+K98{5ch<^hebkAb;YMci@pZTJ`v&YK0k -X~iWF+AVUCsxQc20rhqW7{xX8weL()vyNVVUhRgb7H?fjE8Z`ui@U{A|8&x@Ed#VkIwIN--A|b%P#aH -=8|!49XcvJ!)DOeDdJo}tkYY-4foTl>1r&-ehlaR+|RMReqQUc*gvQm>jL&o6ZVU}F|nVKbK_&d4Zrh -SrDJ<5ec(L@#xy0k*Orc5n%E4_D8n_M#ntByif0Py^-anTKIav-A{qHbf84ONIt_q -u7xF;>d!?3z%R)suEVR8T0Rr~0>(l+87y(jjGZ~0J -o-;b252+43|pRI~{fNBzV@GSJ;kwurKxAux>KW6Z>=s2va<`?K9fu;&?Z^MaO` -!MZzst+8?*>6cDz{W6o)Bct-=bIwr<7FfN-A4&z9)x9p|(`F`)wJOb^Q6IvUGw&=uCCg6VPS7^@~A2z -4#iJ1Ajz0e+@dCp=^z0aRDJiP8>McIpMsvp5S>35!>2hR|YOE(91pmS?BedsRQYj(@8J_kZqn|5gc~V;N66$I06L&ucuCh?t`00q{=XdsfGSagH17J?^C~&z2jCZ5hTS --|Thve~(v)cNTBaS8a`?Fxb}nV1K}9pJJLrsrmEbpN;Lm4r4wMPXXGD%j_0U`<)=}$I+UHHSU1-&ei< -+3GZg-;8|{j=K}8cm8}!cCA1qk+fJO%g5UU~8-DX7&uDR5XVRpDJdyX22Ht-Tu7hVJV!@wX32)5?;NA ->J(I3Xe=M<4==U&t9{9CfDr+u#dSY6dK;Zb~-#c!NX?H4xqH6AT1R_j>M4=w87=#Jk=K^w+(G+jeObs -RodHnv`=)Utjzft$&rBzYKwJ$1$S6XtIWguf5mV=?@-hHBiK;)kmZZ&vxS>G;0WvO3dvsL?Tj(%l*3&D8-4$9KVGo_}yCC$iFPjnNR~*`AQfk;% -xPK#gdRQC4UyPa_R)4NAECk{w`z;JDo^VIlt+Vb7OM@StlcCquRG)(JG1`yl=hsyG`>+`xS4C^!|A== -gN_yy?drGS7Kxg575?=QQK6| -b>4);=8O|V>TH5tESih?jL6y;DH@1vBJg}%1Xfa1JA%7#cEjYS?tlYsMX6$(Yv(cZTsjuW|nZxTaogU5RvYy -^dXMxT9)N$?%circQxt+sMI>%?ZDGb9prS7wtVha>L|H-d*FI!80neIIeZL(!ym;`BLw~nMGtXdtwt#;0u+MyJRwcJme8<-#-yRZItzBD}sDIN<**@dH} -*jDEf#CN*i!{fPV*p--5-1+xJQkxGf98y;U*HS+wm~=nMU>PlS)sAz(Jp35s__n$j`?fAG*poK -nJUK9J5QN~oGHervK<>7=GRiPGJ#bOg6YcpBp=jjDw@w>0)CEWp^hd4z0_o}O(3^q#?_7f;fQp7hduj -!$q|^*4b_c)#kUFXP|Bdij^}vo+xzs=5UW3uwtg16r|80p6@*Kr_}M0CkVwUWI$I>Ae*FQauYwnGJP) -0|T8I%An4ct^=J^pqzee5#VL((ALJUq@)`1QGvJtv9Y8&USf#rXK?!au@%*)7}^*J+!JVo;#J{Sv#L5 -y@%uzSy2EFf$A+|#yubAZIa`68EkVu}AZHlsU_%}Id9dkv#c!!E>zLx>Us64R^INhGWkZ=khg`NeR>I -{5T~?rMO95MW*rh@?#VH%g)RWRrYiMY|^x@f6f!|%?II;@HgJDcLkG2K)EvG*FY*cAO!(i=m$cUgz4FMM_&3>fZh>n*j5c!YD)4U3UM=TyVa{**@ -m$#J#-}dl8i=quK4zZ>d}=^Oj7R(5RERl;wiRN}G;t0oj=NTQ^7j?D@BVRL{9U*Q{I#ZJ8Tt7?n{O!} -%25M45bp-p%cG9-8aeM(zrZua7ur*t(rG{#YiFCFl!jz0p>W^UHXF|^Q^MfB4Y@P84pgw ->zEh3$H~7rT@e1a9#pEc#eE*6Zr5(i8+h9yIAPwU4?^{96xgzWy^PGBb7TlZZVVuY!T>H`*k5&;o;8}mxqj -yAv!hFk>=Dvvv_ERj!0OQ0e(3x)@%GYkdDOHZPa4+R+GvJgecM#k&a&HayEx3D?S1{@A`u<4h&6o7%O -M3GefI2(nrMI00T_L|Z#mCnOa_ONzfc)|PV42Ig>tP;xkH+lZ@O|s`02YAnV4tzzAzPVo2!5mgER1XH -^E(FM_vW85e{hc*Vg&c6xjXhL=+3}BX-EmUujTGx0p8qQ5AM^46f(mQ2K~fJ?iU)c4KVI2#B?Rq4{^5 -+0XUy2=TBU1m#*IRw)?zjS9YbY2fK+bU=H>M~Hc%W)bO-UV( -1b)3^tsI47)a#6@p*^&QYr4UF^N^JQGuIETc~j~E7gTeE?6_rmzMD_dC$V?c5CGVbAtwgAe?o-l?@eo -xE;;Th;b@Vm6zn1?c4d`6dt`>5B7GuJdeSZwI!al9#WZO?(Z%eU$aS8Sf`t&ZFY*-SiF*^#JD}!tlFs&^?}+ -_M3-i1pXf@zCFWl>i4T$$bcRhE%+)28Jkvrq=sj7P@x%+eXtsSL -%Cvp$w?m?=1NA3>e`YYe#y3p0Q!{vAmV_?q+covO62jhj_(EduHotFEEa6j;H@rSE0Tr1abop`t^A6I -_k1wTL6aG{Oxn;`gkyM_yEgkOT-=g~6)`l5lz1J9`~BR#;ougDYVvW#>l+&Yn)zl&Qaxdpqpg^`=V#f -@<{l))Fqdw4F%Oz3~{d)t}N|Kgr$Gok;*JxzHWh3{`L0M{KO=)Gk;ewPA%;oukN#Ri7MJ0`wctKkbn1 -K^!&#|1w;uNrWhV6KB+eL9G}cEFE^?M(7?W}s8!m2ALM@jI2g4gr?VBFsgd@!h1>>|O3}65%Z-ijNq= -#uI)O!cLyd-o-u$-|53!gbmE@Eb1iixfAp&ke~yKoa_VZ*)i@Y@u=U!4!*`^r -IkpiSgaW$?~`yJPV0xR^PTc}i~Gq((AbdoPxNeU3 -H9czN9Tw>O3S4^7Z?xg@u&DKeF4UjKG1(#6rWFgARfLW%l8A{g~nAA6jss8g`Z4E6Fp}c$EuYE&KZ#TJ|JfIR1%)`1oE`(jtDD -1>)t#u$3#kb`8gLBX8Ma)k9c#kJt+F62tKx&liL^z6(84__;_VLobkFHn^3>L@Z-5?9f#38`NA$^oD$ -0WR)X)AdgT_A4R@_%LiGJpACM!A^s%fp#mQpR`Rvu={oYH5 -Pfe5oIQS1hT1pcVfPds`0t65#i#j%_VP89^p2`wF1?o?o|9^kovHgp6C-c9t?o1Z;``i{G5$=5`k63@s -dIaA*5bBl8E7lb(4=jt;%LiJq-e7ttXJ6poLh(J<8|o0|y+V_BXrHZf@oYuXdzDMQ==EnqY9F*ug|?j -5qI4PVW#0ny@+#;h9P|^7xjes^#zP)dF;N@kh+=lh5c(;i>1qOA9B -n`4(P0abmkB82ZX+wI2m+@@#8>um@mu|=wqu-BV~u>W`T0+1$vvUR1TfFsB=!5vSA(8lbHr~3GJiaN4 -*Cbqr#NVd=CTMQ+shk!!|w8nT%a>2w7VCGvigzp(;P7F;Y?ZvkCR!+q`s{57RB1iQg^s=W7l@;|;(gh -F$W5K0m{gr4E5S%~X_29-zB|F~*lHyVy#bPvwXU9)1;hkXP#>wzAFgA=XGJKahFl&2T?nQ4Xa74Tj&2 -&^HrTgl2;9-0!{QV4xdQExh-OFoL38abTFWZ -G{*lHsfPe5v+;`e#%^kx*o2_)tB`FnU?bwx9?`10u*EUp@#~O!Ld9gu=!>^sH!ZQtDh4-+Y;DN>B5`Nl9A_PiQ{*Q)lN;nxLzst#ZrJN}ubby@?@{hK~%+P}O -NKL>Cd@+sOc!r}ek8}Kam<7IiJ_g{zE@#Ds(!=x!C$qjq{n#Zp<2&1QZb#>)Ny(nQ5(^Rh?Wz5gXjUGHAF8GZJs7*7or1*# -u2@Z=xm~kiLM}8Msz#TeMFBDy+HJLqRY*K-c7WCXeQBAqBBf_&L#Q~(M?3(AzDrJB2mwDK?8_(A=;Pd -aH8XhrV`C1dLPkEMBgI1kLXdNwM6TQHqQ_=glHtuQAAUTW)q!HbScrtiEbkL3DM7q))M`R=$}MeW(sN -`8cB2%(L|!@L~TUxBf6aEI-<`LeTV4hL@yHcrSj=WG?M68qVfu*^5{!+w8`DSs5>(%u6TeumREUy;hs -kRM<)qd^^C&l#W6~w@sd6g;YwZ={{E92=Pxh+`8w{ug=o0ZJ$%72!ADQHgs?Z^QjPyw!agz|gnbEb*W -fC`%?TgX#IGgXjPON`KRfP@{g1oL7ku13y>P;QgrhX^M;&+9>uAEBgp)Mn()~g| -6C0&(BPuu?)tt@<6o-b|B%Lig$A$IgkP({Pib%&VOn5k&uaY3HTXph-l9o=tHyu3#{V6Sf2GF%1C4)` -2Jh40gPQn9H2A0npU~hM4X)MTIt{*{(bq){zN`sfufcz6Fgu~C?;314;a)$(Pq^2YD8fO6lQjNmgaZf -{5$;HME#Xdtw`=^5YW(Xp{=r`f+?BAAaEMHwuz_$X;V{DGgl{5zP!spP8bOTq;w-Q`(v(mnrM2zQtIBHT^Nd&=EEoNzC~(@(kcFFNI}uQI}22v-pfCtOcBLh -`Q>xC7z18u$KqI^otbe>Lv?r?$T=(S%>C;lI7cy?!06ao5j9!tI;jukGKo{gbwRYx@Ij|D>(|{-*_QL -wM%Qbd%kjDb)u!Bh#Fb3$(yw&oJdW-R+J{z_}`RWLxY`hnX|8Om>GWo@>r<nv=*kRi -Jz@anzZofl>%P%n7Odv1b_lXwurx#SpK7HWFME$&p`$e#ROw`}u_yZnjtQ8HkH_-5&Fa`#CC;S#*9Eh -|4ZX&?H7ySCbuOIxnV?2m792ndL_Y2^6C;ZapW;smhx#k`uf7;x14MrvQU}=ux0&{+rbY^L}`QTx&J4 -_BshGABr$(G6e(oikdSNh+Qd&lS -L2*+`!*mKW9R{1(QE0RBVoDnm$I_BhQ{&ysRjn27xN*i<|7E?V`Y$0%%g?h~3|NQk7OWL%P9=$uTKTm -8x8LCwA}!BkHO(?-{*_X-;hHRG*YeS5&W+#o`oBSFtiQ!pQyw%8i`C+=K+iGXY%^p*Fqu#3Z*rK6EDl -%sTtd0l;~OS-U46ZA=*IN;7yRAYyCd6XHf6drd$m6^bm?Mn!x{NAP4i3^>PA)f;Ul6&eMyCW#W31z&# -+kvTm&?X!hFQ$n(THLU(l8z{5t;_o6S^A5y>ge0?F7ivWvB>4YB!o1-#x(N}ml`HzYv5T+&T5S@W&Md -HIEQ1C)>1UI4XGRT^E*SmT%0U1=mtV{URRrHwDKP7}|QeqN1G_BW}A3w6D`*x$QQCOvbG3p@zBrXj}w -a_p>U&dY<`JzTJi=dF>$n_YkDG}M)UW8qyd3@3HltP$K8)n48d&$|)a7;Q|xrsUOPZG1gz{JN38|Bn0 -rTz~J9b%trE*4=d+ti4>@vur!s_!8?}++F8RT-#bx{eiv->Kfnm(zZvvCakM`+Pt}9*Zx7ab8Xt*ta1 -Ig*2f$56I!`$)c#%j3)isvM(~ZU8}%FdMks59dNcR_LH<}1m}%nwPy7GRUE$2i3Ry1v^%U4zn485 -uEZelFoV0rqskk8AM5fL+UDxduO?!7DU)r3OE$!K*ZQtIi#7(_lGIA={apm&s#xmcjCwjhW%EFU#aQU -@SJ@HU`G8Nw)k9v)#^E&0hEUZsR_89Q=#G(}@;Dxl_XhK`V)_ND}i0l}YaN7AuHvX*1z|lxWF0n%5^9 -_n|xgq9KjX^Gknu`R{kfTlTs02`5~?*WDd|ZJFq2bfib5Smwb@^j9sI=pRtG-lTIqQ6HkdvOMmTV+z3CX&M=wfoem-yUA@u8 -mb7V|XWjU>mjl+HiM{Y{eV0QrAG{6Wv0zif9edi$tS-64V45v#>tA{q$k;;NA*UwxmALj!et}cMkB$<1V?ZKm0F#e;q#yT+-pr# -{J#nvcDNW*CpKn{O7#>Dt<29Wk9H0@R`r^VgVPc8^8YlE&TE!pLX~^mut&i;>f?vzW^wvU-a@n117aZ2K=r3V|q> -=RzQW|kF{8a$pqhdjmXqEKa86JJg_7jpb@DTlqwH2Q^<8J>yo{Ryy9hs967Gz?=E2`xSDuPodtC=A7c -F1__^j-YSX-AU?3ilGEi`Mxr -MS9#lY6{6Ef;Hpy9`rqiaEn!$+tqzSbk*v|9$& -NeiFHptwf^Z1Wg9m=^Xzla|D$|!#S1UK^ztiPUVZKLt=rysbNi0B-hSuZo$poddVlu^AAa<4)t*oG?% -RLh(}Rbq4HnAYA2TX;^q8^Z;^N0 -oNSK&7DQR+YO6ruU)282go6vvL{{Khl|Nn>{P;vhK-OH^9RGfdhzxn6v0bTR`ck-+K(>Idm0M0*B#X; -~VT@eMi$p5#qO!;=le>cC*d~014x9JPxpW;1J($N|kr=bZNnxyeh)A$!?{7W?c@rh%Z#hS$uV-lIwWJ -MaD0{_V=F>njF!+#Q^e|+L-b;b<+E!Iqq&AlQc-AB(LPlHG&lV~>4T%rX;9Yl+WE+Bdz(G^735-lgXm -1rf=eMAouJwo&-(Gx^#h}IIVBYJ`8MWUC9);Gv`Ct(+=CmKYwBT>n}8{ytW2N5+AO(Hs-Xf{y?(ITQH -L{|_kCn_t^cEXiJtB4*XdX#7l(K@0Ri9&zOsXtKz(I}!xMAL{C5iKEFN^}L$wM5H^mJ{7VbUV>XqE$o ->5D=5#jEWP|q*8_;4l9?~CQn9E`cXR#D>0h -^TJV2Sy2*=VzPrGhwxCR;Jav+*0aCgRFD!*>~*1>YNi2Y-12KHML8720V*A9y;Um_A8dzWSMaFHcW)efH%d(`SKdYM?Q~BF8t};ERn@AT!x`!JN$jZZ;Svr@)#OG9F_zac6#XOw -I=Xk#Afc}MS7Uyf`bFq{7yax2EkdL{jXFd}m`4@7o#cDb>7Z=h$$2k8aE|I=Poi7mSn_c8aIh^r@JcW -GTf~j(ec^5G+N%exunXkGDd9|UW{O;~COjMR6qC)P8tRLt!6aFuDktdV>dc%``BK;Xumty*Z`UHQsKq -`6gzn!Vo3ev>+kSTmV9Ix4+pFWW5B*OFgOkFIo$SUqdWam`8;|d_-ZfN?`~-=`Ukl#xt*|Fc -c~;S*NUnL%k|Eqgys5U4Pm*KSJzrTXT)`puw2inCoJvwS%AQD?MhEr&b9j!Zb3Mhu(Z=P5SDho;e_S9 -Pb6V!#~MXg+N~N12NI48kk3bPB@vc(q|*tvC7eb$m~b{>Y4=({She#dEbVAZ0_1a8T&0Ai-SrB>p@i2 -GmUh%-gbjqt33n#Eg|M_Eo`%CaaBG=9 -r57Oi6AmQ2g2D$8E+gEA@D{>trTz#9OZ^dUFZD+_MCyxh2dS?%)IUgl5bh-9B^)aCLpV&zPuL*!L%6f -l58*CSKZLtV{SfXZ^G~?D%s=6qWc~^FkohOvQ|6y=gv>wTUNZlLd&~T{rT&3%FyVfL!wC-{97T8#;W) -yB2~Q_Hgm5Yjv`!2cqrkugl{2SPIwsM?S!KVR}mgb_$Xl`;X1-GgzE{%64tk){zjHJ;W4tj36 -GWKO?aFvZ^H4iya|t&WNtQR^Bw5~slVy1mo+`_m@HAQ8gm07O9Zda`tnY+#W -c~@~%KQ^vB=b*Lp#ew|VNb%5)SkTwr;)!8;R3?Ggi8oFC%l5NKjAXMfrPgZ4kBDhxGmv>ghL3|5bi{{ -o^Wr%`u0@62pb4T%lr_IC2S;|LwGu2g$7jFggprt5%wlrO4x_+TEf1B%Lz9pyq$0e;VLOF;TkCq;fqo -pIY0{`c?kOx_9ko~>_a$`urFaF;pT*s2!{|(BRq_70bzv(cqKA@!YgF@gv(_5gty4_30KPW2_KZ{6Rw -fz6Rwx((|}Rmf%p>+ChSW%oN#l(QG`PX#}OVzIE}DE1Ihx)pKyufPk4poN4QM#BfMSmGYDKI`4K)U`4 -O&@@d?+<_%y)Occl1)g9-Z*4ktW}a1>#MzTAqF@d;0t@d;n1!g|pH1P#ED8f(J5lkTKb!d -C`!8Nr;%g;bK)8Uy+sNHU{IV$>JG~>@*&L#CId#yCgoDBr61A{Q%D?oSoJ+5llzZW-+MB-wTIKzKv;u}Q|C9bxRu9P^ -*t(!r$1Kp&*t&tS%QiS0mrc^ge^S%cvT(?w-SlR4FdUP<>@7=@vV>}#PYqXfcqz@{slb#C^dZ>pN~ma -!`pcJ$!hx9T;4b}Jk~$d-vkxU0UV?9$NGr=QXdYQ--%PPjbq8LkmDqkAJ$jQ-)Pl8htDrL%gfB=zg0~ -ym!~K7Yv%bIqo$wB-G4v0b_194_ZLHDAJdZLC^u*<9{;Rqi~V&xvY2?ObopdLitLCaQYO;qp#U>v -;~(_XM?F*tvDt1U3Cau7@et>A}I%b=IGBo^PjI1*C6@XYqVHu|wnUp!VUMKeTG{nXADzH*DAN%j5AUs -yKt^a~#wtDNn9jIf{P7$wBldSmT7|M8AR@MGc!nni)l!7S?mla?Io9l&I?2MDk81Ec%mJwY`Y>Ri}Jr -D!1u`MSn6%Ef>*0IOB`{!Rc@1{9OA72XBAQdLnX{q$yX?uATjuYdeVLI?1JQX1De)>e(n&->&t>HJ;S -l7@DyXdKshEKk>Yd)AYMBs@y_PF>1XNdUBSd&{M2h4zBsUUVdjjrCdprBOzCU+HQngDXN@8t^^l3tZw -NFxyHHlKQ_1W%BJ#k%9#ga2WN?i^hc}pN2EVdEl-)gvp=-D)i*Oe&z#REo147pR9-RHmA{Z9#Z3-<3%}7EcGJ -i<>kCS>n-pcf^ywSUjF2Nl(2#DF~X6AUnOiLTt+yF@FRrN2!BerfbeI8O9)pJUO{*>;WENIq`ZVbAY4 -iK1mS~(Wx3Z7-beT%;rC>Q`v_b`uwJun;!plh5)LOUSMs)N)^&{JFAbFCI-b;V68X#VUmD?sQa^;>l= -;)F3zm|w;^^U-sAKgdddp(5xG7Cx2Ow>on_#Rph@(rbl?C3{P0r(|W?M6V~??_yw7sW*sM({ -Ff2Fs9CoRCx5vvQ?FUaj3WPM2*(lLPk1`v7YSz*-b1*E@S}uF3BM)vN%%vlPr_Seeh7aq^+oug)E8m- -T(2WsDf2`4Fk!jwD%WN8{RBQF^+otAsUN~$NPQ6gMCya^HmMK7yQDq{%gro{2tO3^`8Dgd_2e(t9p$>dT=&=a7g#>0BM -olOG*@We~x?G3P?l0%bD1D8cLJ|4Pbz5ndAng`P$^S9JYYEHu8ELm5r_IaBUp}YhI=Ea%-%kG0!bPrg -%WvYU$iIlNTz9^O@KN$#Ojz1UNIMF-t}NHl>nQvZ!u5pZdxKn8mtP3!2M8=JXrvv1v^xkU|5=2k-GQ` -I2q*t6nLonIC4Wj!+8xA^e;(oKgzqIR*U?81&L;l{2+MW&VT6mw|31Rfu0Yz6mXiN^$)B*?u&bPKA>r -+W<@kWRpkG;)E8knZmlD{hOo3-k#;ThmiwK6}1ACmkDZy=maxLjh5olOz>%lCC@SJRGgDf!EBv9yz*X>_)h{O>1RPWT^$w-cUAxQg&ogr%L1w -Cg!a{rjGnG3D*dp{VQKd>SYq<0WfRrT%0M`q{L=|bJ1uF~RYd-2gr%JkEhDi~@_$ -;&NBAzn(#}fSWo;*a+J2B#5zZ%kl(4k>t0Vk1;d;U=2h -n^($C}jflfdcfc*sOwz|MEWX7%|Xutj~}6nM6pUx9Pf{#W2!wLBy)cEfoZ`SR80hrn|*{`TvzJ3oh7z -XUFJ$?trgfBZkgWxmDLJ=bM^N6g=+tNg|KOS-BLF<)#^(-ZSi>3r_Sm5*4bF{|T7u}+hr>RHU|&QkRx -)@?G?_fj!WW>Uvt0z2(`GikR0vm4G;>!rknDi-s=dDIh&b)Z@5IL1uh4HvrMbX8t6eJ5_x;B+@UOM@+ -{d;-r_%h^odO}q0iQ1d6SL(RXyg{nRUp0AN-zFH5(e2d8?f1;f7-EfBb-XO8o-#vb&#^0>Y6G&`#!?R -rEN1UzJ8-erGaiYLhwfqDwaLJ#*W(~G!aIqVxNmXykfm4OV -v*n^)qHS?5sZ$XS?An7ydT4`kO`lhSaxM2XV?L)@hvWQmk7#?cT-uldHdt+N~?jR?`>joY`vnVx7&T) -?cv>Xi>)@Vja|?$|Ke}ocR;jqSgmthdx{Fx5fI|ELC4(y(>p;A32(SN3Q!w7h$)aqslMV$8ywuE0=bJ -aHx1L$FhEibsuMY6zhX|YJViwv7G6P+2TAGY}5FQ_U4ZB)cTi4y9r2n#JaFmtv_O2$XR~`wyNc6rT)V -i-tN{P6i|J&syLUok6aZyIDeZPE>Pu>>ngIxkXW{OiDiov>(n+?9iuI6 -8?YunZG5bMfzm-u4+Kyr{+a**pIuKu$%{#F->~JejvF=}}h8K1M1#0<-+EIAjxWm=mHNRqAf -37N@SbulQBi0MBKe21D!wp;A!e^`U2%M+ZFM;i9|1h8QF;B&XZt1I6tzW8`%l6OcbLYo7G!Jb&_q}86 -!KZp};PXtTUv|9k-m^1yU+S45#`&4st`740p!&hAN3XOQmP>Qz{$H*zukJl6{R?GGmv!xK>M;r5S&h2 -Kymu{`+O6Y1e*bV*UX}es-b?3gIKXAQ4rKP&l<`UMvp;sf>(Ks!A5Z0kMW0(gQw+3gt=D$%pWXbOtN~ -#|`+Dfc+}6Fmdd}4G@9#e54GBHcw_G3lTE&8p&dZGlmj3K_;Dh^m_?=&{dv*7h;&CFt81mJz)D8RIGu -?XPg%@Ug+r*Hj3$6L#O55IVM|H$Y1wlACW`8yAewk%YvSNzvc4Jj^s_7TQT -zqVs|Vd>&kZAb3Uxn=8;lMg#$r157~jr1?d9|f6-&DO_|+eq-l+ZYbi1G4%^Fxz -y7lJh-rL_>dGf{f`pnBm5@$CIZaI7Ete_pojh_sQD9V0vK+cyRzVgdEmQ0);uf068pxyszIQ_R;JFuD_>`9a=I{@@<t#<1J6)SGA8N+I~>~XmkIIGk3!d{=ly>SJIIXlKmI0td)@5PqyFEl-Cyr=J}D>GX!NUD_;|R(@;YcQ>WXn%6Gl&2P`o^u2noTt`+}Y1_&x9@C|8n|R;>Jhp$9-y_`eD+n78}}Z{(RfEUt2yNWncMz{P} -%rdd+-nWK^qPUtehmy1D4ksZob^o$M0bX44eAv0;6 -`w_8#?L-l@x_9K)B2~Ld$N#~4zCq+dd5eO_+RqeY0C_5zH7*Xf4oo>)bo|ee-2%9zI&UJ%7lxi2HR$m*n@^omt{wilx<4G%ooiP9jFJADS^nLn6cU{nScCpc+QBqWoP>ZEzC-|Jh -1Pj?LRMX(JIigI>BDv>ZUYfpfcRIbk4rceV)7d$34fEZtef}sF;K+pXYiltJGRLcd#3BoXBXeTXn -@cr_{0SS9v8u;`(Z(VzF?tsn-eFy9hjNZEPTEUPnXS{v?nxIivL-viW|0?R+>Ic0o?GEWeu3g#|{qhS -tcIW?~@3>PuM2!{i8y9^!ufF$)FHX-{+wZ&2d@?56zG`3o%Glc?K0k0m7jf;Yu?HUR7TDvZ>aK6Lf7| -neUi+H8`N{cL$DNqqv;Gs^i4T`g{Sz-n9D3&k9VBcR%y~jzYhn&b>Q@rOgi9zG+zX68pkSX -{WyUYGYhI}|GylQ#z%iT`$g_+ElUF%9ed!l#j -mm%MkZ0bAW*PIc>@rz?Oe^)&I+pAsH6?|Uv=)yREB#jqCC5w3`<6J+`c{Y(>eiz&DQfSrPYX-rb(H-JXz(P2$o)QF_2Q$kT@@o-LT-6 -~L5c!A#dIl(HOxEUC*~dKrRW2L6@8mNioR{E;?wq4#iw0?;uBn|_y(6LzU_A?z9EMd-wr=0ejR*tejU5({5oM -jg72nv@Z|FE!C2V?3Nwys#Y!Gu3(wJCyx1q}hT)n@|E{>>2hz#7D^ycA}vXN?0t@VP5eN_Z}^bYB`AQzGWmOM+&i%g_`US`J=Qu4Hx -b7&&tH*uG{k#6mX~~7Bj&Z)fjXuut#Pgh1{`SZT?tX2+S3KVABb*vXIZkr=NWdu`e)=n%mL+$u;qK8k -PHSvCIW76w=QQWHJC)P2Z=dGWII~W;NA~}k^S`s0)0(rDoEpCHKEvaOCvsX@vx?I+-Itu!JkqI_^uVd -H{#j1h(eF4l^ojU}`(Mf7)M$K((=y!;oYsu$`>kA#RIlSd7cVFY8xmbLOSg8HJv;j8k4iV({?VP$PxR -ZD+FLh0Ix;2TmifEWqgO4kTV9%BiavY)Yp>4kJ~4XJ{P{cHS$cc)iRW&8yz8L+=y}TFxU1gQ=wB~CG4 -9lWoap+FKV7cvnHzm;hf{G?5BNt%#?0M1^>RY=+JSHU*{>`kdah4S>GR*3h)+&*@|0(mJ~AyQ`p+G&% -&8h`iq1Tscpv`E96hS@q1WE|E-yN>ZQ|PH1$og!`h9$MjAcsnvD@ncfBo7J{cE=#TWj7N9{usy@NYa{ -%#YqV>Vubqp1d>qra6fob$8@MAHMaq)6;h4MW;XY`D`DrVbNbDy!CtA&NHIN-F~I}zL{CkNpTOy>(|{ -DJ#XgNSI2#u7v1TB-|p)0k2|8%)@*qodv6|(&3C)fV5IKX>gboI_lyJOF%Mc+5$^$X2jnHi -lu^YszmUP_F9ZcfM_v1`UgKRzwdc&cM=^quL)d@EKPqc5Df`glSgYxJN;HlO|Ma(eX68T+hzW@Sd-c4 -5RpV}Uh#$jQZ{-rG4VdSuc0kXM(aM@Ri)Yu9PXZP6>Yh3)j8lo7q^eA~mPpUR6K^}*)$5mPgw6ZCPvy -!3Ty^!zrClsDZzE8~7VBW;M!6e~a92K= -)u)=Y!RYA_W*z)XmPyP;U-n)_+4A6 -lY;(E^9CIyJGt{wMdy{z8h^_A^`O_K=Y^_0Cx@F*OKivE^IwG$a|`nU3 -656wkiOFN7F<<`m{T%>4KucQ%a)J^Z@1HIuLT*jTi>R*hGxOEQB0Jc}b6>yq7Jvbi|_y<}a=k>{7fG@ -?J5KhdsTd0nUPOf#exO}jh9c4u08NHA)X7YMVb_@58t^5Xn=_I%VWH>mJG(yESorhYqRsR}X%K{9|vKF~x4S*=J0JMp!%}$(E0&W!Y!gEqHv^O!=Ih5tB -S|$emIwD}$vo0@>eb9#91>+3KV;cT=%6n@Vs0(Z;fQ_}vs6~ -5Poa4W(M-dH76oxYY#c;a{C<{nU%+%C9pWMoDb^dVIe$0nzCn;sj3VGe5C(DA6d8?VweZf@~BZk@&r9 -WQF!(C)k*+=88M+!Wpauv<8uMzEV(5>LZ$SmCyW)fo+OV`Prx%?$bLQaUh}uQ?-b3HpMm(^gNwU?L+}XEw^t58dpXhekQzYqk%OGr7kHzc{vwDoh!r4j9vAzI -Drk}SL8(MRSfqX~VLQNmJDz^+nI3T8h2M9n?F{#A=)NyY(sLQ_?@}vyE-*5-0)Cmm6X_@jk9K944R4; -$5~i!w;he3$mY0PwvL!QmeC<2_6aAhCP$j)&%*umL?;HF`nPB#Ug`wU>jY=GGPvLFg8QlQob`j-1SSK2_`OKsAdKFZWbD*Po~lw9JCfqeQ!l88! -Cb#Wo>GWEjLLsJ*7bw#b$wVPZeM|HWxz}8KD?2z=`1N2?Xpjc5_k~nzHD0=;Fr>bUu#~so%uLAg|S-r -)lfcsK<;LgZ*ABW5bi0Lumc*As~Ylv_T}2P4fVpmWg~h=W51w{PCa(kq*?zgW22vA%=1Ix9}Rp4alKZ -#weN2KVC)0kZD+0>b=s% -LnB;qCm9_NBP;!)AmKMe-INc4M9;8;jEnum4Q%j!zV^DamixPHvH~-F@k>_{ytRo=70MBDmNYnKV -+=qM^J7QMq8d`A47fr*vUidUk84dUHn@xe>ER!`Rs?x9T4|On`6HWm1is~2tIvpwf7;eqi~gH^W(q|e -p`uWViVy!&p;l}IKu^C{xoT?JqM4ybI!Is7{lD_u7jFi7%Tb}+A8tsugT+f@QeG+S*M2~k7e#W?gRfp -^`Hyl5zNzZmu1H9@NECxna&|7=hZIt9r^!y2JqKr~n@BTehf@jW*U};cRRqrFOd~A1zu5W -kus64vVX7lieJTUc#fnN!i#o4|x!A(3%52w0FBo6=_u?{&dU7xC2i?<~+DKho&`)7&Bb|Ex5c0L1r{~P;K5(lP&owo#Lm@qHm -p<PFMTNr|~i=$6Ao113bIhk)GAQV-n;Ceo-Ga-L^856;=Yj=@e!i=)1e<_uSel_PsBrDs09S -g%wfQ3vkb-I&qMu{%r-m2a}z8=%ewUK22dq;3xb1ruvc-CMc71MeQT@-9Qh6l&1X>o2U;7jf_!e-XM) -3P=A^?@{CKG1-gJ=*+;Vfz_Fot#;%95T;cNEc?-(_MNRq72Dh=?%~?;N@9_6`sjIU*lMJ~3T~o6C!Hl -i_nfR6rEl+-e-*4EJh$?jE^bPXmr6d{f8=t29qaZ(l)F1SM`i9>J;63`+f&cp~$*|=H@og+p?;1W4!s -B||=@ULKt^17HzT0DcajDNo--h>T@M9kfisN%V>9-k;r4@K-0C)dp`2L_=z*h(c?-Ks-s;Iy_NA0Lu@ -$5qP45F8b;yatX{7pLkz8*f)>6Qd;Wz|j3T*Oh>+lbnTK18&f=o>^25UnA4k!bTYLAwwgKs1i%ZA51i -T}*TZ(K4djiS8qMjOYcTzY|?<7W8hS1w=E6rV^cD5_B%nhlp+>`VP@*q8EvJrVAQCvp61JOvLqlh -LFO($w2dLPl{MAs30p6EM7KPP&Ts4taIN1~BL$C{mW7q3t%kG@1lo80{m>c*KJDL9#2SP*Z`%Ady0dZ -w5ivH4beey%yzVatsZD;un@7r4hemvqMGr;DTLS&ZjoT>WX(?M-eDHiLjT(d}YOc7hcVsrEDW)g4$=FCN -2AH=bRHk;Y%7;UjZlzdz9H2i)&7FW~Es`xQ@#)Rupv~?7MFvOXJ5@F6#iwn$b1R{(Oo1bY`&##>@COL -6T!oUH2GjntCDS(*hHs|HfVP^Bf@xE(DCzi27V6@fnvLs=;K-m=!fP#VQukG -RG8Um(D&t#LuZdNl0eY$5dC}1pKjSXlv4Z`z6V(qWjHhaiRu53B -W{v`#)Pq3uh@F0wNT1|~90$shVql5ioGBa&F)=^EHi(y?+gP3wsz6BM52M1mgp?GfqOhLj~Tv~Dh&Z9 -k`_zHxgAgwEH=X;PQfp%L -#~pzYzTiB5XzAGEW%`6^FNBwvgYCwb<-D|D5M??v`jS;!e}p{T}glki?S7+a2^3Y%A&}CN_z&HOPI^n -2C75n`R2;?d?~z4k`1dToAz$5JhWZO0%y~}t|4Y|jonNNYTpo1&v*|R@C2< -M!_4Re}f9;A`m(|w0EtiG6tQW5J4QCmf71s~{%7U>cVGX%*9*<{e|a@gbe?XH$YzQNE7@FX}=$fELqTBvv_!y#ZK=@BL)ou!5-)ySebbFKGjdyS4cay!~ckIq% -1~&89>|@uP2P`^#^kmHy#`@naV%AZ=-F)eP550%33&hud>Ayz%((f8QU$4>gxDYo6n&8!p{m=FP=LNm -&!AUw64DL^@5!7PNu31T? -KJV{t(B?O<#Jv<9dr&KU=T2tXr&8h|DNjRaZ(GzzF81mdHOP^hpcDhS2BjLs+rfu^FoVZyyEOt>=xW4 -VB{f!+u7paJ(n%hFAU4rsE@>`~s8u@;KiV|zCYU&DgCBQ+@{-O;u=T{#N$ijt)}*n_dBApZ7n7;9m=y ->RPLv#zWUW0io@`r{r{C9H_k8n%LPInY}4AMn50`x3CKsM51Lq(*l;7O>v2X+IhF&CfS>|NqNZWi -1ym4nI*J39!*RHUZPRM`QcDnw!c&t`}=RRhjI`Gi2Ur;XJr2Es3Er`+s=g?Iw@O -M`hvXN)O1M5l)bWFEr(O28Ai&jSwA+1?{UoI!m-LwV+Cg(wGXsa2XhhVi%X$F*X>JBOp4;XIQkN-H1E -v--wr))CMz+^-x#I*(}9N1+F}wvGg=BOph>I{|rc+9BLe#N@gf&~r4;UOc9iIAP_Je19Rvl=L^Ap?T6 -26ruB1?1WyCJWCF80bC9I;wT|X0ZYd5%*^p7>v$cSF`J)@`+gH3AJbUP76-ipOr9u22SCRZo`HsboT~ -S$V=DJLqcp3P`WmHG18&eNMDcVT@>t?-8ll-sPEuQJVQZy&r6V9wTA5fEGZHQ -X$@=U)&8pMEQN7{D@}%fb~b3sz2Z!HT=mQ-GBJ)(fLT)qx-9(JvtvAdv$+n-K+bbs3n&U^ky!{;Q;g}YFp7o(!z$(y_d;$Jz6y -(eIYyiWmNl&DysG9mcR*U_K<>3#1;@Lq_n%~btgri(3U_tm*JNqI$T?m`m|)(hy)a -hdPE;M$^Tq7u*!xLZ`1Voe&)bJ3Ck&!F8zH%;+X4Y&;DDjR5GHOn{D;Lnd~i8pCVkIDf#j(IfFL<;T~ -HPTeO6;9~ku8Eo2F;h}wO?aVw>n)nnn-VAVXrhT}Zs^~p8vNA>Q@DpF#-m))?Hc@Gj9bv1nz&z^;1+w -ACc<&w@)u1c0D9f6iLR#crto_-u>{w#_i9QmC4lEackz9ilBehWyk8-#fM23tV*je>H-)v(V1F^D3c$ -C(uiXs(P)}(qO)N!!hP6Sz;kv4=Cf2h(FZ3H=aR*Ht;&o?DGzo{Cx@e*r*Wuopn2T%CRf9i{GC2VM4m -vCkY9bc*{knmEz@qM&umC3X(3GB30=5Kw?mac(iTlaDG>mu0Oo@Fo(N>E#74_AWAF=h*gq_b3?XL$c4 -FEl?FHjTZfR2G0^cnp<2>lL!>Ni+}-i_7D0Ecm$2x2`^nols~j`CFx<38%Qg=#A9a389P2BSe2ApKd@ -P|EYTmK27527P6KJ75n-%II*YraeV0OC!)Cmzm -u24Ef_-yKax{I|>r`Hpd4#20+$up7p4zUM^9cUAd3$ay`<36q>~z4Q6UPI%6FpYNsd+Q$jQosjQeksi -KxlnnXt{g~=8|LJbQ|JKw%okMC7!p3765&*dfmn775jAsJdE-&9mt-+VzK6|VjkoXw-Y&`D-uHD9W*x -@>DTww44?-s=M8zon`Uv`E26<4@lb%p!C-(=G7dtBkZ` -3mnJWd+WCJA6gMOV`$2c;5EXwdZMEdtACM`5EOKT)Os>rrI;l -n38bq?y~!nY;uDib16^0gnoXoCR{42Cw1x4MGPK1SUmRFVUM -+k`nRRXP=4Re)~;0m#}QAFfOWi)kM6w$JRtNeQ);ced=RHQZsw@+_@}pR_>|UC-+>$mydJ^S9(Z(LOMA7=adHQJZ*g?)QS8t#$4nteYV#?=KrSM)Ecd45mLo(rsl* -S`&aA{Yf~CZT>@H{81W&JL^h>;nri>>u~?{DpU%)z<*4dHw6(A8a;c&pwn`#_n>j$$qt~k6u7sSMS}I --YRd8D$9)f-}?8J)j(JKqM-l7v`6<;*X*;EsPg-y{B`8^>KgT!<5oNCi;@KuZZ==2Kns`bhOF6y?x?PiHD@_jJl`wi1<2ASG-NmAM#xQ(TS)4;hf~+DrRU -wcbrYeXp<={{5#s5mpT11Tlai7|PEL+kzka>a@lQYfRGc_*qE^qX{3#XYp4OsGjVOs{tk1}eG26w0?P -s^gOq?nfKtwUyrChN6n+Rya#0B4-kJyMm7QA+1jFi8`%-elpSlqZU%QIkUJ*Hp(<|=B9c-v5)*zKV5zIylvaIqEn|% -!eX(Ae*O9he}8`w92~6rZrHG4V$`TnV)W?I;>jnU6!XUq5)&p&5Klezl$bnuvY0-7y7C|M=FJl+Gkrz -w)BVI7^ZSU!69$T969dFcQ~kxN>3(9%!rmg^7A#&}I96;*wu*OOd{~sFO%z_+qd9|!&n;4cS -$Ht=@>e?Rccf&Ufoj{*M_@XrGOf(yQPJB)As(DgAGXJ%j=UoOPHY>c;W!w5fWCS-Y6A-^0Zg#-@WpK+Oxz8dZHbtv6U?@U*ayw8!i+*TdtAt_Rw0KyE9A7*LaumS$aSSc? -mz5;Zw7u3;12=*Sl}lBe>w2ef&T{Zw*mh>;G@kIhk$IN;9$ej@N!0zVV@>w&)$`1^o=2>9Q);JZ6};4a| -b3;dSAZwLGbfZreZ;lQ5;{AIw;1pap5A9TULJVofq^;ST@0RI90`Y}^OI(oHj)2daw!L?8Q2ZRI%2L^ -@&`1<+>Ms)US-@a{|!Gl{HH3SCZG5!z6AAx}pojS0<;K63+^N`Shfg!%AeqeyV?*RXZ2UwtO+g2@|&x -1q#{6qW$0t0|gy1G2jsZ;-mOGJi*h8Stky`FbRbm^kk(56*ObL+vxNBtoo!M-68_up}kC!V8#m$N{-2 -;lqr6FDFx;@&&%xJQ4kXl&EU3?hST>yNnW&O7dSxSuM}Nfl^mCVoI5pZfFpop;>-u#>bQ9oYi#BYgcs -9|;K=7!uK(72M-__uYSK(xl0KL)ZeJhpL47n_pHSg5AL90RuyWLqb9ahPJq@0G_w+sOldO8W=J#G%$3 -~Uz^|MEWqa-ygCmNdi?>a38U8{`m%tt|5W{5`-Gy4LkEV0DkfA5M*oBUh`_FXBq0QKG#@nRjyvu^f!g -O0J#LEd^B#x>9>Md!4jQCLxUcqkK+}dzeQvW13<(THFAr*=n7H5gFoJJyfBy&Fnl`lfMubL$1`l*nX? -%A{1P62*5a8WFyZI641NK#LpnvW2h+f_vjc?MlW#_wU)=@=#+p_uGThBhCT3SKm=V@WAf9>pXU;A6*md-@DFZ5psD7t@BvQk_FXGZN3! -24fuiWu`J!hjVhZ@VpwF -ZjbySZT5&&O*`DL+c)he-O%^H!Ck|NU6(^ahS#v5;_c<{|P-&C=}CnZ^872=H|#0tB1?Ghh;_@Rmojv -qZNjvhTKjvqfRzWL@G@$I+YiXXl|t73!m=g*5@fBjXgxG2RsT<`zI#m{=T#6Z`R2eM$G8;5~z4hFgxG -0DhlehBc#0Dl_rp9B6H;J*(1-N3&z -&iyw|`EQ)^zco%VzU$Pyd2{tj(>>}#RLwoxdV72G*ze}%=FL5ux9r%$!g?b~`c^Jv= -PR$Mo4*}8pulx^nG!n>1qCvjh^j$YpP-|XEC1#Y|b*1z7@vaOf*EjN4p)p^5g_Uh>E?%u=;I2~@k?bh -a=cX#x@#ohhp#tj=b>Cm)k^9DCH?|A<$?l<#>w?~V+8flGMc{APLxFPHRi>K)hT;0<8=EjXX!M<9yz1 -QtNJO#@AxJLV(?z^*n>rUR@o%owXwBNB)r#78Bwd|z$yAO%)+O=${zrnSjsStg+i09_aS9rdeSL`M07j}J=BxVI>quM)Cr_Tvdic3h_QQ?zA7#yf`Sy10+VOLr?5o?Zj#8UE$BY@{+XD%I-}~8TpS_ -5AwA{XZyF7XFq{MhCKmGJmE>OwChYw54za^i82Z?d^%gV~iQ{eT;M<0Fk+KwGN77Q3LfaerZPW+4+kI -8Q4q=j<5*_rwGt%h-aQEcNlOL+CuKro*pJ={b`tL!1?}H8UETp@8_Uze?^nor#|NHO1FE?-AE -J2?vE-qGdpEz+se*N{=vaGC3?%%&(l_L&f1l~UmoVDxLt(&)L)24X{*#<6Nym+Y9Y7Jbze0dn+YSP9} -B6qs`?z(<@Ths#f&J}pa1N^1Lg-@bkF^Upt5bV5F -gcK%&aQ6azh;tO?6o{Wr`M?vV^x$nRKz8ZS>3+k-=`RAYI4?q0y<0qedviaDtV~5e!Pb>#M{{?&N4jP -sd_eSYQJjJ$ZGwC-nc`!0%Vr0^9@L~LI+J^uPV~+sh!wR?vwhx8IDnO!b88UvR&M&tbz4-U$5{E -?kfphLryM`1rJ=9y62vy?gh{EnBuo$Xp_3RyNH3r#yD=-mNleFD)%qwo+bRuKp$u^a0d2+6iSu+BSYC -W%NNQeLs}4+ioen-;uJ@4k^2oNICp{DRWLpdH%wM1F)6*u1UEI{oA%}ThXRXo9>9=m&0FD9*PIj%RXn -nk{`-~wDWJu{;RLPQkj3V&)MIkmwG^6NH_bRGEV(g%D_*h^!rH4KKrEXxkt)}O2NY}DLaCPc5g}9>P; -z^ACj`Bre^iENxwute0^;u{YExqVdOtzC$t0V%VS?jIk;TPfKSl>B&=4j&|}8c38?Gpeg8c7kefTPJ8Y`p9G)U7CxyZcxX|q`&Oid_ -0iv|RjXS4#~9CX{&(`A{c=1oWI=o2wZQ}Fhu@PWuZ)+ubNb56+5KcHcvu4-n4;i6p8yZxpySb_IuC|D -lLy0|>65y?hkk!s$`0fK{cqk3`!7}1d{`g-@b^mpVQb4757FifJ`7&S1IL3a=@#jypWLv}Ulu&mN9KT -s4DgULL#IFftdx=8fQL#cA3LGjGksFX7nkgrJQ(&&9t?Y?Px9KLs<~K~e%cww7sOe$nLHS|E+6&Th`| -ffrUkv^>vMa{f~Wh)>;&*ItDihyby|M*v(7^Vco=gMJh<3%h|`|^59mJ0XRkg!8$PK$cxb()UcaR1M| -{7md-v|G5Th(1{q&23)EV-?n8)CS_c+!XaT%X+yk*S5^ro$s+&I6NTn8TV!Gi-lY+X53o;!Q$x}41^@ -HrVW@iFY#8Dq5HRzLmp7l!`#?%lf`WnpC6E9oX}q}||!zMuY{^BVe1j#V7nn6@qQk(Hf5{{D|Lw&7@-6UC3?A0c0}rqT+B11bb@H&%$wLx(cxr%rE*3n*1j_m22Pz(z=#zT8#2D -S*sbBx;GdPAZj$n2;95OdIS28X#va3w4W+%V?`l~E^ElTcK+*58{2p(VyZ-9qFr#;grrOfOv*G%s(ld -Zn;r73>$#Yz711@Q1Jcvu7;=79&Mx-rJz4%F{|NI!Hz=|A*(33++;*=J>5UY_FTdiXGSA#UaVH{{MGJ -!J`a*a9AuJ%b1OB*UKV@JXwu`^s0We)3=7VL5ns9z6UVdbBV)P!UR>#sHP$c|U#JIey(_QgJOi_@N8cd_SmCl9NfJp2=Sw0xq!TpFkIz@%afjL$=m*PK- -2?+4=d=^n})l(n@=z4a}cEU-96oU)PceA#JMe9IL+c*{*`x7=!lw52roXNmq@3NIz -vC6cj``$n5NF6?-w3S-NzooHc7!Ee}`Y<7zTtqEA{s|2pg$Jk;Z7u9WU!KP4q4?SSu;?c2AP5fKqGBO -^m{T#k>AmosL}kjs`WQ+EC3mtQKs!&s<3UPw2`2Kp+-LX1Z_A7G+A@5`JiYktOjBW+f#JsUB`N~b+1! -4|GX|JJQrnLJHMwz2DlK>1M?>AxV~PoH%u#+aqY7_?{lq*oI{N&YqGUw!-bT^br1x{&$@XkB$D19L9q?Ix<^vaM2`J?V}p2N6~vY!|Mzb42pKG-NPoIig6^1kl%hvejBxn#+bA6KkcAr~!LbpG+jAD5FRO;Y`id -8N`N@<6*FpQMd^)a8Y15FCf8_Z*{XD_oD@Jd*bqBT;tbrJe-#fBK4jbffD(M279!tyb&dXP$ZHH`4jo -V~?p!n>Kjp*s-IWJ$ts21IG+wZO7n)^pbvK&6jfnLfQjug!WL^-Z^Hw&OJDP7B{&5M%$wPLzhw(E?oF -A?KC7LM9!T%SIL1qkp2M!2FUR6aCM(DAP+_+55~Ngb1}x()O*rNNF5??uDZpTisj);{@JEYn;z@euYZ -wqh(AI#esG59}YV8^S&m4^dH3a>$S&O1IL}(-r;fYxX(+Cf&3H`XAnBY)buMt -W7(h4bUc7FMTj*{|)sl@$~fcgWOYh?b=l-^gW+O*GoU!b&Y?Fer4u-k@P^e60rr}DpvLYc}wV<(gBW9 ->|+DRSWl!MWuMajzyA8`vY?-jee?xZ+jABuP+Xuc3Y$dPqBjE1qC7aBgI}IJLBHAXT13~S-&I -##b=Xz6NgMg14$&5#d+s?2pQXlW*F@TkOdR?d`XVOk59dV8q@8@NUAvZRjCPaBbfdJ_(r?87=9=dY8=2*(OVo8+$_M*)a8J#xSn2&DCVWY`5DLKKWvK@H1_W(8{VTFj6FHZjJ}9_3EYDsFQgr9{1HEMRr+1me~h`*)nvl>p79 -T_xi7~|-6DMV-FKDWWgpO9sqdtpb^v`${}X9f^t-Nq!cWw$|Bwfcos3`T|ELEXk2rR+k2&XL-%}38`Y -z?bYx;cpTKX}}Db&6Oc>c3#SM*bNucqf$(sx&1#OKDk1^byiQrDqJzad7bgseEOHvf}pXS!YJ?;!k7X -12li9{!XcPf8mGm+iA>*N8^)H{aQ_D}?Z^(jor(lcAdvYECHrB&gM?-=$rf6PElL^e=EisYA^P-JGzI -6E=0i7Eb8vgbSQd>QE!R{C7KM@dpy$?`h=B4aHSrMXvWD??%2*XTHd5?x@sV54=)hTb_u0Eg17dqNAg -SA>I#!&*y8{eC>=eH$N*-tEa5{%W5fS9hEZZQ+uG -0Sf@Zo7_v)Xk(-FVl;SU-2h{J$ap2%mcZe)COM%so@?H*%kg`zu@%=UVJ1=cFwA;kx#EThLE0TC^zYr -I%hBMH(18asI&Zk$#?Q;%*Ip`G37oIZa_nhal -UB=Pu6JyT9xXCqfzwGgo`hFkx%GOuaw{&q?I$K8{RQs;)KGc2Zfqla9>&%IRGHdZDwT`*mxdu4)jFb_ -l^?lP3NA-PQ7q}+8@fGVe_Y6<}Eai02(r>@M*G8M*ey3~uj4S5MnKNa< -f(1{x?!A%*uA8tgn7F>qy{3HUejoRlxE@M<})8yK?p^sb_=l%-!Ce$96v;BGF2dTCOyXa%TJ(tU$G1=0kOQTk=UOkGo$oW3wbMj4E*aw -6krNyazL+)2`T{YLaw!PN5zd)Pd{s{L9ZP9_XeZb`Eqq%qMs{gdDr=Na$3jF_5#{K~31)STlPw0Et7w -0NJm+${8OzjhJeY(iGzMk%46WnKd!MRViz)1s>(nqxW1oEMam)pNFKcgKo=6Bs^aoxLPKV56j=)lfGw -a3D}x+S1tzH_h9CH>C-vHcfbcp>Vw*IpaNy&=Zqq{En38}AL04)z885uY(}|F+=iOEyuTKDy{yz5bsu -_T0I1r#$!EbCcN*FTVJq@_Y2V9Q)}1sSE56>LS~A-E;cx=*RNR(NAF$b@XwPf9+n`)!OHn!gUU=>9UV -Gzk)5+uBF%A3o~RxS-i6%OjaHLSe`xh=_P%faY-Ln%^%I?>mC15zsYES)TmKMe0_b@x-0jl+=qQm$o@CpZDfDc9g~?@C(3;U-MVW0*ST}&k+6F;59C@zj?rYFKT=x+u1NsHxkrws^{Wg6j>D<13`-|fG_9&G7FI%=ODkU -XllriU~oJqrk2@_zBIU)tCg1eQ2M!#_y -ur3r`)mikM*08x=rCg7b?es2HEY(WwPN~4t~nWdihrs^^-rE_*)Z?KbUD>*Ya;yOf@ZRz7^VKzrAI?)^B!Qf4f_ -YC-hwR{FNK{-LCnHbYeVgaiwR_$AGnK*RD@ZO}zjg^<73r#y>MNGcWTyd3kwfQODGroE&u@Wg4WVr3K -sV_HFt3`AVL~7)Ck6rayJX=YHCb9Xq(r`U~o)fc~AM9dd3=eJ#KoWW*Qxdr-cJuU8#aRc$ixS(ZA@7| -w`i44a}ai#VmvnHZmbgs`UDdzZz>f@3h-qOBQoBG*_j>Wn@I-t@!ohT-$b8|j;9N2JyGeMi~Wbh%=x9 -vhBx&Yd`aiB>Tpfp{GzYva2EK^kM9Wid`vkqphEsPcn9A+|GFe=T7sY2dg$l9G237ep$6@m5K-XjtKYFC`;-~-B`SAN0EyA=Z& -k4xykGX_8-Ot<+r#e$M*+}v6N}u{QmNE#R1iyoJ0LRPPKo|kUw>gzMgtYSq>jQT=gmaG-dhK&Q$sOqQ -UC@&ov1T%lF^RBK`&gf7`ZgDpoVz$D!Y5%td+7pSse*zd4q>>OadH@;BZ|VqF|3**?c3&J$QS{W8Y>1 -+Mt?)1;gAurIh*M4mWib3KW;oM&_F-nDDjWw=c98|C?XAPYBV7FWqenMTgsl=n5!NSMtY>a-`Gz^3ub -73zxTubBkDN5PW=c>0=~;MXg7#k1EM2#ZDcPCR+7p|hk}ox66Ev!q#_y4FazyD{7wB}Rw{{5wz#$6vu ->sCWd|!T5I&{$_fs!P(#RbMQ3fzzyi@dm(q@SL|^=1Vf`H0#IhMu!<;@p95;5cm}Sjdjx9Y6V_%HL-1rK%8V1SxSozXBSpOWi|KFTUesl@9f -%x{lGD}i!Dry#sldFRItPjb{51}DXW-dbRgURF(b%Q_QL1#jOTAr17nLmvc2oB(f+yj!A7-fXQ&8h17 -Y=8Ohfr@9{GFh#pAxN6ehB`aph~i5tmqSRF##0L5Tc%YW(3m#q66TK^p}sKZK$)JI45lee^ahVqo1ID -h5>J?7?1kLfr9Io87DrCe}`YUH|y)mK&6kPP~Y@=G>nVz3^yLdQ|eJXo=06K_r?v18uax|m^{fmD|&i --+|()k+IQ_@X>X36GH&YlxG59*wIBKDpw2$+&G9p$ri_o8G<8aJzxH#YHeNO`Y63Dt>a8SzX(kCr3?*i;0e(G0L?yRAn~zoiTl8y! -u$Dv$j^(sO_Ov3J;j^(c@-LkDD>ad5t^Mqo>V8E79Y_rpL{Sn-o1EI==Ry>*Ik5K;`HChD6Vbo@AcHf -BUtMiVvPLYwE=4>Fv!k3->9>5=KybX$5 --x;?!py(GOXy&}CTU1WGmIkr~zuTSiibJ)^&BBLrpWO`(pGcB2ZnPHicnbu5OW>T -g-vnaD9vn;bBvno?$d1RThELnb8VOfz`)+}3AQkFfdD61r^EUO}`DhmUr!|bp){2XD9NQc#7b0j(Jjv -_~iqs&p^sB(yGk8E?cCEG7MEITsWnr+KY%C=`0WtU`^WmjZZWs4k-9CMB($1f)=Co)Ho2@XDH#k -Yme9%t^{g&avk>a*A_Ga!PZ`a>{cmaw>DGa@=!0bG>pcxjwmmxk0%ld8K(}dF6Q(d6jupdDVF$-#y6s(AaW-lHAhVvfT3AirmWFs@&>ak>{T0k>{Cb&hyH%;^Bj3adBu6 -xTXST7Y`!%=A>Wptn4grNoNv!}!tI$&DQ|MP1R2WtmUP -uKpiPg}bgtWx8$EAtNy(Im3}roKc!lo>7@mo#CG8ndz13lNpp5o*A2&keQg7oax9c&MeI=&#cU>&UDZ6%<{_e -$qLE}&x*}T$V$vg&T?cGXO(7^XH{lZXSq8(9bOI}N01}j5$i~BBs!82JQq7k9p#QnN43K}+cVoM+b26 -HJ3Ko!J0UwUJ2~5tU7TH-U7lT;U7hWo%wi*Bw&zf<%Mz!t-MD67mxBk|En-$h90Ytiy+7$wlJYEu`s#NQCM79T3B9KSy)Zkc$h>YfVgwqzF1v -2K}glZg@a1EYOLt!pK5vp{+2f&|X+nSW;M4SW#F-I?SL$eXP*KZnj(Oe)ceXq}^(_*^@ARF0z-{%j^~ -QD!WMWNHM2aQv6cFQX*5VDYlfP6njchN=ZstN<~Ulib(ZHHK$rq{ZhkHBU7!Zw$!9ldumZCeOCp1mq_ -z~=dz^v!E^oJ_ghx@sU-NQB6z4Wc&Dlyk?WCbhHvuA4a<$pwdUG#lXC63MY$#LI2G_VJV2UjCFLkvl# -4&CCJ_XXh+eErb%)OnN{fXR7r}~4V8J3i47L#o>#)K;Y_O0dWg|tfk`mZS87!qD`~SCXf?$U~!w`fjf&a@F{`G92+?RnyT=lgjydaGc#ww)2_q0pOC>nEKlb_lW6p!&)Dbek%>M>ntjTV`I$~RqGY=6k=5fK=J*#No6OG2>{QOd -AZrRnr=1fwH3wLe_RFoS03^VgJsZCYbNxAA1|tvWY9*o|NNh*A8uHShi1_mwt+~fAWCm -qmjMkjJnr|Y`Qem#veIN{>=tbJ;{e;~WA&PQ1WYH}DY -Itn2({jVLmdr}v|=xVF=H%{Ke@;VWSy67-LW6TRBiZ!kU>-5segau_FT5nrm&j-Ll8pm&*lAXOo~(EjHi)IHYA>H!F}1u!)<4CZg6>By!!mQ6Aap`H@R>%(1lKnXgadm!Xet>NWu=}zDY$- -fGEeF_P=>h3}X@N9<0iY_!p}BV>qGsp7B%F%gb1h=iLhbc*n3w3JwU5@c3ht(JojN6wLmUt{_io{lB4OGVHnz=5ma4fo!axmu<;dXtWlfb!PFMrF00#NrFL -t_3EeLs2|Hv4Lg~cv8QUZiwg@=;`>_Qvp!Wxa*j||+4othQjqjI(uqJ$Rhlt>8+wMCSm$*N%}17 -&ZwSTP-7m%W{0#Vz=tc2oLiV#Rfo-Xd0vqx4QnZxAbnQhJ?O(H|bxw?lh|`-jKi@mqKbGR<%=!M8K?) -@r!#KZdZiX-|qA#$&KCv`Id4sup13`drS}#oi)KrVfafdaE=P>0Q}?yc%N^ -_5G&i2k+RwY1%Rp;?tk+Fyz3vwID+QOY)Ph!WPO&*R%On^1?2m(j;~>2{fMs1(YHIH2jE?8Da5;$Ut{ -vFaBDx@H=pP1&1o{+F6^rb_Q<*E -6}|sZ;ZyV8{`j*{NHp*%i>N_6Oe5HBhHK{jMO2iqwcV-iYBIui?VEABEzumdl_*&R!%03xTmN)_z)yx -$tJVXF|aa|8ImOK?pr#&hl){L=(UV!|m5hGy#k?+&5_^jc?IboI_gf9?Sa}NI>n@9^$Fj@zir2n7UmH -@>GeZ9)VPG!xO)OeG>Y+9C@Znjw}F9=y+&`1+c6Mi5#$fSw?yjU?1X3zN{|F%oXr6TY!)8FwG4h8gSM -x9VHqy!*IWPR4@z4(P%3&Ln3TI3Uc=PB0;2T!A#G3lz$EP#G^QGR1ARI;jjR{ZpmrV_O>I`?hkH9c_4 -iYd;uOF5rks(nb+;5ip=J|Er<6ikIO|j1DAOnrqZy>-kQ>Tfr9)`H;z;pYS(rQ!DjEz2u3q|V8g-YSU -Oo|-N@!tub^bWCvH|1_D34boLtjo(_R^e;MX~2wZRD$N(uVt=Jfz2fb%MVV>C_$6+u{@0 -vxs3aBn$+{iVNj)-X2kY560ixMw(M)=Owq=?)qW)`yq20M2-|x(${+jVFB?;EZFI;U38AXYu;kP#=gq -r2q3PAf0jfXGx}ugrIw1pWMwU=`pBug##zA%W#j?kaT=0ZE_M-CJDqRuAAX32CAP`tae?cjFs3vZT%o -x!(mYO3p;`^!)ds+qwzYS9dh`fk{Ylbl37P=w?L3JK|!f1jT+vq74?gA?mdtmt`4#Wl&eLdHm-}1BCdmV=80+8o4C$a3IaouiNt+tEn_8=en73|) -ec3-sEiAc~d7@aiFViEK)!RTVEK1gC8BFN7SAdve9)U8%7_(9pjF!rkHI7KK;B6Ys~F!nR`4M=3o3bb -{@EAXhN!o!R3Agjk+i02thmu4%+dzItO3c3x{ulV3WT0-5U*5hTxLBeFnC**4lT<|SH -!Zs6eUGAYGiL?=}FxN`vB^PkpgbEac*$R#tbA)xk*C$Ic_A+6{DVJhh6tkKumv3y_6(k -*e?y1fZxB8+aWWD2^zrX2~G;&nnJ?_g$+X~5<4UUWJF~|3`qoIlObw(N`AElr802f8b(?ecvdzTxR+9fup}4UsGoS4$r1|)RIUgTD#zsQ -rXnLv@`50&wA8KnIw82&ZcRS%nq7YpO6SDzlM_V{rh$k5C23XqY>_H%p&&j+ZG%*0&%@e)%q;{VbCl5 -M$(n4?mfd@W@JwA8}C-5e@s7{W)w2)Xpv<#4~FlzT1?q?4pYj_J2a;gJrlM!I&L1T>0vKF8ITYwpI$D -UwRg48B@KL_u!(G;}R#8Y}MN`covbiOkgx#0#YQ7_$UqElzS_)0+fx+&$+`r;tadZXg|FSo|W(+7p1LT?-S8+#;VT7#T)X6nXuGkN* -GG*ajQa%?|5*d5*vsSJ>`*Ti6Y%2)s;!D-AC_}X*P(2%jA*jY}cHuQ%5)F(>I?w}xVR0a{cuyrtrb9D8?mcMhSm-E$Lc^Asw$&S$wWYUbHs*R%MN`fYXhJLi) -#^jzhZB#GC)>qU>{g;AAAi7A-l|K>T;^t0uBl#J@i0qktx2bP*ftVAYOSiURd}1z_0vu|iq -0hhq=0tu5GDYSrtrhTbEw22}5Q>%{+eI4T9Hhy+wQ-p2r^banPc*`?i&(JdPE*1C~oce)ubINsoEF -t1k0BnaiXqtVH>at^-=~D+#7mU3l|{8D{#qdZ8c7RWRT1%tLSNlQ}((~WLX4d2rFwuuI>06@R5*HTP$ -Hd5Ln0WK>v~R3Y^LanH9KLB^67r#A5xlALLToPRwej7ObJcDwVO;7i3s~>A0-lh|gO3!gyI-4lO$%%> -+O`#=vSNR;pZot7k+SwkYgdptu^NI$CZk4k-#C0QYD -OS6s(iHf-ce%Y-t@9vpRXZuElai`EBmfvYmHc9mhrGq!7NuUl9)uO7zaDLbPY{3$(2KaPMN9ReKv{2% -*Gj=!4y?5U2)VefF000u3z9X8pux;+_4ha@=ShV}R&Q=2pxBFHUh+XZ;(B}zY@)qEwm;8t%MCEY%V7? -bADZJI+dKX=bNr;X)A)l~2MWY>X@fxSqfvFysA@dGwFeffXDRJ0rPX=@YOOV3G$PDR2=g{&i@2^pX6X7OV^mhTeKYTqI96}y#(Cr`uUV(tVGaa4`eEPb8gy8(^Nf -^X!@zz07j1jx9$#WdN8L+TF5}PY;Cmxut|4Hk~#33W4(!NPNf{>&S)Vc$ZcqoyGn-$FkWKN9R45E$)h -g*a?z9*RD=l5BJjf1&tnp}kjZruTje6UU~YTSTAbj0xkD58xoM5K23XAl<&WkzQKes7PAnuD3CJafF6 -nOrp-DeN**BEK01iIKq;S*^_m%H@=e?I0^KM>l8&`Vk~3z?-0qKPuY-tT7mM|6aC$!d@-cbUM_}M+ca -_R(`x`UXTs81k|$zNagBTQ1T05A15_fVLgn1QH`w!jHb~0&>n3m;!}^z5`?m;^KxKK6o=MTNVEMMDq6 -6Fu?InF=%o!H3djhmcYo`%LaiV#d@GJRG-LQkOMOwil7Yy#QuTtQZ!vlmSut+Tn=2@ -1Z^r(oyumjdjQfcUr1I;Ll&ks_umNj^3+Q%{n}$b&YYg>v|ySTPT>%~H|^WJ=2Y!J_3(f4E(lC03##D -d0Wn6Q_OaXS;&lCh^C|&@{(DVBdo?x>);U0W>#Zxl>~GL7?A@@X^UK}E3D_3LnRecojlYY8_&@+|~C1CMNWXm_0Fdm2jIa~2;PbSp=>eB`t;$ -}h8mY!R7xK_RF^83vRr*h_`L-&n1zZZoueg9M4(gzR^T+)m=(c$D1R`^fGYTF=M?tm|wfyT?A`%s!z9 -1*3~H7iw1`{O!{-^2P9vOtZ~I3tzE`YG;o!RxWBLuF>THjW9{wSneg=~kZQq0 -4|H|F=M6yJ<8Rf^L{!ce6ckNX&f+G^Vjt -p=?plJChu4emKjp3fT7fm%VV-9g0WQgl(#C6-p)Wn5yntxK<){IDuqrl4bB^#4Qng>L3B>f}ks;*b3o -r|j%{d15H~@%Erpu;NSTG52yZ0 -JTaLfIO*lkvFvJqzNDA=$GQ)l49-KwA*Nc0&sb4nS=bA~RbOD!3!}FtLSkjV*v4toOUe4K}?f)9N%5O -4pb^`3a@d36p8;>mKKhT#Kd59OKD`U`*e5jf5nDoVM%_MZ*H^y@D!5FTaM8|I%hT4T{DJomEg(xVx|J -rP($uI-3cpwA)teMMO7ulD|Ai-kL^VzE`uvYs6xaCh9?)#e2Y_>hlgLmRoUm1i+1~La~kkNecfe)TZ0 -(f|uN$v&r8)!U1nt%)BG0!0IL`PfROB8Sn{+xq_tT_nmk2Gb+umlorf`Y(cUo;iHFA+;`2rwspPtrdE -m9N;JH%!U!qn*I#tp+6m)El3;&RXn;wvK~HG#m|T2}8n8*ur|&#q}(gs~4hr@H8y6TSuGoFnk9t5{RS -(L|+}>6#wyT(i9IfwC`mkhNL5X2U>P73W(30gO{hBDDypISBsni>NI=Y@xmYWi?8e3)1BfPfKQ$ -V9eu&pszXrW^7ic{M2L*r1!?uChOueFF3e?yiC5QdU-PQ+e^m#n8@D;+OnXKYV912sJkN&RZ{3}$aDe -Eh^bsom#*-d4p&VbvTk3U7UA44Dsh%eKZi5Df%GP3ftQf(&$!(hJZ5VjtAg_B=$~xN;xN6lrQ8kql@r -$Z#sDSQvH{>r`y)=}gcU7I-bf?a({*Y*(P&td6MfhW~aNxg&0u3-%sVUtl;YACg$Go6pmN>BF_E)5s` -cgC_%IoHI`S2A;?^W@?_7*nsSk-3!4et^41I{vq@;q*H;fJp^)xy~)E(xzV(Jbg6<9MeG8tII5N)d)VaGF2?EpNg9;D-@hP(tFZW -KKD<7#prdO)B8oImiU>v;g@qjC`_i<7$Z5YBG(Fu-X5oCguk^Fq5X!)a0c0B(k%+@enXSAPWe>OSC(x -D2?c`ro^q06q^xO|uyU@t|Ia$6pTOxK2;L4n43uR$fXwFgRXO2hnH6WN&&lf<8em+5`MNpFpogZV#IR -Ilj#7HSInZK%NATE`6ki{xaCo+C)oQ0GSyAK=zNz$X!UOKX`f949?##01K-GTZFo&Y`??5I(a|zu@0hcOFDGq%3ikdl39#Q##2GB@2$UV>GTdd`0Oc -F{*f`MEkCK(3^LW-f -Y)~;V5zp*mXy5vItN+Q#JC%D6^o>+HpG@*+weCDS`Krjr&q|2&vqaLT!Td_5!Cx4F8E}3QWcnKICc%r -w0?Rl%q4^lXJR>07&&k7h8OQpyPF$QD9Ee3;7_zhfjnSVR^&-Kof5oNIkvZ1Mj+wBf>(r)EkbNGAhOSUL<}Q -aG8$q?(KpP4=jiQ?nszfkV#-E-xl}It7<#ROT7ihYS#`V!PoQb0HOu8Sd}3;r4zJI5LY3_L{C+9w!Zg -?x)$^zYeP7K{2P(vJ(e8^RPay8~K-euHHr{t0HG0w4<6}p$@OpFz)txZU@Rh-ARHU -^t#jgW4~8dS$@N@JuFUkm3N0`E51i(%SmRdqiIRnA-Yv&WQ+=Q9CW6e%dnhqBw7BLzetMc__Hvm*KBC -xH3gj51;cz?#s}JOYL$(x3YAdqU?@k<8#NFTm5?^#F;XKkhgt;feXvOv})+1U#h -zeQy&?uy`Gvt%KM;$)CT>wb}2(uZq^pxNE?E6YNd<$);I*}D@?*{3*n3dn$dwE&p?ZTlA_rU<2EiDFQ -`Qs2_faeJ<>%*csSjoddYg9JQB&f+!H7%T+aXEc*GJ;s(N~8q>VkdqA -vqfX;s3tO9Nz0J!g^eD)c{J7Ur~jppP>|QS7=mw{z8i~RC^1Gujk&aE!rzs*ITDt0qs1G&#cjKH&kNAL9pK&)cP=r7LjJmg9i+eC_TOr7T)9QW0oC0hr6sVp|;j}BUD-!xb22PP_2t&D -2?d}1Jd_@YEOxyd#B~x+)05SJr@2CLuvUCADzOipme+Wj$-UUghO@Jl=^1&H#Q!v-5er{22g1&Erk*v -kkc3&=tNvV+3Kst=xUwb*xKCBL8{PSB{h!NUv`*8q5i2~ZSZGDJ6%AWHdxS!iFh!ka472b=^K#n7zxG -VOYgLULKohdcJAe)kF%DVaLp+7y`#nf#L=uj-L%hyl^Y<#nK- -`D*Ve&aRrbk1Et0a$0tAo27Ks4S*Hpzz7TRk^5>AUL+gOgwS0rg+}6TG;0Dy9HU+G1q)9G2Cn3$HUumP>!#_={vb!+GFq24E$*`uIyZRQK#;6krjoP+jb{rRJ@P=@Z3^n -xSzy2Vp`G*-|V^tOr5p~;aIoWp1JH>4cd1+n6%_~f-H!;qf_GeJWAC}3+an$b -2AfxOj9`7=V%(kEI&AX80!?ixJ(y#hwO5}vewKhB-^Ht@;YX}BMPWH!Uj4TjX#Ztck=e1xTCv+cp6LY -mU?m@qzI`#6XUaHr`nr@RMK_7r*-)&rM!;YijYNy_6Ey1%0s%p_0F2@sMCvl`y^DBhgCc|(`oAV+69n -FM32E=^_@_*#}`)XHj&%R6*whW-_+g~?#S1{d(9B(|g>O}F_##)f&5*&**uOXtc)om_L+F55n11!rJ} -O7r-vEu9Ryo#OC$vy{pB;C=j@GG6rxAcO-ht^ncs9~KE6o_#R0g|-ICXpVzk`oC4&NKT<77)SCrd@t= -AM{=QUBm;#lPv5oAW;gtBl!d(aS`Jj@mc9vpv#d6 -?3ZhL|W?m9-ZiMIF678`7(bcyvyscpJ*b3Z)N*k#4`B-YGbNX3de^t>PS6x7!ItXbXdioJ!^H+-EOL+s0MZ^#$J5n>4Wu{BhxMPCKU* -3dHbXpeg2oVwd8ZaA5&mq0_IhoBKD)zFL7*c@f18tbo2fi5Rv-$T`|Br!Z3aHOL_0M;405qjyb=lNl^ -v;3@4+|b@%&%(D+^mekpKFTba1|>yZ6gM1ATk4S5KHUxpecWfoupOH9qs3tpiaYk+nT9>EbtCA%RW`! -?542zZfGmpP7fI)+OX^#=SoKa7!^?S2q5=2w)PO_aGSK~>pps3inF3%8)bD^IE2)UnEaL4g;({Ur^ep -s`q$0^?kqjy#hEsTF{h^ra0#JN;IbxVca|Q9Ja|fs-uv5_`zYNXAua@v}?1v(TLrR4W4dgHq%82+!`X -V7`FcN}}w!)VS{>Gcy{}NRG6gnu*z8rp=dPH{4!RQQ&mXl3Z9yBF*r{14y5ya?mgukc*$nLe{(Whieo -1hfS%-+_XpP`24cI0OWpoNBl(dp;aPS+b7V2v -`_N8Wa3wkCr@F>si#JYxi%sS-KqvjAeBfC+IMKx$tc@d2Yjq)Jhy5M7szy;kIBe}S!Ij3|Y&-r -o?@UM$pT-hF9G~ek>QL>EcfUQ~WoK$)`DxFX}2P{vjN=GhJUgLvdR*_=c1&Zly)phbK67$vAP5yrC2s --8p^#jKH@mY@O)h=$E#Qf2H@;Aow2UEW3`?O!{9^PB#7l|^UU3@Vd$)Nk$v-~K{9*oX%Aua<*QpB2Y+ -WSxbujR*E(7!jQx)3AWK(!Ad57CDIoj57xnJqvSbekjjBr+#6!w2PDfrc87<7dNkr&(rgZ(-hkA3R-^ -=`uxR7?OOLw2~7~a5Vb`t;Ye}SJm0Fw}nng2Wjp5DPh>a%2XSN-dv}VI5!w#`RHxS8< -Jnjvsaa@_vt&r(;?MRb>a1kuuw+9UU(SfP2PCkhF_3<7nrK`^J8UZOS9TKFX&JA7EWRHYUI{b{g1`k` -_=`xP*{HvJB7*pt11Y)p?*r77C=he`M^^q}ySz>Q<|Is}XXm-ie{X>u*K&Ncq|r^vG*}b_cRn8-`0A`uev-|D5SLM<>IrJUIE~cELOuZnkj;mi>qjE9A)BGC5iZDoS%9JB2<3vj963A8UoL`6MJG -x{$<&0<1RRBg4=>fwn=5mLvWuG0i(VsFiIH^w -_|;c1|PIa}4wMcpQ`ZE{hqT+}2-(dEEV4<*D+gRM1Z?a=QMwhejs2w){flUOmPAOGHEzCUe#7n|S1&F -{`6`VLPpL0G>Cp!C*=KXC$_Vnrr8B6Lb(MLjt~6o?fvJ^00nf78QsvEonkFk7ssB)MdsSn(tt`*+?8o -V)WuvEpUQFA^(;!2=x>23S%+t#_iU3;LQXUYX5vBEkIL=1Dk7;)X9%mu85Y1z=j}93=cQt9DPPk9Edy -i~7XPxj57FViDpCqb6Y>15liApTu~ky+P1OpO8AXV6=S5=1)Bg8i~&cuq(*nRrGZx`u0~G7Ar`W4j+V -NlSSXC&(ZUreG@iTkMrdYQLYr6n{3oec=TBB^BSuTpiPaS_T|mVED^)YfZa>&Tk^ -#Uznu@oDXMAkSd78Lbf^Olax4pT`v3`(Pm>ZKG67f&c)AFnRBoyymBqi-S2-v1(O^*-Ql20nyBSDa*s -Oj0xC!CP{?JAV(G7cX#NRAO7c@)MacnlsK!d*$pNsuAef=Xi+v<*dD#A{M4KZ>Ttevzu2?qpl`eHB9T -0Sg3KNLCXBZM8Rx37Pcqe+F07WYZ9q6QMyKV_!=jxeD_xnJ#EDpsrlQDuF|%-VA*~7A3h*+%G;A~;& -r}D1x^$chvg+tG&@S>;TW$4~fbiS(56N~M4Py(47qAXS9jt>t{FPX7?i|XbRUq^UiZjASbcSQ!vch{Xt!2`K|~S%-|^;viW2f8YhfKe;DA0 -@TRg!wx}D9#&ZCW4lc^p6Vb*$$fzM?J)rF&y^o7L(oU~0mX -(uqdo&=!QW8>bJ28YG!y327>1jLhEk!GeG3sC$j|kLoU}Nob)wu4c!aYDxP*xNA>b0Mq(u>{van6S$A -z&kd7@PrRON{$Mpt}}ltS+ZLzXGo2hGe60^3~S&+71HbwG`@&_MFjVvU7tD+Ug>O+%U(sxrN|0OKJ8k -8RL3*w#tiIF%9bX%D%n(E4oByQ%g+ry)npgRK|>?q#fgP-fi{>p;rGsZB6*kx6}I_A&7N2Or@yw@3?D -uO3TUGrET@;_)Y0&|JWF9(Pguvl|F3f3P%+@{DR(3+<1Hi$u>)gYR-87DKkN^YjKgSf5PS?tmm+ePqVgV#u$5cX*hBr{m7 -$lo|4vUjv#O6)bXWx+!NSTtfbU4tTn= -BT7>5jA>uUSH`n33;Xco|3UnMME)1J9ziJF3@f-`lWM)IK?d;x3PX(HF?#-@14UVFMU(Cq{@Et;;i@z -Xn+J=qx8l^oBd@ZLSMWQl~zZj3&cjc+~g~x3q6ZN$#HwHf&S>Bfcc@mrKrdF7a`Sejn5q*dRn+w)@cK -S$lRYQka8s^cj~Fosk5~U+0S~NDD?5*o(jUlN_De|2RezoL^%fjjRgz(yq`qax^*$!%-1Y*VywaEg14 -^Y=ex;oy1;zuY??Zdj)q!E#uCpV~)jDjuO&APO*U9jKr`0176Ex;Tq%=3n?T(sY)s>Mm2Qmtt*ybCbML -6TsMcV|%DkzZG%wj!`fVuS(H;kJ>qGxf7a+PV?w#62A3^RseY~YQw0-iTv7#m_m1!mHV -$I&fJW_kda`g_=6UM{~eN3!h**p8zqM(uKx#>x%tJZhwmFw -&Zl%OKMxvuQQWkB}m4M!>?UDP_e0hs9J>rj^7x*#NxZL@f5`lBj>dKF0j=vxpkc41ywSe8WagtE{k;Os4{< -U3fr$!t5cSajmHshCCBXl*v${K|chWxm81`oj9cQ54HG^?yA8djjE$e8^A0Lg|*I7JB`pdn1`po#Dbq -F81|}-gR)vE7PqSDjvSc0ukkK||K#67e!5fli)djTydKXgw0?m14URgIALdf<>iD`g!y>bCmxUXjZA4 -AWJr}-aT=<&Z_cbcbld6(vC%HTE3Z=YRZ79gO(4PiMSY>rZC(*uH&fcVI55|515|*O?-DZ^GH5GN_sr -L&KWt)sPpQT?P$n5a$>;qc-J>#PH>(OOJzRrg8YT#o_Z=D(M~#R&!}AcKLY9* -^iyBl%wenw2@1x@`TLPIPeduxk6~Z%ovBhNg1N%384Yn4D`xi3|r8WAH`-^#)Ty&^eM5DoPiiNstxFq -?x1HiKJw|<*)+(^#f0)05?Af>O;jGOkDG}aWbM{=^0ZkN{M^_iu6Y39iEf;09h{^{}PjED4flt?0wSE=qhSz<;Xd?hns(HOB2nP8af`~xF?VJIw%?9wJD^;s68K@%)oKJC44fdz6A-yGU28?o{XnZK>!Z} -a%uD*m>Zzdgy{O8DDC{MVb|NK6JmEFIgMR&QzTq6&1W4bU&YAD1fwW4DOV21CL)DSUFNZ>%> -4*9V%}H9@23QQJq`Bg&cxV7skFTPVg*s;hqe{I~AA=pP42M=MxOcssN`LiMA=D2`r1q}rZ(RHg{pTAD -qpwhH&MWQ@ZHY)eFAISZ{)3k1>R+L2(14@d4P2(>&DKOGDP>KJd% -L8uJsqWIAU`>|oQ+k%BejF7y~_Pb1`a0bS+2OGeDcr2+? -Lr`r^7;y+mAB=-R+TJ-00#OWLA#WGguuB#G<%E`2JNfZc<{Reaa()URPP27}hcC-D{k(N=!j;W5)6^?>>PWHEhHk1?qj?^=RMnsf<~Vsy=r6=AD$ -%HGdPPh4`}FcnAHl`23hL($*ZbbPiNd*U@?-$hqsb?WIPm~gfqsCG2{C|)S}z1#S0bvXEanDF~MNfxN -Z`HH6h48FA0bR9zouQ+5rc)uSRadgxpRAlO6_|p4dZUE|3hTY+%!|Bgq+gttAnTSrvO;U80)o?!s=@+ -<~_VM??!_;B?J_PKFa-Ca -FCh{32Go!EvEPHwn&yhIyT^I>Kr+ -4uljE}@qH$#dX+9=*T*5^~#bLXMzUQ{D@*Z*bV-W&WL==+lHn{}n9B%wN!wWd8zV&B^`79pp(kAH;`Kn)81*LiLuvM=DE;aB7?;{Pr1V -q{x|zr}$njM>6Ey51UpKk@_$;!-I}Ys=;+Kl&W1n5xYiJl~=Ok3DIEl9FJ8asJ$B@)oxPpcW4)UB0rK -?kax{q*aKG^`yp$=J5MIzp$^~VA1_XgYOy4Cq_VTU{M!o820p^GNe)CSXu>7-gLNcRpFM{aokBzZ9c{ -rM@5dR698=w~9daO_P~v+%lwpEu*~Qrx}H`TUGx3n+Cvuz-%v?l>!*Q8JDQ9)c>|<>qMNM4V?hP5cY0L;1M3O|$WqqBoGsZyo0I4?&TVARrmLUq>ivu9vROTR -+1RDOQtzcX`C3M!h(uMxJ-(}Z68J4=>%}iQb~@^;sBRDbY0 -m6Kxe1)0XX?mV4Ik`;XIkTo!$>tRq9D>)VlLX`+C9$SFZ}FQ!))@F@E(Z4@&KR!J^!YU(Qhf087g>-1 -q;4c935#`WlGrD^Qi3_+++K{mKkoJuy$VT~iZa_DsBSNm}DaG0IixcN*@NpK$BoqbTJ0(~O3Iu{EG>a -eBK~RruMF06QeJsRabz6t9672~P3$C@Ez@ud^%`CL-y}L>~}mc}GhX#wCwvQfs~ik}mo{pn2y7ghZol -Q;4%DlbrL%7YJsr_%7^&YrJ?fdNMYducxS;wvYp#LF*5C;{mLbO)zWEQ^07No=(N(2D`V1EHcY%#jtaJxjrK0gs&1HOw4n105 -M;76*9?xynq0_$^jVl84`Kc4M3ceyyrsI{{@KehM}Frxfq{-j}d^XqJ*}09cm!}#Sb_Xy9{?0LGe2ii -tiH?-vAV6B<~qC4E*P*_)fn(bPxxoaSRQcK@1N-r#cKjGcE<@OFa(E@1lKy*`ddQ`Bw6N8`{|SUIWwn -G~tDJu}`lNooUe?zzZ&;57_Vs$U7>MW)YrwST6boXwiamg6Yr;ZKbtQ5SU9V*oGmehLU77P?&f3;8l~ -Ma5ff(QrvO&^z$U%jo^u=w6lLEU)$7k=+%+=jbPO2KjF$&t2G|Keu10pCBG>mW#FRi&$LakhHmYUGH_ -ogH?q8}m9DU{dXhG0JtEL-7Y1rJYX1YGg|{IjvVx3?>Xo9}dOlK+p(m>|GCUZp&1SgJcb8wPoGV9CFO -=PTc}TbkowiYlxE_IhghX=1fuUL+yl(=eE4)8ryY^8Pxt#WYoPzeNdzs7SV(Mx3eJqyK4oh%{Mf=1`@ -r)84z0)e#Qqi>XcSNS$sPi+}b`3R^oo>^$&li5ID!bFrTHh(h}uJ>Um3OpmrlV ->UtZLF-ARfpQ(?)c=sVt#0sl8jAu%s&!AtPVD6`=jlo|)v(3<~Q5P#Q%-A>0OWqLYEuyc7uhlG^xOs@ -~3r){)q&ieMmcs9Lxp>@kp;>fnMho69opUh2&Z*BjEunF8Q9Y-L^>Q?=3{?FjwBSV38s!Lx_WjlnVI6 -1G;iYkEcjl@l^T#GGxbVQ-Yk0LV$gOJT7CiMnc)7Fa&6&g!N3H!B@UBBz**w(qw{`VnND*71nW{`V%s_M0bk_>k;mZvhiLx(RP5KO+Ejw`UTtqJx+qil?At`si0Z(*((< -F|>Q^-s4%K-n#92dLT0Yyr3s(_k%b -x7&QjlL7*+4q0RQ&9#V9jQF#E}nF2HPS?`8~x%$nIFPW?V^PL144sIKCYulO=4#4U<9&EiVaUsFy@rw -r5qcdsH`#D{Z@Ub|(2Awc3x~(AMZ%JH4kQ1(6aV1_Z;N%w(BrX^*ti2Zu^v_$+GOcp{IOG3tzrc6!tn -5o}7r@Aii*6U#PYWFTikt7miY9v4D^^qs{C0stZOd+y$LV%~yhq}<3oPz?yTHQ4Z2*<#?E*`*7oZm1E -`S21Rt9g841Kk>d^bgJwiWliT3~VCs|9)+L%F8jH`);T-Yjqev%rLK^~&+}$pXJvV90J< -GxK7Be!CM3So^<;SkwGVZ}Q1TQgFF@1zzpFSHO(3#_=BrvL;DA+$psS_8{A%43b#Bv#@BEy`v>)+anh ->2FL6P6x9K7bkS8svQxIraJEY}QArcum27HjoBT@9))>s$7GO=BU0B{U?+Gtt62P$yFCdO!Fh?IZo{M -8_0!1Lwwy?A8lt0|GIu(@**n>BrS%uLRka)iqt22L815d+0_OV7334Rvl6!Ah9N_GQ=SK=uHL3O|zP* -ADEd#Y+nPks{*-slsrp&oYyBZD*Xf;DGh&cPsPcNxK~=0b7W2M-6?$g${yTj>2@>5yWn{0pJ2F#2l&2 -$588!_-h)kU?FBV^X)c61WU_ycqDf#1oO@wzq9C>Duf60G2r;LoRA-uXzrr+{B%@ycBDUY#LN5)N|Tv -@|AS0|IP#+e34_c*I1Nck*A&QH7>D&JBt^%)X#h5h%GWB19(2SlPmgj1{d!A1{@w}bqj*aT=`c;8!=%;f$*_OkY=&`4PLDD)XD{2u@5Xvcpx+h}E54>bIE$MntB^h39%7EhH;uuH9R;vK|i(Dyi{a)5c8 -ZhM_LI$yv-@IO%Ag+H^nG#krD?t~q1rwi)k!*>h(wL*RP(%`QR{yIY~`p?byAhB)${6P));8ozE1wW_ -~d~5j8h98}w=C-o5Od&SsB6%cnp&s38`0s5AqVfbFWNZ*xYNd>~Rj~pQ;O%@dj7Ge-t-$abJrOA*hPS -$?jTU(1sFkcuc@i!EGLrz+EqFH3@Knb*K|9yV(Op;uNA<%1cJ7ahxFuNbkx1OKu}v#;LLn(%5x!yxZ$ac^ -zvuvB9qVv=*_9P0jiGabWs{bGl{;M2*N2EGo9kQuL>PSCwzVlh?5ZbWTxyh5LB~S!Xb -s{;$=B5vVa7>XFei*z;YjPg(@|@%DLZe3PATTf~YbP`11q8TYcGnhjcp4nAp&uWRgqB&486F&gxiBwR -`{d}9(ZMrDt0&63HvQWZMW_^l_T=JS%cX{WF9iG@a!G8phUmDP1Lzim<8RuA_C*=c>D`ToitUGla_;< -OeZ7;EuYB>08pBebH%xVWUPphr5$XvN7P7<^;%}I3K|lS-R%7MOMvZ@s!&dA_ -hkdVSNs|t*95csNjEo&6)y;6W3Rv~O{L2I@j8;a&5&#d0@1rI{^-IEU!^a*pTFXS@=&}0G>``kD0hYr -DutCPiF&pJvQZ0FI8q2y&Ek)LU?;2Uo>hR*wlARdPHYATT_#rCfDW}~=dEJJ^Hz*yR??-iTT;-plI^tXj(67lxW6-ND9U6%GEq -MQ662`mftAk97;ckVIb;d^qqTM_kni(f=Y&FL?Vs-oukQZ0cQ*quipC}K)xVoM;jJ|`CmEmR2%u7*5` -zpu8TVCUzSLvJFPxl7AheD~C9dgv$QuHi97|9eEwi(*JivW%K(Wj>!TtKJXif`;#7hy7Vc%AQ$h5yN||bYLM?-~p&?Y;U)fg)qb+_7B1ILDfa|to_-c0A1-oC}7l -z@7kv2z9*F2X%Un!#dlMuiJK}c_(nJJJhTqdlwimK`6#sJe(l7l4`R^-k{U -Oo=yhz<`xLbcnzqoN?3(#BucN;Y3tz!#X@xJ*V8piD=u=(Ok4Sw5~kyY7p?0?WJc<%<>oJxAJlsDu*B -IH6s$cK9ol71~o?F5{>mK^!LTNIahOFLp-j0a)(L9wpxLBt#mh-od(bA|drwmtS2v`d_tiPNX%`BgXZ|B)r(O^NEn1eWw2};K -xqLid}OakM{N9+N-t1V^;K5o%{}0NYpL!dLsbtGw<-_<_Eg#sPFae60)~ra#5FRAaA_A7Cl5F8QPVJW -@C7JLC!(sjlYE_@6;!cAa8t;P~d2gbp+^opQ%fapnc{`kOjV+H-p(bU_%BybivP~tWGNLqyWj6`L#-i -YfyR9-m6JC?%e}o#^k?%I!{&GeIBPp8Q{a8XZ;9r@cus5qPw*2t<;kxUlA3x+|%JqzkB#c1EnMYI9XV*JXhraw?`Q&7AdD0@FBO{ZUL+NU+&3?tdjuQS -iYyO}^Y-zs~%m!@fZs-ZsV4x1>J{t`ik>w@jmGV($H!YhG)NI}ttppP|fcdkg6nY9u~qE&piMt6#vnz -S+Bkhm7I_p|9%Bk@B$;k~Pam$NwqSQiY89mro3=DBdV(b6ZLy9A|13~epr -0o@o1>th;5ZYN^7@tT17@Ha>E|H3dd*XDRE_iH?s+t`#4+N<7*$8x_yvD|C>#By&)#%;0NXfMdf2XX5 -O1@xovTLO0x8S@66<&Up}GTsJdJWAYSf<@I((5K+9P&7(v>u9{ZtMKvad4;x$CL}yM-k1+Xu2eAME5kU9hLFWs3(D|LoJed54W ->EQ6=J)4j`VRAZjrpyZLFZ$zXXsGvTqOQvDXGysbX*cE(D{=B&OZ{&fb(${GvIs_JDJvxQ^9FSDV!k1*1 -=V=KjMJD~oF)Bw9e@*1pRJr6Cf!JeRm%ZX#@M-HtA;~ijN^BUe<>4(A#s$;nTBc!dsG^q?WqPi2qyQ?J(Y8N9{SSj0wuCB59@z`z~h5 -0|Sdav5~C>Mb#ru*;o@D%rH#(3@`isw#7dej->kris^3Nc&<4OLx@FwHU=i+y?c^Ehga75GS-oV8uv) -1`Z0B5(rA>u3V>6r<6XJ3vVWMG{J#&f1Rg$g!vK<6Y`$QtBdl3)n1`TE9eEXgCzRX$KQuNN#mA=e7 -^_lTN?h`BX{i!<0#ynLUOL$}$S%%B;xt%Z^iKhl;aVz;lQ1;SP -a!)GF3dngasc2QcNfNgs38>@Z7iLItktCz-Vf7Ky*yCrdEH_*>TJXRa?dSkVN{|~X+*g_&!8*jewhjs -q*)A$pVW!`MDg2ER-RENxZTXw7)&k6Wj&IhpgtFviW&`c1~waxP6ql$!+0 -)V|fCxbP(_evd;?9{{OVg^GA|jX{!+;uxUW5?|ILXf*366p6=a!x$y@;XgcDC;k4i|FuM%_AJPX+rY1 -*IPI-YB?CU~7go*I-tVA@W|<~qj`B#@SY0HuZ+!Gqb1zksLsa40JZ`|)jlVIc9av!QhR}6v?%SXskEg -!zPG1v%DAl9h|G~qrVIKdikC#{n2FmB-g?uKo98e6_#?tBq!P-|Mz{-f;micH?5M(~lW`MRLVsLiKPp -C3-DGakER)*$l&ZU5Ve!c_>tnnZV3s3K&I9p?$0oGsu-K*@#A# -mWTuT!LnTbIU`o5&_m%}DF*XkhOv&LH --%DhCE0T$K$|AAiCj18CioaYn1xV`E_zg4^F9M&k0=6Z713ME@^+DE(SSyL|?jUxgt(<_zYA|hCXx=a -3A>3w)?6hUwInkUzo%cBzo6(X-zL@|_A`*cVC)k^9y7)}9@)JXGnm2e{!sCH4h-$yv?U -SR{S*~2L%Sb}H#5SF>_+Jf2dEQj)TmE2);pJvH>&dY%c#<`Smzg0*D-uE6^Zq~fz62nuYXAQX3^1}dprE+rsF)-!C|W35G -cxEM9TF9k$`XV@P=sl?<5DgV&;zfO^=y5;vgMVP^?YS+ZJ;J-sA!v6FKK&SnlgN^5I64s`#tB}nPD^E -_FMkHH+cPi&%S-ne$MCMf7T@Fdo?wzTi*^AWqF5teD(D26vY_te6;Dw7J82ocg8y1k;(d$y+8B5{LWJ -h71kLlKfA-d4N<4K=0Zb8AD^Jdd=m0;tsU*@ln6XyfcyN|=z_?<4DMX@^pePaJim7m%88@0^Vj=|vvs -=5?Xdd2v2azKSM_}mm>rs>ulVdRQXU1~BjBpm9lfUe2}OJ@N|?F;0xMc3NT;pRPnMd?`079gXt`e<(4 -K(_VI-XpCc%`={1lt)ona3(;9L)?GZ=hE;iX-D9IKGaj)5)` -#BB7fbD*M)koes6!BN-iTE0)UulryHKF>o`ILSapHJy`;e6_$tDR3>8HcLpHu87iP}vy{6`Q*VeD0Eu -^BB2u1IT3RYaMW?5?^x*>7_@z$Dvx-8Hegbl5`3N;L>?iu-`=KPJ;Hm8jeX-LpUbY-5ir@Hk~Fsp-vNqYH*D&Kg -#UJaLU)0-|nwsIF0plV>q>N45x+ezP~BLuQQg_Bz2Av>xE_22j&~*s=^N+!#60*9L&n~03umI3q{*fJ -QXo0Yd4#1#6+n`R!xhr=kdacnj}UE-C|kIV>1qpWfehv!(sn@c#Ov!-$!2-iVrbzOsnC;y2iBnxas@0 -_JOM4R3^HqNYQC%O4N|W2{0JXR`IE99q_5LDL&N=LsWdKAatAW0jElmE;p@h>x@iAF$Yw5DybQ}r-kj -%sf4EAt23DRHV-;gts9*xP{U_3Fzxc7Q$53HGnsTY^RhQO6)u*#(W!p%K`@m+x&+8lmU7J1+MO79K8{ -hZ2vGI%W3js -!C9ys?6no0r{s;Rbmfwe2l)#*9}u;u83*+<)Ry>>L!j;^$3(+tD3L)ub%)kD^pPxdSISt&7Q(P^#{vmOk*d)HO=gZYE6FF8Q&x5L?Bj?=N&ht6JD};X)_0s)Y= -#%1Y6ytZuX_IuGg!t%^=&K9;Ao(piuPt!kmyEGX@j?$D~ZYi+ASALr=~sw$%$RMpObT|!l5FsQ0xn4x -%}s%W%bqbVspj2G>Vu3_$o(%?NapjWoB84y@1Ke1{Ng{!*716Rc(yWkvd;$nLlcY=XX(Z>c=xT<*^uB -x?!P44)t2)b*u#!;&#`mh&FIo6e{=2s!C!rTy60o_4ZozZXzt8X<7!s?{v*C4ERYOVlb^_Zp|gw+O3I -|!@0HSHj*uytw=VYNu(1z|N;qe58WBA1!22zP|AqN@~g^)Iv#nvS~RtD?JtuM)5q!OJ018|Vo1kVbp- -Dxv8laidoWP4AN{qF2$`4z4x2(W}y%a0|vg>2af1rPEh-{x0;Y1r)t%4n?n;PSLB3483X+MX!oep{w$ -}Cp=%Vl(9iYD2ft&l*@|e?UIT+Kv%V5u9Y7W{bAG=;GEhS#cH1yidEX$E23D*54_+WvCh1&>k+GT(Di -DU*iR|=ERy@wVzo0MuDVGk^mwAPzkGwo=jJL!p@W|$erQqr(!w^bR-WVt_s8WM)?;0RfxStZg`n^=gq -Vx^UE0C)(d$6^=(QFfz1Hsv>iFEfK+%Yf;?wrk__TeEc#uAeS{+m4nqiiX!bD=PCX_zw8BJepksq|ue -bW*01JA3mG{)yg3Hq{BdQlrBm8ZTb5oaFNZPb`O2W|AaG@F6bkX*WQgx6;maa^!NR_VBTQb^$&AQ7ur -evEL3BsXs4`N7bf+vSHf<^;%_wpZt52X;>OJ|Bxx=auaD)MRs*=mXJBW_rY|M!zdmpfAUqaQ-ZS`SDg -kscV1#k39)Wk)>c*`ypNjXE#utrAHLdjwbA+rCB-xeK_7oQzGWyhFxkaSXw1W$LJF~@)t+2d&OrX5QV -}jL6>?2ZPT;p>`{Tix6$>?$@Jz~+zI*RS*Tuh4ZY|}19jfVuCNN2zwS3ivBLq$4@RtT;N|sepy7Sb^> -O_b&elR&qF=>c?wKWWZn%BUuaMIYvpKEf{J>?8DC^c=iNC1f2Gss<*a -U(OxiF~z3@FQ2{}YDDGmrLSPqHKNwfc9^IrD&3!r_1qV4he^t%d?q}I^dgH*j>@C=HN= -ijkn?6G`~n_&6zY<>_x?AQl#^o%AAR*1y0D4F_n4mV;12tDKX4SpOVH@_8o*N`2s;pBfh?sc%TtF&)x -Ytf+-T_RG*4Nfzcr@wk1@4{4PZ)$%;I8k>0(p^hHSS%0!)dzmL8lttpA84`RfWu8Pz;hf7AoRD>57Bc -={P(sSxiBmq;2@iC3lU;b_cA@v-LhTl;{>;QU$GUgUHPEFTudj3^9FF*4(wv~s}Yp@&XfMwGbTI7c(O -%g+es(Y$YRaz5@_vU_3)d_V)S}^yu&=;UsXK9s8x?~D}slg#bk3B(r>-=@J^j8r({xMnZ4iS4qvJ-{Svtf@M+~DrrhwftXQ}MGHDYCC!(n58D_VRacmSUA%!@I`z6*%o9KP#$ -71FgZ}m+9$CbOVgP12G=pS{yP23Cj)U@rzM2ibW!28_yc>z{>eNQ!u|Kj#0wOW!58zvI0=;GRzN`yJg -{O(o@Frqgox6!B@-z`EhSEN2mfA%4o&=AayTH?w7g+;Qyb@P7hZ|p{MLvSm`b|67T@%4t(2fr>zgEs# -hrhgv=UkX~pT3IONN7KJg*T275;h}QI%|anim|xOAo|1qJ)BRYogN2gD8z --6$+#BCCVko01oPS;`V}YiaQcB$*IBBMV?(?dqO(*^iNffa6n}ot-i6kbn&O0oVhcw3`m)2$LFFxCPo -XMNQyf3kNnfZ4!mKNAfpkdC$D3SX${`Hj|6ssEh$2QAdV3d&hd8^u#i^TO5NAy3AtpkG+@OC4<_ZG6v -jVB87JF{M1A8=W=#VGV6-2k?l>Mkj^FZ0(bPE;-3x{y)P2max4}By0SxTd#z^4DNJ$_8rN7*%hCi-Iz -FwsxkfxX|nyB -&xYdro!9v2>qJ=`16%VeTSBmBcRpDoagyRkYfs}^7$7&EHKi*oUZT9#pc+K3FP#`xwvp=G*KU@b94qnQ#v-vcaM!en8%*K#ml=-72#o(pK1U3>^zLxL -01q}Jv2|P}>2ko@qCNOrbpd)`J!gn4&wWUNf&&3spla{#8l!%31e8XHq@9M{^8oTCVd$SPo5e6x{nQVd -1u#>{>I3Aoe;j~q6hH@IzA40R7`vADe&FWQ}_O~YL>G-i`4|~K;C;B2vMwT!|@U4rhE}2B%tqb1E-mR -Mx2{r$3`|GV)rYUrsf5PgEQ+i`K%+S*PXI5EBWD?YlYos~B)`Sy|Kt8NjeMDw%Q~)64!jHmS`&1o-|ghO&2QHHYb%G5p|VoTTQz{T><7wTdR44f>-b4z0=tV -)9V6onHT&jZ+3>BJ4lQH(1c7%Iw|@l1zwhpGW-n0i>fvaJ7hwpSiDU+B%0uhmyM6%@ygO5Meg&M=jh+ -j_3XvdC!%m>1rt>|@AjIgnx$q}KV!>5ov4E#2?Y702@g;jUA{?Dvy_}+u5?zL-lp$8Hie3#@xNjCUqA -d$UwYo?EK5pgmOjyM-scK4NylBmCg~$rfJyq$f84kw -LGSigzo-QB(08sTe(#_#;Le%)16PMIj=A^sTG6=`B2C>IyQwh4&6Hc3GZ`ma_Z;uo7u{l+Fi}jAkk6fFLEO)H1}_q7;z>Va$c(MkV4KTnYHh`J()rhcT=06u -0XMQ^I>re^c=>qpJr(JZOQ1d1+ds6eNciW2c58o!YC0#E+>%cu9e+7#s#`u2`dkaa&NAk%=!hZK#bBD -v}!Xrht~o|dSGQe7KR_OM0C-rBN7)*wk2~_u%#S^1nJmq@_Bpj -dXI(x)%~0t3K-?3j;wV$R4yIE;hJwn6RtF=HA)wL{I@Qt==OA-MQo5_}9(>b|OH81-VtKkti_HzI$@; -Qw^zcqC$mH7U%C&X+@~2Qks-==PtY#`o7&|67m9{2!-08tZNqV=zflR`;D?&}Bm$WNJ!~cHza$M`zzm -uG9mcGO7$p{VGo}3P}HmOc&gAr~|ybXpq4S9k1KiIO?tC@4?di9Rp18Nr6v3KRzZU;VD6x~Xl@IXU}78O(yoxO~lKce^KDZ2AyWh4FC?reQ;?B*&iSAw;y{ -1(42F2g3?UA(;0a4Q;Wi+FMkO8iLz#hAsxA4jqYWk?U~vZxtk$ql+F#twg -{iq^QG&>pC}O9ts&p6tWPvMy^T=AX&j$@%K1KUG{EIs5k&FHEK?M`- -&74NW0+I_U)l=SjLYoSf~3@RJ0hU%53rHbNy4cNGdVgJUPq#9hb&Pb9PtT4QQJf|{(rvl9ql-UUjOj; -GsJ#Abxj)akrewPN9Fni@B_&7u8C1$p=>HG_r=ywIi)Ub7)((`T35c!Ku>ai5pwDLo%#w3JHfO$*Nwe -+}ig!zq*?LQ_%|BhLwD{VBoddW|@oy+MfIheh5FQ@A;h -vhd#oHvcG-b|6C5A9$r>_oiVxkY3bJ)=?aTajJ#QDMjE`DB#fP?otIyLQj!suY1xnI7T-~yw3x=JF_5BQ(wDv_EsQd(yHTjhkBU-e>sIv@k5=%adlgpW3C*+=5`r4t;?mY10rp&VhEiGD~dZN -emS^fa(iRaq^xk~F#2eRekWvruQ}eI(;l>$lx)wpf2Ue --K2s_0Tm)v}?HhLLTtM6gq+zCtEam%m|L|KqhTEX3%vKDcMQ1g8#@RNWa%lRR|_hoEgS&MUz -P-WIY<%0j)=>M1L|Ci|h7wP{O=>O;G|E>FtXHIAN0NaR;gND+U>=>{B968WBWE=39^WtdnJTGg}SNmshX5gFTyLIrj^6@IH>&v#PA4Lxqy_IE -h<1Qm8WNg@l@wzIb}2w6R$}^%j(DOd~${V#KAkZM6aQ_4qb|+??%RmBaa`Lf-XJC0afblwQo>pN{aSW) -G#9&ew|nr5FB|2X@FqH~*z1<4?*+Bcgr|e-ULR^ns9QNvO?05(&M2DpFW%&7$Hfus=kXe8t*@H?EER4 -@?5U=If2hkR?lWw33cO?E-eOfEP8o3>5!_6XlI(a&k}lvJr3f-mJ#dYSp`Ad*a)t1!olBDgS*b)E2KU -fRR?TWInS^0F{p9;Iu)m${(O3r>c;qHoC&V3*bMK%~%g{}Oa7rMYRkl!d5y6dBH9F=b)7BE|hPHLkioX$%)#p_sr8}>J&{W7Dc{kKAw5_4RC&y -#F}Pv^*NsR>NZ;`YRpTP5*b6Vl(bTSlv0c&Lz3CkMx)yy{qSwF_||nSAVE -2#mJux=p|r`ztB_~`fu7b~NNNG4cnYYrNr!n#Gfv|vpa51t#4CuaEFW`VE2g*^e8vKTA?KV>)P;--XT -g|s*2*yFN3?i~ln&{oC$V&zlgRX$c89_DW==5I6V$*6~gV3AR;5%o@@UIWC7mJk--o -KV!KF=GXU#T<5}^4W{iM(hv2fvLL(2iT&M@4A(ND9Lv+CQ{C2j6q(+m}q%EV`AlG$^^+tOv5NoVT>Th -F(ySG$(VF`2xBtjNXF#Kdd9@d{*1B9mv3QDEXY6K;(lF0mKl$4E6blV9$OE&f$`YB$Omq5KfWOEW;`} -O@;1g}HzRLhJoZQOX2xTmBv&vVTN`-| -H{BoAafeE=qu@%UVftYthtE+e<5EAEG3eqcO((WQ~`cr94|knuQNmg^Xg#{=cJ7>^Ia$lDo@57f!eF& -^*4%8xR>82OEi$5ZEWG2=HOFEaj7L -0-prJaZ{uTEOxd`DVt;$bZB5X5>#Yz7_d;#^bhvT+MiVwp-r8_)z4xGCmUdCm2s3wA#e@XynTnkFQS3 -s~8`Td_Ln5qFc^jynuWv;}NP`78sw7{1nD#ARo*4T;!t|k52^3k&Iu3d@$pSktd9=K>p|XtSpe18UHB -qpEG_7@(qmNiu?h_Z%2MN;}P6M-Zq~u4^hkooDJuA>Us|$A;bxDZ4vr^>SC4-be1t4k?DkjPA1b?%yi -O0=Mkop!gMk~r;6#^=njpxEhzn7ZA&Cr9LOw2FsBC4>BV$>nNBq5=$OvgG}g#~PTRdy=QPua2c4gp&J -m_#1fB1h&YMg}0G&pr^CHv91)VcY=Mko32c2)2PC3(A1v;mgPEne>0Rqh{$^e -k6f$5bi5Z=?K<2QUR}&_t8^H<*Z~_f(>8?nn7q$9AI2x()dJyM4NjAtf7#@j4$rI#?~zmTm7>onxzMU -#`92JSXG-B9BKw^0TK1~bXRGfCp|n|{!=Si*mh$~#txGQqfC=A8Wq({XcB-3TW;_BW$;0@Bc>qqBIj; -vkh_PCjJWIH1%N=(Se>zGSib)8E`MhSbHqbeWjj%w^d4_lW&cV3cqi5#9d<1q@0IvsBqsN=Tl8<-;q( -?{q8@CCP3B(+_ai^7{&;c9joC<6tvXRa)I3U9@-VyBA)$zseRQChaA>bJtVYo_B>HehPFhO4@=nuhwp -M_rE{^v;_M%u{=$x{fJ*1@c}AR$m<3-CPZ%}{1D)iV3CLqQ$)Dya8p+)8Dgr@&T(VR=EZ@#3m+1q)ue -e)VNlfzJ58y1bHZ_f<5|^`t|hRypn>^3LlBN9*M0|Blo1fAhxSYM->RlKe+c;lDl0>tXXFJ&wgO@ -A8iqWCI?C{C#^IYb9$X-AOrTil(>MfV&WLM~j+cJ#!?75?_YoK4f64e?dg=GR;=I!Dwc?o4@BPI-%3* -P${Nrl($>HZ=hUzj}tA-E4@T8DFK$>vt1GM@xt=>RfYe4P8)E6Jbw@~Hg%?dw)!j2L;+8tT6X8A3dMa -ZOEwD^*0O(?F3)HG@Z-+g#`QEsO!@izf+X@az)g|9g=svpeUP4FY3gw(u+Z2aOp*@7+{rPI_nx`mENHo7%XzLzGwG`mhmlzkL&H6$G@xjv9 -TeNa&>mD(sgdImA;|Gc8Si>Le&PCG-Shv`|wVPmFR8h_b#sQo$3pG`avNKDcAplH^@2-68OwWs-eYEzwZZgsVb#n?xpE6S#`lqwh(C>?61wzBN^X0SE|NO^suCkz{)lSb@$ -Cz-{o5Dx?A}><*~1Lvc^G}+$uYeYhg;ww}QY^7WJ$41kn -AuyH&F>v1<%~s&6X6clO*O*}zHT(j7lwW=bb7y~t$0@y!zOi<|g++k)m*-9@b*y$9=cRew%*M5r?+e| -VK7vVt`3yoY$p<#kL`)j=!TmHh^yTa+*N|rg%&%mcU(Iy8^|utwA>uB9A5eIDG~b84OT%@38bxgg)W% -Ur%)0y0lU1X+`7vf5>Nd}z=IN^WADMZ>4AuN*Y96ne-#-dV^CTD~-Oo0*hl2G=W?hL0RqZVqMYA#zEV -*E==%>G*9rW_^zaKpq6mUN~x3$;`QhqyiGG!F4=ReZ7GMbf$QKOjPl(#?`LO?etA0rt__Zv<04L7{_6 -Hk}&$nH_fDjofP-^qT6_VqZfGbWVYB7M?O7pJ~@e%+TNDZeK -b;IaRk!jinhiaPt@=Y7_Nl%Dr>_L2Oytbqg%k^CM7S{d@-8oG)YP~`6As&7#N_o6$$eR_(+`v&3$?EGZt -50_&01jr63RM$eG^g`pxM39E}O9MWe(mj#1kc0Bv{^iGBtBa~ijT=6# -QNO<0;z~RBy?}+ap&vDSTPbET(re_Dv--*YtTp!8ts=;l{pphEj0nRr&V&mbfDUd3Z9dQsY-Op$g&i& -1jP+g>#&)(?;?myL{|Kmv%0i8T)2yKM~=>t3``bnGGxr==e7cWeRIW1HL2VjEt%V+<9rU$#mrZ9BCOK -A93QFg};fKoX8EL-rE{7x?AEn>N$Kb{~=qTq%@)34(ifeSnno07atNjGf}_3_x-XBd52j16tZ;x-?8)?4H3VUi9~jNZph -EoQyWAcn-9klv@L+I@S|H_<*kjfJQ$J51lU_nY_-zI>r=1nU8~d;L1jF>^Q4w!A7eY9WjY*)qRh&_g) ->3CEaNq+q>%^L}VYquCzLT12S*OzdGSYtfhClvs(#2P4RVbc^(7yh@u?4kpPycoeQhUtR`sw;?F5y7+ -vceseVfM?e5CZKjWKG@44+^i3h6!L-5L*IHqX%4DdX73Qc6Q)xCBVZ<_A76c<)_cayC2^J{6nEe)C7% -{hM^!L4@;Vab4DM*2={hFT{dJWB#{jP!hgbqju+LXWkid%R2GNf%8qmwgf0Wm0xjx_+Y{ -UiM!TWhJ=1oxxuc3iC%B=N-JjE$9ANX%EJ3bWn{V)>P+)*O&RH$oOhS)0yN$r>32%9Bk$_;6hpljLO&vU -gyp;DaQ$`QUMjWa(Qfad@qP%HSYh7%p8YV=$g}ln(5rxk)3Zzh^qwZ~7bL2bO`p{G^&FT*0CiyGz!1yfcZ{Ief5yo%)>0J|-w -I#L;5siE4auD*dUl+uZy$!a(27aI;Xb~{WO -i5YtfNBJ<`A@E3fug9G}u1_7gobr>2jgZqZbQ%9GvB>CJisImWw!2~#VpAVq6&XIMHXP=Mp%4_ -3KTWRbK#yHkYF#Vb-FMX1YC6a!j6&7(76CE|iX1!ix(h6)7C1VMNraD29Ja;qP#~TWj7hv>pC!5=248zx}2i{;dj?hxoT|cE-Qmxly- -$pf~<42feBmeCwv`cb4^N08>+qti?irkyfitUpAedG^NQBZlgUz4AW?h)cx>0dZ?P0^-hKfVeZf0C8tfT&NlUcK~r;-k@9o5Epbpjx5DvI<@Tqabx?De --aS)zNI*r#A|q61LEdT^Ez+yPJp#?*_y@l< -5Qh?ksUI4k97(i}i@#K7G2y~qkAGc{Gy(n}fw5fnGh9(;@8+=rd-0X3C{qb)7U-V -65I7IHX93uA`4w2i3L*(}45V`&wA{Xx^bpeq({{+4!-x(rz`jeREtAfZK@T3PKx5Nt~m$slPMDBWufZ -K*bU~Y1B0g-!$H$?6nFNj>)aH^nD@xKC*8~Ljcxh&decl?{4wFZ^U77F+1a-<#D~7{`Y}X*C97J?tVO~+66c+&b#8rF$xV_y+NTBsuB&LL09(B5&3nualaqM=9sr2q}qA$l~HT|xnc=|?dPD0I!nYiWC3 -lG7E(4}=;hyKm|Aci;Irrz$5O``Y;@oa&_T9p*9E_5}e^IL4kUXg+m_M!Rv4<+5hrH)5S`>7LaDWi=6ZYTbI;>~`6lX`$jzzn2+>b)#SV;6Lp>pD -&`?9|Wn*a{MwrkY-QL`V -p-ry@Oewj5u8lSO7Er1l{l<2)rNOpqn;nLax5-Y0Up=lY(>EWe}D-h*9LMg;3th!Ntxt+_gV;mr7~6D~s8gfxBG}h)IGcCiGCVwKDq`l3Y2)wJ-^n6md2HvlO3mr>kc8B-H9Rifwqix7rh -mHKAHxiv2&68>q_BEC79(fHgDgn6)yh4zjOK2i`)4AF?6pbbiz-(TSP&(0m=3C*zCL$AqeIfBBq+BfsJ3l4;I>wtS@E`!Ph=qEGrri6{(a&$>a^Bmb19Hm6vvt46cT3__oaK> -<;c_BTCq+54(7eG59}bReT@^Md8i4m5_f~m15FCw?fpJZL42JV8tJS&@f>R=@b+p7 -==tD_y7J(2Y!D+(6`Vo?yI4@LyqyH$+e*UGTUQ=YpAu*2SGrB36RRmA3l!BwShi2rNx*VTok;l%UacBVPrb0#?tR6b2~5xzhqploZ7|T;4lR4M -;vVk8ebufT0QwAryrT&%tvG_59DjsGgsr*lA5jsGL}F5pB@fmDpC$B|{5eGMp&|zdvn*Srb29zjL8R= -TmJe`5Id`v;Lh1)A0)>7Z5%|Oa}_OBHk=Oz=&w1K14Ji)e@&Lt=Ov370;Bk?@uevCh;YpCh;0qYzO^& -sJ@RY5>y)9dRM4w9*pLi_~NAU&zu2t)x)JXojWz4dN`>j#1A8Z1*+rcf3REXD?d5c-7PJcq$u>+I9H( -LH#8seN8^1ToMOdAs*Bsu`SRDT4_psrFps`&z3(1pKiN9h`*mw}`x%%1TK3`l)??dWY`42O4L(f6(Ab@#sY2&|Ou_pSRemHU0`FRN*bLf^Npg0ghKZ;cJI_xsj9?0xG}*{9tD*J!_bqf%<`td=f)*@cH+FZ?jf1HA>k$yE-1CIw}o -pZs8oTNY;Bz{l`d{1h`Gq+$^c5K%)=hT~&wcp?_(E9?RKkS(`hMLyr=43_t>Ug|!kqkuG`6u5@7As*j -5L{MnHahqZzq&gu9CwBUH`TP|(0S`H4g-2!4W8>x% -4z^>+|5q23J)=>3*F1SYV7F@ -Sa{lE+Tt^(0o)!rx@NIT*Q^b)^rgdL?u=p+jaDztd2`M`Hh#miVezv{LbB78PRt8*)EM}S5?uytL1lh -n>^|?xhtooZ)4jHb2K)tysj%dLRPW?@2pD^LlG2C3O_8DkL(auyWnX0zPPK)j0w4KE>?oAAZJ}=Til_ -Nco3Fq{pK18{yLUM>DpK##=%6@Ub=PyLHv?Hj$dM}@-yG*#xJo*+G>Vh5-5KZ-$mJ#uFW9y@bL{@MN> -{&)`c$0WJP?J1}So(mjU_D@Bimt<2VhaXE-I}8STkwG^dj}oy+M`PVeRPQBGgw^Z=)goVIYPi(@pB(@ -~sG;nd3MLQa=*dJm_Ma~d7bXdh1fIsM@VMt|n^$OJ}%IgR3U3a2-7x|GujPM_d(JEw;^{esgooVIb=Y -a*l9a(XkT8JreyTE^*voNnQC8>c%t-N)&NoPNb=Gp83g4ZNOF1E-@ny^+(ooZi8yozn_VH*va!(`}r- -!|6#*|H`S3=kGO~#&argdIzVgIK7wChdF(Y(;b{1kQzj|JdJ2^cW*WSFl-PAR-CZic -A7_EPS(T+deMW$bTZP(`BKTXJ)#Yk}|lMG+uPz`D9!^>x$hPvOB%4in+6#-2nsbo4CP2#y9s(Ku`o>) -ne+wU}TGqI3FGMkvGt^j|N$#VFc4E_|k?Pc@7QN#doV1EX;&T9TgsQy^0KbGqdl0st*b4pI}XC^j?sS -Uze4F5aa`Ztq8vZ4$9*!v}qzvvIM>&FvH(W;PZJrRCNK^CvN+8aGOW+xjLC-f;x-ja -`kkuyBKtwRNvd5Oz_8}%hIF9UyZLCPc>d@eAIZb@K(Fyp@y%9tA>OAWP*QAFw5pH)c9fSJ$k7SbF@{| -!QKM!FPo;ky-6zA_SQ>=_!oHDm`CI3t0satl;8{6-m);b%Z*HT+o -qCy&j}9?KLdATA~@GG<$rZTVuGTOe*OT+vQFJ4-A?`Z4q^>3!LfEK*T?#RP3NX~ -R*xy#wM*x}4{xHD{KW&u?~xEL1tkA9<{=pXt8?pLE<=nuL_H)LL>=yYUfQh%m9@;C?ilIwI7xmA!~w( -J6%mqx0Ssger|sOCH;r$mP)rb!Q&@dD~GdMYsX#ZkK9Q> -iqXs}~~Sh02l+YYP)NU@Ms0g@B+FG*K2-_QM8=bU{6hOT35$kD6qHyF79iw}-VSkk&5de;%!cdEhdW#+HR?fY6-Oe>BH-xR8d5W_I|?ce`LdjsX)3O(pYnI -p`KqHQHPT{<64Zx-fPQ8WOfxXr~ZTZlM0~E6rzM8|t^oTEItoBPx~fTP-SqgV`Z -wVpi2ow$tBtIpF(1n%i>a{W)Kcsm|8Zo}70bI2LbLH0v-(}g&9PNnL8a2xNtV3*Z!b?6D?1&5iM-8GW -v9D-qN9H|{EC0ec`KMlYodetp6zZUmUSDB>i<6?KkY-xrum=QAr-3so_dOTT}b65nzpyOv~M!dQL?R_ -lyqNTW4+4n>f?(xn2chXE~jd-%lO86mEYC-k0WCo+p9hoby1?K|DN_fhn5kmZLG(#gF27;V4%I5o$5H -KT8#~Jliewgd^pVrW%DhaYQWV!xN?i0sa2OLTph~Q%{`eqjH@?sbuX?qa&>R6ZVX}SNUpYXbw92)aCL -vK-X6@<162RGdY~G95K~{n)myoGuo_+v+Ug~e82B?lNw*(ST7kovnrEIC=v8iG=pP|d=sc?sPrV<<`PT0VsOpVH2^$?p7$rn5t=W!EuvfipiJSbzMdK{@dCC;mR6+N7i;Km1LM1;5auAwDHNKu2zf -ja`ru02ybXBBsm8&43?dxP2A;bYO!75S>nkBB&z)ZaMrv{xfv?i+2BYHtYN+K*?O`udIu|_BKkq{xnz -l=k5L;uRouw{8QZ;{=2jPf55MEndbgiOMu4nceTHE5}@(?`CR3nM*{xYzh6r~{)NMzx60e>s*}vq-Cl -jQ>Gh<$qYiyY&HXDbxu>+O{NCSGRBn(qR^501rUxGU?dFFbe&o@|9{=4Fzkl+nEl)r5>~nv3{)MeCzV -!08S6=<&_CLM$`i?ht?%KU)@0)ME{m#49HT(7-c<*3s-J!$p*B?20tl{{H4?g_p<4;b0dg`;!|NO=2# -xKA6`kQb6@}1oDz3Yb`&-~PU_OE~Y`InY+t>-UXymYxu`KK3Xx?g~~ss)<=?)3k6hyQP1AnV@ze?oYy(9Z3eCGnd$=6|Q -0~)5ts+^Ub9zNMnc@MwwRP{qrv_zPGrf7zT8{_ZHuKPjR@PAB^bA%gZ6-V`Ga`iYs7r7Cj<9WkE5F*I --bWl7gs$hUnsoVsJ%ZSeKidtJ4LnvfEeM?VZMRxHEGze7JuTMR47n%>r>G?7fD{)_3y3gslnWQd1m{4 -u`R`XB<2|Q_Rda*c^^Rhas=Pke}%+$jY@jCL4wqQA-ZG>wxz1@@?4$vCvRxw-p#{t87_LF>`Ugx^t3N -fC@Cvfs8X`78o+^U@;rq;Ho-g=$H=n9Jb7CLyn_xIk;fn3>$)bLncU>0C}7al#m4O|IEV0hAeP`WoXE -uk#Xzid5YI?r_<(Goma3#wbRkO$R>(j#$^mPq4@GdLsnt7%} -|(Qu&ZnJ_!~plIz0PfV`=yfpo?iN#`0Oc`b%16hYH4gW+e~)E?*9@FhJ>J3?N@ei~)HWfm~6pZE+@O= -I0gIK*sWmy7gyeZk}i>vS()544FA1q-exgXOUy<;=F>fwt^KSRL33U&Lfu?8d%J86c#ME6^N>RPdGNm -^1Omfnn_T$;9~Th&O#B&3u;1pZ@P-~lumVP5nbDJz&vrGS9_4^6%6x#WuBOevQ#8yI=r;6E?BQ}r0L~ -$y2w8@eXL%4`_(DGvu#uqyzLmAMHscT)aj$+yDpy*!$ue~c`8tfI)u>K{*V!n#{B%kmFO|L?kZZH-F2 -TQ-N>I~i4zOF$PjH?0WDQtj={FvF0Q`r*TY*3qQ-?O6C#?G3B{rcGtHFcw&jIQ!eM8;#(9ne*A# ->-M=RLG0=IuY%%}9EzCFISv)3+j~GfAAh5c{X1h4Z11RxgA;3_Gf#g++PG?fJGvYCF6zJFiGwC|*Bdj -6HiXxr!h99oAb%dS?fd-V=gI@45Phkm?}&=ZS2s>KOwe@4;uh$m|~m{tGX4Sbr_)KfaGWA|pH&-JpMm -pk4kOe7ABtntp+#pBO^=K^Xl~gGj##pms!5_ZuBDaqs~>86fr~eX~O#{9vMw3v~E5Y8!lTF=Gw%f#^O -^O9H_SnAkNz8WIF4(}V|-@CkYnK0dU$XJc?fV71O3kl~*ahG89mFhro)Js>O{={Gl`L5*A8C_=u3PgL -Wk)etTC7dFt344f8O%~C>$YQJJM)S)q+^lAcqNZ@$?*nVSrkU`l8$e;=P$so-;q-S-oJ&4D-(NB%DKi -aj2>9s^ZA%N(|vwTH=&&CmQ5k5urSMN{ssbB}(pgoojh`$K&&klfe_>+F)BN|orBd;f97JT=q3gF`-BliD-30y -UO`fpA!u&}X#4&6 -?6%#9&m432@#{Tm}2`c#M8H3NgmK*+CwsXfU+$n$}7Bb)m)^8CT_gmmg5o%*?+IDae<(qbXx2ELG~3G -g8Sn%_|~_ZR9FJIFN?UMJURwv$jUh -jx&|Fq+l?Du-$uUcHSFKj?Jks&T+Fa`?pd8?1vcVGi!_)F<>OUX`ya)T{6e7-MI6{0u`s$NRY3g!M3{ -cnHT&s<~JFP-S2`w6Q7hRd72t;PL+ER_}O@2U+T^g|;Gq^d7HwyZs>t%5I6rEndf3yu{0GFD>acA%yg -LFepVsWr^3bfq|?Hp=<{_Jmsgx`?IBlG%X`!fBQJZ_8T1pb!842keUMZWi}b0nMs&SmiGt*uNfFb28x -j&AAQ09K4hS#7h$zhZ4)6Mp*;Jgy6bm!cXIQRNXRu#kKC~O4)r{nx2JO>n!W3L4h*?og6}(Se>Cv>;p -@xmfF?pmBA{)FfVL$9!j2dpRvp$^&t1OHu7Y+GzVWJi8a{-b4K&p)57n9u@u%%;FRG&C@pg9wxBI9`^PF+(DT{LYYKD9)KVAez8Gh@Py~dV9gVxeQ(3cxh6p2(RvC56cKm3G?bN-Ray7^%Fh^FTZ|6bfj0R9_mC-(#t`6uMBs8i}}v`ud@!(C*XZA%tycSOf$%;J?C8Oc{zQJx=?mfZj_c{@=q}dnP -7m&S68&pI9y#ghLwb%6j8)YgX~+C}`xqfL#~6<^tZyL5AdEGj9q2o^ce5%Ds{OR%gnSL(o0q-om{)r@ --qWX|{evf2fOZ1PH{!LP_K=KVHeLWVj1!uBHHJ -1Y$qGzqC+7~3^FhI65VRkIpgs(O`Y;IcchLBL&3zl74e|3KeiJm%W}}P-f{X$k&wSGK(2yRB`MB*KNY -5xA(qB`_WJjy2!4j%<*pK^@U$Oq36@;QBN$)wz*HU_V)qZ-#NJI*k!!)e3PB|V&1gXqAj&>L0+~kF*nmemZ -CrNaOuQpM`sJjM$}2QEw{6bAP@2Mx_yHA%rfRGn>zK}NjeUGAMP}P#=aMBhM~cH%1er -mu)y@_3=jTBoW#*?9tjsHb`OaX}vlbREbK0jn3ur_j(zqxTi6)7ecG2muK{kuFRU$b9DZ;h2l)^kr8F -?Sik9(<)YSr~YkBl9pb%d3Ns_F8v6hPuL^YiZNm<^_a?0NRQg2X~6#CT(e`eh=+F;*<{PzOGvx!t~w! -Mp;51 -s#{P+i@q4k!%KSK_eytaF76IkAivYmJ`)dO_2IicrtEA7&8urX^^wUb$iM`@1&~8jEXf*A8^JP&oPZL -@w~3vEsaiWP-)6IuvA)*CWXK{aRp8rx-?KPHyH)Pe~BTF=xlqAnGGjj*c)0edU=)!>X>)eJw-8T -5CjYDdoyTu?cvX&*q=Agw@kj0V#K|fC0i@dC5JYBV&r3SLEnAVWhMWStaY954BL|X&k$o;&1L5&5(Qm{hTr14{fgFEu0ta^`j@C1+7CdN$3OlLMlJH-tbC?U@dnJ1=dRe_nYqK -hu$i3$6=DCNs&Nox^f^j*n+w4`Tvz04BL0|AfS`66P^jK>qXl-}^J($jd1sP)a4Q#@mWXP5D93`AT&d{R8ufd~ld$@TiH!tJ$$=IgRGjz-c6>I!;^t8U2CNMovHH^dzSra@xRYJ*Rb -?9^kZ^)3-R?&FKzKw{yCc(?>bo$Z1&z|JQITa+=R+2B+zq3Y^As8q4V@P7R#uIBoUg_n@@x$LGylU*@ -!t)03Pwa9YP{HK*G--NNZ6PFHc7!D$Mo@tnqT8qKMJ(@0K3In{AWIBnH3+RUlUX(Oj6Ij!S#JEvPX-K -1^re=%3vInCfy;54371E)GpFZnY1GpCK5?&fq0r+?2J=%4wO&1^q!`=4h1YkAQ;w`=zq;k>*fc{%mx< -;cTJN#^&|6gI}q?$h2Mj)tlfcfMNsFa33l`>&PzzuNxa>;B*E|KIEWKfnK-zhApQJhHDC -wn?EcV}1D^tPAxzvC0+00MU>G|AkMyg-%uiw=ZAslel6!n`3YED@;RQ1BDn4gtHnVpS5M-O9sEYRsu5Ej@MfHp?4u#i4HoTYcmaEb#)?IV5RT4rY}(4Y}aKN#p#&es8b{W=)Sf -uB2oD)9Y`@fk_TNJPAb_>2OYH44TPm?uDkMnm#|4+eT2d?{!L=&c|G>A)`px^E0i%K@O@k70568R$*1 -Ab+551bTNY%jY#fUx{UQwgVkJ4#uVV-BIF9*m1gebVc{?8Wj9Izt1{yj6@&xQ4eH*?@*J?;L(4`Z -hY(PIBXyZhlS3t|JhdK=U+kx(mhjH9+4W%b0LHvRL5a^HusE5Eu0iBk>;$Q~alED0L1?rdrX#qPT(6L -il{>K6xeWN{<2pqSxn0Q<2(1^7+^p8|9ae4hiK0 -W=f7M&Pr7PP7v84e;?m3*q}2cstO*WQaeMT`*#8r9&Cv3!Fgbr?YU=f&Mj}rT1r`#ka8hL~4gATIdK3 -r6U(YJq3Og(6``A1s>_RMNsd6p8&L1CXC&I4+lCWllh;&n2>L?SXszGZ^~wAGy;7CzO7*Y0MMpvX8#A -EPupM&4*Jgljm}|lLu$=oZjr8ELWmaY6i`hr)7Jw16ux-iKL;9-$MhqCj^VrjRO0+bpzp$G2EH2T`8* -cZC7>@aW&Adv3Hcyz*ggP#JfGK7pu-D6-hht=x~!1JUj+I>A+xg;=v@v%wgJBe=mq%dfWHKEeG%h}f% -=Jz*8$xmvhqSY*$L$f`cr_u;beKZ8>n^#PcP7B_;lBSpQyJIWCeJn0jpR!8i4w*hB5+u9Z>6PmM)~@? -_%|90?;*gLt4NN(#P*+_3H_s%H3Qh*AOyj4NIc|=vw%;fc@=2+u+*{JXuRf)jEhL@LPaxSPwD`{6?T( -6tnm@0`;wcxiRQ#fex;Oc{K0_pf6N1J6nOCsbt|c12t`cz8&(!4D{0tEPp-+TJaFn)zOewK(Bq6xs3) -I@CeN5!Hy2-O^5dnfeWc&K#M)A%uWw^*<_@4Qy#jd!`rCkRd6o4kNKd}X$_r`e9~qByKYWc~KV ->_l3%(yPT|lSoCL}mULut=F(2f8f3Ut~YR;G5K$M&$eH6Z^cJ{18xQ2)1>{|2BBy$$mr(BA^|+qYSLm -w}Fbhw;XD5ULr{4t9{fRs-`m;CBF>xexLUcq`DC_CtDs-v)H#0Z2daMxbIXw70+`UHm@e5AfMQ8{TLA -6w*`mO#gGBQ;)EGP63Jw=Q=3sP@tc{7Yckc&_5i5vPAg-`aXOEfv*SJbd05UU;`mHpMX39{S2Vbo?w1 -H2lUks2+0Ti?Lcck;4%QT;Uj3HK_6+_$IN~@&=H?7J{oB5C(J(5gp*7TrvTl@`2#?s8u5OMhEm@zp}c -_C0{slWNRZ*rfxi3$ljm(fO+T`-FasTN2Fe2Tqk-OihK0KZsIeK^3(!ZJ+RVxq>4jz{tCxW8`WfU2?C -b^__Y1@acmZf*3&aO_q_3WXashrj(9`F5zYMhSJj4_9*8qL%Jkv+|3+G#b&cPRKfKLT_=mKjK>VXDag -faqs9ng^%nSH#cgZGXuf&3s9Igb?Y%4~~@rrf?pqgY!u7j55Xz>8D&D=}(+Tif43@M>>S_|G)gS{C}LN!SJ! -TC!ttE#ki@k2`KIrZe`nQUiJg%e5D%nah?KIrWoBf<1!mi9dv8Bzi0r8la_d(xQCdc>FAG!-gwRJLLY -_=q__)x4END4^zpadt604CtGm%}=tjS>8~x^P^t}%>c>1?o_by83&tul1;-f6`FwT~)ma)H+{}`q95ayWkamG@;Wre -6j>$?Tuv6`8Q_F7&2qV46gsCp$tRzXwzf9Hm;Q>W -Wl%JuDwy0~UmQ&IwJTR1qsn8-PnU{=FRfg;W(`{SNvXedOsPKy#e?KXga;W*rHO;yoz_D_Wt5+V=wW9l+oJ&l-9_`m3%gH%b%hi{dc|Pc0LN)k*3C!^acGffhnL7U*wO? -O<>>$%PNBuvI;WIUauPD;7dW;(AVf-!~JAWEfEoe^Tf6t{2^_S{f&<|9%&0S~#3zzc2e^C3qbtwG0C+ -d$u5^^wqbSGaa>HQO1Q)or?$V20LF;+?Yjc7B<{A~t?bNsm#lyHr+0H;0<#{9DCb>8S^u -tU5lF(a^=E!rv=f;1PkwuwqFl^bd+6J=w6u3~tP@@ax@g(VJ7+7(8;g{6l_TE0Eo~85uRQzi8)@j@p8 -L@M^@{T2xpUhIm13AjtQ$O72@M#m5MTb0D}1V*0RHJ&K4BgiX+B-~gv9XS!%0j`42g}6B~zzPB_@-JS -S%KrcXQ^k3%ULF+sV4@>14^0C1mN+rDXZ?<;3A|(Dq~P+O_0q=S}40yQY%Y*CmkBB}ruC -vP81E&_sUcFp@V*CX-i+E#&c%#bno`c5?9kS)}3FWhD9?g^b##kZ}hUa?=5YOgyZRDMuBu@Q6YZKUB! -9Qwo`LS|LU7rG2H4+rCpsR--}||DcePk`hu`SxFvv-~sZ;Bmb|xD}k@++WI?&8rmAFeIliam_kZo4kF -V{kV^<&Q>A@r5JZ!R#1JhpzM?eb)ibN)1||0aYb4H|JuCI%;>C;NM!_ZV)9)k-3k${V+qb2zpq269coE8L -0#=%e9JDL5-aOC7UWE+U;RiE(B2^b -3G5lhN&tmu-hCj^k=XLN68QzcK`!f6phEHbrRSdtA;SVu<9>bqv_@5a5BEuIj{4E{4M?;Qp{?mj(BbNW@|p`e*;CN@;esxu2r67H=#~!tWrlZUcurtu`!IY6!}C~$Q4BwZ;Xh*dB@F*L!| -!1D!wi2x2hVXWlubE~la<+(7``&Yzkqi`GQ7)6f_xbMZH9lJ;pZ{@28KVPgBMjqsHn*{TbFYtcQ)HL; -s9%Yp$HaKy|19=ae{h&C}{X%K`Cnlt==Q(&}kjK3&Xcz_-+i}pWzc3KAGW{G5lJF-^TFYFg(wha)RM6 -Fnpm6{&gOqD~}MxBTVHHmh%X^c!aY&LSc0h*P4^K(UZij;UsRSkobKyiMxl$2LCF+!`&O>g3 -g^?wDZOgLy*yzhYvFN`v&-jzm5wUG;pn}oevK2^Edh%0u2lgyqdl4?(P%*5J_W*QMFF5I@Szt*33FWe -b>4!^*RHd$2S^-eU0IDYSeP%^L&Auc0t2%hWGUcu)!GqYK~;jg@0qej<`@&b2x -L0uQX8v=3GALn1LQKzehTDK;cf#Jh_{X@DNjX}n6Ck#-_v1ZM`z3{>dwYy;koDY$W$9F1nK{(ie^M;_ -1V52c4D8#wQ1$@3y6FGiBNT4w&Brv4YYfi6d7vOwjx2D~Mb$o-ILUAqJ8y9H&ljAq<5W*}D2{MLABIF -E;|BQclU~@m9VB|5JI(4d1qXu7KJ0ITWxo|&^AfBK*pMR}WCy7FB+j&FP@>RX6cm^2*Lzv5*oFx%;I% -(?R+uq;5McJz5J$=JN!b5_CG%Rg@AtTt(D!|}T&Y^O5?F4ug9O!R5AKuQRTBYY49IAI=41r>Z(U%qJ; -d%eItvy>-DqHcTU_NOGU|nw2%3yeSK0G|Yzek5E70S2akA`rJ9vt{^{%`{>>CxfEG8O!A-r&pXY7`I8 -gFmcbe$Q90(j(ju;@g3BO$hz?*4Cw3^>!it%*SBeX^bBzPxJ3>TN*k97d>s&A09uD6)`xdb$h$hy78G -c!T#;-P77nv7GigrC};egsuO(Aa3YcOZ1TDB#q?rxxe3D8E}ttoPf__?uU@@mK9UsK*_L~JmgpmQ9hD1KjojX@7TC_+kS+Yc=rKO2w%a+MpVeQ(rG9Ucni!WrZ@O -{o_ViD&X*_BqQ_K4w>D^lo$SWOo=ei!QCIUt5QGCT@zuM1fO!V5tP -jSSz9;fFK)REA%|@M{=;FT+2KbARP2f8{CvU-K08K5r){r@A=Sk}v#ra%|w?;ek@GlZ%s+qf^}`&ef_ -^d5!g~maAKX28|kcRIgUG@r(T3scyYSjriK?)to)tJ={fY*CuWrbt-#Q=L@R5_~L7|>o#!nc)qgRYuX -PkE^bXcDpq{KjbR$UROLk{$C^z%p08N3a;5U+Uuayls#Ce=oSM{mzG7wk;8D%_l?o0OTs_e0R4R}0|K -?bx27i0LUgb)a+}XbBHh8scZ9dB&b@)5a?_T@mM)ll1Jlq>G{ycvZclY}4?seTIeYLsa-r>4+JXY2kDUO4ftyu_tMKU<2X9%Xn=*UM|O{%^FW*#HK5+}To4Q1J6_zy0G=~UPOSdsn{Q?~I5@a_dwY9mG&ySH;86_l;Ys)hStBsN)UaX0dVB=0s+1Dev0uM_zHP -Yi=U0y%J2s2g(X@U0cKYR)Ux?!=9X)y!8&q`q^l9StH{m?fKpbaJ=I7^MWLnQ2K79Do9Xoc64+scoDX -enBqbD_m_0bUE0=ZV!IzFpMVerUF9b6j|6Vvj}oja(&y#56E*J6GjU>j_OG1|6m+YtCMUK0O(`}Wc1& -6|nwqfMJONxUyyxIjPu{4*Uqc#sYqIwY?H4Ce^={XD}gUA=nsxQ!b(j^mUqX!7LAJ>ufx0+W-ILpiSo -Zg?!ly=KjtEvHYP-nT`I7T}#@U|^sd#(h%!uV24ToXe!tt5>fz^Dz0+rAw5PlVjuafddEVhaY~Bc(Qy -X?)ZG>%o+Oe#~|zxk)1emc!_{f_IH&QI9hS~C -vGfPGT@IiJE@whsJN2Mwx2CaME}MTh#Vx;-tbGtRcoGPia8@90m1|5smqHIwD&$~rLxH0<2DQ{oT(ID -Y)Nl)>4vXXSU`2%BIVmdD)OT-jk8kOz*C8*B$K-+ue8#2+$b`zOfZ!2@;InzixwyZrk-oM#(u@g(@)x -^;^<3`za>^73j3Jw^xq`}gmsEnBt_%bYl8mNpFjLmqqg?v)+5@7c3Q+Dcwtp8O0N-~*s-O6QKsr^{Yb@*@Fwk@T8{rasrhfijI33*5wfG>CszJea -e0=VNdWPj?^DcSKEJO{slFZ2Mk0B`UgGB*866nK=#?=Vq^14M2AL)3B))3A%E3DeN}kb-Me ->h@sr@szTVb>zv@aBsy~gLzz(1o&o&AgP7(z(4M9vp_7y5 -kyUKmxqwxRz_uq-*Opy*6R9AEqCzImnxO?|59ooEvmX9^k!r{I&cbK0qOjC=?-r|3|$fCj{aN9h*uho4+O(VwzD=s+1v!*Zq}ZG;v7gaV>>FEb7 -KL~mZO+B1BT@yCbu3>uU@g9c^K@JVi4!3k(dpe4<5k(8y#_{cF&Di#o^?nChmB= -)V>PR;WFVV3-tTco(4gG#$8g%w-)a==n -QB;&ZB6-Z-})jFT**+TjUIAUrcC68RT0Z>nL$X*blAhAgp=beY{-L$Bb4pvvVH&nD4bq;O2KXdp&#CN_7RUS2y -f{DlglR}-8a`qg{>geYF)~mh3ZLY!%Q4noF5dqGf2IE&I&^3V9Dv`nY13>p*waxGE%)!=qq92}((aiC -+CJHfwrKXeMrY5Kl*fY~mjGuW_s|7yIo;`a9`%Y@qs1b#Shtu-q%L#EgAt8ZAj2J;PXU>#%ee&c<>35I|6- -Nv3Mr?quLN0`S6zc&r*zRDF>6uL_K=+px(WE)5jlwOmpYXr8#rvNPMuq2fm;Iu>f&G(SbD#Xn;S39wHWEj$JbX>F{U3{}%0A -HtJ!HG0K`_z@Fig7AA%O{l~7qyuH1rhlGSog#NIur|`PJ_4@VeEo{TY=O{5Tk=P~(-@A70DszP0yLU@ -{0PesQGE#b_1a04Cov|tYcaTt1!7!6y&egxK$_zgJ{W -CvP`X-xj_r@*5p-TwhF+iq%HT-@moKKS4P@O<;lH)V%SD;k)&@Aj -9$+J|2YY)*%+{|xuznU#xc>&*g8s8ErA?eT@d)hHXf)E;v16qiKm+g(2ne7)efr4XAp_8$I%rVqUaZB -CUqkPKCyvk|(5BZdV-UB%KKSl-0?CUpQY3OrUYYCjQv6g-9hU$bTnWo2c_82I_;pG!FKn)#H^zU>{3 -kz*P6o&4KWVXb?Vwtge?H{?I?|7?%R_zru+5x79!uvykqnM=gP#7N)Dwl3ovd=2zl=^^X@b_tn4Pap& -MWPLt_&lndnf;+2VF~-F2x>WYMC-+o)mW*{wn`xeop}n$}bj22lx#i#Iakh6QEOwwZ-h|OZ*`ll|!Je1HFeXf#IwOW}=&;#Gmqt6K8TWCGS&t4l7JY8VMLb2r{XG@5US5=tD`LNo`(Ez1 -?AD9;j*5!?e&C}T=5plR*OOzuF)}i;C+GWt?DKIOHf}pZ&i#te=_$rOd537!IifB{tu;361*4|W;wz% -Jzau(&P2y4#4xqJm`SRu4^4e}V+w>jyGtN10vcJ8^e(6{COUF4sH*sz|lyhJ_!_b_&E9V;pgU?&*WY` -Nuov(womwV(o(SfT(zPsf7zm+h59roerJm(#KJzd>vqV~_Voc{s$>+ExL*>8Sy%BXT)K{=4j= -k9LZx9{4R;pUBGyL?VNs}Vx%$XAg9FRL<{ebugzm8Z0UyWQAc?!d5|~h8|r0!f3ep4P%B$kSlre{kyc=*4|0C}y$|;HJb)*NUso<1 -r_Uyb$$iXZZ4a>j6{7G<*1Bo$bJn`Ax_>~gkEjo!&gjj@?~CfBGhzy_Un4lr4b$I;0r?{b1}=y{TNcE -~JuvJCV^3bqkN%HK*19L^ZBifethF}Oc%YA{QK8m}I^kR2O3*!Oe#CKJ@5hcCH*ToD-mUUk9FbdRB^l -&iBKC8!kEov?wO7=S-?Y<5KdnZCS|4gm&`0+#t^PsHkNihpE48n`0~fSxtv-=H%DNwWqu>%vyjm0o=w -q0jKKg1k)0Ub(+STdg{Jc(zSg>G0m>v(z4L!#Z4fQtcsiMAsJ>d=W;vQQwyz~cAJmb>wkhRtZn?Su&K -R@z{F=NKWjvqgMsJ`|J9I$T!UZ7!r9kr%Rt=@+^6ZS))kEk)BwlP_&FO3~w?Qw{?A2+a*oU5}=A3Of1sQi(WO`kqJV)5d|VX#H4_mQ8 -2Zr}nQ;CMJaO4bcgufo2nS=-xQs?`@@6R3}%RyZLt(8dEay^luiR%4F@!-k38?&+)vytYX53|20KK~udlP{Yj@z&<7!5^J3 -p5-7S!sdFb+vttx?zhaE7t!b# -~wR&Z0yvjQ)9q~S+izIzX!jI*a!a)T>w9ziyn -E!y_d?Q3C5Hju^clu#->e}oEtI{Hu_M?BQWMM-aA`eNfhk6%X39~KsN*4Nip?z^Hk9TgQtAAR(ZT;Bm -F-op&yR`Rc^JIT{FM!fV)0j@Q=HGF2`TPl@N8~>~K0Yn|{QSm%j-;fdVg38}|HjkPliq -vpJ-H8@oSZE8F4WowJjW6ISNAr8ANDaB4P)|khgr8u%>SA;ZTbe=y<7(()}tV~T)+$XZTL*!xqbWgS)z0`3Tgi{XU>dBOG^t=Yi`IHI1C; -;94 -~BK<)7&Uq(#@c{|gv_zC8=&2PVlrQef4Jc^Hxm%ah_s;YfO$P2s%-SEk|xw$KzaBew2=3!qW{eN+Is2 -q6p>eaMl$r8C&4Bv=7Csk8?%DLtIm`BB5=o08vIXG-j)g^%gbPP2P>_2VXxKZ6F__TA|=r7G4DEth3A -LN{!oellF!n~L+totWV+wiPOwWsW`ugCefN49&;6MWA&6nXX*{c+Fi>Yv@U!3k@(fB(u8Jh$ueNIW?n -IzQ?h>!V@m(xvN6CetnUQNJx;zWiS+R;(!EcPti50go{(BO^op&exPnPfrg{O- -g5084{d`8(6d|CKK>zWDq>0w -T5T76R_KNg6=m?i=8nU`N1JJ>PL~>oQ6iX3Y%;Xlo~|AF+PLS^;YnPh -Kl6V7yRk#hM(rL;o@Fs-$3<<6P%8*rFTOF|ZcL+6!wxtoyL;^x}0Vav0=Pz#D!G4Qm+Wi);TqT#lh{m -+xBlbg++rH5>Q`IUxqAdr-H07$oy8#d^cCc)A<|YmP3A2jutGTW`raH+&fQaAsE;ZJ5we -t|yVZBX7sL0c)pmk)7ony-yRZWWFp~v`FTIxJLwaHOLbBVxNm2+>tHw{&53rIX8%15B_mnkbVm_Iov; ->Vkz3{Bp!GKRWv^bnBv0X|Azh1#_+qO -;SYU+L*_-*7|kO%y!9v6H@EZ6Hlu2=F`_atE~#7WGLc!YHV#)e_ac{@HmFO=wPK_KI9fX0 -ei4k!kg0COL*hKKRNI7h5j=~YV3~0sIN6I;c7% -J-V_1*aMV0k4t6URIO6@wYW5keI6n+qq?2GN+0Pr@%RiCYhCoG1-9MPKYAar6_=&rpUNCI<5O1Ne&4% -M1&jN`Hd4=Vo!d43zp9#^c2oqhZ*DN4oKMJ_|ic;PVkhNKh!@kFt~f?K7B&*E+ -q%~Pq{H7_+k^-gNVG{-czG_SNSX?@a$q$Q?JOPimzGHp}Zp0vEQ{ -Iol16-|yN{KbVM5MXMx)CsF*XUxw?%~+X{ov|q+Cu2{>!Hm3&Ga30Ag&B7;gt?-*n%U9pVsQ-ywaR)-ek@(?=c@V=b6u#@0f+9qNSR}(c)rpvv^v(EPj?QmQYI -{%e$5#mN-kIWrAgzWwvF$CDpRhl5N>!$+7IQ9JJ(F&RFs-g_b)Oky$abTBc*BOQu_~`S@=7ko36p#PkX2_7Ul?_E-DAZ~p~QO9KQH000080N_fRRt=>UU7|+-0M-Hl02=@R0 -B~t=FJE?LZe(wAFJx(RbZlv2FLiWjY%Xwl#eM%@+&0qi@B9@mTpoLq#gL?Fd)#e%9Hk9UlfVn4?LEM4 -&8`6-UVCGEA@s}r?eBb(EXnc$?Q@@JKW*5xrO{|K8qJJGqqUW_V5gklRoUfL6GS_M;KkQG-KgS6 -vqBdtP2%X2qrYS=Q>?{BArcXY(xA7*zUOT~4mkW~Hg_wpIf8sK<4_l75_|^CsA%C%aWuR$D=^7R;;Ua -+YibMF}0bNh_)b<%3c1t}I%>i}QI^PSRSVQQzsWO;TML=rrkUZvXz++*ZkarGr;FC~PwI51EH1LkMU^xqJh@5o3|MWN7EKQBeb)Hl;{(67-h6Z66{7*Lj2F7w2T+}cnU| -RHmS`;4^Wy4(~D1((1WZ|>|P7+>@FVp4?J&VTUBAKP*F_c<^>3IkfDyz~Npc-Ip98YWv2Xzi04t5WMS -DRlz*_FMoci$cFeY3ZF2!N|JmbnmB;Xk93)7#T{{p{J`w0;^6R=(doJlflTH@>&Z(`Rj^o&C25+lRa3 -{ey1dzmC58^-K7F^vjFk%in%I`S&MhBdPXw`|!KnLvJmtHuyFA68|-8{+boP7G-l#S|c%j`7IheeYUpsm*K`&pZxo$zy0 -aSKmTj=>tDY-Jvlu?G69&Cm1%lG1C@?vNp%ea%74Z@Z3aBcS65f*?*SGJl7PzuT!ut&l{Sm2fLGIuBy -3XMkvs*aq#~+H`f*-?>>*)JAW`BQb#AjfR~3Wn^sWw8%lYasSk15MRcdLq!fzL41+t`AZ_;X(6-f>fy -&!lEz-t=`E~{h)O%H=opqLX6gc34 -K9C84yGg1nInPs&N{h)ALM&^VKZDq!GY*Q315}A%J~16-IPkL;q#5+J3P>zu7g@@kv=P+BXTT)w?1^V -dGr2P0>T(%0yk!XnpyVQNp!zJntjfi_js_>2XHF4;L!2nzPiApiOryb8TQo0bgGN@63^q7xD|k|e!IQv4L; -RG81i_E1be<=ZH2N?M!f@~a!ad)zQHJT+)KKE&gZ=#W3g&wsE%BpyM04omYEfJhpOhcy&j)07nM6(6f -dJGpDH)7L!G~@;_&J9K`?~XnM%;x^_JE*%#>sq+d{cfHcndv@WZbsP80v$Q!4#nV)4`zy^3BW-lW^-Y -PKtk!*JJ=>dfvl5UW!=r?=i&bPQ-rlAfJU{jH*mTt#=#p&Qi@nQ|YPdp##9`(Fb=nh@@G9K=1I!Ikr2 -G2Eg_8bvB2VYLLcxNh$~l;*}N%Emqv#u!XbY3SXS=Ug>LcwXA3}Ejl?WSF^d0{F%|C&l)Z>{Q*x1YKePiiN4qblfK;j^R`n!Di`iHJNY>yd_zOm@*NoOEJp -iy}LSP02&!nyQ*6s_&Cc{r)}m#BLG7nJVlN0-oL^~dNeue>&mW%X38!3vmt=rMRI%dD+yR`1CoV4yKr -zG4AsTYQCws6+@2lsaFaF`$eaG*r+YC>OP8c%ax;rJqhcEdAZ%IB7`lm&kcHXmTc7)vl=y=3vNodq{LGlt7Ylq`4__}67cpOZ63WYk?z(HZvop`yam;a -QS{g+6n8>wskZ9-!Z1AL<@aBY4#h5n)iaR@&3>VcOHAoXrx=$vEp7>z*z#rryyIM5Vfi5PiJrS34EY{ ->|yfT97p%3a0mmd%stq!w>R=_C)>ORb+`N4d~sYf%5e2SH~Kf;_Rf1pzy$<1Dd`ddg1@9t`{JBQ2?s# -1)Try58o&!Z@{*PnmcQj8r+hYjT0L^92dlwb$aPhN? -s6d*pPVv0%Z#)%Y@P#!7TY@MY{%kJLx4h~`JHzd0-`xR#dlRQb;tZqO{|IlAL6fEIVi7+v!hraAi3rb -EJ$=41Sz=5e~T9%q>^c0W3GjHOCXeDl+F#(8R^!9z!G=6}6&8Xt>=BmVo|)R27QYU_dO`aF#51=ErXmKMd90RmA+P1xF>w -p?Na7PA*{{UL`lETf@?qauwW?1SFJDEEkvcGO($L_+ah%r(ZmZT7QHjzh}xjxcq)z1~Z~ -Y$`#Ec*tw+u@o9hK_emzP8&t8O-MB5?eXc9lJ7%_N8;;hx(9=D?E7PaI4{QbAK+&Vf>(2hK`PA^UM7? -jR`zSSEeb$0)GDvX^OL8!;)VfFe;AWD|G9e})Dd)gwKD{rt#;9vOoHM&Aewk)b){qpDVpJrn^|$`LyCcnbC$t{m!jRhH-mUw|dhI{U -tX)gi!=DAKicr7Hy(1y!TkubsHuNIsq?4cNs56TezJ^aYq^z?wg!*wir+6h%O+HczMP8|!rn{3Pp0bJ -dOxfJ7FBKY9nbtYa(_LlqdI4P!GI9}{Q7+xttS0~6!V=xys7#J0?dLIaA0PV%(ix9v0`fIPfNWEpDN!|9BI>|OVmOf~6U6gmg|UEZV|*itmr9ce2~a0@FjIyk(O#vGG)Ud|& -6zaasC%-X2B;`XeiVt=1hed^eVQ0wQ>xH8!5zMh>}y*eX_F6}%+Xz;JX)Ra*s2oV`s0ZK!06UoQ|g|C -tto%T_EN1G360&s}GLTifOWL2|BV1C>L2*BKSlf5`J!9CJ4Rny?3Z0=*(h -|iC$&iWZ$8@r2F#ZVpxkjN^{0>$Qc% -p8Uye`|;o@+SKz;fpO`~&)%g|4sLyK%F6}}tIjrGv3YxJ3yVrkA6cBC)y3$vD^Cr?Pt-h_n^x>PypH5 -4a{$?EU}cP31#bgRrsS(~61cv^_YHnB-LlrCH2GLa!6#cR@x&+o?9>0Ja97^5p&d1vqfz8D5(+_b?A6 -q7lkKQToxM-ICg>pv65GrUus0YTj>=#Ox(h~lr^&4C3NpOtl)xDmB`V%u -j)Iq#Y6k2nfu87s0_p?|rsXaA37GH^0t|V^R#Q~bn~U`?!hvd7rspv%%?*mlgknYi`)L2&Ft`9tKn?y -pnOvi6%hStba);CbyOPx>(Cv|>2v&?u2t_plDk?p~qWn(B-{a?B0s;>m#Mr!rm^C<5^dyAtrUmKT;n_ -(zr%j7k$caz%S4-m}19V7ANQQ27H6(G?q_aA5v?5{vu=&W?=PLe!)K@V@M#>n$njQs(^q-NeW{BgM9{ -J33QF29Ps%i3jeOZFs$u+Va6?b)DLs-l427TsW%i$N$WYX(sa~Nz6T3dm*mET8``7p2;R+v`l8~8q?3 -aHbB4y`8hSikFxa#wwm;umvWc7-1kTes%~Vm@y`(GE(aSuEDm1Ct~cytlA;0nZ-sahumPZ}>2XOD~Mj -OARS1ysVCz#Gq?nXhzHWZC(G=ScdL>k_zZm%L$>Vvj8f|r1)P0P(awwy-D&#D!`cEq28do(pc&W#|#u*+vci_OcC6~T+bDQr~%OMusy0xK(DOilC1RGW7r?n`=s6yZZm5Sty -VkQ48Od{lS_{pquBW5Nqt6uYtwgRRCTt%Xqq)B@7lX}CHcWe*W%gr6un!+kw(pQa4#N{E5u?dXiRRWtf~XA!gn76@KV*W -k@91tivzd^kcE#Bj`8GN3EDC6Wm!z?(eqadL6~qODTPRi>Z{6o@RhQ4r>ww!P%nCc06y5ONe;4%kJ?R -9v7LilyNk;6f5E&G%&~W4kS19(9!Ds~K+gi3)0j~BFve$SwZNZtK9gq$7FwK&Xg>1kHRRgycvemqx&A -dRC-Bvh1q4|PacUO74z+QPEvaW@$QU}nc#I-kp$pv^29vxt?H!qM@X9~;MF?ABn-`l=+g~J9I}A*FUn~-;#C`OR{2 -y{B^wya2%MwbD4ac)v}&)(HA(T!7O?7OS^oF!I3j}RJvU@Njd-jpyVbUx-1BQh6sQ~<$F78UwEcJ1%;vjfOUXVa-c_9LbCTYdw%Yd%TgL+bBpc<)26Y+c0i#edg+hFet5cPF)hfX=fjrPQOB@|- -eJ^=ei@^X^oJazF^fy)dO1ddLFTPUA^-8n&TRDKumK3qCe_!txlfZ^ -c@Q@D&VB66aL-Nr%5`-Uk@evYn6f*R)Ul^wW>TwSA&j~qA~=Ke?PWY)VBVyLTU_ZC*aRY2TEXMd&bWV -A|L5#mA!^ul&f=Qyv+e9@$Rqpp-NQW`>c6z{iOOB4luOg-|7 -KadFIo4kD;gM(kGC4HYT+ofx<}h7Pk4M48bHOuge2gk{Dt<@}xu1FVhGROA!^h}%8SL)oNiDzsu?>T? -O0_#eS+VDA}#nW4~uKCpKf7EX$qBe)t=$gPHS(69%TDx*RsJ(yhJU}6395@r$AwX0&#CUymv3DAD9wY -zeG&T0*d`m5THSpWtH6o>>eAK98^pot}7BoVvNq=DGGvXS*j2aGC{3k3EZ2;m8y+)uYy>IRBs)Y7127 -Y{jVPQ0+O>{mTmg|4i|=75?!gpH}G%H)g~Z^x=&0p(^&h*oKvDtuD8-2@5MQS&_?)ig*>TFa&FPO!6s -Vuwu$MHW1?PvQ|#u+lUNKKvNZP+ttb)UO1le$`HtNjbk0PYF#HFh6PY3zSX%LRQ@f8@6W-W+#D_?1B& -1U_4DjyYSWBI?60$K3H@ou&SbQ;~yhKjEzxeSCoM7DCQ$U!XOzZS%}d{jzUBM+k8THF)Sw?^gFaR<*F -0jUtjtHxzJgS6!3&jUFea^>O3p1HM%{aGt>Z@f*FSg&9D-hgi^0liw*`m+@aba0-M~E)ijEa!U0v8D! -p9fNks$MhYZHp)}AoH&dQGPp9P^Ep9sPRro0GiXU9?uNaR97zjyqM^}t*{bUB-$#jT}SntvKhofeZ4G -pD$wg?NZ;x)Nu4@%iJdD?S^GgB@%i!NcT>;GXrnMgXk#6k%GHNK+-eJ$Hu3?xZJCC88KCzhjdF{Nl{)Jvz9A6$xcY24O|sZtv0x<-qjTB0*THFch$XLXj;*F#n*9FI -XA^D#OQfAg}=K8C0QMdsswB{vBhzwmVIly=CD@zjmvQPErWhysATr4&Q55rp8t7|*8zupJ!`z_zX3*& -eH~&r+Z-24gR{ly@2GXCd`5WzQfs@fC-o}O>``H$SaU?=BmLrnRSSIjE0JLk{1=VI@4|*;V -Tm{m>8U@+g*<)mI?|=6SZxJyj0Mv?nVnBz(FK@W0h-yuJDcUJSFeV_X8AdMhzOd$jG62;QY6&J)$;5q -D7LXmrefJ`?h4*N$<1npwPO~U0`dknY#?`wxiV^MzqZ#XRLNPt3dJV(9%)<7et^;J8k_Rg?=|x@vZg` -lv-HmIKzgXWPNvi;L5rVdKc{S44_O;kKiID?aTQldjeb;#k)@cYjzK<^;qIh26KO>QDJ}M_`F{sY*BM -hsYZZalVV!%|2iCALZ4;Jaqt^uH6&K{}p#J+O_cTi`rMLdQ;9jxN6EkVXT`g%$M^UO6MLUFB#&~>v3& -xDIvnW0D45T;=dEdBACI}1R!QEufDEJn{fh*;^&7OoNaFQV*dU;#Ou?KFv^LlsZyWOwHueXn0TP+y%6 -b~EYH`L@AlIb@Lo<6nl84#2;(Zngx<-Ud6VKWu)M*)DY@ME=N+UupcUvybkk`@CV>xC?+9;TIPG)>PJ -mr;0#NRh3nz0SD(6eLYMn|f27+`m@Zds@A~mP#%uqatHFf~@~kL09JWs&+jmdOBul4^gQ#vQ3O@gRKEG0y3 -Fk5>pW=@cW1H{&!uXbtCOKq}9+TEE~qfOO<93{*XvME%EgZ5@T*fP$+uhk;klYoz>s;Oj%PZ<&aLRWQr7RFk_F9RsqP?l`C{0e#kNp(ob&hezbf+_x8ht1+&gKs>42xbqb{C)^}yk>i -yqO@&P2y@SVOs7tMmD2DyxLYYzR~sxAk%7FzO7}P&L4A&kjw=ON|vgCUnkmLqHw;=25YQ%2aTv7A2rY0ftp;iiAD -q+NSQ=4KxT4LT?^C9Kab_Hy#Z2%c;^ZWIQjDEN9Lu)@e|ea<;^w)@2TSB9Q|e$TBT~1E*s{hM|+OEkV --x4r~W{WKbF&NW8YZIx%WV${TCx;tJz2=QSz)NDLKv?NljGP+coe)pICC@u -jr*jZ;b@D{gT?jkQDsOQt)q1q>DzJ!X{j~*b;!)&Om2qHgCn9RO!5u{tx9EBls*e1 -=r~adLxlJVOsd^?$A|wIA9k`&hhg;9!C$fOUq+|5zn-ke&&~ -$V`cfR6)=x+9KUSH*LWvq9R(m#xPPR_tGyL{+N!{r5L~2uSzC1a-T|avkjj-NV(GcFjH~9&G@b}r^s~ -&iOI<9;1_q&IG-#^+Nm`9?_kXrUqPRON -vw79Sur?V)l#Rhpd>Ew_uh+u{ZlW+i$iH4!+(#-bRD~o=S+%hnVR^B_7%z;)8{^}I0w*JGz$M6 -4&c>2I1(rmPkL~yA0R6KTGWj*+~z1b6-j3tvKmEiU^3zY9u+6@ -+2wG0Hc&RGpwqw!orekOlJG4*UdX~)AOh@A0Bvl=Sf1>DDu!3>#H1w@dnEnR2C!k$TPI3=coecSXt>_ -_KVOY1s06|Ee-H<{T(u6J`2-$l8Dus&vg|fFvffGh5D@&3x5K=NmiY1a!0IS}NU$uS6aLNu#((;WBg7Gyx4u~&9>j!o$i+F`o{BEem#7 -Ts(6qH}Oc+MqeeKp?Vk^B6H -;{`^KsMBiZa>Oq-%NH*gxPG)G--7JQ$Z7o=@3TWsNUc+ucN39VNwHBBWFT?)m^Lh*7`bdzH@MPpwDji -(u$r{JEcj{nOT-nNbxx}~9XvSP|L@(M4# -4TPY3JWO+Ejo1s2nNV(dNG8>}4s@26e2M&(K0OPBCod_Dl2uq#!EFKp*cHPnuX99YF9EwIogXHqpH6yWp}W+o<;1iJ=}1T7gNYL6tZ}S -BgzQD5_=gJw%3#F>p{{PqtZ7UW6686aioRR3DL!Pe1<-aV5?dh-xu-TS{_1cv(i%Yli -EGjl;9r&N=$$WHiV91Vfenqk$KY#38gK=bT64OWkD;RmezJ7txwt`OcTDPz|qsU4Chr?-K=FL3!RhjE -I;wFr2BdGgQGdVm!Ne+mcY5=zG$fn8KK$!PA(&+Pz%DYE7+n58f!r>ri4x`iigG_yJLRBnsldHD@KOX -JHJUL3GVU9Y2ug`NLWY70*t&VuEe!o56SmyG1t{Dx{;T?%y?KB-Sbin(LZe!rqpos>^expY+0oguyg*x{M!%f-}!c!|d%t!b+> -xdA(jG9o!kVSBhsmzJmPZxDfES?N|kyqTAfC=H>ydSM+;ETCwWr27eXkIowy6#md-NM7Y( -8)+6CqH09XHu*jGOBZBpJAhgU<}CuFFr0nLRBdngm%`=HB&UpO$I6n*~`!V{8=1)lYQhNAv3o$f*01r%ms6DQ8ysgR -1?7!-)kG2+>Vx$ph^AG@2)6Q45vu0=Nw$xzMWvFr3hv$z_TVWHWtGtc)#@K?L+DVF6lK1i-7wGau$c^IT#8^-2z@}G~PIJy_{HsyM2W8?Pr7Kk -uipTbl}1z=--H_tXi2dlvpHmxku%V^RV`2_^vlX?UGlR`1Efl9!GN!=FnIj=9RTErFQe&?tMSL)xuo} -N9ExX+3srd)?I?_VP^(4KGNjQ?|465LU%B4 -A-0I9++L+=F3($4iuIXp%n9YL^+)&ZLAeYhKVA`51j@WN&KisIhagy~vo~!J6AlLxT1qI>xojtyCvMD -k|B!#10X*EtjUVScF#EchFiS&H@MAia?L5E$RiD$LH~Of~f6=*@0q*o}dZoO_5ze})@<+_8>;?!Jy19 -ob;(|t@dqBoa%t;TZsu9n^J}Y$Q8fS0Zw8eJ#C%JWNx`U3{S7l80Id)~Lh)dT8&`6@;_>|=&gT{4|gL -S?%G!+Zn*B+2kh1%OYxU@N2$X<{NDAdGtlL;1X44^Iv_OY{F>^*+jjU9(-v`1tgGQRMIj^f7%3U%7Uk -9D4zxw{vV9fj{g>(4OgA*s4)#snfGY?Nvv!?;{+)QfXWWOJ^hZ}+Zp -OW?V2bYoq=lA|rU9;(Vb3DO(d4sMGM#jEc*p0B@ePwDb?U5C?l7YwW`MCq|%8kZMFVW(^hlq(pG$lml -6wfG3lYm9Eey$amQhS{*p{XmVOgb~_;xzcHx`@I$XaK*`qaGuj6f|~qG8h~rf39ULkuRo}n(Khsu6D -GP|o?bLoUCpy11bW!Ehf@zZhx`8(vnpxvpBmy$vV`zmX<&gSK!w^Vff-mW%fKqx>Loeqodz_M_PzAx% -iu7!gwqviW;dmgJp}zDz}+XqnK#>P7)w`L%2L@OE}5^wJ<-5Y5m++V4E7Wc#NiP+IU48h^#NA}He-a_ -ODBwL@i_aWJZCjGGtLm0I4)yKO%lPkE5-m%E{gFO?BT$N3snC}1;?#2mD`NKg*}&iSvWb(FhRJX>-3H -`>waG=J?+>-DyE&I#~2e%oxE~+*5y|Gcoh|$R8LoqdYIsmYD3p{Z>{|40^PGRs5GMNC-Gdupz!OQpH= -QJmb*?mLEE796pDBb%joVcD7}NJp}NdS -7<4j*bKC^3*xFtLFS<;(bwonNllXG(E=)W2WkwQm}*w<^}<6By@?mx1A<2MwhX>PLD$@SSo+T`y3@iqw#w&_vV5g$~0CT7xAbwnN -=GM|j-t#6hXsb3>3Gvp~S;0y?r>A^QUWYm(@+ggN3kBataR69~x&24iiu!cPvYNDIO!?H%qGK=W%(mR -fGyVvp2RjZ!x_C-RirFD(=E8S*GcVyCSY($FXebE!Ba(7;s)LIuaLH)Gos*rWd_^I)}xGu`uLg~g_X{oBwl+)6FQm39|l -~_zW25hK&4jT(NVjO8O;+lM5&$YB#D)|nQuaPmvh0yDoTwb~7ssf;f&Tk`>29G=5KYq6%S)_ZUfTVdXf*yz#u5<(}W=${6d_RUs9LJ{d7|zjU> -?EQy_$l~Xosr(BQqno7n{Kj8a-;>RQFXys&DMV`BiiDxL{h^4phUwsyu3vhqNCRl5c`oii}l0HDw$u|D@FUVC4`_JIVv8}0cX6NAemFT2W*-7o!r;cR -9~t!L+=!rei)EUo3~KZp4|B41nZ!G#-fCK)u`(C!%Dj^gJ+}Qxg&Ofw2C1OUA67!4sbz++oyWTu&16s -)t)YkM~RWzjPN53CJW3-SNCdHF>;Ei!d{K5Eh|nGMM}S%02@VDxJr0K;x5Hx)gbq7GO(vp|A|nWb#$w -KDbpFwSyn{$!=e7EVR_EnllR*u2aarC-`EYKOSehWX{J$DBZ>=GyBS6{_AW3r)dM}%13lG)=xAr>_xG -J=hS_n4JNGVvpRg!Lq4S-cY&*ar>U8NcEhx4Y9ZrCiyS}>kjLdo2C8S5LIZ{S_eD|iApLQTdG9OU^@D -t6`YU^iR%4!yWKq$7xcpdpR_$73`QImT(d$Cp3T-8cC4{O1?yJN*TSeLgHKrD~q@Uua8(qAmo{G?KsLHhvthF~yzRq1+}X8UL -)L)|!{-X?yR+(%^nROzpb~l9;E>XxAH$WS+Zm_r^Jci^kobId*OaZmGhwT{}Mkfl$y*+I-^XJ~NB(#e -BJ-MwnN>D!XfLTw{!_cu>~}P(f@T3Src^{X&MwIZwlb(+$r?gUK1w_S8=#Jfpawd$%6K90ehkYEAU~K -A6W4>u&{K`dcwusMFu$-w=ylwMOA@#A7bD%rBPi -+H%TBhSlyt%Uu7H&GEtlk3@hzbnNz?4DWnd%}9ZzBfI27?5?ZoYC9Fc-=ne`62?AK(6v?DzQAbE0ZWP -m?RKb}A@|`u0;`oC{Reu~j@2hJR;1ziuDbiHdD9(!FuQVUN7p|8{Q0Yw?Gb-8)<|gKon8q@WxON^wmy**4Ghfr~ga~&Nsd7AJgeYmMQ!$ -{h!aiCznT2cTOjIdl`L4c>P`a8!dvg{OHQB8X|Ak{rG(6hsj-sj -mgo&_K`B9_P9?A2u2OpSpN;(L6uU{6+GBX0q$ii4uG=KP?sUPdsODf#`tOTHp1WaR+?G8Z)u&3aIF>l -Uo^5s0$;lP;&YA1H58%%#Ydm7Y3YRx}*Vt18CH@i~*TH#Gp~Cq7-QF?lh`0iNhyT3Af4&We;W7Mw5Vr -BN2U6GGdtAt(0+QzayYJrZ|L`vCjWnH62H(*pCX4@w-=1%7c6UAaozh59sgfsOjs!yM`$7dBo+)DiO! -1(nP=c;624ue>O)j;L8S8gxp3G}{w`sqaB4+9UsqXFqvp=Yf9l+(ra -aC3s_uPR81A{Un16hIpMAi~vb>5qk#~}|uTe4_6^ungsEeOV@NinG?%39wNGO4UMC -b>ngZI$!DA1vjh00CcP|d||>V=bpTu=HRGv!5&IjZ6!tqZj*i5JB7N|HB`!Gi&;;GJ#Is$o`V&!3=UA -sDm`t$FT5cux$GqJ(^ngKu6Y!39m3=do;Z51i$`DG;H$6fx-L82Kq+V--VB}w?O?C#*)s?>0!>}>c~6 -5+UQUB2Pf*#tS?1+Hs<7@fp5i507>B}4s(#u;iqvDAnVXzk+c$mNIXcp)_R;36ueRvFmON`j+qNn5`0 -tusd3}A0{#!=dHh~CAhPtUPNIHa1UT-~lyY=J<765v4Nf%b>E)G09C(HapyT{uPXDgkwGW;6e*(Q)q^ -(*4VR_i#qXfU6i{{{b{3nozSF~wb%25ozQW?;8>FCQzU*6rtPNy2m*g?q5-sZFa}8>tL1&8zlWqoHZ#yj@5tPU}7rO7m*O(;kS8t-aWK=xVQ6q{Oz0lzq? -1&Pk)I{{`uS4)4?gaC&zSK!uW7^=l$UkIud8_3*hbE(cA4~X!2aj2e)nf@WpKaL9U-5B!VZ^7IX{vq()BxJz9PGbTyb^ZZvg7E6G80SOJ>8Tif`47jD+U(xl_> -!*Q0?bX1<=>r+&&t7|Z{!(ZqUrtr7$@#v}JcJ6S=D0ZI9so-pKHP#OSTg{TjjXCtrOq7GRpIs9(Vm$9 -Ci@tIo3|VCM4su0!JQ1C9cA7kib=#Fbyyw4$qdm7K!)|#K7y-f6$ -9?!=X1FL;R&af-C02;esFEDV?E=<6qSwdA2S=~@2tE2<{+`sS`3x<6kUrz9vL<)uk|f+aFpoLGDhnT! -C%B*yxE&pIBNtrWq!p%!tb<8gt=^!<;Ni5Kp}P=QJ_ODF3kOhy!8&<%9y`wsqD+$UB;^eAq{yqdmP|+ -Ns}yz=2S7#147{A-+qW&wW2yk3d3{H(XP_PZ7m -e+E?p`?9+eu$XbfQEcLxk}W5QC&}Hex35YjCLoMT*JjsgqQjor`dC-Zs@}v?d%>NgHrVW-tQgme!U!N -sjN~-*3l$E97k5$UBP6s3X%Tx_R;w0-QE%=X*+uo!ZHsHYe7O+e`$8L*~8>5h52oj%*V|55&r2rr{dD -Ewdl=B?6KT@fnNBrGL{4N)l0RcVdWS%K -Zl%ux1qe=m|{DbGz)@89qfc6Ck%lTTT{Mh&Q?RsNVfer*sg)EG1EqkYT0>8H_TIMjL~*QJ}6cT+^UgK -Xe>M=bx!A$*#C~UDFICk=~eejsk@3Scu?;t+GU?29CmKdm|T@5X0{-xsCpPD1!YL$rQD$%8m`u}^pxKHD~QB28B@Wk&|BV~6`h&l;NI -~r;s+-U<=dg|%bcmKOrZGjN@CM(F7%V*NbM|SV73v#g7f|18xojKwjqORp`nJdV7{Zx?sUp`7r>&IVw -R-3?8~~qwzn&y&4khdmKQ=(?+qTBIFvpir#+$sVd;my6{GhGLPJ)s@xQ?_odx70y_cwWH^B^(I9w9*! -GI)S>`r*ome?_f(vJ!5N7k4$@NH78?-lFESLwO{e49?g(QtJ(}ciMnBXu|i&; -aQZZv2tvim?Qwb0szo6)Yb;v!|1&p~EpHEpb9WrULCCkx1&OH8UKFmRJabq`O6?NYVX^0Ih9e|-C9{q -SH%QvI;iQtKnM$5jG`6mU=Uah6x}30i>qS^vdc0teHjQ~IkEAB;BLEk-FOdn@owzxK2iJ8hVtjSWo{P -NtQ{g=yZlt%Fsc!v7y%ZT?xwS3DYqr6|}Zvgf&ZEX;t7lL-sbp+o20$)*$M%>^jPWZWjkORqeIj21=# -+n1*GZ5rj?U0Dl{=V!KKLXJkmGVL2%>-lok@%}M>z&P7uZMFV@@qW~p8{@7`!h1*F7=6i2(3xm`_N6k -#q|2=d=A*&?28TVE%O1>Wmj8!uWP1F)aGj4|nOerb`aD0bM_y1G>{R1? -_^8#i9Py=Kg#ce_>Bd1!7U -ZJ&uBs2_tHb9HjC!b_vkq3Bp|`e2efABCc|l(XEV$%6mF3Pgd1i<)fY+x)!@y+l}c#YrgNlm#&ZxiZ9 -rZ~Y5XzlSAknKz`+A;T?0>TAM6DYMi;Ywj7C8V2#1G905dNsXs1Ou2-Xxs@s#<^3}sC5oM<<}iZ^%+N -`Ew_%u{vok1MEa%(Xi+!fQ2=4><>~kh^~!@GJpnk1}8~K7GqPzt-~aM3wJkF!N1{FGp_FIFA92TCML! -BM&`;?XK0T`Tm^4T*M=}bX^B_Pe`IJ-U%sQ_HZ^SXw$+ -iD4rYrGBz_HFBz9kFuz=$qPBwD`%^l%co~qLaCP3VzAsFj0iI-Z=o)h{_Qj@qZ+pd_(rvH!#h3#>RFs -|U-Z_Bss!tX2j6W6+Z{0DcP-->i{Ntfx&ZWy+We=CPPK?q+2CMR);#PwPK)u8D=%FHjGD@@>^d#&ioY -dh(EbVBw6kA;RXc%jHASGBqpj5FJ+2umA-MIluGUi4Z^81?))OkTl-8JU38x5NSbTxxpK6VQZywy*_t -eEg}2w&8T{vh@VHNk0j&3kc(2n)<=Z6d+@GJ{r!;_Ci5RQ;v-h|PBuUuRvS+vjCB|`Zq-=%X -if%~D1RZDPbVVqo_@#Z3v8Gb$_0ZOMYGDr{ceoweP=slZo(ZF+|fb6V96Nl6j)uy_c-AJ5-k(RXsJoZ -?IJ8GjR;1IKnZg2xr&q#S8eghNK$ysP8W}%}-u0A3a`8fSaOBrfUj$2*U29YU$7)s3OdZ@>N+r_~cv} -4H+v01`uzRax+*Ma&hiDRGDm$^owz_L-gD`ky(a~t>XspmrCXe|v2A{JbyZz#spYv&qzcuy -Ha3v*O*tv^*xVuOq&S(UAC*nAFSoaoMv_cY(P>H5p!cL<4z*1-Qp+v6GcFt@pnLtrMK7V06KQc -SSNAPRolUR!INYKrB-^r7OF7D6lFXZhN>Gticqn}??w#Ib+H`ZnIT$aTopGoSm~~c0q?we3?#Va%wLY -9S(qPP_d0Gn}21+H9=#Jhjy9r*sfOfXJ-b(j5lMMhUt^tqFh+P*2CWDzJg~~}enN7V`3MQjy`7%Br -xj}`YNnp~E`Eu`I_a1*WBW>BjUj(AN!2`87aO* -ZUi=RDfIGv7FBbe49r*M3Hp#38pR;_nYB^6-gv0%OY!!<_JhFspQHbFR2FJCBe!OhkWmf`pT6AsVxdh -M`6sVK^%y;~mcLagNc&A>Xcw&d5T(cwh=>>Tb9PAzhuQp#Q0kamE*A#IrN=r9QZ#L%XyvBdlH=)MHnr -?i$PN@f03$DGl4xZ;xI5U>b`S?2%C>fUvmki@8A#k|kCp-57-%L{szRCZuD~igUm(=J(yT~wdBo*#XNOyo3V86< -gd=>nrU+=&iKYX6vYMXLVRpTEQ_Zh;zuA8O1_Lt>_K)_C_YeOO7?)0gvJ47BjAW+a^}CqYq!#uoeG!zc2K0K&)ZHC|bc+gJ7!+Bpb*= -=aEby4IVAQs)4sLdbp%agcoS_UK+I*_w!{nAd0SENkS$D-o(*23Mmz^>lIMrlpRjDW4bv)F(%0Wj`(C -4bn(*ZR%f= -c5;6M{B7qI%z(-O0lTqTqOZ?zrARc+p{BLA;0fmf@5lMAtDMM~2V9zL-{v1k!!5_FHzRsR)5fgD2`U` -$(YA3CMLJ}{)zMhckBeoAU*pnG4>da$v8Jg7Teh -b`eJc&+E@_?akN$Z8#3h1qSmCKBP|Y#MMmywSxe=eC6T{rQ#287*0sS1{HJ=@6;`>Q@#{%f%h<}8tdY6op21iPBWK@2isq+(eRXAUSrch{|TL7%8E(8 -m<>wsMBm!CD`zcG6VlhJ@il9D8s*r?diL -sz&+I2jKEFzW=qo)T>k=Bt>h%}#XY2K%_;kT-`~ZAe-qw6Qh6*La)JN@1z0HdCWH$Zm(;)in)AOv+b) -YBPZ@XgN?q>N;yFZ8V5-o4L*iPW7TG -7Fv*^q?!$W2c&BD@3IxSr`qfDf07*D+3=UfTs7!pM1Sq&3ssrI=jjIk@k2;>%uWSUAl|?nEElj2=E)66Z< -^Zgi%b%|K~H$G;Q03{%~Rg2;v -zx9ePFbGM+h2~IiQyy79m_%}SgGQCS{?r^@zfFlBcyk51wZ3j@dN05D%o*7Z12KODM+e)7%mrV$To9~ -2sn?&>tC-?Rjinkh?u^{$Y;_03aar3^M}}U4Hp5q-`?epv#G`-_eucGE~PF%NOthIPK3bUc7wy` -HRh$pMCM_)6YMD^~ENPBhn23ms#uvQF~wyuO{%Gk&$>`| -T|ut!#6*pm9krriG0aP5m?Sf~pH#y!JR7V0IAXToBQ290PBq_&abmUf8MidKyM$%KXsl%{d1V03$5m= -24GS>o*y)t_oZvBKX>QqQMuo9fO!4rF`z*s}<}PN6b7%1-&~?59d7!k7ywGJ_)|ysB!!&?FWGlkyts# -k9F=hgZO+6l8L=Sc+dRixF{B;cLMIAlDJK2Y@NS`*X-#Yylnu5wxXJvf6efaI}@%VV3mS*jB2tnHmgD -p}jKsg!8LsXQuO#Me*fZEZ%Aa!QA^4m&low$aHv+P?sne@S9)KC%9SH{eMG>gW(am`DnXdS!*^8L}y+ -pova!SV68$78&LBh>lJdcjBnFNZJ>Mo;Bnv#X!FEei;A&*;@br -9smFUaA|NaUv_0~WN&gWWNCABY-wUIc4cyNX>V>WaCzN4Yj@kWlHc_!5W6`fV~UYvr)jit(lqP#W>4$ --#BTTQ%Bn6!LNXhQR7pyj27|%8FyKDxKIyU`4Wnc}WUFG<{R~Sw`<; -FEHeGJAXns{N`>n$Uz5bvJzn-&;E6&a~#Z{WH^K@2R`x$3nrmH0MizrPz=y}dL`}*D6lhgAPued3gpM ->n~x2G5H-+l4j#kcRzu@KsI_V)HV?-t9LFL+W=Zr5QUrIqM!B_1sR*i`BA7(>U)2>0${m5e$x>^M#)jQJ}%}2!T$tAUJV4pF^Q~&3LCX%hCn&1Ry5M -^CE**lVY>vxoog1qF7Zg{VeB`jQ_NXGMZMWGnx2tJeja#HnL9BY~jbz&piBIpkcX8EBwYUV49ibc3Aa -eea+{7u+ch*g7(Jea-LdqRn*?$yF^m5#OWl<(hNJ!c`*@mx5k|g5{PFo4M`~vs=uZ(dooG<1)ofuPNx -&Zex9=}Q0?#ic*W__84?<>1Q%CP&fuS)uvOJfEtH3gge{i%JwX;JPG9ttX2@a{uhq$*gHz`n^>Q=*RLRKO>&e!+)HwHxF>X#uRD4HnH9@-)>t?9s7! -tGBAqx`1klOyDO;S}+;{WWnQ%Hr(UPVvm_InvT|l|5PqgeH5_<4a7yWiafB_v&3AmV*yLP>%%2{>u?e -f&OrbZxXIx(7;*8(qx^C!#`Eo?X&BoQWx`FgV;~Wm6ESCUCpGR1*1-6_Q0Mo9Dm2MeQ7nf~pN46WdrQ -(gUYgCHW_-po4x8>NC?0>2hCJRE(f~kR`T5mkqM;@V1a~*E!b)3P6k}2uUuIi-?mfoIJ&J;m!VIP -Jm7#8XnyH6)J#9E!HW);ozlpM&;Wf+X3L5Tbmt%zz9e4jOQ_%a5}b`Jto-&poRWw%VF;ftar -)k2~lC4p~qd4agE+vSi0Q8@adKi`(iWpKwDEbA5BADd%9lw1zD97t_#ZYnKHsTMpS8 -c1=)eG3!-pn^#7gm&dJ*Kw<=lR|Di-%}waX+nXD$?$d0aO*go>{wgk9rkOFvuh^?&uLAe+VK_c&Z~mw -p{8zPvg;L0JfmoWv8&;&H&E>}h&k{gut?>{UaJk}w$Y&|ANk+z+sp@p|s7>t&_HSuwY@MxY9yA$k9g| -66I>@DMs;sg}%8ijPc@WJuKmiGbDaER~-piQC4AY@L84Y2SRZSKuIG57!{&91Ma;A#t;YcT$$KLQ45#mPY8lzrf -Q$)ZA3NEOotW)00j!OWr?d#=Pj)b+WS|^pRT+u0f*;u-X+g^owENB5b+nP!;s0bu^zM>0xPA -_-dQt|59C6^L^oMuFTzBH8d?(!cvxOJ991(MX*FW!9|Ob&;dWvQaFNY^=<~?NZG`QamQvWmgp0V(~i7UAx^ -F1#H?8uhz3k_!fdlyTROPvXDg978{!1_(3s|V>NB@9Lz9f;%XS8Gq1Z0Xm<5wq^T?&^~Uf|S3YP0*8O -QUM6F|gT%Uz#`N#V9rT<07!z1ND{#>~I`M=TaC#y!Gj4w6%|9Js{f4^%A({tFt@AOq4XMet@+B -rKpJ38u3zCU??{_fk;$@>$uNjb$)BUsPO`eFUrz6=i@IrPWA^x(Ji#IbGvc6uA!W`Tp{j`R9X8!NM*x -4le370NF79`f~rARO2uzx(r>?*CqfV?;-Lb6x|GPskr8IxP8ef|G;Qu$5G9+WreDX;8tFDq1v=LT*ua -*S7^u$@;HZQA4@gB*=M|u9k?*!V`}Yn`E`9>;{mb_SzxEwno7uT7t0g@?{(qU`<<6dV_HZPAAGa1b{J -1A>Z(A)a{RPbM-3p_{8h~wG)f|o$#snS|B+7i3B)`V9w}TdS_@ -@GnFB){3=r-Vj3azk375pwCP^#fUD+0D7EUi_|RYab{Vq`n&tFc_&Z3IISJkb>pl$;3QDxO7wQ -Z_l-_OBQo69wr!^OxWUxy)auQCNc`O?NOZL3l4%2<~@K#2c4QR|Sj^fNX|cMO#C7Q*zk60Vl(r;6;E- -R&$mjifa^Jl!wtA=F?)E(6oV4eYtY*TCR-OG`B_A5ZQV@Q&T&E -gVK_Gn5d)F~gp{gXk2709*m|u|B0~UBe@kxC`oRDlQ>?! ->`gbtmfAD2HN^#;0sh2Mw($w_Mp=1?dfg3p8n?djk-gBV7^al^+E03J1XBVzWvW{hrq(H_T-DED``M~ -;p^CHthCP-Q4%dy3szjGNY*J#)4;B3sWwH-*F0tmjDB4CYZNJ}CI`6%D`29pXj$4<@(|}<* -Oh7RLZW~tS9^t2Ck&sM9}LuSX5#~8?M~h`;+%4Ur#RHe05GoAtz!*?HiYE<%yT1OH>J+GL1x)B&?zH{Qaav%6^)}(TzAt% -zw+%dfP<###t?-!qlC;-AbE>OQ%70y@7A-dnh5-p4z}p@#*!qh++9mQv(j3`g;hK8QZ;j<=A{nS1ouj ->nj2NedKLf4Y8+arIzO96AXu`ERXART@HbilZ2uocd=7Br__BD{9*0~hGRh$(eBo -+`%@S?YaI3h-)#?~lt7lH7UrGiwWKL9Sf3ddhby91C^eFtQW(P3xUHE)Q=7Us~nN$rRSaZ*dGGUjHm= -PqzManzJv9cwM?p}p3SWKE6et7BGHHs%aPEQmGl$23ap5lYuc=$wcS%#3d120f7pOzB$=A4Dq -^m8k_^zW+A1wJRdFMeZ^60@UvSY_Td{r8!H-E9nJ-$=q8t4DIu)d$H-rurH`*#iXTZFqjsWW -RSmR-lN2HPwU5pC7@_iBut+5#Nbv#;O0J^AM3^aA}sn|j;Y0g5&94!Yw{EC*ad{MGh@p@~Hb)@2z5Sg -w+w$Q!^i>xYpywl6~mL1k9YyX@D2?lbQcV^KZ$<6{au*osZ808V$j6R8R-pij6PsY~1To;a7zCjzZDq -$Dg12q$0#tB76=(At(#>-A;+gieJd#DRp^K&tG~1}?MtdMl_0f`f$||1xlYC8BxlRKsXRTtpb3&Q?i| -?j?G+P0TK*wja;@TYq`wJC{>}>BsO=!o|Q=o-cWfiA+$@4g@2lRDBCi^dO*h>X=zj@0laCV2=(_=x1R -hH)U-+d&&!6uCj&C_gZG$CgRGp(Zfcvn8wxjlFy|wXwY`i;aUCQPk2C1U39;so>P9I>bN})M=Se -Fs{ssz_hJ`W7c1~Di~f}l6^%~I4{Ih_wUNs#29OBrDcS*1%K^)yG)T&sH=*6H4_!mLc+4f!K!Fc#b!r -6J-*s(Il{24u9QVhrNpb_ZD|aF{c_kiRDue1!qzj)CA}kn -h_vK6>N3E63QIBr>rJBHG1ml8ekVB|YssEA6nL&f_f{(>~}^W2|{;Fbhj);4!ji_G6bLvv$^V#i2Hs3 -TnMNt$^J7s3`ol65TvLBV)&ZGwixrWlCa1`n1C`ya^mIwnz$vJb?O+CaO~&uY$uDMFjlO&6l)rQodEY -5DCbOaR0yuEacA^UC#>@jXGkcQdw0S1NL8HW6n;5k@AfLqa?9xYrU@M_@9H$>Qh(3MK~!PYC{kE}mi* -G{)BftvSbVtbUMaW7axiEsp?dr;;S$#F^g=b$NAAN%svY2J6e?Jye4^r9qaY5w{skf{0nVYzoG`2=3# -J)oISNb$NSLj-In%mC5reU=s8xp#E%g_ReEp5ip;HtHlz!5TN1;$zO(dS47UU&0BaG^m;E`b~O0xIl{ -*@2C<@DHaP4LnEmX~dvW+!9+kBOrBR)s#0R4xnJdqTbR5piUll3z1Z^RiNUcqm9UeVDV)kc!uXj{}zs -3bxdO^rV+u<``xoDNGp$Qqxj82Q4Cyj;27IvG6}|5RLMp1?3!P -(Y%s-wrvTM91j7>LWTk|mg$g?-i`W(tuB9TtJX`LD+Usz%tIifZ##%C2sG7eM=R+BOK?!)HA=eR9MF; -19V6nAf-q<)$)bE_8u0t!uC>yoEG|}-d(zCdE9#dkhZ-(L4oA+%t0!UyVFm|kDa^XKhRqa)u&;X+2Y~ -%cT4)bie6j~H@u7zglK;$B08X@m2i2-V00tnjTOmSnb8p%m>>(C=z6TF7iv@6$;z9x_!wgbLW9t7D$i -HF86RvOxUB-(*c8EFV0jMwnfDHZo3daf4q6K$**lF8h}Qb2cDTx-iFXcKE!Hk -p+17;2qv%gPzwH4W7Rck%vCkKY!6OupADPKE>nf?6o$y*Bt#V@L@7!0~plz4qbYf_FWj|h1dHilSyiW -cpt~F#T1=O@3ov(E7)}pVXpf!Ednn{<@&j{wYHkPH|h_^2At9nwR*4$AO&S2iZs$iTFWW{D;HK8^mrb -Hyvt`ZOj5&D#;Zau+XLls==Gj?y%&2DI_eo=DaVby#peq{rb^m=xm=i^Pf -(i24YtvX?ZxvPVmao9uULd!-b@$-k!(K%P%#6gqx`hn|(@F@mf$F96e+9bMM)wyRbz}#TrS*o4@S8s% -<3XWQ$nq^z_tXg+CYflW;4;OB)Tm*EV&yh2NK6h76!H7?##JEFhBLP+g@mVU6fQ5@xD}JdPGo`y9F=3 -)aR_zcgL6y8weOkjOCP4?v6o7 -Sc|C%MNtkZgi_cx3U#^_?P)H1<^XtG$;vG9iHQ}u!~;2=?~7DEmAQqbvJ(T*aOC&BtlyK{7Fb!9VV{0 -aYxu%DJnZ(L4+ev(A(n}jSYB_Osn%N?HyJX!?cR19tcbl@r5()~(-T0dP|%0mmlgV6!x}mVZRkLA6Lr -|fST;D+2qL986za{qc~q3`b~Ky*oZZz7)PRq}da|KF5X#Jky4+wN`_FnH<&JhrIkCfU0n=MR;~pDa64 -gUnh}oJyMP7%nk-&EWE_DpD2Q5S&Ae1r#QOs!&^z|0qpvq8eHULTigmuKP1zjZdf_9309Q2vp^FG}z_ -kjWc^H##W?HU3p0KqzVRohrW{Pf}j3c8%_EpPVJ?a3%Jx7EVWJ}7ZtvymE{Y$%$Y=Df0}?rW)Md7D!W -#``{#@TK{gLUa;MymK9O&06Qx4DGyuWA!Kk-t@_}~_%cnfk6#Gr*HruWY2XsL= -6*C_MEFv5QLGv)=`pFQM`F@ -=DhSnPl;8})(|Wk$Z!X|J%J2sdQs32~jQB}v;?0V!e_nTdlfC4XOD#>4X=RNdZ5nwl3lqBdP@8w{XZV#n+j?7F)CH}je^Exn^eA -&(;`}(@{b37XIBPj4k8`V)G)~)u4dya)?e&Dwhz=!bV>HuFb1y5;ed?K}yYnk>^9uET-uxIKDe&`?Z$ -JUH-B=~lh_MGloo@~)780wl3Hs1b-5frK_QMYN&Mv^m`>lIJfu&1 -%vRwXj}U5rrW*<EpSZ4^BYv|1yleckq`lvAP%7`Q3=hX+70tLx>2L_$E&;-g;`GpsCC{+0cXZ0pb#~+18 -|GRVK3{#ir@qhx41AYAb -1)D`Y4)fN|;wu_ap07CD?;rI%_5~jH#$ewig}6zD0AnqU5rp%?uW|%xp8|91wyjV$M)sz@CmV}qg{#G -4L!ZN7_T$`oi<56bLFHa3B_oLj1eoSeV?$H_M*=T-QiijjbiZwiN6{KRculiP -ZVR{rcrJCJ8^mT;Y#qgO7KYdQ|D`a+>3@DOM$VJUgsgr-Ysw=PTXn#b1sGlwD~imD?^ev*+Kj;d6n@m -LyJ)n}7!H+kfz{|K;Y^GS@bX59HdP)h>@6aWAK2ms(pn -pTyRZeS*~0001H0RS5S003}la4%nWWo~3|axY|Qb98KJVlQ_yGA?C!W$e9ud=y2tFx>N%bdpJWfCK^r -h!7MEYIKN_9fAX7LR5l-12aTO(7TWw$1e=sfGdGyJELjZQFpKIv+mV+ZAORX+RxW*9eEs}(zHTtYIKA^n_F-7^X3-o5W1@9+KRs&9RaF)<8dhCfwhn1hV=&&m -Are{uNBnej>v^HRoJmmD-Kf9sM}{yR1oZfdyqCk?mXUHIeM@44q*zVKf*7B&d?6y9-9Va3g!!n^O?u< -^?5?93t^$8ol4(Gz!keRuLN?XoR*KMwCl23&W)MBkh4{xyA9-2EB6pBmSA_b({yH+P?*@lG9{*Wa7z` -<6R?>_>e6sP1kT!z?#gn5^ut|0NmM%@_??hD?SDL*O@B+zpH1VS~R;ohtZkWEcx$py|ms^MZjA@s2_x -Bs-faAi}2JsTckC)Bx0hqBJlAo*$^-GY00a45-R+hAH^(I-&ofzJhu-8U8W&mHftSJiLE&Sg#Pa)qEj -LA;a8uWy6Ns`P&(0%@umvuY|wXFNA|~omXmL%)09^#-QQ+`}g3&S2k>J_%VFbwnCekRq!?%zK^eA<6Z -Xx;1o`y0mbM29^8_D+`|9=-~W?;tK~kgf8Cc(M$KE*>15>o-SOFrnP6C$9314Y_4^^ktL80-q&->!Kg -EAAi(vwc-v-_74`Wt=4KQk_k^zu5fV79}YNOvroEVFE`xwNDA42@te}lNW&&)E+?iS->#{Or?l@J?QM -wlOR+1#pN4FwZJs_Iuks`-(#-Q>|r8AgkBlZ~pXim&Gf3~C;O)v8X|-y%Wx~xJwuEyQGwzk-l8Fo>zHWtoTPVif;fQgMNBrFYv67TPGXqASDkO*lT95C0XE4l@l8aapw5C -PU>ORR8cf=Y^Qezw-;|P?a0sGA`;sOQ_xpxY~c;tRkM#)y_i1Cx;{^F>~6%SaRtO+%~cjh@jDgRyB0r -JFV_LBH`hLKzYGL!?dX}IS5MLa*77U2a-2?Hc&3Wf%th?7t)x!)dk3~^6{{RwD>B=osSJx06wid_Q%3 -lv)ez)y~rOUyPT;yk&!$5h=NVCGg6Re=8q@gs&T)=D~pjqzb?c2A~sYM&ZDT&Osip)RkRqyheVIqTp; -hybe8LmybA+J0q~tdr_~qdgp8+*tMgB8rgWS`E15I8-+_HB1p5I#0n3@{kiD_PceA;4-)4Y%jLx2Uof)u_|xzFc!D#! -@~Zr}ztxo5UUMM~f@%2&CL5#ffAEABqx21w)trEm;N_gIudE&}?zr8OU&}c~&}ZojMN}czyOkFZ@&UHXH{D;Pr-FJ -pjc+AfT$H1nQ^e`L(3Ld4%-(*FXdOn-nTAHqj(G?)7OI?>df+%i9JoouJS#HE)eZswraJD5MR#Sd+j7 -49IbimJeyQQCcU2Us;c>X}A}_@8k}wW_|Jk`JFpEEMmm$INsp%c>N=}Kx#hSOso^<=;X*grgW-M&M%M_3QBF5`jE-L`u% -M`_yv;GfwPeDmaKyP5oP@;@j2z-x&cc-7=;vC#f;TqD212E!8zbAemM(b9r4>LvPhe0z88|CocH#xcxW%4!FMbo(iaKz1b@afosa2$=yUa8^AjZcM<~h>wjOz}PsB -7)Mkv+D|!L3BinT4p$sMAgO!<_Vy`0M;uo943GK&WCQf}Q)RUY-X=CCR6Y|(uYTacGRkV>7#XLLag2l -_*6PgD+_xcf>;wRU*aIx9`g~H5oCPB0Igy`H);Hy@3q16qD -7w5{(~o#6t+MNw5I>DIi$a0a5VrIs0an00wg{+x$0Ir(zP%Qh6 -MmQ6l{k8lg2PyFqrDF3;HYAjV(Fpk%B$&LE00l8Z#HYM@txr1MloZ05AC?B=`qtbT>q+`zZL67@OaRv -2P$SMFMj}bBGoU+$25y9(+mry6_o14bQ_kuDyCaeLfJNKA*Y|2?}F37wYGT3FT^D6@2+#M)9;V^h7_T --m=o|^P>u=<`qF&DA-RMN^|<1PzN9RY6wfW>7qj?Ss?(c``$i_)$7Dc=R&1x$m{R~93ZIOev1LIE(E} -;aua-S&DK-YyxWjq2LBbgsJyI0>OW4Kduj-&GJlv3CAGAV$|~eN->B#+pw*;Ykc^r``;TIHatOIZ-Pc -E13H5|yD1m^*QtM08P5#);Zn#VE}H4#9uNCpptY)mR1FVQt<5M#jZnb==Z}Adt$s5jsbkHk7ay2Dlh02 -g039R$YeZntngx}^HeHG}{N*^khWQk;LL1tgjLd>!G-%-q*=3bVKt-!ttBa44^s(XtI#$gyLpRrp3uf -}>K%rs@%oM}snw3BXbFvR(!S|r~t6-ohMWIbbWgHea{)dW__93LE&>ZfjA_f?29xb38!!vnS+IJdYl< -Zg#-=9LHNR09m7_fJQp2m?}FIktgX=*6hjf14i9uA&DlK3e}{yqR~8WOP>`(TayrlV_f-mY;?-(~aGr -tdQO^u><$hHn(3{4Hb~#B5D8+pCzZ#uo|>;5ceaV~WpsJptC=dme|{d};;Q!yv-XV4mO8JP!?M-Pa;u -CXk@}@LgZ_G`>>2WU(b#hVs&M;S1W0v;19v1bD$suBT-OjO(?|dXLjHWSWMMcrbSmn&lEd`;DH(O0#J -2&;9^>DA)zGa(ktx@l8AloMoZKD%O7CH(2|QGg$jF3h4JEVr1ACAvVCR_4p_gl4a@0gGJDPTd39!;sN -alq^_ID1(ZRxIFLQ-j$>c$oIX=14%pU)mK6qOx=FT?p`@e4_UVjYeFph9mvU&xyxy&&2nBo2QB11n~7Cl%|be=t>UmnpYWjQKR>l!npNZVF+}f -HA~h&3ehRz~7^c^(>{=lYhr)oTg8#1DG}6pjPK0Ph=rAN<8E~h(1RC6G(o{k&VMiFrJC_{sv4K -5NP3kpy~urdF`sy*kccam~(s#g}@||Oa253M~nd#m?6W^srIn)06+*#@(~cMY?1bTf^f6YTwx( -+HrYmVf|kW79bj11mpOz&^5Yb`z(~l|@AhM5$b*;CUQ>318f}AmbA=eTNv@ul3vC9KWT5zU^^pI9{81 -3-yrf*QC`kTipbh?3c#z##U6i7$K$pI5CBzf~z`-U+JKO?~8aeK0+sw) -7fX1kHq9#7l@U2+B2FqDr$4~X+7qRFiSwVF)qD;kDBw?V?-;M0{>`dq?mee2#Q2T_rvCLxQV2Yw@@g6 -ID?sD0F!@^r^w1V>W4EAK{a=;^(K8E_pNx4g^?F2p5ua;IpG(^Ou#`mP!(^6xX_>CF99m5Sbkz;cirY -xQR3IdDN>o6O68KR_g^<51gMkP^{)t(kWSMK6-5KnEVS}5!k!w*;_NzF|{|FU4rm;^W%kWodt45{F6jZ( -**9_czFL|;Mc~(<0-Q)%c)ktYc##@Pf>P1@`MjqlneKkU(>M$tem$?%B1hNLQATyGi5mR+SVyRJ_9E) -E0+qOz87WQMUzbaX|>MkiquJTJO%yNz+`=E6(!;hD#5E={g9J1pBWAaSA$nNsO28M -Y%HGsF%$HyMRov1*eM3Na{|G7FfUW=sT&@Ti&52+(H(ea%@& -m%yiHK_6*dsQJfRNYUPjlj|px8*Xz;^L3F17?R9U)+!_#&6vU(?=n9pdY6Fe$*HtIt!!IXml8qF16am -SJZ2h^kynWO -8^=mtlLZT45mhlSr!_vgm^qD%3IDagU^#4lzA1GQI@)+MpfpNXL-r- -j=Qcrx?QgHQhwGx`y6YLHsT`##!&``{9Azn%MJAvnH#(!x_Br|+W;T!924!!ZBEMbS9yw~d5} -QOE36Dmsx?Zc*jDIO^PU3gj+sHlcy8lFF>G^_9hcyYZEdd7-~q&C#U%_a%V-YTaz~_LMma4ozxg(+x> -Hq)BhXNaXk8)AuH}7ZOx|i1QJ%|foS^5SmAvBn;KxS)$rVLb4@jL`0@Q;dN4ZpoMa9sUX^ -upd8R42EXDTfQ*?(6g>l_{ou88+=;f)2Ots4=qvGMng+R*5mU$eJ0?UBoWkiyhzyQ1%Lf3R0#%r9kP2 -;)UF(BAAt>V%I7!(ircvC4H{k2Ic@i6;vPb9FE -^}IDR9A^%B)~%kqW4*~7h`0%bg&fa*Ph6PM3T4laVeZU@~&s*XF}1hKJw3XYn~acJH*1(mGc{{!D;)$ -HbRv{14ZYd5pE7UYTJ%^gbv-S!h}hQ1Z!#)j)c6&Y+fE?R7zKn@||*Bw#5AjTX639O8BlfQvlUIS4XF -$U=&hFOqkau*2ZY+|009IeWOv{@^$nm%f@Ph=jdVO-E4Tvk%CSZPK^tM(H^LuIbqEtlY8p4A -gzR+6e^nh`(9M@9j*?&JR0m^)Nywc?6XW54_{&&rkgl50RokGTeL(FiQHmcKwjIuKt06D^RloNL7mN_ -p7P)nEkmura|s^eRO7)N64uMTiq`CBw|!VKyu>G{%cR2H`%pF(Ehh_u_h*qjsQSo!B_Q@H1Y<$;E!c@ -!^&XIWi;+$Pp!7j^anO_^6Ua=N?DbR-+tsxDs2}0@34M@+j1##!b#wBo`(gKv}rK;EES_&2=S|A}?VV -p^^!)w}{X^{7mQ^)fI0wK=W==LGN%4fK3&=l+M+;y|3Z?(`Z$B>=RATnp8=VliyB4T7%}w^gfDEE3Ac -btQe&CkYMX=(PC^$ADC3kx1i&OC!xJB2|Z -A~i{Ii?HNdtmbSA>*cdh}DI?_*^&4S4?0znC0*h0L}BK6}V}L(NeIBE=ZP~*9^VjX&TuLK`C?^pHFn* -^Xd2SxvvwShmPU$$iq*>=_}MnUr)EwSMYWEdM->~e|QaEPd!Q(HD#AMRBe_*xTq4N(ZCNg~}IjK@@ZnHShOyc@wJ*lht00oHkHZta_s-Rp6FIbz;5!t+ixHe@X~>)lw -vznnx`mfkj39CEWYPSh}YHW@W%|c#@e3djm%D@0!vN^Yv?;)LcD?)3(kVV^G2PG1aQw7c&|)3G87v{v -$Dsd34^9T{hhCBD-=^{rs+qt2iA|&?l^P4YisDQ8i6wsld8@6!1SOVDBRgsOsnlm -t*ygqhr_W`s>9-3`9gAVjM1^yk9StF;aDcUkJjUJFo!Ecg&f`9k?1Zw*l-?fHmrwf5Zrw88Zp*DRjBi -0AXkX2!2$>$H#eH3_2z) -V<0bDep<^33*%9R)9>&4x1AT*qOafcH%-lO0zT|ZIW>)Sh{!pqN7(8l%ww#Q7XOVNCKpju~d`9H+w84 -sN%uQg;9CvhXw#ofXKgtvgOP4rKHk^e#DAa_ha=av)Oz9A#yllAO<2p)sWtOl;-C0e=}sK#EhdZ -70?YR<%EAzmCY9gPfIprla2(^#eiW8OqdErC++rv^MoaaL;#ZWtBH%V5%FP3=lX(}GOFq`FuqsBmY7m -RZr;MR8&dD*E4Dtjp#5EkG`10acbkv~0D>H(LiIEYA)_aIWV~^0ItdFqUfO5hVzRxwvICU~(nu&|Cq* -T8M)6C*x5*0v7IxFcmV{sRk48dD=0`9OT>CXF&p@DT;y1aa#X@C8fIY`jS%MY)W3D{pkyax79c-EKp? -gN*R@4Fkpd53qw@-=72)t!W>m770XdgH{d)iOcx2m+p2iBN|@jY3@EH8a8@zl_FNur+R5osK^hnm%0y -B#4(p7SAh*M(SctN5ech;X>#?8m`W$a=U+c)Gb@0fj63gGxI%oz!y536${#tQiiOQGgRS~8YzscKf;M -p7gK`lgU8jL(8kGyM3)#4OkJubD9~ERok4FOz}1rx7Hz(^4G{07OAmE?`#6?56@?@zjJGd!*X#GtZaR<^p5Co1Kyz1?M!8{u*7!vEl6H80HJ -Wn93)=9|b!b*T5c!K+M&*g!UGJ4r_)=sMl}F0B)tLBxxb@^&oCkp&;baXH>Vknx*U7xsEfu*Ad;mM6K -@GmMOcsTk}B+>CsYDB?tBMT-VQo*nRIy`(dpax -IS6JWv#d!KoZK};8#5}cpi&o^Q)jgr)sC)j$d%T;BH%fdm24MI7C#ZYzkwPUq)Mxh<0TA`$>6ez8*NO -Dmo&@+eyFt8w1n?x#qI>aC=>S@`0;yLKIeBhcM0jS%6y#Hw1T~47+ZiRBfzR_ -~Qd&Op(*-#f96-g>gQBaFZ!jN$ZRg+stwrpgMt;Ds&8p(QQU$0LZcz$?|X}h{$xZ821m+c1qa8AdMX( -xWUv0YUZrWX@{QJngS-6`acR4=d-}jK4p%S4@hJeva*7Rx=OSh| -z7_i-28Odb>ax?>%D}a{DRFBt99E_&)#Dq(*lo*x*vMEXE2|A&tK((Si{6|FSd}sms5RO?_^NkLwJW` -jDY{XswmfI*Hs2**>1(}cKlf|95`GgCBbdQlY-7I{KTcyH#xOg%h^UtKK70PR)MTqaH(2u!9WmB9~1^ -BaKO2uHMRpb|V$#3Uk&&SE+8*oF(^LO;LTwtK9$5cgoM^(nll?Av>?k4dsfJ*fRV0G178C(^m+}n=b^ -fy+Y=E8KLILX7o(URXjqw#Py6z$}*DGDIew*V3Kl82Qf50i!Jg=!g^u*!QfuF!m_T(CCj^OAaW_(0j` --c7ZM5rdF1*wg}944~S>2q_qJRv7q+VDdNsG+=xW)5j=Fy;#ZMDbSau>H5;0I+! -~JM)z}-6LJ))kW}%`XqAxDxx-KmvD?76c}V-9PChwZQ~#_U^1iO#DjXR}OBFn3ezfYmdQUp;Bh|7VQa -Ch5Diq;1lwcvJCTTlDMH7>Y>m{Ed0im&L{OsSMu>{bET))yCr0j!brE@L=Ns{FSixVu&c8EM!eJd^@S -kSqgx8N|ncK1T~Za#=HcvwLA^5rbL%+Q(-F~Vu_AP?`HE$`Yp%3dH0Zv983>K+oDL?sU!C?Fo>6f$Vj -BWz>|jrjEhoPiVM;7ls4*uYd$_&3~i&3hd!;v!t-Zn+6WS^vaR4#vQ0`S4@G-nw4&^AKOBH+YNHa)mqaA2~o58s1;WwYaZFF4o5X%t&EMkDU6k+^``+}v4 -(Y4pz3#Kk+>?b^^o}ts|>H%qWTw0A@oo!&*FDm5G;Y5tz4#rTtfuAMDxAK!npD87nO246t4!6U6{i*? -?m2CSdu{vQ;GG5IW!u$5F23Bt(bq-}wq2ln8ckEd>T#uLz5A5BKQ5;?}`VkrZ+*gE- -zu7Jo|>zf>go{1qa}}YMg^nCl~w!jd#+m#F(oe!Fr#hiA -FB?7#+U}@v{-oLc}+XSutpTZxdDN -#l;Md1FF7f*d%2`IW0_?CgxyiDb+SJ5?@)|cU8xlsE_j-*p7t|b3+~qk3fF7> -QnrYX2TWeS6*`?PS*dFST(A`@+?F;91U*mdVigwE;hjDx20(oEb2Jj4!SeQh2Fq{gu8Mf^9yD9{9 -4?VL3Oq2cSv?&aj5dV7`JU5AF9M{F$=XUxt7P1xzzbDc*$lIST!^(n_n1o!n|*Fd&wI#x>ET$dNcGWK -MpJ)Z_PlxEt~E*n*YlY`%?V_$0gcK -0*5gK8I<{1x;h9r|2N7mP#4uYMB{>;%mPk7oH!WtO5EmuGtR9unqI4GsFZooZ`#38lmi&w=jQ!*_cuO -TP!TU=poXiHbl)r$S0#f!DsPGD_T*+$Txfph_gHCh3H -pb;@TWB?rJPCO%2uUJU_km`@uMgb-oV8Y7{$OsX;z6)N`%%%2gL;`Oe?YJ(DAW)PZ*%TkCcENt7n)pe -H#MpZUnHkpScUx`YE|&kD*TB27Q?Oqt#wh{Fhar60c341`|;+xyM?)8dEsTa`&{V9H~Eb2bm9IHC$9# -{e~X%j@#5<&3?qmkj~nRzaoHLxKi;nqf?9+Xaj(S!mGZ0cRxz%?^(?72p-D -Owj{~3W(D|%Lc70T`JhCyFYm!W6msj_M4QX=G&{Z{IL!ek|NWNR17S1?jS^J#_4rt@YwrraIKCmW|w` -`9roaAX4@OL~(i?m#A4!{{rS(}iM63twvKZjz5|`3q{FSEVvZwLMCfv`9(!k+qm~vAzGV02u|WbJYu0 -vO`+S#6=*(-DH-kEuOJ~ab)O2RFtnxxpBaZ>c>V~01;V=9;eQ2^e7Ilp?50j&?%_HCd)kw$~2jdh5C< -Fp*lzRpq`nqm>J#Pdlo`__TuCB_;_K$;xW!2a`pg${w#BwK@5C*=b+UjuppToZ4G^Qc34f-Y@H*r*@D -T`0aGnS9NJbDx)QcxU2DEm>2hn2)YwIBu&kXo@p*DIV5}*Q@H63$g+KTfmXaa#{Dm2?3ry);w8~b&pg -N3I+>H-qwYqhk{4PPagqqMMR!&n^%2APU{57CI@t0JAmazLA_6F4wzC=C$<-=H~-S|)@9>#|5#)p!57 -@N8qANu;WTdO!||Msxh*lhsK5?7{O-9mc6L>2%CmAQJ*=va!ToIQ*OCWl!*6I#Su#9^~ARlfN)sro%> -*=-OnERt{DAXRt9mTh<#P%R -Bl7_%A4QFq$p=?Oe#20W_sSyavIf*1AG^Qxsq7R+~=dc_9^g{f+3dkT}>p91K{U|U^uH;#W?NtozXOF -L7LYNwcuDeCSbJv|4ytp}}?Y>J?F3$Qy3lfB4#AK}T^iW5nHU>N?f%5`gi=3+g|pwQTnEA80S_Fy{@c -WK*$HvtzcjaB;HfGChn)+Lg=Q(OFM9svZ&&cH+R0V{DJfYg}4QxTPS;gH>pK9BINZn=wmgKK1CyN^5$ -)rmr}P!B*~gnlw0#>muRO&Z|g30&?_ORrd4GQ8yV_mOo6p`<>D$K!R>!FeY=LI>rb+5WTlseer!N}En3%r2L{L>;*`7`?I@x9OGDhNfOwS_b(&FgbMPkL7aYNBEr{P`@?nXbzcXMS93l0CH=-VuW|H4PpBv5e#aT^XViIiq< -A>A%q+&u4T6URmf^t-2-i5eHdh^_dtY6fjdIi!bwnFDdJ_6X@^IJ0&{7-3E~2roB~Nx;6;X}u(ENk?1 -WOASSh<{%?*lyZW%jBc?4gx$vD)G!-39Un%z;8OhvGpYIGUdV!+^8|^4EZxbtzs3fI3ec2V~kA;LMfp -fHtM?ohSam-uX-bjFOUflCmCQ4*&oagD>QITr3r&&c1$5o<8~X`;<*_QCd;F+;^g{p8q+(LF(A3TySe)zeatH -29v!C#VDp>TXn<_V2U9NOKh;v)GzGmweKnAQkCa@0cpKYf=TxL4O_{4^i3MFxL7~S_v)~bTK+Tq1%SZgCH2XCyfx|6^wwYSEb6=~fv`}kggplUCEJ779~&Yu -eiia+$YiL+8)2@($Ztq^$_tL62P7hU?=mhhaq51R~e|B;IOx!+cZmwcSUlePt#%c4@}!GFE?<08g@np -Z*f6~`IA5>JsYwug6Fm$g1@VewvtvVvti>nul8y@7Z_K`g)>3SyeOwRV^+T8hq)dIXI2cqhF%V|^XEk -D1;;_c5UK%1Vv&d>#ZUDmAjtNV<+p^drT|>=C@11HY!yi5}E0dU6=GuLM1_4P<{JvIh+!Ig%Q8!48n9 -nlrD%W!=n?hOb90p4uq)$7-ur{ubnpp%Rqfk?yS%ya9Hsr#@8W8nGOm^cmc+`Qof*tel|xV|-f5c*>T -mZBSTR%zzPKx?J%r^Z-9oBxZh+NV0ir6>qYKqX+Q@lIX$l^oiG;L=TQL(}Of%>GxAZ94`_n@VQAz0b= -G3w964`hgsUeN;|BPPi$F{&<@-4&p-b%Dgk)5u(F`|?IW0RSFWMe=Db-L3OzUtS&yM{EX1u4hLXalxv -#)-!O-x9g5*1N_}gMu^O)mKhI&!s^q8PcYi*(TWH=qMhJjtduK~0zh!KS?VZJ2v^fwT}?QiGyn;h+1C -l*JX?$G1em>wv+h1@-r^3<-S1~F=E2@5BoySCs>E077wb3@q(>ZT`wo?3=0k{*bM*z;W|YfkLTcF8!9Dz-Oo>2a`>mp<4^Z;mKPwo0jKHvxQa`D%s+9lebziSQuK_-D*=zZ49&6@lH -cq(seRDMtR@rUjTBLT-FCu*hW048{bV22QAygPZM|E#qg8lt$wPd7LwC%P%V{Q--kAJHu*pON&RrEUl -Mv8rSyc+wJ;@2@s3dyM>JK@OJ2eJyAeoQ=9einWbf -!V4U5tyGkg4Vok$#9KN>gd90aUP;i66x`c@hS|eq2b(hR{NB&8WLJ+EE-CMa&xS9WRdOC>I1iA`YA^l -v(>;_JUTAXMNtqunr3$$S@E#o$7_^r3GF$c`P6J^~4g~xPQPbZMK%JCftKKW||tm29)pOQmO -FGuAG(*uB8oUjs2A{QaXBn$6SEshJ0Kg?Ey4*c9cj$cj&(!)A~j!-c@OUK{l7$zlhr(R)A#PyPCE`B3 -t2@2G|VC9Puq*%8htxx@i$3bVA3eu5Pi71#{jE7#e!z7}PDc6g@l{atE4@%-)yq?7(u|SPTuUWHzKmNqFeK#RGtY^$=w%D!C3^In`hRgj>>ybJC#l#G)r{pH#?ag$%fP_? -Y{d*pIL)!D(yO-3&GC2o6JaC92DAnp*r2r2$5IRuxQ_vGTlvy|PFPv6!(1yk^ZDd?zT+|p>PmzOWK)k -{_v3(-!6(3Emyg2wD!%kv9bTQ{X+La&y9Bcc%mRz6CY*4Aw-rhTr`QJbpv1Ui~i75}geD?Sb5Jn9F@5 -pBewRRWcLjyf+Wv%wk>3Y&+uTpqFqbCGplBo~nsv$(OF!EN7@5Em88-RPYoj1QbAUYvMi7L1_ok74~p -99SVpDRfK*OHY0Xttxcfc4Oe+*uYC;1L4s?XuUh;VsTNq`GGhOH0Cqtl{=UwK9B%K4=9`rM{Q~~D*%G -`0N(NvUC25)>UD+Hz>^^&Bw*DBsDbqVQMEvE#rwUIbOIacLEK!$Gf`3g-tqd1+|+VeCYy!PhL*}jH3YRernftjK&{+ovsEy7}hdYKt`whAYS)(1rB95c^ -UxZ2XQy}2yWmO$J}HWjq21x+bJ^4Pwso29*C45#Db&Z5ot$|a5=evVICKmybg6U-tn`5Ha1 -7cn(B3DWfrm;^V|qg1gvYLe15^=&A3ev4iYJzwFPkTwBVZUW712TZ^P4OJbf7tc-JYOdGLuPQgub1?w}JsC3{<=o+8R5`^%GBx}>`H^FE(lHy9!qDo(EdfJlHG7MDCHZx_e) -0?fc{3iBSx_6tLt+CsZP$&?yvw~I*Gsxz4SLendC6TyWHEb(Bck~ba}W+ahKmS$s9S9*dJ{R0ZoXCwT -g0kiwLa!lnM|q51Rpb)%r@sG5U{saT_u-Nm!_~YdUG>=UQ^;wiM){*M>b%r==aC|KQD5I<27QfUrS9JwYNa{S9g)pf>va-uGcirK&1e#Dvol)#;8~a -nmAi_OIjEB9ZK#yvc*6;>6cv%p4!oX`;l~EXC3bN`CvZVm4TXO^=Oi5g&WDj8zjB$(lo{a&5;c~BoE6TxD5r=Gf09 -5!(e`_ajm_PLs8JC0YutzTQ$5k;4@L2WzRXCFk~JaQCg^qQb5Tvle81C!vE8K8US;w2^z60npUTBHe; -gMOT&-q1Y!Qb8T+S0{CML=!5!YVP(q7kW ->0CY>VCbK-Z0$9PUGQ+8jxmUi-E6mbS}*Jmj^z@xh?%k52{nCz#T&KU*g?@+ho%j8PdCod|F2h|<(d~ -Pp!sGa&8w^SwlRXNDl626}kyU(M`ayp(?6yH?WLq@UQ48x&Lj;V;;! -6hT=ITE4V8k))+uWgU!&{8eSESz(-;+^FhApAJMvUnNrEZEbs9<~Ac>etrNs`yy?fM -0<`69;n(Tn_xb@Y@8lV$+lk7T8mVc!6#HXLo9TWrgu>Pk<30nV}+88|EuALE}E?cRi1d|h>-hB8^ki%W#A=%i$ShuR@O8Akta$E -V@6Vv^#iy`w)TI~4G4R$^(9e6Fd^WM2O14}1%ws>b*T7Gd>dbp>nu;T@V8!kcDF*(a&4S6#DIS^b6T|s{N5w+WH_Ub3ejQkOU}zd|XQt-Kt~dMWHH#lq0XmFOJ_Jtu -Q-=cTDrq1M%^t$WH&19x$9u>>MFz9xJPIDoj8 -!&o2E6Mw}FwCr@c*hCw^=v40S2f$pDiiJMG9R8s#^R(@ab=AOK0~LIg2xEy#7ig2vEnX|y#HZ}_osu} --}@bHl69}hwS2=MdAZ;h_%_1SPa8nbSc>g9g^*WJuIn6~sTlg~}9q; -8R1f72eJ&6JuEHvZ711fmFE=OHq=Jp#FOF2p|)mXZ1V%U}eJp)q$P%CwDR9}I-nu>tH$QsGjC#~)QhL -}nYbU`Hw8S+$DiXDL!8!ezp<2`iSSqIfk8fK7C7YkpFa+T=I -%lhuiFj~R`Gt<*yCspLkLAkvuXP(TN-X2_Ru9BntPj}s5X*!q5H_)4&?oz95O^qW=YnIG~mKt ->5zqX1TOD6A@xn0Y1W+SkR0$<{W~QkyAL5rF>6 --KxtLpv!}J`+$03t&_(%;0vfjfI4_ABF$XI=QcH}nf%LbrffNVSGC%@Jk6racGUKR`i%+CKtHM4jR@a -V(?c*c+6?eZp+a~W($6Y^?UXz@U2D4&8);N5y9`iyIa=)M#}0r-a=}hUTf|3SkDGR7wRCJtTiW{|UAJ -*^`#Tg)jGK2(fWjMcZsPW5Ih$T)vT>7x?3%#se}g+LVKCSsWK;JA?eY}mr;8o!g4xuiIAw0I;%aEp?4 -_-%uC{;)u{~qg1et4Hl{0%OS`o?6rAv#ul<`AdPX-LP;HA_gPiq+{H^sI6#|er`k1F&Bm@)TA;uRQSV -Se&5uO9S95UcypcM_>xny;cOXk#zjqyzWPl4<;^^yrWC61heALrm>ww&Hpk#=dOayfENx&|DitTRGaJ8z-{*5WfXBvA -h(15H5&nhax_&oK|CAp_+Ym5h3s(ZHZnK&18l0yR-uzksFA(FQYq*}Eypx%gf5M(z!u$`Zeu3*L$!8~ -d2vbtBaI11C1HWx7%Sz6oGcCz059HF5pbiLv5(KXcJZq)$$0U~MTd!X5sfoJ7*DWO3Q1hMh2*{#r+~^ -F(TK^MHpG9KGnQlCFe#$S=+%&n+sG$c>|A-=g99p|eYWI)R=Bcy?*S(XnU4a$!10m;Br5FAPi|iQ}rO -ov^DsglD>xDk=*nf*#v2&Pyx6l1($U4cJ)fq8I#84m_`ku&)B_<{a`T#H63K`%_@zn!1bj_g58J(MLC -Ug1^Ha-c?b=wuFU=&EKJN)Q}^VGndjEw|Z+}9`MQM#P7@vR}XzCeq!RS#m8II#h5|tH3)-pd!(B+Met ->V*Bj!erbw@mPdoEGAkNg_zC<`EV0{#x=BPN^jJQWN8ZW5|>*kM*40n#{ai!V^anzs(qqOk2zCM9UEp -i-MaJU!lCQ2tFfDBW=e+({!w?P!1Pg%~)0C3x1JI8R_uRHbrA6qs(Cw&38ZPvloq`=7TSN~_{-a3!`B -VHOD8N*8>@1!uNb^b$Ms_#tlQhqqaOJImP`807G%kWdE`0Tj>t$~;64LOd8U=ee`K2prr_^$@>#a_uw=5d-{yiXBT}A(C2CTe1SeY(be~%{{x -TM+ZcWd!Z4bO$-%c%I+5WORc$&Hh7??b559(1cHg$?Ja+F_cn|iVV}yT)J1|MwM`#`T=<{{@+>6gAy5 -U*xILWm1$GEO&Ard3z74(q0pHE^8^?a{W0->mdxP*D*_6GR6mMv=xL1 -XU4>_mY5JYvOzyxNp$fKBgYPXv;ODSeOz#y*yt6OBJD}sup?E0;dW{t0z(p7_-1`NqH9UR;zfz3*d8Z -h^iw7%xD;GS*CYyxXZSNr#%e($AVVvol9t}1{?{C>;{cXL!PJI{lK0*8`mlanPP!X)U0#ro)#eKDhnim2PrqnZBlPsH{ -|J1IiBJb9-m+X)_*j1VVod^#`i7Jc0El>0Hae2wvLA1z#~EVUZ#2gO$np?du#Pm7X2Owei+q`!L?tg~ -hsM`U0&HtEj&4dj{|HYS-@H)_xD@oGW=sos;(ANLJG8C7Px|XpPiFPw%yOa$$5#P!G8(Gw7stjjYJd+ -!00!VIF?`lf_3z`J?w+6S7bz9b#YLb!4M7bd%Hg8zQ}(2om4KJ^D9vV`zB`&yB`6at|M-@ju}n`2zRC -;&<@(i1B;)B4pa&Zy-%0N0YP<8HfKDeJtShq25$wp%=+ug=R}^Lw_2LguJz04k9Om+NiMFr(}vzp+>7 -cWKJ@WGZsYrnJF&9(Z;nriOw@0$xGw1C(-*pE?$fW>G2c6r*S3q3AxG9zJt{SgWTSH4jmGATo?MUTD; -|oJoN>-;vni8DY#dot8FaZ<+zfmA;XNaN%NK!qk!=-OkSFhf{%}Oy1EZX5_kBhx^E!G9uV6{K`@8Ut( -H11)YG<8ej1x1zFyG$846f_nn;HOBjoDn&?{Gmt*NOO4`D@rBILs`7z0t2f@r$_3Spey1JJx>+IaQ#P -9DML3{aVY^JhBJrAQ>3xt0eKl*L<~LS+M|g}14@5<*?ZqkP5zMQ-fAZA06OI#?AHO0)|gBMS`kurkEzS8J|iw{vfgReg2u51YCcBrdso}5EKFz|VGA%`!5-8Dd%h8+3+>5b)DjuSOO}JB -jnodlocHAyg#=k%iCnfN+bPV1^wmY@^_=6AAj@?nD?t7L}mR64zM-C0Bs_75{)C5oMd_lQV4AFv>+1i -NKTBOomOty<=e3AZcgjP*vyIpS(f4SbE?~!cPz{MmJ51}+-_z5c2Hp%sSaJr*$H8NE*WjZQA8?g^cK} -{EJ12*dHz3(jQpr|i^_I?Q8>0Hoo_6OBnP3Wdvsb2hdbfpU2z{p$i=#P^*1b_KkoXiIJ+XR36;qMQam -UQWpYi+=r>Gp7Mnt^UPF~StGGMZAee+^o=c9;0)4Bpd%*CztRRihBwQV@7`fRCyHj*qwGk*raeRRGib -sJ3l{9)!>TMmq%S#0zF_lvlIGC%FUWYc9IByInEL?eyk^i>~c%Gv0)kc6Z>V-R=CJxdWZtfk^RD-50l=T=8l*o{_ -za*@6j_A|;9X8WJ6d&9&}4g>K|MZR&Ks6_=`Ru1g!szj9h;wf0_J5ta`t1o+Fc_}qZdA%66ikgMh%xz ->LmuqhnF?fgti&@nE|7Z9Q~M99v!w8dwp)g97x`}a0AR{q4_)T_DR*38Geot{*XpIr3pAS -DudPQVI-XhE!Tfeq0>hb!>?b?0N%I6ne7RFEC%kopyEi550;G65ML&Lb}RwJcJm8?{09>WGQ)4YHlcE -4QQW-|#zvNN~5(DJX7`MmN=@Rd_O6JP1&jPpsnYUh#H5fdK5_Ma7<`o$@o5H{{YyH?9y?9Bu|_IK5 -dr1DsbTOab}wmw3{5z`*5LRuc*wt;rsE4wMP2U&Nw92M@>t0-u$)b2&?C8Br3gs*Q#fu4=;*rahej6` -NG4IJ{_l;h@c&N!0?10a+UBu`y;8dTcX_onhD-K%eJh`Vt9~xlEKLAu)wF1)fcFr(5--l=9uHUIj_*P ->9mFWRE3MVIL|Sd#HJ#fZbyt$K>osytP}6a-3#Qj<>#j7_Wo2j#RLLeILRLTH9z|4Ycl?(C(lO!bM)d}1v@pwXw10<9FG%UJPmE%p -8n{UK@mvidoC2~CSg)wC29Fc}=-Q0QT;GyGgVyJ^JdMFbt^lL)Hz^q~G-N^t56D<;huV@%bPlDo -@3==eyxgs{HMu1oF`U2>NQ{XV(8MEmv9;;8p{-0Ajsy^?D{n>E|`1#Xh|Aw8OyfY9Y$FHV}OFaS_EY2 -tjHASF*~*Qa}Qi4WYFp?{|iO6r$O;qof}1|~9^$9H7K=gwDO#UFBa#Q5xBl+PII+=I7UDI2}mZZ*$|_ -=JRAh^u)E5nsP{h!o!oXqf&wK;C>>?ttCZZ|`>u3F(J#2F!{rct)_wZQ0|NF-)Y}menuO+h2xGN~KuJ -7+0OX`Ow*eE?bjV?w4v$x7LnGwegtin06^dC!ZnJzSrhbZD4=9-or84TC0X!r`=?R#)@3E}JlZ$Yo=k=?wnV(P`e?RIN72E}PhGDvsjqv*B0Z(ZnyU;^$QHh2-c#+#?rrRPx-xVHhj~OFO8O4j#e<4jLa}S_ -`i$AAEro*Sq^xme)2D!Wff9)3()c%-u>_;FW*D)9deJ~PGXNAGi4cIopct&6M@T_)6yHE^WX5eQxZyZ -1+nr4SwkoWr;uamF+NBcn|$vxv2_T#yRmi<^W7@NKIW~@ke()m@W_@_AV2hakDg=V8SG!6=XAXo3lcH -_ZRoj2^)M%O2ec)-fzhCNJy*O>hA!K)f3gZv}&+SEZY>T?{%XbYbj^r<3~clzOqT -Yl<*Ijy-t`rc7R-IcY}uqts92T5??vg@u?G23;zYKL^S`fR;HGXubD%W3Tn;|4y?QP*=G-Ht-bc%YtOFqE40FEDtMjuL=qmBqB&?`kCwWr0P9Ru3_eyJJ8h?w3ZZtExpPx_rZc7m2VJEfTO0B>>NS*sytl -O~q{voT7Ego?0+F`1acR!vC+f5V=k3&7GW!Q}Dt_vh@~4R{z&y=mynTny?&#u>K}_u{>eZIKf@}c=b* -T(Ek^41O6(rZ!oUmRT;^e)^8(HOXAANoG2VtzMU;xu7Z`(dmpDhHrvviK>cf6vtANS?jsn)}0R34E>a!(2*@$iIJCn_Jam0xCSY5 -ZAuzP*_bO*@-}M4bp`3JX)RLBn4TWIUR#Web81^@S614ZD__5**YaIg@L0h(s{2WSo#UZhYUw|xos|k -)i_W=M)x!)d)_p~Ds*Ed0A%pf^%7jYo4wjR~qgd=zZ|)|Ajan4>79Yw&>HE()W9{ZY=cLM6T&l$xq0v -)KanVZ0bhLWKy5TksrGqrCTje_h)gum|JbPgLqNQoG6RzHEk{sY{^T1Za?at-jk)vsIBcIY*D^%6fyv -Cp!O4;)W-zB1?2M94yKLeol`D1tT(P&{+etVSlc0Pa1%O2frls(#el+uEiPk3B&{1^^Z3-R_E6PWL>N#p5Z+j@= -LbJs4vJ;@Koo1jNq~=$WXy^BNvs{6L&C5R0(>}`6f24=ajY-=PGxB{eYRStRYZg1wy4#~D*tO_>&oLv -T$BvsgZaj6?<>4Jl_C}um@JPE^v66M%MK?2raJDu}b4noru%x*tcP!`fOty(jNG2Wpj>Etnl{{Q_P-; -KovMb=~bdP{a)BG2(KlU=O9BHSo9BCdGoBzEj|2tE_)qCS@Ze_Fk2ytmQUrpAcw9GmGv5PKyPe_dC5Nx2s-OH_@Pmab^mU;zjs;{`3DOA?2__JXCWs^m0SzHb&J=|_ -e1=SgOohxJ$^4Pb3NkCmyg=p!GAqffB(sXls$y3R5eSzGmr9)*5=5^h*g&ucF4UKb-@9WeFf`g#>NOX -_u?9zo9lGCQYwxP!+5S~p9(Y&hL6bkuuc@MRyFZC^FMUCr{^|*)SI?8nYM%HYPkf)?Jb~w>7P2Q2EGA -eq)TPsrg~MF(e`fBTWA3dtL=D_DKh=5lGx_9PSZMIM)ZmXiRp;5yF8SwxvS~iLoHgSB~! -S6Nm!RS^a?;IDG+FB|XUvrEJ2R^B7ZK!dZX&5i*PjgnzEkc!xwKk~lO8G)S??q1erPvQXTy?OWwUu$4A4o -ia7UWw~=3#GMt;g{BKJhI)oIO?mBX`aPV6(iG}qUBMX^Kmh>(#b|0BvMJuqTFvKa0v)ithe(?Qr3?0F -!dS{c4dh6#iV}mK<@<~WnZQTZeHAWo`HgbkG!HtpT+s9p!!m++UN9ddPP?g#N&>0`f==tO}jerYx`%o -Rm$3cn%EJx3q;lTK1a~}7P&UUMN=5G(NFH*j+6TnU#VVA_^LW=JjR2Ua;aNwKDK%JkKwI0ymtk|K`Ju -MmD?T2)x#37-*z#7ue5LXDGdwQKF7&Y6xyn2V -x|8?Z(Cy?g2yesq2BhseRwS0e`2?o7~%!#b(juw{ZKuK(dMn*7F|KzISi7IB4_;;%1hcUl!1<0DDOHz -^wqkBGQLRGx`h%~CAt(%yx>3ag7x({?m(s+2IkhHkl?V)B -kzAn_G!yjIyBHqpzkXJw3=Trv#K6i)#`F=n?pmfH~%AEa#c~!vg)|B1uz&wAqM|qoQ<;8`ykyo!kAdi -94R!K=z7*aubi;3}{Xtue=#FRIXHZyOIs*H;PWi2s2M-;>nN01NL2;_mdY~!#=8Nt?w1P21cie80Gt;toeaIpac@oj@j4@Tgqa%Bea^A-B-paw=B|`Rejy) -*t|NJ^=$!|<;~2h#inwek!)8Nn_{(t6(_r3w!~HGgjl9~C~evFRGPEtr8H)0{JLLm5`zssR9H_jW4-74GxlbW&7S@AoeF4@TY+ViOJ8WGG>l^bOXG6R=-*K|TlWfJY5XxeZxqGW~4jW5Ld_6~m0m7i`6hgL06q*cYhmn5UtP?QzOR{s0w3d6lg#V11sgtzdnOtypoX6tUF -|>s+>a!nOJNfpr*Lai5JckgWq@?afvTtX!m -zcaYV54BU{J9dWx+RVEv4(_rbb9kNf5K*4R;P9cOP4;KrwpxJN5%^Z4jd*8sPHn#&Wai${Q)MRO@oU3 ->%FQZ$!rcA4HMpl^Cp^-zub;8HUoQvuG)u@ChOa0}7G4Nzn93UCY4T)L?)EdtykHJ6)JmsSC8(VB~^> -e4R2ZM5d{Yc9K(1Kh@HE+M}6E&8oS)s=8PL+-7PnPpK{;0dBK3mxolB -umHC_&Be+t(<1}=7HHH@%2la%^rvIBX-j(SV?5DcaBhUtzPCG>UUT&>|AiPt3In;5HovF=f7<0_TIK4 -U^RvA)f2UdB6-t^IX<-J9YxDEE#^q#ZjmuBHq{(%mbNOjft|}IJEc9$(Dd6jw&Qp+PyPT=`K3}ck?NV -=4d+P -37#$@~(h9hbKAh)kz2KZ-}%s5Y-a -laG~l?KjncdIc*r@|pV6SbRPv4Pk_SwDvlvo4Q{EBEDd|6*%&!4~RA+1~5#hExBnmRRN2HR{;|x8`3x -IemYuavJYSx96%)5(HP3Tb{#2q&||kdj)3s8kC<_lyli~mFqYhzHc<`>A}F}|_cL#osEr0%x}_$J58=X`9Ma5)j9oZHXsKDNl{8_(Z4(}pUCr21>bG%p~eX{}9cG%i0p)0UGUh!Gs(3!0Z)qS+~2HHMa`_-7@cIvJf7x -i|_MUnlzo%bHTT(rWQ;#^o9NWXcPovm(pmz``~sk3nD2qwU9Rla{#-HUVJ+3NkT6n)vP6!*oD{;p=L3 -D>{kjNFe}@E~}sGW%xj;*sSzOx@*Th`Vc^sbDeA25a^bamJGFx7R<*@cdYK;TcU_-{l&)8dO*f4&9uV^z8^#EDs{> -PUBmUT9Jy;;d^(vHuY;;si1;PPUWSRTflgM}fzGxLrpXzw8|DPu~mC><`ggNw0ZZATy$r>NcLVJA8gv(+~pgWgDU>{gnt{Sjle&x$@t`=R(5uF+2ynmQK-MkM -P4qu=52xXDkyvBuTqxkbS-7L^|l6O!$8^H>{Bi4-F1>|a4g2FMwo%D%Nkh$_QzS+H{ayMQtxsQq%~EE -s+XL#RH0>;_+5;RO&QY!yIm^EsX!JNBU+!*`bVSMs$Cj9k`^jJdkifNbJd%8{tFt>FffPTD@0!b{d~B>6K!^4BQ7#7&eH`Qo}0uK5^X*qN6l#cU5DZH}A$ai2kdvz73)om -4*$XUq9}M`RwEMZV(N9Lf;^IsgMr>@=Cc6G%1feXlkxJ^0<+fl{IO(Ny({B=>yV@%8%DeLj$JaV2n~; -V4$G^(a@W)hg-C4Ia^&!(OAoRBE~g8>5SkzI$A5Ofmqa;A`hkNF$Y$45SIS9PS|Zs*u@~;^g7E!SiNP -q>&(XXW(%FECD>F_?rGYJ9bpOY@)~_US*gJe+2BuizYf-SzxvukJr-f}t9`#hNJ$y$kv~}4nqudx$-a -MGAn$zTjjx~9*!ZgLdd+jLwd>VW+x2RngS;&+ejTTjZaj?NEobmsxR!q__;(NgD*StZe^>MGPWn}r<< -QTOM|s!lAKI?h?TTb$o=vwctgsrL4Y( -yMNzry96;ZscQaobCHA26^Y&o`JvC@Yh10_~yfJiZx%`FIv3wOoh`h0DBR2&=j&QYF@PQD<<_A|9-%~ -FVOG8$IsDk!N;b8^^Hh1DOyqT2Q&hBHZ3kv_tg%>uG+1&chwdn5_MOthjCXeoUyC+92Q%+k0XU`fmz* -Gd++<|zFIJpxVG59(LDwpS2%cF_C5C1ZmqSiHY`lrSG$+@)xvw(R^F}(t83YMhux{{CEiyHJH~Cwo^* -V2F0+$8@5&vv?)kf2)y%i&RuydlCWX>elwKXI?)gLA2D??;2FsrUd1Ec;5@mi`yj^O>t7 -!4I;CPt@WgZ-(QY%Khm;K~{Si-Gi@~)&vY`5h-=+wv7iWD&|Y@Q=*CixlY$3E^>~<35={l6FtzQq12atp -ePP;61wCNSG!=A)Io4EgD{rlZY+#2ijN(ERzG%~??a>M*+ew*TR0v@lXYFV&Mv*LLF;t%UodnoL6HV+ -meH^C@8-2{eM!5IgRawEF+|9hRa*Vzw7b_C2k-R6Dga-oT5f(;z9CZrvuqPLi$m<@tFqFmc?phG6?yh -}K)ZjUG$5el|HLCt(=X}k-ENyPMyC9b&K=tT_LoKUi;Ur2|!S5KXmyX?LCwU7Tes{C*^S;cz`i@zsvx -Ijpb`ZXeMNou4)+X9H);bch`kFQmt5VNeFD|_B2k!wx>5o=Sw`jXzt?hSn`Qw$6%@+-;TF4%Evp+bh0 -ae_}W+6Fuhg4JWf$F~4zG~WzeX;OuZNX}hfs{V3LeKiLZmy1vbFE|sc#WxvK=*{k+pmG-!*vWCvJLgjN+Ac|Ljwd!W?6(^a?Pth;7PvS -e)%#^3un&n-YVwY1gW -KJ;{kFS3iVE}ad016ZVFAjRT2AFgloH-=t2mlV?80R)2oYo4Z@UGwV!!S8sCcp8mZ`>WT8=KpxZgH!3 --H8tTWR!Q*lruZ+if{Row%6-9WiA)nHt8Y7!7y%9lX`nN)-eZkb?30R@<#kdM51V243B8%R-}OqPpR> -?^TQsz=P|^U4@^ZgfA@oltZCu!oXNrv#XrZyw~=Yt6cOhmYS`tREAtEwP26!Fy3Q3tZI3AbK)Z$wf(g -YPj&6B)ydO}Q;of~%spK=^u4t#blTopqg3d7Yk_pJ?Y!E=NUofW8*4$hy0Lb$hqkd+6%5D5TChUhSQ~ -ntch%}es;E#^B)F(g<~>6P^Zb3SV`Dy^JU{uY!&;`uvHdT|3A`%+e5b8SO4yLyzj!MVQLn@_nXj`nP(zM0ibuj$qztz~ftTT^LTJcs`yh+|PdO~hQDEk&@e)bjYnG>NpmRqDYzv=Y~_SyDSt*#XL7Nk?&T8)}C -SlX1De8XIE=axp84 -_OgRjrnZrpVE-`ML?WOWg`NfP!c^fqVmG6^G8~YB`_S)h_%)V12%6hv-)HPf?eZCgg^0%NO;;pu@D4$ -G0x0Kz+*|~XN&K&wNt_ts6F8x)i~_1A60vqCDhAw(|XKi&7YgYpE5j~^79BUGc6v --Jqvq<*4w0>KxA*%{8Q9pj#lPOuhnC2SL2w}&(*!IMWJ66jX7D~T3PjwBZb!f+w$!x%g|C=LCoj%a*pD0JPML)9`+85WXRLBlrgmUw$ -5^F7X3g_DFJ>6e>!fbojzt!4@7#gTrUJ~x#wwp?XeWPCM0+!;BifQtGom-@iO9)R@H|Jf*bq^kAtGz7 -h!U@f=%U3n&pMG8Ghaw^!yRPN$_7tewRGnL^UEjtN&h(&bA9D-*O@oj8!U<(bYY=~y{UGLXj5Y0pbN3 -l%HUVDAp+~3VF7b0W*<(*RdnY3p{`eFHnBIwF6knt{07eDO>hi81xWGa+ZFUeo*0ipuI|9vdRb98_SAy+2+P?Rx2c{Qm^L*fU&ecHaL -?a<&~4h(AX>pxJRf{B2OH)WzRs&Qo#uA-kMf#r_WRg>qKE16?W2faBV*GV$}Cs)^u)pv@{LteUI82=+ -uZ+NCu>`K9$qLhQ$aFjjMQZrW%r<%Ovu-dcr+q|k%a(WcEu@`-~cj;I?btOYNo;gsNmmISBM)nrhlpy -)`^CdBUn|ZyfO(V`-FPfqblr0SYu$?>>AV=nr>YyM%1J5(EAxT?wa$AW3l|Zafz*)J(6$9_VoMs(l4Z -Lgm`<9Sz+ICDUsaw*muEnIZ{51>=VcZ$K;WpBV|XvJo3YlV~zLPE?hcquOMG7$VZ5`*QM`Vj$}6tAb& -GFvP}WxcY4F&KJ=mOXzvz&Uy{v(Y@U~nldg4K*!S6w+P^?L_ipzR$)JL?)48RJyY -((@k!G?f*NGs=3qNN3_~OTcpJ@Etho7wCA}G3Hw!?)VTko=OFI8Nvrg9f*b`ZWe+$+p>G5@s5+Rnb+@ -5|C3oUI;3t&785BW#uVCta)!7Pbxwvt1cKc8C4gr7!b$c=;UlD;Z@!ntvMKoPr{3S4ztfhGKHP+g5o` -*%;z*S|izVCaz?}YH!ERZ$8g(ZWEkSs4QN?SBX^EL)&R5RJT%QvKwxm!rjbpiZz^5ZN-s(H`@>T?6J9 -}Igc%G>{n8_*R;H(I7B#AuNvU}_2u4ie8}AcTlK9OlhU_rDK -Sv`n|kDZA;_qm3}4mLxs{B>F;iBm|yB@$@dqwOR<(T*J$O%=Xu{Kc4G479u1XQ@n`|Cp}D2c)o5jZLt -IFV1YPgKk<&lrcfn@O>Q%izdf_%}93_7tU>ETL%NMkFmNm1lrjJ;J{(Zs5NZ>&jagJP8S6V&P2f -UDLq0Vk{@{YsMkXE^h|!^)MQAi%APer=7Eev~7t*kzY(=1S~~_P2Rj{Q`DbdnpfZqi=k20nYI+ESVLj -v}TKSxUwWy#{>IZaT=$;t&&6$dlYxs+NQZG3C|Iwt138Z>+vFAe`dd}Iei++pVU;X+lqYceBuHj|F#b -{oKzi=MRO{Yp;wuRfUBm(e_%zRpQ!*F`-}U$FZ(GY?&T8+uuPD*K2e=o)D$hNlix*9FeA-*d<=HNMsA -_BTy{h&H$Ug#$vyOecgbqs;*?=F$F+)QxjC=!+gt29jA~A*C|q`2`l9XLOGi5G85t*AW@*=+TV^+;vz{Q$pXrf$cn2+{i#v{&18C*EsF$2hZnpGz$9a8 -B^v%Hj36pn9p&(bfS2ebHHxX;zEjXkQ&DWe7&8k7RR0y>TauDrh){dI;N`F^PQq*Mblitp5AJlU*MWX -Jj!lduR-`;ouK3ES5oG4Ra@O!y%cZkM6OUh?NJvNjcHLZ+UZu?ZG33xO*N|6PN81f*_tlY&eU1gx^iu -sCX}aT&APi)Of0S$aKgGpk0L%KR*Coxhr%no8Lnu|k7#Sh;e2#Hx)j&h?dh}+XQW@2)*$RLnd9YC(e{ -dIAudD9^$0j`;>(cUhl&-GMm0qWFaPFi7fIj2mGjDu*^Xna-II+g0_MW6LvxaNd>1+&Tf?J8g -M?_)xLu?iCxhwMIMU#31&D@>$e=K&uox;l#2TyJC>AI!pjk%p08hpt0XlP9>dCjFZsA+C1y5``FFE5R -{G7>w|?dylvL=;w*>s2J8d>4n{$6mb+hM3oe2GKcvC?Lgo#`O?pLQw(kW{7I@+-1MWGd)wik`LfQgLT -mCqm4qgPHmSiNMVr~%>H$#xe#th{ -SY*ZFz-oXeHG1lQd1Ce>f^I^-2%^S#ZTw|`IE0cLa-B|^9%>1utN^1r3B;{ivN>Y0q?Ph-hLlSIJf@HMN=dqN#N!7=hL|4y|uIIb|kO>zkQDt -#9UZYJD^3X3>W!Xpu9~BF{jJoSRk5Yc-4cj;sjVs=~e2aQl(cA8^|4Eynb6-HWGt73X?I*v{pjGFiRt -r8qseiT&oHTZ*T<7U#N#+sLtY8+(Qh3%6YwdvE;29q(b($mg)nzLECrx`&$=-ohSAl^Rim+0Kt -E!(6S}*5wacM|He{ZU5Q|nRr55kv+JoeP(&_z3V>VIrjp -JfsmGGCjh$_cs>eaRK(M%L|RTVWH%tWEO1pGe3th_N3Yub?NB~q&4uTWE2`P$lr4K)2)-G9z1??9=Z1 -pz;NjbW7M$e6fTaHPe^n4*cEtkC-Mc2H{z|B0TaLf%FYAIa?&o>czcH9a*b1KovgRuo&;R -2f!$2CuGYW}3OF_*%{l+%x$%v6IPQq(uIw6DeZR(g<7(Wm(eoEx>xTO^j^l>W>iaeFh2wq=XYGCspZ! -I{T??gt!N!v(wK?so^5NS36oZ(Df8m0SmN8h~HB!krS6#DNdm!D3)M0B?ek+ztRUtY1@9Z?ON@?#%7d -LG*cCfA7-M)jjL|0$65##qI^<{V&K~QWQSD_n77_ywwoMV+EV;r06t?lVsY@D(`UDrfi?Yql8)jhqw3 -4F{s7S-|o$r$QtHQsBDLRCA*b92z!_iQp_-C~zUXBN3zyEZDZcFN!7l)u|)!1vh=27Eii+4;KxyUDhL -Y`X@Wv^B<=+eiHN4mfFTh<=XDcE0q5y>vV@OwtKX?Kt-bLo`UO`lARAw9RK_Lzwo4A6ygDb#RN|iY#`W9@Cm -_>1g@8aFcaKK5Jqq>!2<+K30@>vPq2&NGlK63DhWI)g=j_4g|)Kq!Y{~SW55|!CHb11iJ`M5?mqhB0RegSO}sCk_qw%mJo#fq4Ly~aH}MmPgkn%Ysq|! -pnxEo;2nZpmDlFQcbzSwINBmC6D*?Fc8j>Hz~cCJ@*|6QvWw-~K=d?j^7AB^7`BNJw>8Or#~UOQ7uY5M~E2uGx|}##t>%1#jrZQkX%uyC=tXy>iUjn6w&ERRQR!L5Aqj87+J~pRFOrdnIMyXZ -Nw?y7{w_@k`0_qWVd9FcPjf$A!>5SmO#Hb9Lpr)`7Cltq&TwaYlfIYZyDqRluzdvs^h}$9FTOo5`u-TNeGLJ3^>2_M|W2Or;v@RC3MXclf-Y;#F}6UBE7 -zQ?ijO{A3d4W{xkN{i~EEaLPKLdN6I^Wh(heBAm^lo9IQZ=@i@T%soiKWCu=0ekRn(sSL&u(leQJC!2 -A}t`RbXaf+g_sZ6Jy=X!qM>B#R43SnjW$Y5?wAzICpLKcOctmUs7dpemawR%peU#1#3T05QIeQ+WMyR#$rc{ziI`(!{@+USCIgS)5adcRKmcrcgGHqpp&pm&NKB_4xYy4gBLd)+8~LG4G{Gl=_C8 -({u4!{Cf-k>*jYRrIw^&td{3Y?K^70=`4+P$6Hg5fDK}r%$Ow_Waj$yeQ$&O)E&=Mt(HsW5|_=fCOYb -X`~NilzauX-Q%YohCup(j@m7~Z@HCU1Wn=QzMk9 -WSXU?@`DM`km)lZm@n-#KOx&EZZa&bzDl+#*_&`2v}^oYR-gwq%xkX5lsIS!CV@cQV_PnewSc)o{q{K -!(>*3&|hpxgT4oW+wfW%m>KaKqfY|zD_1aN*0qD#bqO#+iA4Fpe>f`e!W%*7C!W6CeGE=t|G}ci9&+g -vzYcq8XtP{AL+-$H^e-JeNENcUNto0x}Ui@gMJ5Vc~dimP)CXAz;Q>{h;0DV97cZw=nd~VtbGc~5%sS -->kaCk+2Jxv`xETmi`{!^E~JyQ1}vy`Rm~7C#j4(g5{hRyVKKdy+Xzi}&|PB4%+lIt-7Scv*2eWXo(Q -fJW;yJrH`KJVShGuK9Kqko0=@I0^nDWRDb+lW;MTj^Ma5UgQO8TiN5?@=TTfR_XO<&vJzYIbJsrf8z% -52L*C#3tLmAuZcW4jrkz;U+AVw^q66pMURMz>Xn$-YZfOGP1znq5Rx=GY3igT&fMXd(;fB^ldYMs#w2A~b;lsv6kCoJBev-r -M}#edGcqVEJC*Y=A$v0CU(%#(TSB(#Cn1Baln&xYyoeKVAs)m*;btKYghyC}5ito?TXtds$1yZJm2IO -_Y}q-QTU=6NMw0e2+NRo~GBemA#-^DGR)j@3_=i9E!FS>0?BeRyz}=%^qsE?1nwq?t-PF8A%bRa$)w) -gFcDLTv-rS*MC-2T(x^}z$4xjEldiL_|eWzcazWwg%?>``5;Gn^QmY^ZQA)!Nug@s4l9T_!zMD)l}F{ -8)C#*H0!&-e)w?~T7NVbbKpq~s|nscHA8PtC~8nwFhowN0NfbJhb7&Ym+jSN#9}n6LTk=J>nz+qHjT) -WTfvub_^`&lrBb;m`R7|Malt|1|sm2Rzs2Y07`M1UOay-RM(80-UP~$K)hskC>E}G}#)Sk(`-5l|RI(VImW9tU;5lsne69GqY@2?54h}(TFID -F=0y5kj$BJVhm}p7#XiUCfFKH!XS_GSq_mfCX&@Rnd%1>&hPvVD>q~tbcsBQs9_#K -Q?(+4Gi*~2x#>^yo+?R46JwnXPnn{lb`4H~H!-EVD`g7O$&>%1Gp}cu{lz_`ac@NFcYvJZbDHIkKQil -2Z=0)c%B;Vb-_K%LsqwthSbTkf{GIz^cm`9-mC6khp;^E;wGb?LGR#uJpF(WXX0CNUd$7mx)`rX+xF` -bm?YQBt4otl(svj)}S7KgrpI?9n=qyMOnQ%2Gkb&M-T>yr&luqLFNL$k9pv(2d)=EwwF#^jVFgySg@` -ktDelxVhQnlrPKGR#RclP24&36s*H;E&0G1>ce>^UMhu=7cQrlt})e@l&SuH2BF*N=P&(XJ<|&-yB?Y ->VW=c5K$XOxQ-=Lhyabx(bVU;7F+abMsoCK5+dGl(6jOtS8w`aAKwE)T*OM^binJ$~?vsbe&6vNmdEWjA#UVKVm=bA&o`qL0*c6`d -($4w)DYQ0+oY&dji8XQrD|5;79gld`X&uR2esBv~m-Q?2I7nTbi}%w%(xKG)Tg$MDqtcrQ*fo6Jd^ax -ZP<3Qy?FEGp<~Y^oGcTvMk~%4U)Tq)I&O+LPp_D{MI_Ns|)DF+DXSX@I$NdQP2j%t%SKCgo%$OinTBh{J$dC9RRWE-4sEIC7-F|C@PI(VnkrIu%7Ts8bACUKS3sJgx%KsX5jOGpM!5N}Oa&!#9NL( -xE~eexz<3u!#reCz`3hC$+cK_+C=$``sNa*A2h0`}M!S)BF10clg!(zNdEleJu_ecJ{H<8_%Qtub)nX -0oVT?7Ets1;acC<4y^foq2YVu!4}be@b$y{2VXz^{IHtej~Tw7pl{#S`d&Mq4n))+9_IYWYThj~*lYU ->8D9M@dU*Z(z7So1de4lqh&M-FpWeP>Ykoga>%04e>xZ|;U!UKW#OueuFG>B5=ZPdsz40VYyM8+Ba;~ -4wEstD3{E;`V|NYfBuOGkH7K`}tf`b&1i1jjuDeo>;yM0D(iARVh2DcWMsqH!<>U{opt=XZyEhS8bTNr`)%hH?a2Uxi{n0lYy-FexC8wN)*g$u%l7 -(UzVxlr){;2~**Bjmt>r?sZZz#U;v?ZcQCB%bGMgGcGkTDL5q|TTDhgF;G%$SqK&<3gI%EbOV(w;&F{ -$M@-a{N>oE7szg)HJ8OMa?ii5<;jHy{gAx<78Q%rqks-uDm&nY7M2)8u<9SdCN=DDhN)kQbJ2*2VCo? -@M*qWWLhRPOE>~71>CPgMBHJgwj-6IY&fx+pSIZ0aNcZZG|9vZ3l1T!@J)edtg^^^Uaqmz>EujX(U7c -HN{GqP;faK^8nb982oAr~eBKga7!A|xq?`V6zQUig@p&{2ANb^*qXBDH8bXH5(#Q*k2HDaM*j|KSwZ0 -QNzmIElqj#Dqo01x1H*@K)9Ns!~JW_hHrtnV*@OLF%eFeP_P0|UjQ%Xl&$7HCzpv2IblasRGk7z)mVhwm-|7Vx*oRFkRwkcDRvZE=>DTBl -hgpU#L5?5Wzua@HyE|qGI>W<$!hi4F~3F)a1)J8feBQYi`H6u9FM)5yXt3(Hhqs)z(<(TRu*HPB=F&U -&-CyFD)%k(7cHOvS!$|G^&L)X!cm4drrcdQ`XgEz<8!d-adtT;zl6O|O={-nh44C-V<-4-GTd^41d4- -FKLPC+j}ocfsM#?X}Adg#t>afB%glK6B?|JB}wBl!_GCgMy=lxC?nYA~Xv2MwBOnWojbV93;3Rv -%02ISt!=K#-t}DWr-dxk-<^KI+g~azrY8#5-W=u*;;a_y8l`F;)m(re|1*g1X*b3$!ZQnI9HD!0!wO}Rk_eGimO`z`5*XLx&}E+b>>2Qysq_&wJ}cDI@ -kE_{14*xzt8{s599^6*1pwxTL|7EUpI?tS#r@#%o$*96|OYG4oDnUh4FlMp^oQ!Xl6srY@~f_Z1{Gw7 -8a&Si`PqY!+NfpG=O^t&AqSo9;CeoYwyuom{FR0jAq7Z@sHEePS@P03c<7ESi^%gVA&e34K)9G8qV`H -bH4UHU;AF5#e*BVF;(!K_P$cXXSJ5z%bNRU4Znlh_s_NOt=v^!=seSTZZySTbg%FGU-e(#_y6Q0wP(Y -V7I7o+?|r=Lebn#fdY^wYV*gD~{gck>_xdMA|Fd}ilh6O}GN3*Gmy1HQ8|holt{$tYfxB=1toa=@_m@ -tn=E^myIq&(CSn?|@bMx3-Oa4n&9baXxC*FBiRnwxG8*k8mkY;Wo|A$^Y^I{uu_C@8z@%6_)cO~0KQi -DA5_`S!?BK~;V@jI{efArWlCoc=pd#)N1<9ldB51g=wJp?-mN(eq6c!yvE!RrL837#cbN>D&Bn;?rIo -gjrEk>Eap2?S#aMiWF6L=uD%gb-K=`V({~@Fr-d`ENnsN#IIQ`He+X5S$@6M(_#2VS=3m>j+j8G<2|;{Vzr6oQik#|RD+>>(&2c!yve!CHbB2%aKXN{~m8PH-Q -=Xw82Z!9arU1g!`>2rhg@@e&*(I85*X!D9q@1bF^kZK<_U&_DX_B(B93_Ymn%^eLk8Eamn07BQ2;o@^ -W>Mt^JJ_BpSS`2Y6#v-NGxwH_Dk(ZhqUqll0CV|IJAwK4wM{kfhR_)^|PxBYX-)t)}&e{|dW0eS7D#c -h;>f-)*!W!3oU^8=3OZnp;iB?kWQ!;h=>3&HTE?nqNIXOan}Vkw#Ed#zQwDF*-UoL42}4mmkSCc;;ci -SHgxA`ksFGnvSw{$!$07VT6!9w%O@ky3|yGX3V&;f{2ls>2=6I)eZi-An3mKU|Od$$H!?>Tx#~7NfgY -J?`du+L#^p1OM^!KM8aT50!((fkJey)YF)>rz~{q*eFQw$q6OvJ^-iPY3oVYAuP49&}<|2* -;3Q%{MPUw&D<`|i7eZ`4s{-=aGriy@Kenu%$^Mo=j -4H^L-N2S`n;RoJ?P~eg{AiyGw`k)I&k0szoSVJxHIdVtV-tZGiFzK{78Z2F718BA&*LgPfo5<-*e&rz -@g;iL%X&2D)l>V#i_zO#a~6=@sOWfHGcIy{Sx~>aNy7`)!`Dye*)>N@07lj_CuH?g&XjzI&}F2ydgbZf{Z$YAUis0X)g50yzBp{SqXpU)#Xrhex588=T&ju&c=`dL)9FUdXWk{3uK(B1$p1WtKEt*Gh&C(WNRTwpzrOCa-v6M+kXJA -sLyy@Z^5X|n!ja^9y;9}yK5C1PS?!~+jJP(#L-E?p{Kef3qbVZ#QN@y|Z{Oq@M?)*c -jUx_Sr5uh$=gKkwsYH(@6Qyultszgq|Dt`9#4{Rf9}t}#cv`@?sI3yOZj{9oV{nqj2W{nIkL}dWX9hg -F>QpD8{_5NqORMQ9qOD>D;-q@bU2xzP`R<(4avgC@4sThlexoMvfdQVq;^)xN+me#EBEd+{B?`%9JT0EiFw -Q$F=x&kvCj-X%rgPAU5ClVadODJFa*Merw5+FTC)AShHpg=kL08>%_*58@Vp~;DZmu(H-l={9mNlSRuuSAATtI?%gXs`sgEZ_Q>RX`T$GiSi3{g`5Z_*wqN1WgT)K3LWd)COFKREMg=j!R<3WvfBa)lORM?w -R0XEB<#30#QjF%(DEICa)C6|ef@-6X+Jfhd9q6LNTNa1}c{2&S+N#Vy)_$d^Arfen_QTS&m{F@ZMgu; -JJ;m;VtccJhW3V#oUw^H~e6#f+ozn#J#q438j{5KT-TMA!B;m=X{i-z#Mx={N@Dt{JrJC|Ci9bZCy(O -0Ow-9d%$<7Pr0>n-HhBZWLOO~@aX30d)$kQWW%TTu9p6rL2ArGqJa6osd_DpD!@EDFDf!mpt4|Dy1v6 -#iohf7TG5+O=pZ%2}kWENw{Psb6u3>YoZyhNSr>AqP|V2^9VT3jZX9-$da*F@zUQMYOnu%4`SHnS7|& -_7jIl@+(BRkj?H9vUiq{BOelS+Ot9~TQB5WdxSi4!Vum};rmheND4oR!q24eODOzm3ja2R-%8e!xg8#c4Kr)sBcg&sBLXS<(BPoJAwluo;h}Tqjvch`;Zc^Lh@jw*UX!JPJ=GYzJ9aR48iw!`e?&xhU_|__&0Dvk@8qGI=AlbGg%1ou;NXb(w#}QjR=+cj-W|<^WVj> -#_?9i2H@|xjd+=co9n1(H9D=Vw_}-%Vt#@mvMc#oFD13ZiP}J~Bs_#SL>Gxcxk8 -yXQ3MO+@*o{6}1s3snP1A>C?bTPU42F6FlM}>!KSVrm66&~DYNN_J#r$)oI58zdJh+~8zJl?;TSHlKQ -PR+syL!cNH5lDhm{XOWezP^49T|90Ir;ouyNS6Eb2@bCQ9v?p>Xhc9$cej3I4UR|b;UU%O#|Oj9h=3- -}?iPFx4kU4n5Y^wo9}+N2<7Q1q#0N(O29T@?VT@mW!n~UKM+Ffd!wsJie+Yjj_q+Up1Hx;5R^^A{4gU0+Yp^|?`_MzKCJH) -)td_jq~cV6iYYR6La(EH=y!73-d!EAHAuItA5pVV_G8ds@{QW|H~D6Hka|o_R*BSg}H^T)9%LUcH)ig -}2{+oAtr>-g}RAg-=Uf7SE8rv5s_wojZ4mg9i_?ZgA%G332-LX>sPv8BtzdE`I#+NAc?~=U6xR?YG~= -AAkHImR*wKEqXulyP=-#g^eqBQA0=Na_MAh=w?wv_b@edFNtPygXk@{iji`Um?n>kW%4WWmOM-CcZDH -5HHguzC_FW`OS@C}eiYt9;Ug&gcnUv_!Y`okD=7SW3cr`aSGRNjtEc?0p7MXIp3+9E1KPA{!&5e`d9< -`mtIoZ8^}^A#ZOm=jv})7gj`m(no8Crp*1BW2&YinKD~TIyN-8s>v -e0RUd_lu(^BckG4d)`o6~|K?WC&FQUir$!AM`cV1m(7CNkJNimNZl!lh-=|%RuAO{(_42_LRh0f6 -K0e+)J{^3RzIOCr?yy4#b%rX}B*Z`r;<;#0-von`!4Ldn!9{y@e2Bze+{a$b*R5x7;L(?cG%$dhmg;} -U^LM6KfG?I}v~1tLJ(vo>cF8Uc8#bhxg%9r~PVtdJR8#PB4xQuw)Z?PX>v@Cz!B;eo5P$RY&p#hW?au -q>&Yk=2=bwN6p4y(%KmGL6Su#&txNzYd^-Iru_0?Bz?cTlH?&Rd;GjQO*UK&lUw0N+z1$_7`{6k)&VZ -NzLmoA;i1h1OjVAxjU$Bz%}M-SQCe*XFA4^ux{Zrip^e*gXVlG;=G*=L_&fJ&Y?aY9o6TjD#>AgP`GT -2YiTqV?3rAAkH@X=!QhkRe0-gqlxS%5#fQm)Zaq7yYEWEPrmccJB;_)vuEXZ-+d4td!D*orspO>V|EbG*%Q(x -lYk{^EfL6(%1IQV?%&>{K77hf=*ls}9+>?cp2lwW@NCBK6v9Z2V4lVt9~FTea!Npkl)#i?Amaz+07># -yfO{q)m!zy0>x6O`6v_#-+WrSjI7a9Dz{e-(eyr;wHdfWHo)K?mfC4!~chL$~Wtn-(1iX9rN8JHY4;_ -&fOT*s)_VRYxJ8(pqpfb$n(W6HhP&SYsFp+O4I|#FX|9-|Fc}V47 -A|I|^y(*0lz5h<`RrpS2_|CtA|HX?JB{f4V|NZ;-?*cgn0RN9Z`bfV2{`->hT$0YrWf=TNe(c@5mjSr -%*|Ues%CTd|*bW*{2SDCXPLM~yZPU+ECLNbD@Sv1^_Db37L)^J8WzP~RN9~jH)w5FmcJbm-Dl6^&3jS -NSZe8Z>?cJAj_$5?dB0rc0;0vCEub>Bc0o-9n-hcDWHw>_Y=ioQ+g&cqu;0^vGk6-*z%8<{bw0taOz# -%E`Iv}Or9-?8Vly?vfUA9Qs@jWS*d?jU7Rn@b91%ImR9RU1w(DOovzf(?74j?aa-$*&^n3Tbv68}L1< -w3vwQr<~4WPC2=#VRS2k4Wje)iE`3L-=31bP2M&*w4?eBgsMmXrO$!h8ExgIRcJ#(E+}L=g1?-4dfs7 -F7??Mp%H}t-CwFS4EaRL!G!AoqM -z4wP}o8RQ=2LN`$^@Wh;wayZctLGnNJbCrfcho$uYNTtD-%0l<;Qg+++*YT&icvQgEI~O#-BK -4FkoEfH3;f4-v|+~WhaOjC_}pg#O5p -BMM()2AcV=LNtYa#EWP$UWq`HXS-Gkaft>i31zt%QFVbRklI$xtzgF1D=UxQjXJTh&~}@B;geHg`qry -2CY2zM4d!+YGKZXb#qeKh^gv|5VnNKp# -Sx)9KJ@0S#ym>XR+tk9uKhDdWzn_O_TSUVfM8jI5;e+Lw^1`{Y8>(!|h|Z~$C;j#EtmznCx7Lk6>I+@|2Mid{1$m(Z$}8{&Zopl -q1$95_d-Q8iZ=$V2+lFWB{QmM?qG99Q0dn2!0Qox6P`f-oPIc0U)-d!ejVJT=x8zL8^5Dm#8a&BTM(|`wc(g1^w(f7l;@HWx#FReVIPFiUjELUU?mQQ5`%EvM+^5OI#X(t*UA{yos4ReSFJhgRjKd7&_fT&*I$2~>A4X)bXpKrIr6sLUT~KzAsXH%8n`?Y4XBg!^85nTNzY~n$|tid@=>B -;3DK~KXecB(nwP})o^hQNWY96*F0Z@(2mZSJ2LuFk0S>@#;lhOu8fw#VJzD}L@E*m*=WJE?r#y;SR@`y4pck -W!K!6;vUmM1V#rfT=G>Uuuk`KCk1KzT0K%5$yfy7~|BN8X2pg&`m0E3dr5x)*erqM{->efo3<4cDXNd -U=8eb<&2pH&C95hC1q*`kvO{)6%6&OR4UZUAuOb@$vC;&6+h5?Q%{|ja`EEDT&}2k@XgA9~3qtFBOgW7Tv=dDeA|L^NxC)T0z6PQi~t&Rs7(t1GNs3jy7i+KljH}57HXeW9Ruz2Yjc9-=0~TP(z@xu9{)50&c3;TK$~y7jgAZN>o^f$;3@Fn&4R_pehnz8E2Im9X41H`zrvv -x`e|^jseFK;%4=5uj54FoX+H7Or1N~?57suaFwjlo`ODpHioA(LIX+%VXoIQIs=L2W}{zHZgkz>b>Wq -0HOXwU&P=>1;w#h_n9?tv#v$Pj2V$`*7g_@}z$5pQqrej7Gyco=<%zk@$y698Glcr)C97si}zHXE1U; -NW0su~=l!o;^7q@Eu`l(@~df>19JVAxEeWAXli5k$3v|2H}M1wi}(lVEl>h#r^vA>qtB-KzZJ>Wed{) -{$SjY$_LYskdPoFBO_V1Rm@khEw{YU330R2VaLwPGnx4^1mE)SI7lH`qL0Bsa_tcTIZ6H$+Xr>OteuU{|UeDh6i1ON -4}e{neQn)swp-8PZh$k~MZc5+)F)On8^oxfrI4f+r2e=3hl@Q(5Z6SyG1QD#X_S(lhPbt>1bRMxqDLt -O*;*5wf80Ob;S0y#k*piVaGL$D)WDS<+HUSAK&H^v)-k5f -_#+`uqXanJ> -Gzxcpaeci?Yq7mYfMQMb8Xo&a8W;ROy4y5JwQ0bj@#>Q2z2<4*eNOMg?|ufZRxAH6Siy*z<_5B&%4n3n@UwqWkswTtUr@Brl%@ -(%n_4oDtX|AV+Q{>Jf7swW)dKcE3^C-fK8e~<&TM`%02WAr(}d*p*YzKeXoJL-JYwW!CaPr>sVMDst5 -JL3=8y`G%cC-26(2;cQ_3-B24e91-X30N+f39Xq)pXKK7tM6nOp|7|*UUi8%+*Y(nocll?%O -eozwuywkGlqL;ySt_#`_5N5?rj+U&K3RRBDe0*7qQ-R;2s-Qkx%X^IVu;!I(J4Vn4kg<>6m%Xs)+C>goCO=O;Y&*kiH40lE|V4`?4zucIwOT@76 -pdJ4Y5j%U15Jzt199?W-QOdIn%7?Z~w+n=S6J^=MWGpN6iruXmB&qcb>qrnrs&jY>5_+Y;5p6}K9KFp -PEsHkh`qQ-NsmOOC!#pJu%H<-r~F`kQYL}U7xd&T^5TrGLDXmd1}>%$xq2gqY=EqM&o=1l!Gd8{>0$LUi)DPj5Y<*`OQkT&ETCLYY -UVN4bC3m6mL^kmkb&Kdr2Mapc#WzZ3It_@`Z^PR@@p;yeBH7g@GH#f~V_X->^ZUSE5!T37nn%>an`!L -Uh@lePk=9n!+kq#jd%%ke$`^9qqtQH1fbr>d+W7ivLz%!llUucq4OK(S&Vac;M1SY86DmJFP>w;TwMX-Fjt#vG(6YTe@NeMw3L2Pv-Ssek^HP`7OS+0$Mh<3}9O?Z9u0)P0`dU$0>S|o@B;NV>P+CdZQHho#f{BTaQR=ncyYqYl`CWQJ~#3iI82!`Mf&*o$l=3>Gj960pFTeXe -~=r!zQDS~_3PK;Xw8;4kT$1}G*SQL=jW#(K8(qu%}1SsxrK=nC-NLK$_4!50T1*sUg*o1Q-R)2G(7tk -(sra@dko7sCV}=SJ3E`}2CP-p#}$!Z;5Fz*oqY7@(U<;W+MGVpp}L0a|GMzdb>O$&dP}ZYv4Y2nQ8!} -DNuN{vn`v|UNJnpfAxofF*TGTt^m$3(02#v^2gaW^Z{Do06a2erJLtcWF;LVqsQZx5>(;G<{QX3{C=% --U$=`jj*Tm~@0?OB))o=AaRqgWvPde4udkgrpJ-f!eyN+-|h1%z@{DpnH=6dm@_ON|@-$)*VpMU=O4K -Kd<;zg>XeqOU?%_A?p^iqv_=k?cLKSyz7zWVB`>`s1MSFKtV{=y3{Y<=U6H#k4_HVpYpW%@H?c+97jm -X>0i^>>QnB+1_eltc85A+K*zA0*~Wbsbb7>DSMk=BPI7;o%oD4INI`XY?|Kx-7m-?K43?{g~96KD%q^ -#{z9I(n49&`$R@vFySY)54`!;YntKT2sWW^LOBAi`u>i?AFP(kGF9DhvetJ({}KIH^cB!o@uj}fa>5I -9t>}{jcgR1|ePwPq>p17B5BAIjH4gN}(f2~%5B)y$JNr|=6FLlZD&UQJ3lI7*&==o+d>Y4Le9C`U$8< -1`fIb`ehkQaCq_07J|DjOUx1jGq*MqJJT^Ie0*PkuoIMC+^BRr6QmOq?4%KSthsxXz)cif-@*+X3qIYnNM8a0Y}ih3G(`OWqh<@))U*!nRm;5@4bxh8};y8w{B%! -O<#|LdK)?y@&om$5f|9emK)_C{`LIV*CZh>w3A35?GgG3h#U1Xwf(uq@TjMOH{t;=FjoYc&}L&i31QL -CM%%q}=gt~o@yvC9J;;kdxM(1*1G*n~4NP!%67Irm_Ttl?Z~~hXPU7V^oWJHQaK0{14#4SaE&`|V;tg -l7xe8xjwRXbEYi^oPGoQQGK=WzlQ`g*uhYQrbSP>)Q=@++${-5@)Ju0gzi(iyh+DpbXb(9eiU1=KUaU -bWN*9AmFL#0q-O=%#0APOJKhl-9BnT?NdK!=hhGE6E|GAeUvT9RXBWi#ZMuUM(s!(M9SB&Ox;@A}A`T -C4eM{_(Ib=ezfwyU*Ugv(Mh=yDZKx-5BcgYTga?2xAC*4wqLVkN$XeAG`=ZfS<3ubM{8U&!sP1b9}AS -jbfwd90TJJsKd;SL*XpPD1X;B_!#2`<{>=#>KN~do?PC`H;?w@Wp1%~$U&1ok_s20Hujm&%Ec_BayxbTCcf)=Z@ -|h?v9{2W<4UsY{6bclK&z~7nQji}Esn}^nK_1GU7%0dJ4J^pZE-DNa<`fUiE-c_#p@N&IQ^MfeC3vdDHXq1G$0 -Fg_{@O9_*7rf+DGb>4E&1{P1rTn-v-woL)FNP!t<8EiW-UOdz6SbF%V7fmki$f92tyI*gne)tY^I@~rTxm9#jpm!?Zu46+&br?sc8>kJe -S?D?;7PL`AFlsaY3zj&-x$ -iSBH7p;`RgF`HszR+*`_x4JXI-n -;YU~~IKKEL@li>gwbCyq`JE}lcXf;}gHllaYZq$rgQ5)P9_r?mR;53|xbMOq@fM3Q3@Mk!Jv?G-4BL_ -$e$*0A10j;Djnd7WQ)?ckBt%KHQR)ig8N89~u*G{lU+IQL$?J|3rU2nf;zhi%6$2ruIPNq}tOk-Ed_v -P1;s==y{j@MF8(o^)Gbg5ph>-0-{qxJ)qu@$OR)QB?i4*UuJ4tFPGNFKSLEGNfF4{Fid=)H6`T}MBrE -%X!>Fg6R!HReY1klERaw(hh}*fCBVt7Y}<74{Z8$b|b5pCq0U&x^N2i-?n{@@2VS9+BV4wyJ~bu6ik| -gc_n2sU@mfeXZ`+0Xl8Wyv|-9ufK;p+e`J -*z42c7kBiCRdp+@OcnU7ZEx0prND?U_^T`Y3@1%+BCZCa$^gg{`f2_aINAz*P>I|TDz1Po+_Z&}p -$=*=!HgAkK*30*%dNaIIuf}`Yd(}JW9rliSVIq?7Km28)01BdePz`zttwOKCT>U*3H~|OnWIPpjCDA0 -F3@2G6m+U290iuKHSei@c(1o;uE~7i>etMktF_X-{n48Q`%x_G`Qr0b2v(?Q;c8&AA^QF`3v|&-K8|% -&PVB=Xndytj0C)pe92S(h%fa4CgJ736G@;`|FLWz-Lk|+Y)76V>yh<}Rr#fRb$cvUxs^GKPfy -HJXjqpj{{m`dL95zz@HG`IJmE&0DQ(Yo1lXcDfzJ?c!chBNnLRUaNQ73oAa~Ur0ovcIX-ug#_+I`jUs -q4swvh(Rk2t7#&Tg(q}0%wYk))wVt((S!XQAPPFIPi|nO#o&BO6Vslv;Tf&yI$60%~gL{*k?mpqJb~n -2pxkueoZd-me@4^#!3jep5CJ)GOWk(gK95qxeP%D+;Z`RxtUhje@>_rBS!ToU}#Hj_?CYwkvI*>j^H` -8tOdpgXVZC09(nJdgXvmT=KUh|9@4KwRTYk-9;(_%2k60C(*g;i-)0fKGpYwa8Dc-yp@E$y-PJbQ!PX -m7Q*+1u?Vd#Am}Znpb6103X-4ue>}#u>$CusLi#%)iIk8n%vY0&m$4vAmgm%8s({VLrBl`55hHxJ7Q6 -8zs7kXpsnUyEj->0P(qBIL_4={{F*ZEEyR_?jmzYC3%{xCvTHxa)cPPBaNdrO`(6JH(40Gw%97Oy4$n -tXvi=F*%Zzo1#@*Cr8Slyjm$0Q2SMT-A~`G^YoarF~7m^`P;i7g_ffYXg@kZkC^w_TkIot2d9 -ON6XQh=_;e7wdOG;^QE^&ymQ)tXrLvcLP}Qj|>X5oZkI+kXBE+|2VVRAF&!s&MQPBMXvWk2N8aF^h-a -_A@AJS;EpUKQ*^QbulqVYoOIqO+_t&JSVS>kMVt_7sNbX(mnJYEbJ%VnKxQoGa#>Y!>-whj++n7g?QS -Kvxqg{yHLuE&v(gF1;GB2EktrjR08q>54EE-^vmi()Zb%!MdcDXK-Ss26J?iW&Z9-5F3x$ohLAzjeh7 -XW$Y%7uVoM$ZH1aL1IV($t1H$DXAfiWIH(w`6Y@Dpopf?DG)yzXcKLwt+XpxlVO&aRsJ$C!e3VyFdKg -EQOQ<{m1>o^C44r-+PQo_FXI)wl2`F+Uc+m79k1sNd@WzkH}OWkm2czQc@y8s_wZ(ZfPc&n^RM_Zew? ->Lo;O6KXeX`_QKFOR3Up9JOOM^0qfJi{tQ4M6EK(vC`=R;ns)t7!Jy<9Gr%jI&pTrQXYSNRW6O9KQH000080N_fRRxLye+Vw2~005E#03QGV0B~t=FJE?L -Ze(wAFJx(RbZlv2FLyRHEn#wPE@gOS?7a(ol+~F(e%^Oxl9@>YB>}5TlG?7 -_{s^Gk37|DxTB6k?xa|(6?J|&-7I!zGwVOqqX`A#6ejJAToq5YGtpXNdRkrwK91^Sw!;+x63eXS7>>T2SY2*p -z?o#!r80+scYpfMyRON|a9?GDIDN~1?E9Amoo~c`Pv7*d^ -N-8xljj%9>l5dn!1dzCpFIC}^7_R2@5t-7&i||Y-gSPj%-i+GF>62!QFQ9^jntaz=g8!x{(#SWw*M&&oe?T}-RP^B2}6Vt<}4>fV7hQ>N;oRI|L;tBGNK;`G;SzH94dTsM4PQwX -u{_OWU5g{Z$~QCY^zQ*QjKoY93#p;B;JP>51ujuDMqwly$tUwOeUL3jqM_nT}y -f?pR;<~U%zMrVeuC$?|kj|x-Nb~>$0zOt*yzpU&2dvEAk?KL8XCa -9682vLW(;4O(2g|=edvf=)E&`8cY$b$tjZVXP{&Xqn&28SWl4U1G^0NMV8$BZT#_$vFL*DO6bhpZ*D@ -=-#J|cGan9xtb-b>%i@JjRmPn=0&KDrTb=IBrU?JV1qYw?Zw*IYqT8#RnFV1O4q#YDV?Ys()F}SU(&hY>?6aZugyM|zCECCfzVK%aSN|k@p^XmaKYJK!)x(epD%9 -V^-f$#uSY?z$)GjxKTaBx)}ZBa(w+2=Cc_tf>@s<&U^3C@vYJ+YW50o%&@n#5hwDbKehG -PqgNSQ55p1_*u}Xg&<0s_3D -Hg5D=$Z7eL9iXioe7q^&wg3!iY*EBGEdQvjJ&;i@L)&pRn=_{3+d*ruakN7^;46uzu;#aeMD&y%wr^S -$MPe-j_z-$M~{Z@+IHo%e9Ix>7wRw=ndk@av!%Vnve1b^?fwQD6Nb}M|m^|JSR`eNKbRSoT(`eyA1^s -zj9+7A0(a|tbDNGyN!GhHpK@c#)lhrS#c*VNBI!bGbUb-!?sw{p0e@*I6oR0%ZE`O01x?nSbc99j`QG -m2|S1{6UU|PhRr^=cHyyesUl+K55JvFHEsIZYma&K%po|fb;u{%9@|KtZAu6pR1VWqSB&7>8za%(Y@> -ujN|1fr(B;hv=6xQ{Ta|bKV7?3o3-~=9X}g>tDvi&ND+0K_} -hODz(sL2tSNQ6Tx~-0yy(lznl(K)Gvlg)IWwo_Oi3?#U&3F4elQw4(v5k3(4umRv2)vS^uW96 -yQ&Q14ah>BvqBsnusM%a3gp)u+c)hZuM&TAlDn -FiMnNT#1y}OP3c;v^H{y`#Qh`hp-%5rhdMo)ZAhCX>Xv8p{JID~Lvs!FrFP5^SGC+h*tWkjhQ0VPT_5 -mYo8I$lC(_k}9%ItoU_9f+Z#10~>0C+DLH@n?jeGy+E(f~Ki(fO}Go2mj9RKg*GZ7xKw*TKPcf#^aI1 -}c7ujTwt>GLl2{_n#1Q~4>|jxPPl<5t;+9Fc6IkFxQ9));@%J4f -Ok@t=UwN8xx-O=P$jJQ% -WgK`>`hd33d7C|S5xyTZYvlLv-5ij&m*E4RZf-fDx3rw-hcD=vDcYT)CCekA4WDY6F>?Q*&WmYA-xQiF`FvuP1D~z4}bF_%DiOLg1;OsbE+)!G|E1Oa{J+TzKk;UBxPR8HX-UO^ -^ns{z%_CVPg$kyR3aXed4&ZheMZ0^uKpAhXAkggqc-X`CJKH1*jEW}I?r-)#u?mp(y^4chig_+{`E`8 -UYbMXC0YbpDq{TWBb;*m{W|8SJodVwPt1^*#KXA4@3WZUb5e>W9n2Gd15;Y&VOID&msJ7#=`abKE@-) -c1c-pml~e7@Z++I2kVe9qX#=j~bcmF1dfT)eMiM!zlF_bSqz#`|sgEhh>9yASR5BeO+&Kg+{C;TmiMR -~cPHYempK#R&W7i7x+x#xB(J*t$#+UaX0>tLTSr+k4_3mN@%g@a+b);8i -=7z2vEi*Utb(AUVcE}N=TsQ0D9QEb{c<+Co!ed>Q5oTKA5|Fs$nz&@QU4+gV_?H`sSQg9nYR(_HsTZQ;67J`qz73!y;j^9vs2|JwS`zq?S)! -e=N9zLk%UKsauPxglj;8_^%V1fQlkF%6zGU&H6mh&+&l_SN68-#3_{Q>X1ONM=Z%6JwV$r1&%hMr8OH -FjLh>#aK!0`hqqCF3CwHJJq?IhEPP_O=2Ulg>pwAAQA>D5@f@3D*GV&o%_rEK=61p6NnLCWK+(7pY@0 -d?~cw+BJ{TAL{0{duHaU6>j?1%CZA=wj%i`xhv0Aj^oH0xs4vt>wY~moN|W^4&imZ~c|%0n(t@VD_8~jwq>={6ll@u*#y>=~wxVj1jfmFXKRA~xVnILtHzk>5yTw$l@RM?{d{U}MgTlA9t@H#by7@GX -n)t3=DrXtUNe&@8$n?JH7)63$%}5$fxLeW}4zz)Han^ptwrrpl}tE%WXQX&++WSav^U$t;^PC)2I2kh -X&T!_<@KQ!9qY)>F|^rIkFF_M=4;#iXz7vr94F&_G+6CfA4*qO1b)%(OM+VT^`W_;EXZa8w^ln+7=I( -9EDcUFluIsfEn7h~cFVLANmtVM0gm?1L`8oW{1HbnW?C3!jqcd(!B4fN>gak!^!`{Tk0NvF)?p3ePX% -`M>adFhxAYvM56b^_-z^WYu17Nf&h;c+YnodhXEQ;ay)EX`tRUV4wb4Lnw&Zp85^+~11(gZea-`SHvB!i0aLLAf~*D`Oh&59(8q=40d1#LAp1)8rw|?c>tKaLB -`bGs^0-eQi%O;9aoo-b20Qw2R~CZC~Bv$q-L@V?3`={zfu<0?=nnTV+X0o+YM_;pR`8K6_mH7@o=OD| -O)cS`F`X$@53wg72`*dE9-Ss9lvQ8n5yim-iwTm@ka*<_C;jfk`=Su1v%M@ZnD*Ht_b$Z-Z~NBOfxDj -rVIn_s<~B<~7P+=l~to0KaTo%Zb1jjA1AAxhGRRQrM -d-GL$1x;6aGVG0=Fb!CC4ZR;-R(L$tA0%O{R5C?c#dHz%P2RqR($~= -XQ-eLX+auEU!OqgoQ6FYQAIkh0Mx^KV8zL`5FHkq00uQJk35RxSV6G9STzV?>MniD;v!zD)CeGjv!18 -A)ok|$7ye>!1qL^-N$Wpph*?ed4A>cKjS&o`oVJ^J}Jm`za&raZKIVYM -;2RT};x}E?C;ydDH*+_baCVQQ->KkFYO1C)5*rcgPj|#E9x2|963Y3FJE4!OS`Ffx~*oEep*`a -G`^iu@M>m^m~vKNL=NeSk4)SDA;{G)jHXh^q13Sjxhh_87?A?gcBs0g2R*XBd7&Gxn6S_edr~a8U5{t -LHf>s*zIUnj^c6N5us0h33>asWdtvnHix|01b^ZMq^Zv`n)cEL1w< -qJu{FroRnU?2BRcP>h%jG$p~8XrcEOj}B}6yd-?KSiC*_^(&T=0pa(Govkorl~FS -iW6wNth*mcH1iX3+jd~LBWU&Zb5!P*Ne?by -`2YVj1&4#`cahaK}WYZ}Wo*X+DQ=mt1zuXRf;a8z;pK-U1euOwcyz>^O2HoIYo)a(+}xx{g&8~*rxMO)p7GpjPaWqprL2|oC?$wMt?Ow428{k -klBuvvExs(+&9@Dc|; -CtEUf&0twwW*g`-~1nT#M=II8gv5vdf?K?{IikY|6ubjPl5B?woFksh4(i@+)VvEr1bN1TIGp -ITF_%t?_YUKr5C2mGbZ^Q?6pm8h&-C&YU>Bgz9Tsj?nPWX^`53d#=5AdcR|nA0m`7Qr)dFV-ZQpo@_ -m*0egJ82(WV_6g#Ndt@5TH1+Ek>^8Z-eTH*L&+h)g?+FGC+t5ZzeE2fW;$wy2&* -$QR^{{VRG`+Eg=u)l8`^0gKU8OQ$dva*xEf_|DLI430@kG+;B+6VEQB>VQ%co_Vg2z~B)@!{uV<6NV@ -x<*?m+GDYonLgZSGs4#N);NW*egmELZ<=WTJ!1SWO~wnpug?+f*+NL41;(@8IZM=b+C=dOboL{{7Oq| -tyaQ=F@Y|1AqX+gF_ND#1n$#D?GEM*cgRcYj3CQqq{C48o&49}*;Z-5sdc^%-#PiSbgP&9)65^gdJnz -@W(q)Hyj>nj>_kDQZgx~FR;xriBPpIYvu}+^i>*P%n#fl!2Ee-q|Y6$o+@M^nsFxwh3my$&DRmK90|Zyqiv3#P#bs~TC=>(|7A6(g?RF1B~z)~q>)IER -910yC;J%gRmxzn|)(^pGH>;$cLDPq^; -rZk$Mu6);`SVr5zy}|BQ5(>y5DQ(A8~e -p+HTQhFC&NTVH`#qG}=1EO0g=MypE`u46?=<1I3poSLi6y&CpB1NV-W6IT~G9|@ryuF}$n=z~^g7~$r -MqM^rNm#bVx*rmDB`1}x_m+yn$2^yj9BV$A4zj@fMW)U|+b*H({(6p*;g9R8&mpnD#tMhL@fO`I`-7lYo?<_c5BZ5Z`< -e2=zp6Q^&$?b`UtJtl492Ty8#4aP?zm&TT>a1@S4L!0iukxk%O0u#-=zM~96|PPx<+2=?Sn6pPyc1I5 -uu(c>bD06z!xvRNxuedm%dq%=6qJ>J!B6Krm4L7mhXLtSw_?B8=GbjG0PC_%>evTcdP5!LFB2@T+ceS -v}avEGB%&{W-xg&xhjAw7r -UtABWoF#IY~r|G@k|6qX?~j#9(;^#QEaTD51JX6F>-&e#O((O`b*|rt?Dmi-%|ODdl3iH*Y85x_G -qs41-htnUT1{amfbzxwraHJa|z^@uM1Yu=js-h?3q(@Wo#J+|DUl&-LjQux;rgD+B -gn%AWdLGu`#K&j0YVTSNM^r9~fh-s()BUE4XYcaKkVo?%Q@o!Rqi`Ye82U2x6^_0lCf9EYyUMBZyZxc -?p}@&uyM?uCHkXM4u-HtKFK%4Yf^yz@R_oZOyK) -s|l&j#slxWlK-og!`v6^jp(WhaISc3;5H%WfA``Z@Q-jWwZQS0qXX(Sj=B)9G|m06S98lc -xy?HDnz*b7%^S>j17$Dtos?sJuT&+!d7&1B3dpTNnnByiU%oQ? -ETN@f>4g!YYy(Z130N<=RPu;o_v?E?spdInA!aeFMX-9idl|YvU&}Ba8vJSR*m6ox-UhCMS#<9LXcJB -Dx_;}VOn=Lf(w?@|x=f2KSedt5b&u(q{u})ptP*;<&vqYQTHn^ywtSVC+zp$J-Ks4T=1@<^ojquU*7V -3(1hn%8rxJ~O~z7E~FzH*APDKlFgLD->E5X>rFAjtCo3(9!e2)y>4}1$oniKJm3(;y^{>-Pv=A4P -y38W;WBSqzb!39TjaYC-Cge(UP{|{H~a}F;+3LFVj6YBA?k(`6%oo-{kBQL$+fVx^pEhalkMt(3h5)W -y{IviX(9T>ESKXd=V5p9Wm(yw6qLjFr;x^G2o(-CI=;`aXrHZ;UwshaWf*yl5x3AZs=rEUbaH;#lu*alriZ*j&z4Vt_YC`aB{|$ -Nm1-~b2=C^esUvnjBiMn^X)O{iD2Q!UuXQtAb`yg+F>3Ggi&+OY+?+}^I@YPO_MC%5DN3)i`z8^Bodh -{|c`<4Lf$4=uu>i;y3OfN(l=*ZMOym+$m&v`+avM>^k{Y -edGbLr`;8sDG_?>DOYc@60jX$1U%mC)+P4@ta3|F*62kk?Q)nXUjgLW|u`cTqHqiju6 -c4i-F@63nK$?uv=+8L)!evkCRR=U80LB_GOjEHuqs7>S;kvx>idGnK`&uxSQTK*Cj-WO~9iEjE`*{;! -;?YUUY#(qJ{WTIaavrqZvoWxi?v*?evaC~uW9F)%Yd*kon%gT8-PVGZMk8logTp^k*auVqVUCS7?JC< -+5EamSf+NnIi>YX9m>B7~@&Ymb$F)i$uHtLJW=Y9umxvvN5WAA1EQHpqqZTu^CaX_ZiQi8EGh$VM29s -6wAPdAf&R8!!e;Qo>(`-^0H`pB_7oU0@KV~(-2uST?F`R^0qi+IO5C(amtW6O~~Pp+I>kRAG7wh4Qm@ -=3rCU%upv>N_20zpeg1eHu;1^Urw?IYwz9=SEEzVUJxb1$XNVk!i1%S6 -i#xIbub#XBd^Dmu3AZ36UOwT?Q1BAtjW0bTMEsJ -CpIK$*ROmAr4vDb>*er`kJYau*_bhML8>vuA3ZQjF>!zfAaoow&x#>j&n -Z^`?VPHeh9u@uP$TnFyc?*nZ=kd*0#v=kJ{82H`;6a!2QOz**<;>IzD2_n}dAxV=2c>d#lWoX-X=-g+U9Ll9HX2N&6^ji2VCCe=|=mD) -_-w|vqIfXp2auBb#vmcuHaD3tQk&2UjT58+)c?Ze-m^j}#k1t}=LvujiOQ7w5oXaHke+aah0ou4g8~^ -?H4ZA@b#-Q^H+>fBWov6ldD`@0N6^%>a(~!n~8N26%$TJuGG}6&W8iL+_(BY$+tF2QEFTEYSZb97EHR -;7YA69dZOg>KaJuKt&962wxK80hB(|nr9* -M+lfF5s*ACOIL(-$?j&)ki@2D!})Hy7Sxy`a&^YOi!uhSiUwTddxL887bfPJVHZOLHB|*K*p}z9zEsBlmxQbpF7lwKnk3uKH==KTOVVIT6A&y6FSQ&YN= -wpU710WSD(lk{@{?`uvFdx@NfKSTFrJUlI7?8>wz{HY!f}y>P}O1=EelJkX -5qA}HfwysO5$a+_k$R!W*LM%HI@apZu-yMLT7=_Q24& -PxAX|JyEww=K>jW$bH_IHxz2!6>Sj7EMsOKu8Cib==)9~eKF2}vp=y@Mc8%CFeSrHa=&%a>^@{Xk -PT&Nc8}y<5b!ghqYY#oVhxj87Jny!9S{MP5T?K!AT8seIt`bhIh_#8RRGx$(o5B&l5#|<) -1ZcpiQGmpq=*(2wPo9kk}eMRZd9p?3(0=51o+5936{1(oZ6L%G;e(X()IV^%7(^_h#ffnC6%(0EUP|TivY_4d3W}9c&&A$9E*oQl7{-*SxK5OfD3ul#ncM*P-vr3(rv$HyDW| -j6H_O(^R*3pmkL_}G6u4r5f+&cl&qvZ@0fc~uOhJyG!sl+)m$^0kcpG}#t;C)g007?e)U=w?<(ErGl@ -ydZhEy#INtL2=R?9g8osBw$&{RvjO{U|mM*LTouG_D2g-@~8tYDynJz`jUL^?@eh%yAC(!LweZ@j>Xy -X=qnd@f$pRWB4F^`}u&EXG;zC-nVJE3VbI2cSfVTd+u924FBsuyQW~Y7ARZ!d+7fGiyDdVybvCUVP6N;L3(_9>7HHB?krGt>j-I6RjoCjg=hNGVmr7WNZVWdg7F&b%=r` -@a5>qcs1^iye|!q$#Pw5iBDA2@N`z~3**Se{+-JlB^@ -wkY$zfXrV&o9vz}5GPI@+6x{9PRX&MC6lC&l%wLJint%k?_NzT8U408{_Q|EVsEq&u1gK*dB`DKXse*)trVJ-|=LK#s>2BslW_PYdPURH90Kczx~1^+J`w7dnq+SogL*^+@+g2 -mU_TX+hC@x$G4y0TP)p0Go4?JEpc6poZpn)D#vPeETv9CI?n6d%sFDHXPJx_l)b5kE&5)8g3)#5rd^> -tW9P|r-r<4!8iuP2W;`+{KMr)!}|u@hhT&94~d`w+2Z^z;`02JXh{#g{~ -PG?(wnJ~WOhi(rrCBy5B(-j{Qc_j?-R$}+4p~5t;P4%fj^})<8j2#RlIp3aqRf~m1sBTxO85L7IV%J$ -|~_$@|{OJ-n&c$3sAquknbVzvykhlY%Mjz_;wJw=oEC8oXZUz^O38RpYb%_)7RLGJU-;*^=Ib3058Sj -KTABW<~?eNZFCt2x-2-*@9)vo`XGHuOU>aZ=XHq)=S@XtuwF*kI$kmw?XYnmB@F$*E8xn^%jzD!I8SpN% -XyS0#oYKtuN$@xi27OZWz19qznv<|VXOLHG9M?4|pcI53ij5w09AmV91^g~0IniKBTa#r}W#8@3sn{574o -F=Suj2|(b&Jew4)0_)q<;P3;Gt1mbGQhn6fe~{YXVp{#kZ52d&1JBGeAmL<4H~|UA>Em2a&PgI1Kj08Q&sAcpN4Pmw5HT{l*n-^#|ZMM*`%^~ev -nWdcPR5@AYC72c~w+h&GF|fwiJ+kZT7R57&w=*yrH -D$Mgv2whl(^UD5R-96gdU99@<=9JOgp(Or11)ytx{Ax*6wd2_CaoIma8iau=*|EI3zJ$?mx9DeE&;Bj -D+U6gRH3;P5(U-fBicxlJs#d0mnEa3Vvo9NC#JhcgSmh*&ZXJhFN`2Ppjc}x3hD>Eb6zx!nd}S?`S(4SxzRQoxIT&(`0M+OdT7^y2JJkERXL -m!KcB6|@g%qq@3gx*U(Kj4U2*KFPSGS)X!lJKM8f89^L6gm-exb+S3$@HO~09CO>EaFX-kT9E%osN+{ -s^vEt7wz5X}8?RezjG_YEF -R{w#)S;ZRMHSoNMY{$N4aJbADhyZ|4ZXOj@>vNVx_ZGge#%9* -$?k?9-dMCd3|O-Y=!rb$V{6pvYTHKjbEbO%*{x1%@&#S@y>ab5lPcTnG4qO@^KkmJnXd?bDm%{rG?C;TBa?U+ -*H@^j4ChqS>=M0n18Av}#;++w?4KcI@_scyN+;20-Jmx!pzNg{ylON$62ruw*1OHoa?J(&b$ekqdzuK -gCdIG%%fOpsbfZoJ0!!;gvE8fEPE_j2k5^r2POuEPLCf#o_=^jWzcj~Rqcc6Q+{xbTXTw_lAvJ`l8&l -9%syU~`ohC}TMkr&$J6z!Z#!?^|YQP>aHtmmvBx}xT`z2o|&|4w-y7PTzzvwuo?3GsgO8d25?JLtX2= -<vTh!Eq2d)0iE=bZhMgRUZ@t05%1vhn?H_{XaYMUe5ovkLN^A|kFEj7WnU{?=U1V>cqJD@AZ6 -?m6b@h3)AS&ZSPxv&hF-05)jd8o53olsK;M<-F7f=uh^P`4HFLqV<%~=N^QwM}M$fOPBtib5>93py~g -m*X2yUn6z)?rBdGaM5A?HHNLg}>de3%e{N -4H{~XyP{K&u+5*3>#+W|}-(m}3$(VS;`Ju`2 --S}ScMVtLe0={?t#qb>)kNcNYvfs4ZKS{0+J8)B8+=u+_Tgr!gfbrhO8#vb^vtgq>T<#K$eUs!k*#4Y -Dj$m_*2sd9N!fQAV4_>eH8Q})t7D^vpx*_FIS)kP%qi)c+X0k5ufU(QfDvr;e{=mtHvqaF}upYeSlt;;sHxsn_L{`|)W)?YS_^T+7lMi59O$*= -rs}`+YPscvGrq|DY-(tNFo{BL9P_Ma{Za)?A~N6`Q`z3qrJifMcXxs&9Yw3AL{46NrzB7<*@dMmF~`m -&4fU)7)(<3Pf;ymWXUa{B_jM2_^bX!M)-^^eZ@LFyR{}`KREIHD+BLEe!i0%m!FTA@^fDj`DsZaKdUG|uDJXxhy1Mng3;uByQ9Vrd2n -5?WT=;V4)WuMd~ApO+|tk>TAl%I>-ZTua7eGtC -V+_nLACHX-<%t%UAxqGSmELl9}I&xXjEm*FO!6%8b#}@CDJt`=gW@*La!H&W)ED?Tzs=^MolgPWz!UP -b+8xAC2o^1+Pz{F3@M518P05=a3p#b6(4JL$eogoLb$_S>zhM7mHFx?`JNujoy0}xvo`n=j7Ps-x*E+ -H_J=(GpKVYALVwjaENl6BIz2TjbHJr)m!~qW>!qsu^%a>pXNZ;BoAO4Rl613@22EbPP{!eU6$>sCfS} -cqid5u@AB!IoUg*QFM;%FO9!b}uNL87u%93Nh8*RTmuYg`l4<;D)0Vn4mF7Pz<$cmDua5X$XN0}5)8$ -=SoqJLBlzH&XK1eTp=yVa`I=t%vvl`bAan2{>(d -$H*^W})g5?<4lzp(13YMzakb8e2RJ$IICYQFKRU#Yoq^4oEhZXLdPA-8V8V_BT*U$t6WDeVvB!f6+E4 -R-Ny@4VhUoi?$gNK@^s6S#1!sQf9j4#zbait3XLLB=#KH7D7>Xs%@&t?N@`>$=_K -7soqY*Tv^}#^w!cQ?})6mhoH{ -wSI3zs%a+KCEH?Qg~Jx7p-+shkFU_j0Zx=PGN{7x|Hn`v-9BPL6{>J}%&1H`mL$@a)I;hQidMVbf0hA -G_&Cr6JzXE6S?UM9BugmFwLQYjVz+$0f=FnfBUF?vXJ)MV8m;P`uqB#1g+ljrRu}8rRbnJMGYU%S73H -iTIfMA6lkv-H#xL%5`(%8p@V>^R`6OYc0Uenhw$6Pk^kPU8C4<1lnF8D!ib@Zz*5sZL2OW^_$t^X -EMVx6ZHG?D$rWcOte^?{j_h)%m -{8fmo09&9KQa5{{KHejLr8qVju@KgQcXfR=vPN3S-#RPqjaj-rlgbc4B<0&I@3PGNiThW*F(B8ohy3sZV{OU*E^X-(mbS!oD6zJbY -H3UD@6wji|BP*^&1UYoV74VM+R}QqC7WzZVYg~aO@6a2`4igGdP`gKTicRNG;z-F2GC~kt&W-i+7ZW5 -_sRY_h4TVao-%MnJ6y?hF3sis2xPX4ZOEqDkhjUVwZm*f9f@ryO$7OUx!H!^w7F#)YBt+YiI!(+L%E~ -!{1E*A&A4)WJKmP^eBA%5+x|}NC|9;4=G*vIydB;Aj_pX5%RG0zHMSi!42<7Hj552`l;y1nvdriA`n# -MY{bcic=^bEM%TH`eTg|qRn8(_d63e$)-erm80b^JF8ZB5KQDgdE=369V?gO#@a{o1|zudLOv68V~1JZjPl@aKcb6&2MKz%2o>AkJ -1-d+uOXS2l!%06JXz_bG1odsMFtmQ0lhGEBR -=zY^TsgY^Q#_=NR^C@UQ-TM&uR9)+nuJD_Y4p1ZJM?mbBeSyAIbC@Ufc_$Hmfd-uk-tao^w>lK%YepJ -)2}UxDAnwUxT^_d&Cz&1KqX-u07OYStsxay8A$isc=&xkKxz>rL74YVKoxQzp3Qj&+Wd^xp-~4jMbp> -RsgnGJA%4_}%0K>E5e+{BrpJBl6*n%f~0*MLrmRj?(H~ry7R(@X%ekX(PZ+)pWpouc2GvhMCdRgU -U+`cGD;+_)Z*#ccUDpLt%S@rg2)axHmf0ifX4ahIcy?{7@KKEMGD|)jiBM$k*0r9TxY6+)vY*`F1*@8 -M!=B)CZgZRXX{}$9|Y#k0K88=V5ULmv&xL&epzK;X9RSQI;ce1Ffp2EJv&}iS`=EEWw(2ejC_+l>jaD -LRA^6Wx=8&KaO(6$8aRK~^TyOP#brHk>*yrdKJ-)`ntG(-OJJldKIIP+wjJ5-I6?wlRhQCvU_O@N;+TPq_)PG!)C}j)!NA4GaHdVp>XOV{b -tMgKH_g5g>5|5@CS}b;m)=Q+jHYoiueU5Xn`5KK-0*Z -%9nvX;{IL-wsQ}nL%G2KzAeU;c6V!p@S_gH}_*1$6EO-UDY4BeHu#I1Y+{MQi)^BarGB^5DcJ0ZA-_xPxu5Y^%t^4 -8xb*9~O!=6^}GrByQYlwR{RjoG4DEC!D$#gY%Z!^chs&LQ#W`Q(3-_x3gaH?ErD=4?xB_i?}IBC$aX+ -oV#;@8yo1}#31=Kn(ZO=HS;jV*t)zlrlw!1vo<=6>m>|6Ws3#(gr`zB&H&5w2TB`{x|$$KJ>D7F$k4Z -6ZwHi))X$Z~09#MEhQi`==V=HQ-aM--F-TCvpSVmDj}gq2c;qw^={GPlVauvj*RpZ#BwVYmN^sG51KJ -k68j7FY*iuOMgb{?{2g!k2ZBEcj4|moI| -weRCM>Vx{?K#mfKbh-pgl~`Rp>E0W&ZXE#dhAjJITcpetpc8_Ma@ooNknPQ`nl-}L9I$D@~29D -m7rBwxojY_9jZFnSi2JruDyLYHkRp{1#!`vCM7b=UJLYJW$Ll4}q_nMDT~|? -1G$=X1V`mDR<*2Essp(&-l)xZd`M75qPj4iE}MyvtRU-5#c%^zN;!&M*F*z>%A)E`ld?GHC#g7efq2# -i!sxa`pkLrT-N6Py -}+0#Ot3|9=X& -xYQ=YALU~{^~{|9eQ;+|~|eq5whh;Gm>a^Xs}o8uKlYW-ZO*e1FM@$A)lnmBd?Co{+~C9jqv=kYFqZ& -P8Ou{G!Q=x!&OOt(Z+p&|eb|XR=f>s&|3RJSPW3dMvAGiVWOp4qm=chCtFTYVxpm7{&qcLvP0c&b3H^Si+MB!K -%f|3)+^0xab}-+?yv4|tM|Te=tS7w -yxS-Q0+%KL}>(Vx;I8(0mysDpj|K<*@mFFmlCXOHWQjh(U5$VyyfroXYX*t)FUE;ilG&S$xF44%f7*( -wzlX2U_*BD!UQMKlr^E+bo1n;uQdo91E<_|N~9!r;mD0vPzRXG$+KTT8Xm~Tct?!RA!sS2G;% -nhPc}}f`<6IqQr1_)^?SOMn^IJRia1UCKm~t+_IVji3am=AxxSsc=&wYFH$PFj=_K)rp6x_u9^uGS}8 -tUBNne$;!LLNK6|40pelTDS1hg|E-xk@dHzZ9DR~yW -qVxH4YJD=x-C?PJ9j@m&XHj4EOc!wAeuC6}^_AlIsmW>`wFh{AqCfe%A -QT({VIb)MHa@R*8k&ZLc9t7P3zknkCUM57&nf#^#C`usnbtoGgcBm0icJ+v7Eh2|Ms=U-)Pt#W89J&= -)V$cG>Ix3q4b(SUot^W(lnbFP3tSOPgLuC$Bel~>dm&z5~{cW^GeAG(5V;|7Zi|JPZzjs01%wSzn_jO -~PH`PfC`{`}+5;)FsKQ>`g#%>4fO(O31^uyMZjv1ii&}1Xx|0lUG{sG0~Jb8A}4}go8b -4(C3Pdzj>xEFDmN7x&=7jOD3@ei`zwiq~Z~Ve7+Ft}+>4)8OR;~A -Zr#(HN=AM(HWvA2i%RS9D=g@Z3zuRl-T{Z4LJrwSX?p{0+9h0{6?dZ7m+tAN)zh|~(m)KU5);#l(Gsr -)fEy8F1P3yW0m|RcY<`&(=GnPM1=1*If5C8PDS?ntn#h2V%6S#D!Qk^H`TeWQIkj*9PRznAzdeAtzP3 -?Wt%`-~TcDtYXU37POW-x}T4q=CJmnq^CcMAB65ZWDnfu92^&Nzr -$#;li!#=#U{c!#j^rO3%r?SjkS4>NlXBZkxh8sH3*dbZb>lb0+Q;um7012uoH$WN`jVb*&E0l -pGJJ@O(F1+9nV~Ome~cu&TMjy`bjNl2eVjWSTi314S`=H?&9)tXKYNjNy*KxLcfyVf@P3229`a?#-)Y -F7qN=VMGq#dN5C%W32CSC|{FvH@y|&_$9@!bLPH)S)aiB&q9VilOiHH4kO%AC>mQK -@73^G=U3=*tgjp}ilhxr8`{UR5cgEO#k9|4sXcLfA-7x~d(@@&TW&$zvE97q+Q@42o@+^5=KTd*p0B` -xx=d-QDaMcE0=>9CKSlYgeq1->$GD~n*E;;zP6D{LPf_bfkEU44OR4%F_!d07XO*VT6EgP**&$|&$ -k;e{^c=WxFet;ZJw#$QGF92VG5eHQ_a(9V6NKpo%rs|9O*P;(Xs#8`tB>w+YVK!MIk9zt$;YvVWj}>2 -1iy&qkDT!0dck7XKLZ`iGt9Ur(p1hh%j+qXeGc5mSQm|#rgqHus9oBo9H&k7)4BkI=h6kz4?Zrv-cuG!5B(S{L7LrfLsxB6Ya|Z7Pc&+Dv|1nV0*sa5Z}(@-`dRBvf4>Fg=G!53(;emBYAQw@_kBOU-HvZBfi7P2J?Syg*w)znm*3vWy?fW_vR`s%rMc$S={mfp9Pha| -S<&b8M+PS6hd3Tkgy;MW(Z+M7pG#M|m^L7iuJ%T<#(nX9m}2qysPF09k|v5fQ`EZfLD2t8&bVE<>NOR -cBRXW~fv^XA -`IbQPL$`wvWelmmZly>rZ3{1Zn|FUIfJ0+(%*^4bXVw2U8er2U$%&gGSJ=6T)=+wEqTkb9tU9q}2?Z* -z$-=eWkth06*3YNqP*I?w(T_@G^qemNn2|7N=E56q!&>f+w9)H|?m0oLzJ#&8k%+Z&A@U|9`-%{KE7F&qLP+zG=vHaV(4bF8^${XwUS-_eJGiUg@Ua_W`x1`+?a0Uewj%DG_P;rjT -PbEblr~=0BMJPWyaW$`8fMCx5S-pzJ%6mHi~j4#mr!ZI(SVN!b(lPa*1;Gmr_&6zBJ{Kc~pCeUI$-iO -svjm3vTgUqATA!C$1AeFNb8n>-gDFt$S$2&ciC55DMBq%Xgy_Iyz1&QA^fXPUV;1$;`?|1~xAcXrgzC -Q4q=mAq1y4_@tw_V`CE;S8NhQ~ZbTdw_NRU7F(eZ_?C0tGxe}<;?9wKO$NG+4)!4e>M@F -xCc;9i0dgjO**Z2wC&;k3}gGz(#>-VMevIbcUwS{`{+s9)#F{jq}^hNq8;H5fOgL7MYj8TQJbt^j_{T -u?<$jy6($|GB%$NpKSp;a(s4J^wWmyNdnE}ScO=m9izXc(w$SnK|C@B&C+RrWPjWtGM6!h;_bTBUzgm -rYc`Pn>C*abMrur-{E{> -kL&uT4mQbpmeBC&BCSSqi2L_U&0*tM)k%Ylw5y1KHa4Jq@~1#`Rb1hb)4>u^IAOZu&Ib$Ke8enLeA#* -9u){sQ!;2e{XP2R;!w8>7QfB{R{$-!FN2j-qKDei(Zj?%r%?)UN1X&P}hdueCXjll%vm}?g$Kbbem@` -4J4eo#PWG|yB1BpS46UXpBbxizi0COtAM=)uwNKG&q>7FQ|*A~S#$&#uLtCL103s>=W0JkzkdaM{-c~%66QWfZdt -c#8BZMB!`LC9`u|4Hr8MoNJeN}1gn|?~x0n0Ox2m(+&x+QR;JrHiBUK*YbG&B<&z0WJGvq5Wf?tfvai -JZWHc7qf&j|iK-=)O!$n!W)Im!ZVL#{1!X`(E#FW+uc=bQl6G>)mo&TNaFOQZbEAB^t%d+P7?qBS;!& -tLNVH2OM=c`n6TIq$n{U@CmXT6Hem;9Of5&kN-`$-&2LMW;83;Hk&p&%v+jyIBOA*dIJq&Ur3o-}2}= -seq}Q=Qt+J8}@xcohQ)PM<39Z72-MRt{)m(uMR`pT7m}hV7dw)EiwJk__3&- -PSuDvqPPOWK;t;I5*A28Qr@%w#de^sm<{Di(yI35SD=XpVB4~zj_S0CHsLp=PjS${Qsvn4e0jde^enmFH{WQ?=Xq!baA=ymk>_`oi;BipdEUYF -Mci+jZL$k6o}HKaNYyK%Or8U0expn?My{GJviO{0`4-Ew3VA*)&xYC|$0OIv`+yt+YK9KkF80=V@ypi -&Gm^(`w$OoWr6-?uiS~nNTcl4;>-*6TazYS-=eX~0ppg1q+32I&+&pJJ!q}1hpoj2G8?zu^o;e%g{>X -BVVd&Z)yQpiAjMLYW2j?6?sfSEHD88vSaT;x#vd?~hj!guRj_ZR5{zWhPx!gx_{CTBpw|7hy?at0+;p -IqMBv1%EM`UobUIYQR9)`r$+6X&Dkko=l(ot%%W2B8TT9{jy8&aw6*y}43G*y+>$s1EpP3R&X7>{3ZIrvrc*2~E -!Fd<;uK0Pw6YpO<7R~|_PLl=BtrNl-KfnJH^wI$2B?Ee4LAvPvCFqxKLwqdfQ>H)L`&=I#UpkBb -U%ZS`+-hTwwm$ZzbeLRy@%R81mvTPUR@SMwNIpJ;Hwa2Apf6HxeIq^~WO$YVtp}F9zZl1Bu81j}?UNIotWpJ&IhVeXH--rNJ8`;Yz_Ht80W -+hFpu0sQ -Z7=z8#;Fng7s6}dV#_mBH=fwpp9A@>kdeKOKEOf=@#Pg+6F>CdrGKc;V~*ZQDurGH}TwgLDl^k?Y5RG -B(%meg@^zSNuamis3-<^H%*|L#-vY`+tDIrBxA)2VQ?&ZihHH&yRCb!2S0au3q?$NeXkJ#>X-|2XCk? -02@hgGYHD+Bth9wjYZn#*%gXrHZSbqp$ixRILk6b{^r^-X8nSs=rxQwx-7S1_spL=Sw_F_k7K~re9X? -UmS_UNp_AKX>jl~^y@59JJEUKCxP#}D>v{=^Z@(ys-SmcXP$F?Up>A(51ay(Q{-8Jl#}jM_;YynU$Kw -QX&R&dEcGG$`ZG5~{snoO&)6gK`L!D&kMa36^BKN)2cO+SJx?+skMMa?e9ly|`q76I6*GdGum>NXqxL -JA=={e4_`Q;k7jKSKL06@wsX4+aYFuL!&XFW=to7kM&Fpl<3V`vt+N=I-ES6!Lxk&cyrWsW+>k!59gWZb>qSyU0O63!(&W4a!BZi6iKh -$&0+HL;`z@10_QO*vwpE^|*->HmrSS#O!+T5rp9P!h*)erVcGEkxgl=QVtm>+DdsW5D;9I?rGd;WYzt -?M%*BxbJ{ltmIgQ6S|K2f^G5%__s}54~}wPn+$uIDuTtfp0c~42VaHm>P7q5K1bBLf7P({Sut(N6R?4Qbf%9nm+9D@EgK=;v2$&QPGz+)H -kr>W2s%7AxtS1|HPadvl&t;QweV<@nf@`1`=`#LDW}oM`qZYArR~1L8|4vkhf)9rAjVZQYZEaTdpEoJ -hODA&wsa?!@np-1CI{{cxXdq}d8ul8#eA#|@y9+yezLH=Ffw>S_%K^RxVqnsW)2CBA8bi5$HezH+#iQ~uX3Iu_nVM)&5?Uj -UT@a*g+D}h|3aI#l=EAfbP-85$E5+jMuSlOQyf2`oGz4ed-8ldAFs;XtA4;Hir;T(Kc5w1DP%26?$Zh -QyEW&M_XdBz9Fu;JX|uRK_G4&UZ`$%!Of*j?F&}(0Ilhr}ylaB?$37+c5O1RWZ86*5kS5w+(B=3*cpG -T>X-(vOl{zs=`}+xe@~ZobfUF%P!!8nD0w -gQdXNQ%Nlv^bMv|~^}e!f<$U@6Lyc=4eE%Wy{fAa^{zUV(>lz=klRnp(^to=ONBT$GBn^+ipR986-no -7o+b!Pvb>|9>jl14fX&z%NKBCePh7<2OXT*8sADLFo38k*!{7e0z8lJaNeOmEIrU$= -8o7gIOXe@JWtkW@@Q%68Q(6@c-EN+|NHONoGqja*5W(!F+KOtc`<9d)RVW5>d6Hda&dzbo@igC;N8)zwZV|V0TVdy>TI}4{Ca`nk;ZJPmlBAV(?&Gj?muyofv~!91XrCvtbM(*CD&_ -<^|K*kkjFW+L51e#0tbfKMT=MS9AY|aO{8gQSs4=?Q%@pCc@&9e)qj@+~h -aqs?8Ej2hj*Vs9e>zwZY>~PWCnX<3_+3*QD_N=F@8 -4B>Mxq&GbL8z^Hvi_80Dy=L&m_NOHeu+&&@lEKtTHKRvD1C2^kQH!W}plXF@8at)ChdpK>&m17UFGd% -lXAN&bxj5YzrIqtp2Gd%#eXCzwJ0J`-~u>Oi?Ms<2xYSw{1RhrYyGcptR2zl7-|Nq(Oc_0&?bA6d-hB -q6dJR-lyC-Q;ivED^<(;oRyt`Rw9&c)){yY$Pvz`?1_S;V%$`*j|9zL)!}y57eA^$tC6=pxrP;I{@gs -0(?^8$@Fd>_}&d2$q)!xnEF&F3K))+?ewswLE#YiuB>la;i1irz6jo=6t?fEw_z%IQNM8{N_2!qh~DF -iXg{WIIoEFjY((D)8Y7)lk*JBy0KnPS4$0LZI$L+$FYSo%X-RI6{)`MP8n~AG9{B~kN5^f8TXJFSf+5 -R*Xu6Jb!bSJF5`AN{<5>rHp91%<7G(4a+sELaEU*kV{kd%dk{2Qb}3qy#x@@-N3Q?7c4?L7k>eDkZQLU{Q7w&!e3w&!e6BNcAf{WkqSA`H}p#Z0=oyHs2tIm!1dT$iHKpzpFWdMYBc -i)$GeZI#^nyiIN7q>&OKCc7FWwWAyW`tSaSx5#FN%oOe}xH|KyNO&9W|ArIh`+yvZW>!jGP%l(=CoY$ -(Q%QaG)Dz9#198d+?xm@PD5AgXT;OBbIId#E5M>^u)0DZ&p2U!R3w0V)&UYV=EWo-=eNFlpTj&DqP@T0@4w$4^O>1*_H*sM*IsMywZ4nSdR6gdz1V~NNA=c`Yug-+u -0I9oO)wb@H0le7AyusN7~{eS+xeoEiZjD3A*Ozf4%#)5kqaO0nijo8;?zu>;EFq{D<@1;DHu5!O#{`> -Te^UE2+rq7u=$oKu^$bJ9MA?*7V@-o -`mdbUaA(y7?isA2j=Ky`GZhilE%U1)j&k4ebQXA-e#8IqPAb>13%(V41O0v>xEJDX(D@H -~UZVHaJUek)=5!W7-_dWZOOjH2rBpu3dc~6LU_-{P9y-lvPIc=r;AsQ081((`Q -Lv!8`nS9u@mI&kr3DcuX?4dExnuyr3D+Pir370OR?Oh2)36H%We;_ZZ^lq&Wwsv#r}>^fvImnrS|F6< -T6O^ZA~%&WyXbF4K*`wuB*ukasDbKZ4c__G#sc}XnRGp77-do;mUHkwYw -8Hdq=V8<-_?a}981bzU{WBJ(rO092)Omu}BpgpqF1{@0Z-SSk@U)wBd-Im{Ow1basILPlHIq&LxDYqFsKdpO<{ -Q%8VgWse4bV=dyzNgc?X#Ac!3f%>^Ar2FJ20As#euW*xe>Sp=MgH>#dvL!6{|?vr>$jL5bd6T0sgF6c -rf=K0e)(u=DhsqzdW;X&6^~a=YwMOVEpP0>o~Szg=gBeXL%QD9>4VIJ`CmY7#@Jj*@|cC%ebuza@*hL -jqBi*-aE*P~c9eN@`4oJf=zl_aT$Mvo+ -CY*n>jXaZp)^RcO+m8+UEnao%_lOTIUa1srBE$3=bi1s~9SMErSv-o&3>yZ~_@@cRKuk2GjgJM3Uj-o -Vd8vg_{~wNGaPvuO&gW$NePsIVuUR9*-QUSu_EA|4HMyg!xE<8AV@ouxGV1+rgdHjD?feS-dAnK>A94d?(LE$>%b~L0p?bDYxsKy$ -F65Y-(3?$s?!)&QcMMz~klAj$v(Y>MDULJ220QI -#B%+CkHc&HYq&zr^p&d3(|4)E#l2bSjJ5w5)?@T~(gG4gK$-wA8+3`>1^jH7(DW7twH^CT-V>$aYQcp -N=xpi!(ig)aEnmWzTey>41p=xnz`dAJ{K+(zQR|Bm6wRQ(Kn#mYxB703foQV`RQz -$Bc?IIGaTQLxO{;6q^v7Fhx9z_NUwlhD}TNs_hxxdWO>c0w*xUPZF{)iT1 -0)))uO(vtHr3)L6C{|cI3J$?=@XnVB>^>$IczodF0=j4UeJMR0=b#?fl#2a<*FzGh_; -+;`{)cDXL`yTEg1ih~gpTC2mEh_1^8}zo^9HlMd&Opq^u=W&>x5sJlrRe@KUvPb`_;Psrn!Y@~z8d9; ->+6>D|M%Bdim|@3{%@?WDD$CP^zr2Q7<^gG2VjTk^DsBcJOq9*+K0Jl#P(Z|Cj7l3$Dj0#&Cc#w9>}+ -_mn|ud@!S~G*tc9Vjlfs)$c9H+;qzPeFdK#5w?mgFCu=vq)0DWM(dHD|`>`+P(H^~;_Wvre!9-mu--9h_)SfQOB;!23LRr_3dxEjGyaD3%2o7#H}&B;`aGM?d_9M5;%8|rhUz(WL%{t0s?k!~d! -dhZOl5)WRDm^P%1h+&W{`$anu34uyQle80s|nao$4_1XLd6WWT28AapQc;$cJ+o{C2#*aI`Z;Xm^wPz1(`@7as6GytFZs(g5!#Z>Hc4t$&fkm4g%aWnfKqoGWwcmpnJ!bjVe3ymiDMZXb -!C5)#E0J^@T}j6Yox**=lg;$Mk@7tFcj4DCL7(8`^E=&NL+^`2*ydj -k`oKStbf^yaoelobci$9K^RuK=!yj)u?lP(Db{ZQmY|Ck0n?w3qB2DZo&Ik9gTNj147kUru2)xw)4(b -c(yn!cHGS3slN7^rCfsVOU{uT6lD!n7Qv^|{#c5Psuor>hyv5R;-t<`O`7Xwoc{sY&Hp|7t_7&qh0lH -)TPeqOLuUMc*%a7L$Tat`baqWOAt^1CYz|?eGLzhP!=5=3_q#gH7&}3OtQbLq0n*c4m#ZB%$ -yx?mMfhC;b7&qtFFm5QARY$JpFSWRjNaAaEGZh^k1oe?KX3zw$z+zfP40Ml*ad{Azo1<)k8`YJlc2v- -bzZbj6BvZ!^~|$!jCUTdm)g8CmD|Gd`;bsSfKdBl@QF6qw?@=AUMAKxPseS$OQ -R;uE(O3L8bY(`o^Fvxo&(gEt{7VU&e>~10)v-ku{vR}7IgUhhIU(GB0REL`23s9|#sjSWPfZUO`*4=b -@y9Mx*TCl(@y-#Cr08LZ-#-`a(_=yYU8>8P$|@ID343$s{Tgt}XfFj1T$n{V5IsANXH;gQiFu}Q+w{i -rsSMaV!jJ1(`fQ-jb=-entshaQIFBe(VSkeA_=;5569XR(RtdbBF0+V5i!)irGkR>=B&iN}lSW8G -0I)vd6w%0J62ZshrodSJ-Gmhn50=v*S)1n#^TZr~JLhnl(@gBs+b1akUfHUUUNZ)ARqmpQsPvX9%4n20JV^FFagbkUTeh>D@RdU(_lrt3HX6NyV< -C5=@xc^%60?0}qQ+-S8Z5&7Q2ly?eEn*1}lUt;`OflCdap{k`E)3x*8l4y@xiu(=tmtGr -y-wtrmI6rT)jQjDJrm4OXqWRBg{xvLR0mvlNKd1i4etmRi+`m46bD%8xR_XIo9cLi+Uo5ZxOps2QM5j -jTkLjH7O){Me`X-SMkjMK|Ec}vG>dy}-FY5H439obP!50J{htC(yGrxoJyB|O19zCP)0DNmZxbJ*S4y -RkwrJkXe=^e?Cz}_0VRK(`BW;5Sm_>5h_;FJHfxj4-Oe56B%N&ea*e9B0c4FFHkXkS@};v1s>+1H8Z) -i^7wm+Fzv{IJ5mi3bM0L+j!2E}TJ2p225DSv$B7+{AN!UH<8e7w7oin|Pli{iJj`lFA&|C3m#z_pj(D -o(;{Q{yRj!+}!U?$uTokoOx5ffWIsJ0?pn<@HtDTIbWa#a?fxqfdHGQ2Id>T=c|Fsjo*1{V6O3d4)xp -koudZk7{9-)24)$*i>d#{@4@20Mf98dK8N_}!Oo7$xrcQ*m!4gz1%31)&vn3S8fgvSejIC}mgcyz9`O -A0*2Mc$+14$zCRTBblN2urm{D+CCg|0hBk{*cKz(cbV~c&zfw0G|Ju7r;;D-Q*61e%KZ}!2?1?gaaww -cmYX5_=^7nQ>4aL-Y?1I!MO_V?#A!?SlE5vX59B3`6PJXcmK2~_k -Aq0dh*#8wb=y>R-UeHNZRQtmNue)zeCnRUKn7IwI9ngh?8I -rd?F84F@i-~D&31^b2b_ig3biO}IK93KY!OOY=17&!Hy$Hf_JD|8~*ePlk<$YtB?pQ-`UM|ZCh_MgCB -tk2{;Uo9+&n`nza59^fDf!7{O7jeE&|7}LJFW@-UJdTb3LG`!5s|RMqj1xiG{&+j>|Z%FX6O%m6L#n^jeyIpO%?j)JQ}YGft~3iJ-qH)q+`YKcxS2)wmv2rJ5vnX4LeiEm{PY-= -6F}fer{LKbg)poWt;coeOk-O<3T#9^zA>a`&*<$;(z}!j9#m$4fk@)LskggUBqK!KAfX`NHRBUx;~;k -m~_y-52!AT6Kvs8_v;pcf6wi)&uMu^e?UWwaS8U>P#YY-RM&k*o3tME8mHN!>OMLXK2E6XqQv?>vggBzn${YLq@@Sz&FYf~P)EbZPC3y$S;1A8ub_( -~>TE(0JMm6rL12l&YT*NBQDDlqD?QQnEX)d`hXGt2ZAwSjoPzY^OblN;a|Gr$=Vx_KR6csbfY({>3b5w4t%Do}Mqyx$(0Zal|XB9}iM`oSE*U -caAsI&kB;-TA{mV$BDA;2Zo!4d1!9t(Hi9VJy=twwL%}rmbwbF6;X!y4fV0oIMyknY-ykmXOrKewZh* -?(x$oe-Zkf?R``a^?Pf_e^u7E;;p0^zrCEVfSTc<*gH53PWtM_IWSzUVA2xwI$F%%Al+i_piJqX|g=uG) -b;wjsmp(4ZbF9dMtX9Z+f(rRf}_*{j^U!70ct|)|J%GsHjbTywyzOfpS3myUomlIbfDDdQFO{7Z`fZ9 -qv|qyC`4#Gj6*pmK84FG4Ovd -+R${UA2!uUd#!ot87s$ln><}f$o~dv4|v67yh_|@O@8Me4fp+o66jKC8=Y}rI?YET)&i -PpHjR_=6|;pdv;?SOTv0PP3!Gp;>S26`0#ebrDD#*^nN|PckE_$Bk66e7@OgD+gjUY#5lF~mPpoS;H5 -ArrFn%e@T0k^SbJ2?2THnA+}GI*Unh>g7Y$c_f;}LQ<7LPXvXjcMbG_7NH_xH9Mg4KSoH -GJh6Zi_mKb$9(Sk6NbBjr1v1^Gq%dxBqZ-?}JquLhNPE_2-USFI&qhP@H(UDWp>>bq02H8<$7`AYP7) -UJql)N(BRqby#PzVCUJgI$1>X2W^Xf(RrR|pU4?Vk#-`l8w#-WNz1$=vSRdVOp5d}k`W(j7x5tE}pMvx&DXh?KPOv@|YbtXkcNLnXM5`;A6&6`Vd~g%%Ds*%U`#_xgNiocG$*YscXuJ2M_jxLN{W^7v!LOVDbm6h&@mC_SrY73|>h}$>*C+mUipQ{sm@%10?tVq}S*vcRugRcd~400OAbRn(hgT%YiY0P_Mb8ojS*3t=aCzeaRuJ9tU=W<)Vq9iu|OFM3U;5 -F{^Y_8n|+txHekA_2zf)5v|fiF?tjJkwhht2y9(k(eJr1zJM^TO#)5f?d_?vLk%-ZYtgupy)6P#?3Cm -}i*!)xb<614NgdjO&wyjZ#o&MI7jMAqy9h-tvs&B36L;w=#z9cT*XVXXe#AD!xj6`(MOQhNMi-6Xq$+ -m(|yf0$*iV$3YHaKPU8}KL7WL@6vjnOKJU-2YQ-Jc}yP%eX9;mvQ~fiXL0^;YPl44Hs$8{9Fq5IS3}N -9+vFs9rEJc-t*b~b*#NB9StKJaYO}*$`P(zt)<%Wp!Dh}yX(9VKDeaAvwk=D@G|=zhR}cI!=-8&LcUu -vA+$mW%EhkwE_7B=i!e^}~xong9_o9q4l3^f&HISS(LOL1g*~z$DaWE4<<6j8u8LHRMMxXx(_RK7X^M -F-MJTEz?J#XCAo?0H|9xcSK04&}VOqxKC@hN -y~6gjeVAMjY`b18+&${EZx-a6*_HT2l+b5t!9!HffJnsSY} -oe=h8R5}c<<4u^hq7}#q%kAp4HfRgC__?*^qC8gcFRjR|i>fWD7b-?=>&#Oeq8!z%6rL_cobUX14V48 -tXIEYUiqO|r6UB__a_st((8?Z>~Z;K?$h=IQwb}zlQ*w>@S56caiJH79S7+<*0Li{l3@ -XN7=&uf*he-Ml%ri8>2i*`?SQjaxa#6Q70M7+J}A$2{i*EJh{U3y)>2Sr`RSx(?Ru?Mlo`PsmZajOl7tF{HKO9;V)ii#I_3fg3 -Wgl6kyDy8)bo5YJi9eYn_W)4p_%^&++3Twl9}=1D$}7qyY-TU}d#^AljV@%08f<)5kn(q}s7(D;2&#y -sO^7@63!&EDT>f`6k9&~@Nawch`-PS>du&rhP=GwAljySIdllk=TmtXbn6I>I(0Xge}Lp#s?YO?@m -!kIz~%Ct(}bYzL2tV)mE@)xy$gXrI~QFw0!F4z_VdI8A0jHZ|4Z>@?I?2ecjkpJl3W@$-iD<*r%GhuC -d3Jl-c;hInlxAA3}ZpP>dG(a)nA^=}80M(z-2>f8na{|8zGuZm{>YQ$`WJf2H)#v2)zrSdvYE$=4sD}TZ{zke4gF^W(c9P| -Pi!NTS>AtH5KG1EjBHmkwF@}ZRLAa8_(W2>{sL?t;KwBgF-a%HgCYKYdTKbf{c#Z|Zo*ic`z(Ac%K2E -R^^=Xor+Rwa0d-H(&uC+@JvbJH7z^-K@YD(MRdxULZ(m?cmeF|JqmRj@7Z{UQ^tOUW|M*`R6E$Q^jCM -x0@A@cX^Inv(IZeDZ%>U}be%oH0cZ^b*SAHDivHSalj97Y#pFd?>>k};eRT}W>-m8?>KfB_AOG6oj -t)7cH+yW!78~)3?2F;Yn&LH&E$MHNQb&$%*w{Lq%1ofoQ?wV=JgkmRc9vq2rZ+!AWlX0}8}ObFjc@AcEVI81% -aqWTe&WzTdT7by>N%l);vqg!WDd#K!WDZROAOsh;&g7JFhe}*=tc-!T)ASN`WJ-K01Yr637>+JfTI(j -LkJ574HM(+^25WIiZXNK+aj&FFKQH=yepurUeme;SYL<5zOM8p&*=8&(>+WH -f!$FWZ_k__;)e7cqeTbWHdukWAPqbcE?7`(*I5br;cZAdclpimg|~xKHzLr~G%&^GtePy;JSLJ%bc0V -o;NezZFidHk3w_P^n139`-dHt(A0h(T}T>%m -Ovi-v?xH{$5QZiCiu(v_KJ7D{#HJCaEARm{p0L -s!<%7uY=cWXT9r2cquzh_DmF)(>-w3WKNsD#UlvnUv3f1 -F=HSuQSGAAjRFv_kt#2w{~cQ>@n`pM~QwoN5$D*Bz@-V*k%7ob@yDNcH~H=-bFO0c%K_$I{2MtLu`k( -kOj0|QsJN83Eppp^?#Bxe53z)=>Or6{zs+@?SD#?{wvh~g^Fh?{DS7fZim$kr2MFrpQrltv(*@2%dlM -hU%@d1y9y!Wq0eGn+Po))@0fET?cx4i#f2_z6Q1goXs(OBRM2mb=!Z4VW4D~v@?M*zc9@Ab&n4PuvX# -#@*jFf7Ngg#Zy?KR{-itMNXS(pY=66;h_v-HIc@y93-C@VrxC1IKKJtn%^a$|`BjB -?{XL|K6M^vdSe?#|=k>tdgqxfPf$NoYg9YjA5EY#z=F{Qzpt7!%<|6QxWza;7g!UpqqHn2J`+B?pr0= -1e#Sor1tO3gq$FG41A7~2p{j!5w6#j=LkQozT*`#=M~2*ln#w}oi=m!7qsgHtMkr%IJT!Zl7BnqEB|os&Cn+;>zEb#zOBN622(8!om~&z82F+piZaiHwo4+HZ49I&aG-oF}TQXv8M#GB$@7Zz -($Hw$xeqcUa-_7H3eQG88yJ#-8EoP%_$x!pDQwyhZT&B?4E4Sy--#+x?R4PU -V|8{#Z=iE}C~%;(z|z)xwcotZ?Xd=7EpT5lZKbRSUuAkq-9|&869TK1*#i<;$L@7WmI=d3RF%IHUexS -As{Oe!xd7OP8Cs#IUV*;XOTHkz5@3a94~+QQFEc7gq -(tJea{*&_To1?B7BDtq}@ny|r)pr$SuK*s&MGLZ5utLnsA!gFweN%rogTLdLhg4=+^%We?jmE+A6ph8 -BW59S|Ht02=6Y6q3EHHH;kGj^fWi^Ylo4-x6SLq7i_gu7~WQB@|2XaGCy9R{k9-}?bIQ~C2dxEXx_f2#7TBDR>3U*Y9Gj20%#REQ^;YO@S -R;o&4(dLkyaX834}2)vWVtRnk0bi#;XR}G8{zL5!r$JYa(Rq9*srAs{D#!)SYRkc=Y_{geNI}_z)$R^ -{WdiINxNi<=D2C&Ho~ -E25P2Vk$NTIgKI=|);oJ}V@#YlT0}WccEIdZtr#ZzJdw5%<=^oc5tYgm!tp)foDvj~V#bT}F-U#F2PR -=fj#L6-1`t}KKr@L7iywvlQChYi)bMkS0YKGu%`}Xp4b#7C3pN`RGOXe~0K22-N;uy)+xW>Ml*Q)*P> -#W<%)%Wcwl5DlAMaM}_)p3%EFSg01TGg!c#cr`bG+x6hz!w`$q$}%b`1xrZ^ED9fZm`q$m8_ojA72CU -@P;(uPt!(i`HtAff;?8?_xRjqd3!9&y_fF~spI>@AE+;Wh2##sY~1NdF(fO^Pz#4<5I>gTm#Y@~iSN# -p)IyR6YD+lQsI{zy`eLO|`_h_%TKI-YGZ(Zkb@I6Awb1X02WJxxhMt$h(^VG~jVX1&U}|5QQ?Qa~fc+ -tf+Kn_-RKKAQk`CaQ#`-pO$Pqu{k#w9<9&E^uh`?_i?cl7g+HKYuhRFQY5dz4#BCc%G& -R>y+iT!2N_|0}XzkVFtoj7eomYVLPhrd`{XWutYp74d#CO31-=scIq -2HKWt9P;-&>1*=;QQ#y-3yqfm)=cL8vEWzrnWezYy+LZzdPz(Yc|edYd|NDZbzReY|hJZXH!6ZIz0pS -NrwIriK{#w=f!EnjDSzq2}N;!xliz}nwhM^)a`6G->DYT{HwtnLTq}-7~Eg{{hBpSDb)g+W6suu_~aV -4%3t(;i`wAC9=JiANt7SZ&*$5}_Y=PN!zRl8@K1>Un#vq=L~PihN|Jfz^w^0PEpoJz-bg$LDs`&) -Uw?U13~*~WiYV+|Y-zcCgjU9PC2--e6<|M)C+aWY>6E2MEhGNk2oPK*{)$~R|&PtEs -J(d4QbCnNP9{{+Jo5jMtdN48tnmZ%vzJd?+np5oNxG3z7N~Lx__p8uN85wZy_9^89Lsl8@1^DLrwhm~|^q+V&* -31e>jns_7PuOE=X!_&O~JTCk#fLYv0`vvZ`jr_1#MtPz6e_t*TP_tK5Y&*Cha#$-o)V>x7TjL+SF5;D_X*nKD8a;D10Dt|{jwe -kryuqRHf_u)?OH)??P7#_n7?RrYbg0Fmn1-8bp-FzSZr5bpi$3SA8HwWencQaonIv~zH=N0rD#F@<%$Jq7bTt#>-n-_7G&*}Ntham#VW -Wa6+9DbZv2;~s}Eo;w*NpKJ%N2iw)LitE!hIS55G@Nb@%>A8GWAH((S<&s|4dXE=Aj^ybR%U-iO$_KYk!@6tsCSp5>lYQhR -p**PEq|9FE7i*15-uNRC_|FXBg{y!4Rr@~ON|TI+7A+bAz>E$aZizef9ekK9#{GxzYhoYre2dNoo#i1 -{8E5p&{RafeZkI3GA4Z?Xv4AnQ${UkuC3j;DPp&eUAOeR5+w4u#bf4La5gDjQov*Cnv{IzJLV5YPjHG -Ipxhazxmn;dlHIp(oh%GrC`WG*Ko$KN7@JiDoMs?c6*4Ro%ZVBCdD8up8-%yo+?n9PgxWSj55ZEO}HN -1qMzJkL^bDkA6QrBKX?s7}kmN{~?-VKgJ!C)Kx#Mn1zj+PTvyJkyF7B;skwnAU1H#LXMm88vng&G?Vh -*LFMeAH2dD5KGOWGrn$IrOyh0r68-kRGs)ThKVH#VzV(6Da^}1dm)NjVO!flDz&u|KIFr;snOXIXu+c -@32euvIasan|#J;EMc37c$8gz&f^HQIgxjBD^9ci|NSUwhCG@OzxCLXu>EnD#%4`KwmrwBhzl>I~asw -dO4o&3pY-YnzKJu9|Qlu-POqr?pEx%z@VK;Wvt?M;^L0 -*LO7kgf3d7{kjnWda0DRt9%7!u^t*}HQPoS5XTbQqSn>Rweq()9y%Ym`ftISBq`#vdv(j$#k6-rq)}4M?~L{`>`)F6X}xlAwIF+Ond@ZBzT`GnaYHo_`C3Xx7wJFvvY;M_~jRI9>(^c!P&PVu -Pb)1?tA1stHgNWJ8@izbAI*DS_^z{O5%x63O~QP9K=VUHfANc?S@Py?0A8@Y;#^Z#_yz^_fbCZR$%zQ -vrgU8PI8F3m~kKS%%-+h(&;-LY}zr%;-;&C4b4Vwq`vtNKJ?qEW7qayfp)ICqL;?ivx?~8e*AIHr@wV -f$T-m3+h5qmebiPhW*!6c@;H?Xna99Q%b{|FePfE(XlIu2GjpChC;UiDLU0}q!46WHq5DNmck1$*Qy(Rh~VXZlN($a7Mgb2;u1H!#nKFK8`i=i+Yr+K%u$oma=#iAB}zmm=^WEZ -td8yVVzX*Esn*@QTE&X&%df&>c&p<)aQMk^3^;DB{_7Zq)N_49Qp0^q*Wtxv^>a=wxY@H -bItU%W6qyWt-IiVw*+NFE}36IyF$O^DYzdF3cg=Gq~=-84>Fw{n3YWnW_i4O=YKvsW@lKn}W4QdGA5Y -i~GXg#p~~$$2%%V(f>>I?OHD|!BDOn*iqjjo)A#>pBbWen}G8n?>~*-KM=o9(C;eB^BKM$Qv(Y~?nGP -DiFWtxjPa}{KJ*UGd}Pp1_<}Xc;q5s*1p5^=Fi79-_5V5A10J}3`Dmk_hURGAU+CR|SnppNfTocQ_z?xWgp*8ValD{J5p1VE~vY>vJ` -j&B)3VmV=$paOnx4@45;URGjB>~@JvFx#mIQ3q<`}t6GY=qIliMS3pR|MWK__d8eze*V~Y)O+i&t=?} -w4cU)wWe{rh^@5uk=*6Oorhb;(|}%vvk|ha1r{-?kUf2S2OhF+pJ{O*Hrzkb9 -`?$j|Wl9EM#jeTMFy0mS=hbYxMGg;^`@IU@`^37*(XS0*!Y3vz|a!T`m|4zuik+OP-KEK(N71ZZJXO< -WXTZCf+@ojeFycW+L^xVL(jK<%LKEj>~7#TRb_!^aeAN)aplfDjEn`sJxmSlNrZ)YqN`(Bfy1gyPR=6y0&XXTr -u}8JkDlayExBrK1XdkP2-q@!V-)Wew)HPh8V9I@+dR^I$yq{rsi_%qWOgiUF>JMp-ql(VzoCka=D$s{8~9T{;yB2*+IhG? -U?S#-nbP}-Cudi?_L!v6MGlWrhrQ0c_Mt6Hfd|}u4UbP6%HJmXkxq^eH}6$}566IGOSA%w40?f9pcCk -2(8?mS{Fp!C&Jy>U!97nuH|H_&vLo<4aKFCqkg(C&e<(;}N}o(}udn=7Vc!;s184A%0h;f|n0JTd$Ne -xdnRg@g?JU^{9#9)FQ_uwj8v&364Cw>u9-_<>a-;Uv@G`U`V*B;ok%KM@FA~x7YYL -5{cES=h8#E?2m`{kM?vzpH?WPzbs=53?t93ML1zk&r^^c?tdIUKWC8K)<=(VWeE1BWF~b+54d)Z&HBH -O|{op_h`*YJrZfWQ+`7%6zgz#3(~M;74PkcKCl4*D?3^ZRHQjU4^h2SuR;?e}EW3lwY#4%DMHf(L|g- -P&-}S^O}cdP2J`UbQRJ*mWzAGy{W9OjCiDG;c7+Xl&BgJ~00kzP)Z@A!cN`F8~ENkn -|A8EG1-c9znBvUWa4b$%tCDD0VfO*{2!~DLsB$X9BL2@we{@~L+kJd8m=8qs>YF9z2lxXGm)lyomdtX -jLE$nfKE~p#!A7;tgJbcMi+-Z822Uy`(s4Uc}?NT}rE9_trtHZr+L6X}pH>mxG55sR8wzM<{VmT)DGg -Ya?pJ{Evud!NI3(=pneM1F3h`rODJyJUjn5nEz`*Tc(lgcWk&#g%tMR~I&4{QZd-kW-P1IZ+dy_DY!U -qK!pjp#aZiDlc}C)Gl?G&31xZNObGJ*%NHSq$6$4YJ2fG_8t|!SB+C3Tc!bT!Zs`9{qx3q$~Q1u^%?hNzugJ(>y|RsfOm!Yirdl%cX>o5#rHq$!7Ia`H(*n^)kLi^UxBUhe?>p<>`C${&lTB?eK$QX&fmaW;oE8OSB>hAtn$=KfwTDpjq9= -X>-&aR&Tqzh#E3;KQOv0#JrD(C%n1W$V5P9Z;BkRzkM)0F%^4 -yZnIyB-AJ0fXPOV)c3H@l-S*Gbj|{LGl+`2&Nykmxrn9=5CO(+ukG8S38)5@K_tI7e0jD`JMnuh_jvzc_-P -kbP$mJws{vGGsEz+N%%^$9bZ+sr-Z4Gd#d=Gh)C#dYbDY&fPN0#eVz_Xh~_L;@oD$hTAFI$_%;>=rKS -zy;Bg2(PkyRzjg!FRV}BN4H3=JKEz1uhpZmC_H|l=?lCr-jKf{WI(i_5B+DGeYiq`YNJ@U6=n{4?ZxOK{Po{^4{>QjBS-4b``qMD@oiJiF91jCn|3qi(iD8s -qHK~AMvk^c&qCN(APBQi@^Ukv0RijL}eg$r_(f=f5))a0xW9yw|BtL!+1}1IO9cn_ygcswjQ@MGga)_ -+~zrsBIbK|{8O5jf@Ug@cd>vO@q$H6(u>Bl7T7 -YNf1qh8(PN)HntwtPu^c((nuXdC&+!Gv^KCva>;OWay-UwxBc2uT^K2FX*1Z2^=226*zYFj#`oME|dv -)G=xZl9P(Bq&1_cF3S3rUZEnPa*KhJj;aR(u!jl_)x(@qvqz>z(eS*h|o$g3REK;1mJ^PZ@Qb~2+tJ`M3%k7n;+czP0`p`Ocylm*vs0+ -AAq5IM)feqpmx@K45aPnyWy*8H7Ag9(~4M5+7p0@dYnor5xR@-NmQfrF!*ag*cs--ANt-BKX1V4kOeX -Lkr=BQ7)2j_m-P2xAsShJ;K{u_4WtvbfsLMg@h3D!>)Y~xK9M{EL@5q_fMWTCwcmTC87k`4erSbyTbE -qW(T^;uYZIqX}Z$4{TiGTP(hWcV!LUdO_oF30aKE+g;Zzq1l3zlCUTrMYQlb-?X}4r2zEFX@I^q(kD& -uY-8b9lCBRaH-Or7Z37zS6B5~@dL+|Eq3S}uPrhU?RpufPN#6)D}s|4JV0CJ6_6dzJufil$~;3*U -JK0rH$FFI44Tb#2Nj+VvlqjHh*e7`{aeaEE-PYamD1tx&oe$JC5Ch_+O9%-X;3*v*=jCN6`=PlK&vur -4!vwzAW&b&HTU~V$cHmF*IRXp>$Q(E`7d~5JJhSz>;5%fVM(gmGQVwk4x3U7xi{V=XjJ! -^1&7zWcmeD4gYA`Rr8#cX1b2?V=1xJ?3&%Sw{71Mbho22G*9#p#2H>6}col=^mh7~O07`@4ibZO%EX{ -1}D?^4`?YO1$-3ig(13qW@#>60~6(3Yxv;F*}Ej0M0l*~(lzpIM6MdA5?=A^yiMK%cgtR?EBc4H{{%J__C}l&<9^(c -DD$!1{dckc)5JMPxi*{C3m%l>JV)!5<0um!V&<RO~VCg@Dh+alQkJ%vQ~Ni2Jb0X_i>Be~IcFx* -f7N=`6D)F4J5mnVdpyRCIgc>0HJ+TYFv32i9wIa3`Yy6Q9OvXp!nmARdq%i@hYF7V&wGODx~WpI^_CQ -O0%33@7S121p8g^*~JUMKTgt -boRK4r{a3q0J078Sxb=4Ik=X*YWppJg3|%vL4}7EoYRe|dQ^x63J6g)$Cu}SFkQFYJO!+ALB2Cv>Ne; -q)+gltH!g&|fKfDq#EmdId7V>$yLE`gLoVBDl2kE~tKYu&MeP?|r>t62PZgL*Qe!EuP@*`?=To_2ay{o%y6UPkXWo+P>!S1fhnjFWhQmFA^OvMhCm6VYW+Mt}sc`=vhQ -9UU92VF#u9+GR!T!x|jpX7@zvHE<}$IF-xp>w?Z0hWxpZOl{5QDc6BA7E}q&YjhN6XSKkHqm@Rn?U1x -Xnbi;PoFFg#x*n5@L}(n6cfb{JaO8y4-wBfO#I~o9is*~XDMSw+`4f8;jg`dy;AtL_FxW<`{ArwlPM) -78+yTo{B9!q^SwGw{KvUC$J(}#ZX~g~SxRdwu+X`_M{T~|qMzH-K0>^qlkdmUjM -@&!2660IDUG>>vYb>|ioVIY&FkC^&SVN%UJOivu>Y4GI~9*!tp%jZ(*?x9^+>ilZ-ulRPLqEkLmM8`@K{C@p!+nUz_xPt0cz`Af6zN -8+@0x#)-D$dq|H(0(siF3ne*a_i~1N#m2tNsr(gG7cf|H&s|=>I7G|9k2^;B`*;2WJSss-ml ->-Ge<2^vs6O)0m@fh-kbNX)Y320!7)@d!Q%z$M({GBGn>>L=E20Y%D*bSiIRb+D}MM+E|@gko8bp#Ur -t7|J|Cl+a*aj8!7}2HQESS4c|}wHIlZI+b0__e{uG+i^oPI`n^MP{qt@1OR)dOv8}+tGM+!l@2ps5HP -P#4*z8JOT>k>b5U`#R6AgB9uFsYikW8JNs@vM&z6toMpan0hTep#Tj%03nkGps?PZPs+2_p^UL?ex=- -`{_cxXYqn3SyD(uKsHfpMiA?z5QB@rNlakUUkq5O1j$Yh^toAl`}%^ulxq(sfZDBFK|U}4JqT3E^)WJ -klv-ynrMtu1NTuG_r~!!G#uXt{t7Hc*zB4pO?w(ESRBKap+4w1d!e_=ql=n|M;<1b=@9X>$7#=k?Gs| -NcFXk{_gb~z3>^P8)qBdCtlqCO*aTklw#)oxE3J=Z)~BXyqdmGmu -_>_``C$9y8msEJZf7~%=YslN2Hk@Aw5T_6LcI+n+qu(N<)f0dtW8R+9aa*YBiw&q-GaJH==*Z2AHS#4 -_d#iDE#z(BHY}&~xbyXLSsVI2tHj+|qK)PHiFUy2zkE&29=}Qa&ZFOG6L1AyOX~W%DRpTXKR2beRwgy -uP4qlXvX$XHsN<3Y_MWV_?U$3xx_j2!c8%n&ec0a;L|JpGEZ3X^_Eag=3BLOaYR8aFFD??5ww2Z<0)2g= -o{Gx528nAyG=?wyvL0o+bJieQbWYb+|$OZO`wOZ3iXGh?&}ja~A)Gs^9iVre^aTW!uN}-roQ$T+;~rh -M!oc_Wy>`)vTSe?I_+gnZ2<6LBFe+xw%M69C?%Y;!?@ln?q}43hkGeGl(U6sZ2E2=Zlm2RWgstAUV!T -^T990S`+v@x_i$j{O&!mwnR!StDV!_YFcyI9!-j`oelfL;xCP0Z^WJGM??cEx38V@dZ}FG2WF<3%9y* -xwTIggP`>Qqxy=@7YO{sPxryq+9SGWZgm`Ta@w)=Wd+J@K1D -LgENmhBu#I_>l@*JGL0Mqi$XN?K;;v?f_mu<0JJ+*3oCgxG=Xf@Ao~^@m)PczU-`5TVrYN4pA8{VBOs2+5?-DBc!u`pv-Zai4T^fmX>Xl%w-nhh0Ec~ -t!(^yhh()Dy&=^lG_fR89L+J}XV^c0SD#Ps4!$YX(R!@>4VC$N99z~#d>Ju#-L$UFJobaNc0K&gsot; -NChW{$FHxjF_tSIJZGtD_tji?DSoTS=7R#Jh?b%s>vM(jRJ3?t{Zo6y`_8OFrxj9m%`d~vDxJmUP-%( -nd=v&ck*?R<5PGT+ap78z@(HVO?zjvbFKcVl_Gi2YWL-xH7+4@bQ+nfKNZqexW9Hlkr_AG2U|3d4Q=A -D1lobdU2yV>VoY4*Kt7W4Hez5kfX-A8k^U7xRmrttZ?k!Xi?Wg_~4o{=;(6YYv9?eL{-_FHtCZKOUJ? -EzNhKB8R_WEJSoh$#_5x1~CL&>n-HpovSTC;DGf?@kfVa`wP~0%aL=I-=7Fbm;jW$)h9_tX>yev3}h; -;ScugRL?JdO?q!KOXfHrSv__)@s?qFewy~Y(%W+PV4lfq*Y*2H6yMHx);X}sQFxOp~==j3(_wlNad!`a*%vb_da-`aP}1PJ5#C2iUqSrZu+MS8_AU_)* -sAqV{#|+w8PA-`1d1_@=YmQsUJ;wAPBYkzCsJxE(RX;J=g8eYt0$+0<;%c(p|>ymyLPxc=0-ez%-z1u -bv*HODTkFX6FtEgsN(C%u=<=4RDwYrc!^xvox -b4Cm?+vR)wRQ`PG4`juo$`s&fl;0W4a`zG)`CSU~fWJ{5$8GcW_}LUIbg -d!EcjK*h?HQ!!b8r3Do{wT!lEz|d-D`ij&0Ks%v-`_&Gn^y?nrTf8!{+tYd3!!tr1~Hq`d_%tCyi;9S -IDBCfdo;{j*xoVdAeBNF#RvN?OS_LW+^?t0&*+mM>$uV*YbFN;(xH~J1E7}?ikf7vDS@sK4A>0ygxn> -K88PeN^5C*H#mm*A!7(WG6efWs|sAbw+aT^q-pP2<3u)b$@10rUO#Hg_i8xDHuflyz-!f&*_mE7 -w%tCA16323(BVz5pD~HZ&%NLs0IZ|+5?^MF)HTDNT_4B~2kaCGnd_`*PbMtZ&dAXa$%S{WGn?>ak|KR -JzA$Solm!9!*iJvfu)&`YNx^wy&CAF-ip?zBhcpC&HrPn+=50Df`~v9~>ipu6q|Y@f% -itF|5p!*f_(x30T-)}d)^h5u(wvGAUU49lSB&>1l2-)#@&@M>X(7BKP4EiJD|iL{r{6(dkw(1Y$DCKZ -LcAhP=M{ep;}vPOgK=U#9)KJ|yy6snTxJl; -~z%@fX(RjrO{jVlo0eu&=s-bt#Jx}TUVyezBGEG5#(M0?LWBAg#5ME)7AC>3xhL7K)G=5tT1jlbK#*g -L<<_Tmck|D==#cA18mj02JXBy`dw_3~MEoIGzvmsMQj|6*5e_X8+g`4{Y3wFF}8JZrO7ieTk>3u*x1DH9NDaH2hIDOIBFO1pK8+0V3WNno_Su63 -E$toN<2ukc}hf^6M{TQnS9SSc-yqdHqtZRMoRktwGn-2B))(+p74?2wh3J<$wh5LyZjC{FbrGFSmx_w -ql=&$;tXN)V{LYeY_a-h^VlEzi;A5iIB&?A?{3YNW^lXQJo?^FbLC^A*>hHw@l{hepMAr^ZjH`orv&> -bPtIoyK6{~YC=MBiznsxp(3V80v3x{f&L7GtWd~^uf0W*4|A_kQTKn8Kjr4^Cs(aH~rJ{u9oH_AEYi+ -E#tfreKAtq-tJ%@~m^W~3Nn;kNyYw5fK_*m>ExpI)!TDzRmi}D9K#TlC8l}3D~y&Xhb;-d!k^cHISkEra&_3~o5omI-ndZN$Pcf|QP>X`e2 -I1m3Qp;nMa&D_LwHXqG1RYE=Tp?SCLWI|)%zQ-zeSv}%@9YF%p`Ddu`dvNMt92F`J$P4>xRI7Q+G)WG-k*iF -9U++VY?4}6}n^?jwsrurUwA6PR2PwN-&bDNz2V)npaS;XzJhsEtdEFRo{h<9n>F@5e~9@5PMXdjQ)Lu -DZrkt<4E<_n$Uo%X_iYbtP2xW9RT=FSo|B)j4xGa-f^Vu~?=_nbv;yO8c@{fXLVVPr*hhw@v&w$iPHQV;rm*xo71suEOijCJ*Bc=2T->t4f+{=|ntg!l+qu@rWE4&XG6Us -8$y<8FPzEPRH-4n~QMJ?-#(BL?=<0Ma;GJ<w@>b;;qFEtgXwx&~Srd}y*^oRa6S22Oss790t4;Yqi`}!>{*kY-4obiOEbS3<4{6W;PF4e -JXnxPu4E!>|vxwjC-cFxl;Zt6Y{^CBIWY*4=^c;8FxT7ceiT}309b*6Q3+^RY|A;$1MElS%@sS%D>qY -!g+}*mXM+#gtF73pRf#0-|#)tdx8_$_|UQKl_#hnekUrKd1VC|gMcB7mf+|E*JcFw<*A{x*^~$P(zyROQy!$}cP$&3XGcd6-?-{&fj=Vl -d*A`>?Ffy*$m4_(Ene&o(!IhbFfC_N`U*|!G&zh-$#ITZB~7-g`j9*nn`>ixBXcsId#i}wTbn&xnNqUtMIrTUx_Vo*Q^5qMmXyNZ)G+C>aT+^eKJi-)zAQIZAL=(xHYAO -|-zYzf8W+W7e6<)4SkRoWr^v`$bzRs)Ap7JfS4*X=Uj)^WLDf4Ei0<${gM+g9MQA~vMWYqU$?aHTu#) -V3~5xO@_hEe70{=}z1aZFyhVuH9^AxrOq-=jYS+UOBDyb&|ucr8ONco^CF(mD9! -oPe9nt_^(PSfm*)P{Br}uF;QNT?$v;UxC0cn&R(1Ln<`eO=GMqdH+Aijqt%-O-?NQt0Tj{9%XTJjn?3CC%d*>0purF1*r&|2U}gtF&-Ebu3g -4|&?p1M5!Y!`=;_9L(c8`@%7mB5hwn@jeG;vwE7~TS@-NJyap^?ZI=OmPL%<@i?klTX}dqhKc&l3E>a -h2b*oo=~wy$)(hsR;s4P^&tMn4MP|KSW|EI-FKmSGIO%I&i38R)bj0<2|8+p{BG7fd-XH7_65Cvk^7> -xaS{mZiV`kDT;NLfE#}>OTYdOyz)BP@J{b$hoRWD`s;yLR07BH45AJWRZw%9+_(*n;Zu}`-{PZc)3DS -g8B7j&G~2P_Qu%G$iu)He8!!`}Jn*98_3+Kc;c+y(V(+H)e#m1xg~KHdJD$4*UkW>xBqAjA1bY4eIpMl2_U9U67=-0mzdzg#k@a1?K7&}%o&E3k|W4_!|ME@_R -|M*7C@f-BtQ>V4H-bG`PNo(eI=oE=+J+0-uUfOftj0KKb!J?apM~z6#*MKz`-`2Ve=MLr>$qq^3wi39 -@hn(a}yeQexB%a-E*efJmob2dU>IUOUwuj9s6Z;|U=VjR>f8c(0u4J_wRT7-Ad$=)4Elj+aRg?kWFQE -HinpxfU$BQ3$8F99ygxdA|JAPy+^U>BnNm4J)U|uC%=A#(q>4~vZyW~3fCiK`?vUR%EsWJ12LUIReZ6 -K$%OF3m_)Sny8tRCf;CbIf2*hVwj8zf=th*+Er#n;x&qHohQYPW*1YbwuX+Yx^z$8Bc&hagMUyY?W~! -C@*llupYfV6Q#e%559z_kH`rZ5zS=N`DoUuOjjM1{BFzye1);WJ$}A%rX!s81o+3a0W(tA=WbOWy|*m -`QNGMgsdAccva`W>1nXm=Yb#SHgksVJ#g;RbJ6ewNmdZ~B>IlyZ4S#9X;%#Yy(FGi^^v}^mHX9^Og~I -}fGV*(_^-QU5n~JI%tPq{Zx}v7covE|9C|JgSr5uY*>7u{f9Cl~=EHwcJ_}?gu?6tudJpeOo*I@!pM% -(G;pIPTwXA7{i%{?W1qh*F$^9v}xa-nKZ3x=4vbZ#zh6+nfV?1{ -waO_K%d9v*3EP))W)?{k8PQ8&&;c&yME@m>cN@y&Q&uXusk%g-@?98V6C5-dQ;{9X7619qAK40@i_~~ -0-A_7^2Taj5JmACd07|m0*Z)$ifPFL3#`Dh?nS_~&~B)uSY~9FWLD%YGA-x6RabKc?yKl{vwBHgjjtD(4|Z+q0Q%Q@7Q_u3W9~IXmG+_v=L{;pFdZGPCi8uyZo -@nHX7#Gvn|*Xy8!|sjQu{mz__UPV>(E05H4Wgiz~Jb&d_m8lYqq0pn>mEZPPCH5B?{fE)N7eVy^;W7c&VWA7E~0lH?-444JD2tLnsv-Yw9cAu6Ia5t3e_wZQ(ogvN9$#VjJcPI00-nqS= -O`99=N07Z&w*|8U5@}ge?hA;cWu10^0NcZj{@w|W*^M14D6VKyk;dlxDn}NKoA6!2EI9T~81>Aez`I{ -B)lzxhzrLBUdFB<*yP}dO9Q*X$=bn3Rg-%S{oKkD -au{xoTcyFc42Q$2C)SKf6`$F-Ndr#39RBi>W$;@9BeZJ}$41Eg5?Te$!!iSH>VnHPB_6~z72ab-8!f8 -3$r>v`|c@peq-dzvMG3w`(Z_fl8COKvN>(KQY9J>Wl3y>5lwXdm<##0!$tL6@b@5cU{bH$~TuMnTw*Q -YQ#o-Hq-QMB`kdW5LV3q2Kii@{+pyEd-nnEmCIBvc~nWnPuHPskT@UR-Mjdy-Tl!o?&uda`lan6FaMI73msRoe$_)=!q(1v_?ED -DM8LgwO*<0ccL(X^*PitB^CUg|+K}#k)c16)W}rJs93-h%so`;SA++_)1bn6`fi_#X5qz?Z+UY}<17E -$7j?McN6x2XDwo%?pxvrolN^nT)qjAW6NKwrh2ov&wfI*VSHlMnuYa%6|&(#yVe?`mKoHT*;x1L~Ud$ -98ku(KW589=&QsE>WzNTOQuS>;W7#C!P`)J$XgR&J!WQJcYs%(h5U!0ZNJZlkuX0&Zk+S8>}Uhi%lRf -tY_%b8|DzAFf^7=sIoo&I!05r0+wgYu4%7Z*|6{(8A{CQOfI*m5`#On-i}EsL7kS$6XoOuUh9te_w^a -%@NOssqmrmBFXIju$0~ZCf#(u#(u+r`*1qJ9M-_UDTri -VZKZE2?D&wlTgDRqUkY75*G4NrpfY&|^K+0c>hucTf`ud8&u=_;v5Jhf{x^bNwU%~CJfuFXt&QZ|)l$xkl1wwnh;50s__9Xs;i5l(`Nsx12TIbe2XdhhbFS!j43X+I-snpgx -Mxy-`$<)AoVkP*@JDb|qb@&#)dFw4d;zyssz9Rmk_YmD^`kS7ua9?9x(!-DbKIJ -Ro3*nKYbrAj{3#WYw4JQyDJDR?$x|oFr_<6E$HH0UQwiC^00{z4~ChO(57dZVLGEo)OJi)@c`_XYQ@! -b8J%X?aHeSdVr0CI!cym~9&Z!cd>66<`(jX+&euO@sS4ILXG-~-(IFo=&Yv$@-bgi^#_ib1|;k3Uxd+x?(cxVT73?hL3&IEi<-vRK4oBK989z(|>={_ -fyApB}C;yE*0%D%a=Z9Isak` -lfMxp3dzUZvsBmUCRJIo33li?(S#o&EqtxbRWcaARjQfp2s)pF+JrFHwyWi5O?NG@&W -CG=res_yMPfHy?L7iJvTzU$PGCi%~#L!rE#fl7GKZfgRUFH29g{1@^vBA>iuo_-aQd~Z$UoB%HL1Obb -8U>Q)ot0zj|HEeF~n}G0Y#s7CVLcVwl}2OpReSIjj)c0S~kCFkTlHy4MC>%f|M%@FHv<3OL``KEEu!$ -HLv-+y^z32YM`gi$06ed(17S9LX%XCjqlgPF~PWnVXvi@>b{}m)jt98A}k&2S$XT^T(G#xzq)%5nH -_pKH86m|fAwIzN&mzO@ZQ00HOS*jSXZrd}yEh%`auwUiI4jVNw!@V^zQCf8jJPUkJ$26ikRGg&uDv?_ -M7%%ufP?9=CsY34#ggQ!U7r8o@{&u!;*;7T5?nb0n&-iwrtCZ`yW0<$*j)AC)-v2~Gdiq>d&@O7V5z= -Lak#$8L`^V9IL&lVu)DRb*BlbYLm_YiSzAppPcrSB{XZw7k4THdjg%DO47POj#kt4G~HnOc0;|b+zBo -*Vmpp4K?pQ3s@t{G{f`YiAn4C!Z39g_duwA|FTsbFg)V6f!9$_GAlY%s7lnd!BtXZ+NDhc?cT+OLY1+ -OG0p&x!>#kF{sN+t`~4pJ@0TR*^l0)JCw0*8Mj4o=JZX4@l3a23ls2Er5DYf&0rW$SV_Un5qgL?HsQV -<5d!`X+O1%T;14q|2S&9ACzGc*d7O;L6CMRq@4~J4R{**3EGFWlgOUH-k)!zYukdr)@h(?rDs9hK*?t -s9V3mDq?v)eD^czv*Q;~Bhag{Cr*)7w8|TOKbb*Fkq3b0+rghOt7aAb-X1`?#cPB?yG&k>611=!siVf -0?Xe-^}OLR9ntQj$c);+C5T3-_+iS;?4|7q{Gg{!@YYBl)d2i-6>mfUHo26TjxD?V^8r?``Z(NLEQB< -YG9JXe_~>2@0TlXVuait(4-e70pnn=vgX>pHI)Z3=<*I|%sQ@O`Qz9Z3N6htIxV@5B`KDvuc!P!=;B+ -7+$eKsU0N>ZEJBXkK^Gz0{!XO@;Q;f$9?N&jaFtyiYU4>rJj4Xan)2mdjM)!ON7?u5k4zTK=(RrVN@F -)W;ssR|wzXIdxAN)E&J(Uv_J^tr5P{xuznKAIL9*uZtkujm7cW=If)0QDa&!Jpa^A=O4|p0P>{!<%x5 -}Ic}gLt`XvDpq$i(snADc_9pA-J5e$^JL;3JPgq5NYY(_UB3J6%3O73X9X`(&NcdjkpX}#*0*O9GPsl -M55BfRQKY@P#33UH4r#Uzp56{{~=^*UvB3>_&&lzc -WnsBI(8!0%$3|1Z^n~#6K-xUq^P-hrqFr3f|i@cNwH?vX*{03vp0PDz(@80+@FjrYu%@HbbPG3b$Mxf -_P&C>RL|0*JRbcXa2uVaKD;i^?P@(vl2j1a_ICNA4!7IHQDd9w`^jzebmVca9Bw^MNk`qjcWz@VeTTu ->+oVTZubq73HgN*D9fxmc2h_!9w~^C#@_cj~IlZ30b2~fX94N&1C+xgkJn%;(+>4iX)$Q9(>!0qQDDn -LhGuXSW`TmJ*<^2=ey6&F{By@(lzd5A@bTM*wyJc#%;Vm;z7h@TF__=u&5n-JF^<{_pc#vz6x_Cj<=JQ&RJG~!i6? -;#xfB91{!M9e~5g18EC1L9W1-H7ia9z(p0=sgtuh&U2ahZu)=KcWTkF~m)XWr!am)*zln{2tLS1pRTe5a~dyfQ@JaMyHY+qgb8@(Sdh$SW1{TI62H8<2 -Y=Z&GmecFx-(_uuZCzAy4N$U_uzor1@1ceO8ZyK8!r+Sxb`5Te<6aIRG^S;8~H(ccz$Oj=We#2FN`5UhOszcrfxw? -$=K;)swgM@zM-H{iTx%S7!$UBJgmAUqx%KoxK5x-WUzp2c%efhrW>YotgcebKm*}p0KC*}FA><^Uvld -}ECV*Z_xFIbSQw;ED~`+%pU8d9iSn*8FmPFlRN_WItOzRuG0^xRAK?6iMt1j*?NT7_7lxj%R+p}z%lpK=~Xi~Crtab~tEs -3@T{cX~te&^&y8~6DDm;754%W`ghYg%YLqs3+iPox^H<}7`RA=_ZGX|nZZQBFgK=5I_<#%s|eC;4qnN -=nHw=eOoGnvXrzrm+}oc8iHsQ_`eJk`$Ma5an90a;tFVEi0z&U$kp%|ALaFoNSX(L)(zmNLxjc!$~}* -(mthp-hD1HlCt$CeYzp_@0_ZP*J?dG*N?(;F8Xfu|7~K^_M30gXTzysG#PD1=sA`cESfZkCdw(~dYd8 -7XmhsDDVB3PzHN55wAb6mZpn{-qu=Fxw`Eui`c$XWUhdB{efnrzcuLL!eXib!-KZQsZoHPamjvinG!q -Th6pPX9WS}OTmLnodZ?!r}!CRWZTjXIDi#{I{Vo;UI<0kL_@ip@=em4a! -mQzId-cC>c?O;Lu-_sh6lZO5!W|oRE9fW2bG8OHQ23{^n$CL!kwR;Je<(I6;!u^&gq>GHwCH{ah>f`m -d%+9n<;uamC-qG&lYqL;<(oqc8K)Ob}7r?Y>#t#XM3FOQkFwmpRFBjoKW2gZ>cVw(UUmJ?&^SuJw8tH;km8C-HC5d@F#&g*T)(KU#s9n3cgOkpHlF -r6?~7%mG4z>@th*gGx1!OO{^q^KJMc()OEKQ}maCpT%s+CsYdHOMA- -tbap&u#II`=2MziLN#|3H1~i9S~&dLeqF%*RRA1=CV&k9vJEj6NUw;fIFz#_&d9hJ&#~|Xs7Iqc@g(r3Z96o{1tk|nGxMhG#v=o| -K5qAv%^X@&o@n73Rl4*AFW&44rq1IVqQCxeCSp&nfQH~b&!qdF`sG~FeA$Ujb>4yIPnEp?cO*)1gh~K#KpIKIak(Z@QjE&gD-fi_r@soX*rtrppBXXSsyaoW!-d -b^p;&Glb_!_%NK#{_xP!wus_M@-k7Wvi -UR>Eo~=1|AU;a-t)mCek$Y+8bsz$L3@iQ}V$YyeUdBSh9^KJyky4V9Us11BfZ`2e(UP7D*tJ!9$@~KE -a2P(IlEo0v6=h*{y$(PmGAt@QP6+js2T^+ws7yWiTg -_w9Ge_r3ex`yYJxQN{j`4;=jD)6Xgoeg3biFTOlneWd2-v9G>9UVGx?H>bWmeWvd0x%2fGzPs3P>H8l -p|M=6-jaPp8_3CfG|Iu{q&%dtUxYDw@=%4ceMBI;McKJ=Pq6S@9fsSN6%gXn%;fx>f5 -jXfWU!4g9Zl=85%Nd_=u6CM&BKJ&zP~}#%m|&^vNlyhP3nya^(TF*9Ok#>FShnms3R?!Daqt;_#M`2T-I4=6eQ{^{Y;1 -4@oR)j#}m^nlLg{wL*C{;69ivmetRBJ)o0CqgOnbF%**7a7a#%KvG39pzSrNG`(?1(p0cQ{W>CEL7kV -3M^8{OBC`lg}g!`kBXU0jHWaa6Ba{EdK1OKc=%5Yi9uMP75)>P%A;Z?$|Gh}ZZxGbZWt62;(GTC_WX< -IvlX!vaR*`<;vU3u#P<;oB32{TA~qmiMI==?Pmkz}*a^`eu?M0Cu`gmE;$XxO#F2=hh&seb#013o3jL -{wS%@~o0>mQ3V#HF!J&5Iq6^PY{4OOo5^-ajh7dW1Q=!@u&s6h-w3_;W(#v&#m<{=g#mLQfRRv=a)Rw -LFT)*&_^HX=45k}uI-L|;UI#6UzHV(gc$`je2G5epED5K9ru5vvjF5icV)iTn>^JtM{<#@kI~dX9-C! -1Ko(Ln=wgu#?FaBZ=4Bs4P{VPpF(BJs_Ty5{PT!-!MGGZV?pH%L342w;-De=ig*QGMTQoz;lQNFrQ3? -{HNNpNSHmH#2d_HMv9HZENH~Jbe1}p{c1u^F=X9Djb6~)8Ww2FZuZ>ii{kSojrz*Fk`;#`4rN#=Vb -cBF*~6~&Vm0^8P9+a@D&>qpz-NbwMa)t-MC(!-od#Zs~p1hnOwq%tly#t75O>Bc)m2IYrLtzOf0^EBr -`koY)mzbjZkr(&*JfNPGz$WRBk8fOs|2B#m->k8qlvoITlktvyl*?-_Eq=%lTNGLeT$=)A1*M@cfPPc -mdDf;AA(o!;zlbV`t+QM7E2MyYO*IY!}SV965~JtBfV=cMT6Cys^Y0a=WLKq2SY0_&?vto>crB3|IQ; -_@|LW^6?Ma6a0;VT(aSRE0LQObdMpJ01VgD~kuPB*brE1cKQh^<+cY+g?vN+2adbOKm51n -e8^7iKgP50WLN4ZA$Z5{ST#*{NnD6vQF6JLK$i-Yv(m@#oSdSaxvB(i@Y83MC4 -+fUJ`P#?k@wm822$F7wg#akc)L|1;{%hFGMb{t3)o=krgBFg1iK|Kk`!KV%=LAa(SH}aSB -YG#yR1gu3wbSav5vA1xdwRy^4`cBk&AVNoACM|)JpYT&znBL -@w4nh9Dn|JQR5_avk!a$Rm-DMjng&Zsdu`#W+?H@_UeHAlD){Bgc)SNFH(>@&e>x$P1B2ATL5b5qUB4 -$;eBPPeERaT&!~{Lp~LGIr3@9E0Bxxyb}2gzZ-ZQi+!J{$ay9ZKKcOFaN95HQzZ3F0BJU#ncNY5x;XmYe3jZPRCj5oGyYLtC9>O2UdkTAz_Y(d=9w6*Tt` -Yu0-dp$wc^}~)mn5cw$N#mGk^FGYSg@^a*%$SaZGgS-~`7~~De$0Bb+u0^gskNpjDf8;vkfyl#2@}9^;kq<^5iF_>bB;;CA9^?_o3y^0bFGeom4OJ;}cjV>BJ&{);_d;Ha+#7iV^0vsEM0t>_ze9VGYm -jFm4?!;B4Vn(QJMviMp2(Asdm%R?_eNfTye;w~fuR`RHyjtXsyiVkgyiw#YZV)eG{ ->XiicSEj0J{EZ>atUu3BawR{PeksGJVWS5o+tDpFBJNbmk9lMLs=&DBd-wpkyi_S$m@hYO=02+#7iy^0CN6kxO`k87a~uPZa5qXNdI3^F(_5yHd#7AB$;^P2dgNTp -3NyJC4zJ&2dV)>DKArD0EjXYGu#~aj0AxEAlUBJeNk|lWPh-)25<474I|+_+)QjqY8wLYtSQ&7!kSt42;i5Q3yz_i2 -ON!A?l^izw|JnUK4UNax=!aV7LYKWney5d`7mCMTmz|RF&`Up8`__V^^h(5Lyz2q>9R0h -4$G0QYoRge8kEI^w})V;^DsitFLWJJxcuCc!p1Kq$>SL*Y&}MV{2Y?XaEl!?D(YuLhYSk8h; -0RUVV&=cqK6|72O7!O};OXqnrAN0M2{jV%8t*&ZWXB@#t9eqx7-cO8((tNmx -0+oSI#es$H{=7(9g_`$~Vb+n&kR&Iw~X7sn<>8#uiZd1r@cz!s>4^4`4W+}MEg)rni#bzqX -Lm$zimGI;vAPUYqG?0TL?IN8N}9@q5oay#Pb!xi-uE9>X+r^@$|L@D&U&MVRLDgph^?- -#{5vG7Z*Vq9O>#Q7rRV%|v{u_&)ao`n1)ax?NbkryB@L0*J>E%FlNhmn^d{|b2p@*3pT$X`cZhkT!~7 -x_V9@HNg)A@xNr>Rp4p3V8_fkAy#vS0WEp%$vlb{CVUV$i+-vlVV<{0OewVvY5vcJ}yGJxc@6bzD)QB -`8%R~s9)ZH2IZn%ig`aV%vXzY(O)+pe_Z%OF>ly}a?y^(JfWCJRR78O7LgzFbs|1;(N05=zlA&!`F4? -?Vjd?E<*Sj4c}aPH6_ks488J^O@3(^Tmys7D{{ne2@*T)aksm@{j{GU)mB`-}{zU$X@F(&;qCCjI7XJ -E+^J?KQh`d6S2l-LtV%}BE%SNL7i0~KkZ-sx59~b^W{<-i6^1Z?z$oC6>AQzk2l_TFO{DFL@@C -WiU!XL<=7XCn9C;V}p^Y?^5kbf!sf&8rS2l8)3`H`O%L4K<%)Uu43xitJP*0JFA(bn#JYk)l#A=8n5Py -S#uTG`A@WAWJbdX5F;0g0E7mELqg>3}iggKM-9jbGpFv)WTs+T+bqiu$Lj%gibz01Wi+S`Wl#3NEVxC -+4CQf~m^E~8Y-gyjif0VC4F4jqibrcPXdGtVxzY=*Ua`D_C=GDb7gd$NcR?vub1Y+GmBFfW|i**NLok -9l6(?t1@uMzqc>kbN0o{hX1`NPP?JozF&QWq_q}<@ -i$!^mKOyuZ-;BHzd8y!vbvETF7tiZrT}@Zyl_(eY#bTWV4x^J=ls}5R0r_jln~*O?t|t8cb`x^3PDiZ -k@kjYQJxZ$Uj6LiTnWaMC4`2Gmw`f&qMw%;d{I6e$3Ks}6y+a_@*) -2~_zU@~$QzMAhg_^n66=`M5|?ij{y{GG;}PpR&ix*4&~Clcia$i+GuvF;}k<; -z8R6zi-qP<}u1JmebygbWr6^BEF4k#@bzS8sPeLx%8R0Y%sYLmU! -an2=AQ$Vb#Ja2|l;ieeM6KdH2f06TvF -Kga6j`zOwm<@+H${sMN13pdEu2hNT1^CssDx*0;ja2@a{J; -u->JMySo!JyDNf@p&f!^3<2!u(K3Ue!=UcZ2V? -58|KZa17~%lC<#o8&ye%y^PCxS{(PQIFSlP -l4``I{L-;(XQMQNAb2!S!xlwKpd>#5ix!>mVXX&!P_+e@KOZg5cH$O=oS$#5JX>ym*|?j4u!qkJo8= -kwZDxjy*3vehX)pFa>91Q!~_{D`xBp+atQvPjG)IQSyg{NI9T&|+Edp$kIlldbKet1hV_HPlaEW2`fTjlf4~g-%&Jp8`LpY?43VY=nXE}|7GfcEh(S-Z~eL714q6v|9mDhK>Pg*3;2z8z3JwGFBZ0aKW%uxJ -wx17lkV-;RI_OI)Q=CG^n{Go4k=Yf?B2GtTkkcxFIWBQ^X0)u2KfB2^uYRlJEQ18fUeuOClfYTeWagz -YWw#2pS7Ln@mqSA_m9NA@y=fZpIn=?o)0$mZoBHeu3Oiiomf*^UC=G -_F6bIkL!*ap_-xL@UxiPt*Y|n-#CYFvA6S09u+G+bZbiFSdtS~u5#)RHJ6ifjd(G3&Fd2g$@b7Uh)_u -^(Z-@RgAU5T>MTcJPa%t+Cz#;0cIi{#?raP&(b;JAXcDlz}dR_bK$ohfreK9X>!;rCCzFGFCVMqMw+~ ->Dw%Hpqm^y&6~>!(dW?@pEnANcEPb)UG{!1nL_`b)<-9Xo}eT6W((Uq5%}+@>C(Pm!-Xz4h3>+*g+9Z -@%NVQ11iY>(KMb^aHas0qe)C9_{tK+GzgZL&IXt4+r}{|3X80XOmaw7Y6+@d{M`lksp4!<-(-6hv?I= -?|XUc|4>!fx<5hgYb>*W`pxT|_MJF)#?sypJuNV|OWp6;AFqp;dHB#X17>YM_w|79N;kdwCL0CPO|8C -swXyK7hd#;nPRw!tDB{3aM3BIKWWdBd&;1m({Otpus}irw%s8>7-{NIYE{cH`l= -|0q58wMs`<-*vci3A%()JG29IpA~__FK?uk@Jy&KIZ6FPt17*5#d;&#M;|cdS2NG)6b$+=T7da&o8l| -LzTMwoS~iS=+s865GD|um1Ykk3ZaF;r^?S+ZQ)X9DI06N!W`X>O+%MoGcW@Kl#@BPb&*%xMa+~4on<39vG^23IsxnrYx?FtT#r^-`0I@$vwkeqOnts-&a>OSZ| -;Фhp<1-)i8rb9DXWMGNs$Klq=p$`soqW3Jh0ivY{%cx4|HX~%yb4SIu=xgzx!xi2!p=1*bA2!V> -)8h5@%~y%{hr6R70v5&&xlQS&n45=U78Y{d(E`*qRyww!KSC$`Zg~3r9;+%e&MUH9eQD%kM)hE%^r^i -N0b@ugMtS?GUrv_p989iZpmjClFJ(w7S{S+DE^}IlUXZ$XT3eQ`q+nmB@SCr?sn&-Xt#R~O}}#o`6S? -6MRfj41&78S34ZfZQ=jbnH?9nQp!UxEFD;8d&D*^1LVk?f`g)1?H7{K{Ha{z8S^e`DPmI0xQciO2%#o -`xm{D<`R<1W-Z#!0?`aq@s>Gx8@qNR7k7ysz`CuGq1y40J?J{;`gGx;yX4neZd~PxsMwo^$4nRSPcsmb?1%i!aZM8|pTG#>H?pFX8*`)i|$7_ni&jvunu6w_eV9`HKmr -C4qbX$lX7!y0Rv{uBmia`q)D|-fd(%=*R!sp4VyM8#Axp^Xw1(I)@C3_PN9DrLp5~2EKc}FgG#c#qz -E7+P3^?Cuo1?aA%;d>=k?!?UlSIV0UX`fE*rD!+uzK}gSUioLS))MtZtjt -{+i`lr_F^z853ls-SR=@++yTh7LnjJeDA`0Lh3C%${a@35QyW2ec4-=c8omS`K9md=c|4hIP?)V=2YJ`H}$XIjxHL%xa88%PRr7wuZ|dUrTo`5?b>%Vu8+2s -w(p;$>nM%$E?iXAJNT8me?D|_)t+JRg@;97`#Q^Gb!EBaac=34&&D0pA4uL-d-Czq-;XHQXEd(=U}II -sg@aRK3N4)s{yEk -_%9^N~8$nY;ZYWJ+WX&!xI{(Fx;+bR4;x2nla--doy^SGz6>k(DAn^*Q~cWvKyAm=A_j}P&6LEApoEk -BXlG&w!+c}q1FXFaONTK&G6 -Fl6(~=U&*YKX)o6=zaJ8>!1J1tl!Y@{Kxz3KAn0G?irA@uw(g_u{A5L%dRAyIsW;lgU%S+-2HfY-yhp -No%Vw%>du^Ro_yNA!gl}YjiyhAy;C&$lkmXGHTk>xo@Ns>sbTv!7Jl{I;D{65E*5MVGXD3>@%d3JB3{ -3kKlQsCeKwlEuKW4$=N`wmKKVfwNj?A8shC$x>e829oV3;Mt2k7 -KYX@*s*E#ubzKiF8pf8{(H4wR=x44c|yPoN3(+)+WIf+nzP<`|JlK7QX}tq>6s37?MEh#>$+$C?~wyO -nA3mhkdv$JB}D~eJHGu*a8cyp><8WJ`#vWooA{xEs&s?Fgzai7Q>pxw;5(X^ -)5rt0Ut7a@OTBqg1BcsW_-}}gFJonCk$6^|BT7+jXT8np6_+#xU7JhU1w=CVlV+?iSw$lvP`ki6%6W?H164$Seg=;Mg>ntBKEcn&yEYo)&fnmvaFEZ3EXyD --?!_G1N_vbULyHvqYbKLVhOCK1+u%hm1hDoXu4C~hRtVcgE)HQ8oNNO)K)C31zVDf9340XDl3`I2%-wL;$Q*61bTsmYr%C(!)#s+18J?+a>ha6f`hi*6x!uo1RzBvd4GCMkXZF=- -ZSjb=uMaIr(JuDNEPVAlJ?hES#?5+p)!I3k+Uxt?SX6nBUYq)*Vd_WonPk-F{%mdXrmq -)zd5qP58~yH|U3$;gPMLSDU)6#%ZEWO|QRcC1=@@SZ;k)%N{sfEMcw|2cy_XO!<-o1nI2i%`;$+4Z(Fa^U -Os#BkZ|f-!f=t#s5B6o0+Kf+i~{$!I5#=arvWuzUNPqHY+E680|mk3PQRTlJ0Xz=aB7IgJs0G(+WWW6!VkgBoeXmZR3lg5x|NU^h5Utl|)Wn%Ba0C}3xl&aC2Gi}~zWc=o^5YC3lq%ouAaHAr>sV?W3Psd>GS<|HDmzk2Pv(9V}SAR{7A_$*(^C(nhd=uHOpYRrJRm>PB+*z>=hg-IjI -IsPMXFn_A;l(5JGn{b?kpKl;v*$OlDRLWittjW%;B$vmwRCHS-n%db6{^3JtUpY619lzz}Fx1L!wvh9 -OxGfmueAVT`6&GI|^vopNrq3)mczg=pouZ+av+WyAI78f_W0Em>`Pi&OAF%hstLS$Q!| -3;q-3eA1a{UarYXE&a2`dF{MT#75jo*6!lrbwSCzmRwsarDZ)^x4 -=q?Pt(Nw?Dqw`u|ni=js|rfCe>W?TNizt1ljni@7HJ>7#>Pv6#qjhQ(m+mM~Zw~Qiv@a*d&pNEtcli=P-@v1wbw6XQEYt-kX3@vYrw4WjxY#>}4umv-y?*>KY3&yTg_(6{Ya=Ua{R^*al)@ -VYxcEN=Sfk@MpWSq8n;Fh6(n$Y8xCdx$wz%nKhQjP7TkELu`gTI-0HSMM$Jo;=FG* -8`6$lC$YUccvv3Xol2w$n#vGkD%=6|Wy?jN?%2BGAt50tX>?%wW#kcY34IeI*qw)35k>=jUBlQ?Mt_& -ED3(^E2%~|4iZFUL4}ma$M;N=nN4myidBnPe#j-pSUzXTfL=0ogvNBxbCDMpy*D$6p&m}B@=__#2m%! -o`L0BU=dWePkj-RjoZi4q+vSdkWGId{ZcNN!Xv8D9o#U&*!VfQk9rOsgqJYHFM70;K2@pu(99&`jl@_ -4?L15|7s8P*|N!ss5TV*Lb$v1LvE5av|ZZ0QbtPxhy6j8}iNiZu8DH -)DhX6^W&KEmliP-w?KhGj@fFRL+#coL`;rkB*+CB!*_~$rAFr<{kRGo; -U;Bha%A1>;ox*j_;rEab-?NpERH`23VU-Y82Cg`#3a?m6wf3(+|0D3Tx(eGNPS1Nl^FF)0{(KvvQ+p5 -{sjp}2l+|Y+t|!4n=NkxNXO|z7s681Z)^|ST4_B|~3juV&DSM9ycsFkpKi?>p!KcEBdxLJewjZ)NKa! -ZKZkCqz5s7z09}kz)Jcvut$0=@i_}-P}Uw?i8eDA})_o?p<-#g>?AtYAKY<#p&z0jE&4*KA;mF6E#e; -1=u)3s={7@n-01w>V^qT{@3C@ukAA$Jg++d1#4pQ{f&MqM+w-s$V#$*E3vw9^lD-hZ>n{ -&ud%MSKAqcWWlEj(>wv+b+HZ(KJ{(aLb`F&!LQRD@e1L4i4z|xr*pIqDhYy$QuV?2nX_C_0fwos< -BS%kbl%TcC5&<_2Xf4M#22j4qd$fpdR2M^A1q)R5T{&Y?DS?=()H -lV^Q$*&&kox|pCIHB_-LNyHh4i<+hAF>pkpK}N2Sa8Q?&-_V=W;QF-;+SFLB}zv-WVSogPG^rYB|)=w -<$S_=sFzH08u%LXwId{&=0}{5!F8r3Tw>Q2kW!?F42MPa6k(iWBcax5>iue-y|CmB+hwh^9C3eW$5ns6+ -B2MHU@XsFponl+;3nvq^|JjFYJdZFR1!SxP4ji_gsqKxWq!5;YduIKWxRL5#p9mhca$Z0}GVjO>#kE<;^>IkW=bL4Xb>Uq7>`85{!Xs3 -D}0&O}7``^wAoASN`o4#}Sy`w@Ndy(#=er&k_2^C`7zb?kQ}#9eFh6Z;zo0M64Dj0JRRpzDunTC(h*tLN$6wfZ@A7Lx -wS73XV+@g!{U6dg|MkCk7}0pR(j4KX{m3D^$l*}oLk>jB3I#)i1iHDY2QK2M&2GCW__A#ezRL>b3Hmp -B-Brm{aXd)s^HfGxm;sFx2ID-mP0}`XKTF06>GJ~qZsn&4*h#q^r6V3cCbV)!zXWj>*vSyp>RJO0y;3 -xM(|}n-gmj2Z?ylMI2_6jpK^@*$OuR`!ofQ!+E6s;%?NRnF<9BRjFd>$C`s#=)Q8T+4dLFb?_zpH(GQ>$1m{t13nUOLgziCSPlJsOl#>w!RC&5-VTB`Mc3BT?^NCZ@{dWZr -tCK9EhI$k96tu))48g%r@Wlb&hzs5c_(cXPHk2P;g7&a_Y6mRpQ=V5w!wQ!32vSt+_w$AkCraeTWJFK -)V}bTB*8s+eRw^;#?bH-#H)y`UIHEC80ugZdtR*#a)d2`unKryEq4klhp>_@EkC`}=N)?VK^%jafM`a -15OD)yDPlR|F~si?|3vg1jQSCWBZed1iTFN;uyq4#4N-mh^r7cAZ|t6jrcy|F~rM=-b2xkh$9hoh;fMbBU%t2L)?T|hW -IgJ4dQ9U?-Bh%&<}`%5yv1-M4XM7ftZK53ULGCHpF)ks}R3NJcsyGh@;&y`_a!E5O)N-%A=8wLF|v%1 -#v!NmLgrXYKp-YPX}S`<|tEI&Kz>dJ>Fo8$T3-SvJ4S6OI9SG5gw_TAVz#-^qjERD3*L8Z*Q>%3u{8A6hlOg-DHC{+KrYKy^KYTN+rF -VLKE1V*ddTyVl6D+YBOZhDbg@2^B8<1$!?Cf-Ni>6t+q%=LQJ#vV+k%Ato7^ngkL+OmNK2wlv~H -XPv-K7uo$Q)J_NW}MZlvBP$Uge9M{O=LQk-#eJHZv}4Wepm&56TT3Hp{sS5O2M(3yzh}CO>Q()1tiRDg9 -Piow|I_hz?;les4mUjhqxm%BA$S4t_V#v?|MCf+2UWJa#tI%T+J$rb_>Z&|^~BrHQ~tZ<$|E+a<@n|U -+#ihxao?QEznMR7ha%h+W#v@>o4Zy^44D*`R}#+zx(*Vy=Hia6Lsocyb4<1 -KbKo7t`zjtN?6#mx?Uy3_*ZNT?pv`sP0NgU%)!Rf&nVF(c2S%A%L3zV*z&n769%6)N~`{eL(+SbPuBQ -QeH2AD~2a2f%Vdegnk(o_wAGgSt+(7uGUlMHT={b>3+QVMv1oK+R|r(7> -J^`~o!lcm@JbgR%bRpdapcLTqK1cCj4je`jZRvA>9q2MRrwa_Juqv6Bpo>B!wJ%VB#(Tw0c6flv>F8uGy(0fq)qhUO9?~*8$c7j~&hJDg&&i{BH0EpeB^A3(-r7p>!`#y;KrP_t4Z!4WV2gU8M3YNmhl9q4 -SlHehl41E6Lq=EZr*<$_dy=%Q24bwNWn>BhopFmsCdg(l9y-RYw}a=-zF0#5bIf>kz*>oZHucsDT^B0 -;pddU}vdbN}Ndde$z|U6S-aflc@jdhqrG)Z>d4m6i0vKUN4oz6H*BAk`m}%J9?=if$qVVEG5$ -QAXMKhYUf!gaW>pD15bp9iqlK#G`a_7s;V3@BOU5Rl`NGS2^k1jo<-ZGUeaa5HB72w8#?U+tT2NgR4FR8jgVBxFE -*F1y*Mv5A(rHU-&NQx;5pCDu@E&mgAFW)*T_DNbF=Ox`5TJO-l086QSE!{ix -yp&PI+hGY{9fX%Z#m+00@6&`d0ndAy?nzlkDgndbd{jR}NT3GJ2fFbcU>;nTyx=^e8|mH$_7^@+&)Q!}{>0Y4qQbh@E=gE@pC0ftmU%+vor)~=&(SU(l`FUM{Shtn7qhu-X6}p#RvZQ -{M>NTkHUZwffOSOO{kk0=#Lh=B0rEtDd{yHJ^0SjNJd#Ih0O1JTL(y)#0@mR+;j;#QB$qu^aB1x*=LG -|k;^G;sgYQTD`XBQ#vy`jAVegORpoq&vzjBa^vvhz@Ce3R-;Qbq2jbIf%lZ#O^xigvSiu1a;g`FT$_& -ZYiIdW-j86>stLx8W^bFClxNzlD4<_V9My02m28axZYVi*A+Wgj{NK(apbtpEr3Gbe$R08)7A3EX1$d -Puow5s_bJzuE6+vIeyRE^+Al!8eogx`y;S@)ZNEmhqT@7PvP3tYUIb`HtgEGa148>dLH% -AYHJ#w`8&A@H;=EM)4b=zvo+9KR*wX;m09f`d^z(h7-cD0{l2mlV+P$}B?2ym@G`(tfFT#*`UY44_ cMY^YOovOTn#)p2qfu2uEs@hAuT -#?_y^%mlV{s7PXH2x2?KRhqhUgqs6@JD_Ab4$XXwYN9ang}p_AtnV*wYr -8Qm*>qy5JPRq^j|y@%^^brbD}(%cIFg!+}z-Aez0@ -KE=lAAD2GlZkwhBbT_P*NPmLZDNd;cyDG@VZrI$n=0ZjCfNHOJiNTd?5vAsn005(giF5*t?JAMW5Z~WlV)b7L*qio8fXD8l>v1Kx4nV#1lt@1b`sZE}TyLPC50J=wn! -XR%1E{-8f_9lCl>!FC^`N$|#QKGdeiEG5=cV#~G#y;$`b(q$;uj8taM0&JNMhIFlED($1mV8H66=2o0 -bhdl7dS+MexQzI0Pcr&9XM2i_6679p;RwicK|COT}TMr!t{go7$UKLBV?FF>LHx2MWNSk|B({((`l+| -Kpn&@97XllNr9s!vK4sK7|_#?Ufi%%wHBlnbfDMx+G7c~)N+Kt -qKMS1-_2qu4OQCr501Z$MvQ&b8@~l*_Tw>?7?+OX}2e{5WB9Tj=xA75)U1y6QmB>h{= -P|I~{X3QaYKh$+g*+jV1PG^VJ?;Tc*D064eG*-RTm?wi4Qt@OhOV1z3-=dQh;;pG86aI3vx6(m>6#PUfPXsr?aua*41rrb`m=ht)hM8YFhzv -jj?+C|3tZ!SvN6~Swz8eQ1E7GWZv>?KRjA=qq3ek?fb;<~6p*gZj+K;pB=!rrj26P_zQ6@7gwuSBTL` -B|*)0R2JfNbL@ak5=>skqKY$g2GNd_M7+e)~mmGF=j!s&Z-bt?XQfd(ge=%a8>JK2-;n2MA-jliha!a -3;S;O6xz_RJ#=|964=I(WtBw9j_%z{4te&nkKp0arVX{ukG%$TFw==|0;U!uNlbh?Algjv+&akSSB9k -U4Ya5TnsZ>~=e^(1HT^S3ru3i^*%Ry+-!!+ea!YD#-EU$H~o`Hwg}56tKuZ8Yyc_)>aj?CG9`U%{|QM -;pU&O7qq>eo4a%=jqr1G)%C;8Reyl^vqrklJjfv}@Z4O=8xB`hRWZ({Ak^^R&&}7c&b;`%wy`h&%m6%a;?Xnyw!%s9^CAH#gsy^ --1Vcy_mLLj!NufyK*d9KZUqyd2?RKO+~6Y>5Z+O>@{ur} -bGiwwd>(>Na{-ay;|3p3__T*lKr?OUzS!3PuAPq@Ig(7DKAptJ$CD*XmbkR>qM{Cal=*}z=(jwh{&2h0yNzn%6GdFZ2`KT6BYArChOSybP?HB|pY&CNgl@kbe9t@ -r^#9t;R*_Vo;CCT{p4xA}-Tp7?3c{X~7FV}82*>}kJ#{m7s}gWz5$gp40Qo`i*kk*KIB=DV3QXOh{oX -Op>e=aT#GyN^7WI+>)Wr;~*X7n1DkY+|ukSpTtX*)sByeFE9OWITE6!Lj7w^hxB2%m}hRCyYFA(UJF- -k0Cn?qR7VO$>g14Gx>DwG*bO?CJFqonGF88nGE~1nM^p?Oh$d)OvZiLOy+;lOd^golW8ZL$;>m�sB -T=bFj9i_IjZu9+lXZYIl@FDENkt|aT$ts~Dq`z(3xx#!5HO`AwbNeOx7l~-8(mX(!}y?ghvzU=+?-zP -^8l#vxzn#tbAX7b4=pO8a`4v{au_<|fca)cZ^c8r`nd6Inl?YHFT3$^6vFU{oa*|V%&T)K3LT>bfba{ -gK~X>4pHfBf+WYb*3n4TURsEFo>6(Wv2~?G5e52Tt}o-~`q*`;qa@!^phmnIyk?5h-q7NA@1!Z;y;J)BL-}uk?uGO=NWTWszYgg?hV(}u -eJ!Lv4e8HA`b&`hXGs6MQ~II(;rbQ^ZG9eGXa1k|t_3ctYU>{|6Ri}lw=0?Dh!0RwFkkp&cqx!1>WwJ -t0x1e5h~NWD5g#|PyoC353o~=x49pCmnNpgf*^Qo}mQq=gX_019KBBbNxBh!(<6%NXuix)`{O+#pnVE -Ce-s`>A-s^DAT#n=Uin5p2+4XO-5$^A-P|YBPKA)t}u{jEzSfdaxlIgq({*PFTF+3+Q1!EaLhT(av`c -#Hr$nZ}y{Cb8jWB6SRzn|fctKi!>-+!IK$x1SA|4F3YdZ(;b4RPahiC -06OmHrtbPCVw{DVai_C{Cduysq;e$4a!hx(o+h}c}bx)n-tnurO>`3DtHaU4`cWV4F4#@XES_0!!yjk(`bPM>d4zj;gj613C68d{5%%y1U-Ag`ok{s|5GiLTk#c?xDL<_t<>!s0T-Zm -A@OLmg-We6l@RJ#S8pF?L_&kPR%kUP4-^}p48GbLrA7=QIDtJ#92X15dI~cwv!}n$QyBU5g!^boH9EM --b@D_&O$?%`5;G4DtXH)+a78V*38sdCR(1iYeeR})&^c~-LHY7AUDk?lYIxILiBs^h&pRaG9-s8vjk| -Tsi@oD})ia&&hC;0cn1>?tST<4=>!Xl!BdH9I1kl@gegu8J;pFTc4UFV}>v?0+UVc}s654;B6?e9M}; -S!S3G10P(yTiL{!oY#f5qkUd)btt;cpg7GIx09i;m$6%d-Hj|z|VC--vova4gqjjbiy57y4>zOFL3Pb -qhTbY8plt#?T=l$+&e~G;4d!dsR4XgIL?OP{2#mAd9Mq#3H>nx!zToX#M~Dh9TA<-4FlZn-L>nVZn@= -_?h`Nr&c}$x<9BOvK?2x-^I;J&QPI&c5ivcQT)^jj`-|~IW5S~&V!~s_-PP?j*9AD=&u_p4#W{YMm_l -+bVKgpq@lT9DXjBZdI3^-GMi3!pko;%-6T$~+fkHHo(QVwgE?v6t1&!wuhTW8)4T#_g?&I@!jTL`H7PYA;$6Gz>8Lpv?bhXu2`%GX>;{;+~+Z|>Z2VnSF<@F>{4_N5q6MAEQ*KF@Cr>&A$& -H95yPd>1n6_@c7}Zh*1$kN4lL>jnAx!3K{8kT8VDjV%$y>RW51hlp9>jiA3e~$>)|d)0@rZa+P4We6H -m@MdovpCr=jnNKW$j#@wSQd#sX|8leh&UU}sekq^H9`s*TB__(r2S;zTCIp+#{_UutU{P07O8yq`&L^*o&sB-MsG3DgRlgfABe -W(2R!)cKloI7_;`SsUdl{G(+vXQ^Glc)SAPx-%^r^xs6bnDh -l+|qKpc#%*y?>+$m0eEb4H%+&0-raik@8Q+4<6W$0xBK|@>EqicptDz}ez)@XZasVX`tr4%y?O-r2ly --9efs+a+}RmQ@ -0y$>em0xn>{<=hXAi0x3%+V=M#W-XZyAo|4-gGbm4C|_v+BTy+7Mm&pvmw>CR^vSX+50#LwJr`qPRrUqMvO= -!%i3$-#4jxTjkR0aQ?g7wcL6MeDONJ+j{iq0j8qkQFeXXw{MT`1NXST;tw -yr3+mRd_{PK`fE09*zf?yoo%O2pZ@y$@4x?sW6#l3r%oN`9NCy4{vIxU&lv$hCv3+s>j`vO14OW^XGW;xlM~4}iYGP9P)Tw&i=GhtFq!33&(_fG>CszJeae0=VNdWdFq%Ux<#+;5q -mWe4z)R1$cx1kg?%AqVR)6+WkbM_7V+$pJ;Fu)3ArAKhx0n4I-b{iSiEHJdy -Gf4V>=s(9JLU)&m)N}9^vVdMeHzXafap)QJ9(Ey*unV*)UlQHNG(@xhk2~a~VN5mAh!31J1hOsMy_?8 -y=hfrSzIaWaK7EF=9P(jj@GZ^J0bReGeu4iukGKFh_!)JJJH|E&8a^kAVj3cthVoO?n)U*{{qdA#0N5_Q=7iiyW>&d(*nqHg}OwZ5O3M3x-n&|$oh$ht%#ejxST=vX5Gg{j7J5GCsPw -KnFY0m?;J8hah?)#U+pXI!I$dDmE?9W#Kf9Q!j9ngE|wL2Y>7U(+k=*atr~seRZd^<)})R5*Prx24VD@8jdssQ(<}5$As=57;l_fs_U80pBGJ -z@PmdRlYEtYzs$|Wx*ISFb(UO2DBvhpARz)@r=ixk2-0P_6!=NJ;NsrdYk$FCQ(1o!2H*|#`a$&hWW5 -L{Mp|N{byUtM?M6blXOU0Km+2z<#Y@9!%x1tG=xf@97QEegPCd2&voLTb($#gB-2nw^uTeaJ;NtOe|E -{9L4&ks&>-y@KFM#J80IH;{9$K^FPvvJcF-WZI~~p0h@=H=>yi<)Y0*e3ePR?9XEP1+$I!X@6LjboCk -+Wq!_;q>29-TWyX-mSfYT=hec+7G(kJ;c4ZXHC>z4%noZqh=I&`QH=O`7HxoJZ1v-w^3)x|> -z#F&$cS#F;Km0w`HSn8=Rfuh9JC+5}YfQtdIU}ij(I~Pr4es{*PxeV`(n4tUhtEI^Lmq){wOYw$vk~$l+0`;>$xeR#^; -fEXIf-^HA5PnsG7W4CuP_Z|E_;Sg($5=9>odnvVMZ`Lm#(E}XNAx+Ov6)5!!o8}G1GwNo@4ywK=b|w_ -_Hnu{b#*i0a~7V>M63@?Sh`x&>?97Y~8+BX!nZYRLL}KV;Y1#GY#-b(w=qflU~XUrWZ1_^be*XpJ{lS -Y4|Ja(bD8_fhc@Zh$_c;g~bC0c&{^&)+_>qUBNbr|hj9z@$*_Pj} -D&n6cQ>s&Pao%JaH@eo>->ZAcpECvac?jflVRDZg*GL*^WR*G!r;DLOqp{axS+dxQ<-B82?+^gHk%1?IV&rR=FXifUcK!M1p9{Z(T&Ou(fHz_Td=+vb< -fB**puwK^TISKkUwFM?oZo2AGRIi!vgZP}g)8B|ef#!Koa_8q;y+-(fMGLc%t)U;efmlEqe2b_gMlVa -oJdoqOrgL1?Qit_^Uu?B&pjvb!TKKff(FC_#0g0U)-a#}{uFwMScp0HJQGg)i-7-mde=1nQjRg-nPb4 -7;gep>jsf~tTz`!oJ$hA4Ow3Z~59|6GUiS}u_0?DHY{SIoC_6iw*d_?y@4fe4kt4kI)>}d!fID!7jHF -&kd4N9X9@aU?>mUo*18iE@Gs{73&&6)`{QlMr$OG54MtMez81dZNwQI#b2%kkNnV<0};7KhQ+f6S!M-rGXw&z(EK@^1D1Lt$Ydt -yr<*%$hZ8XxXx5=N@|KA(}O7mf$sasUm$KQuIy;^X7R?~nm#kR3G0buZRp$giRIz!O -L45NK2D7IG?F&%WgEy?gf_wt4gBXR(I37W|=`=+GtXH{&_h^W -HJf-!E5jwpMf{*0R9KRBR7TqAlHT+zy@Fw7#BX6asQ3SS>f&Nt!23z_UzeHr#Ndq?OKaJ=2hoElCS7k -F9IKyEpcvvyNZQ9u)K-&P3Qn(6nHFQo+2QL;eH*&-R#)@31!mt6v*Fe9e9>NY_myikc1Tuh6R_8BW-=;5XY|32Ary)w-(IVYO}pH_!zgf-S6Exsupti8!rpz)g0*z|X)Jp+SGJCPD}9plid14c -KGU-EhMVSBrZi{xbh(ey;!x(l0hg2lx#i#Iakf6QEOwwax753;ZD)nM0ti1HFeXf#y5j>AG+I;o?lMi)xHSl<-P^@3>u;9tVh3bj!?(4L -R{^3opDFQTj&4u-`p_=?tA!mAGIeM<#KS@xnRLXr5*hiykJ4Cq6F7FkNoL6AKSQ&9{Qelk3>SbqsbLm$;7PJbK{R^zU{w$~83H-_y?3+bS*OirDYt{tox^ZtF# -SM@7YbKk#x5b9r;_8^|#~IypIc66gEj?DKIOHf}pZ&W*>{H|i5WRjs!N{PePA%aWdZ?zuSNfZPe|2gFDCb;Kh0YUHxWQ*aKS(Wcg2su!ZhgL)_Sv{B!|o;+%7 -SDGJd0A7Qp^LpVixxU9b7xN;I22bRg2YHjap#_6j8znXWewlQD@y(-anw$N7RQ8>hYx1M)`>3|tU@wyj -MQdtlfP#-6;KAN?;UoOMss+k`&WIBRXF@jxF@qe86{b;1YV6QEUce#CKJ@24+by!bJ7y<6t9I3l+$%? -T5GiP+D@KB9Vl)Lv0Pe!xv1wXPZsYJI3NK_C6!aQX*1Kk^@St<=5#4qVX6UG)j$eCK}b+0!Rz=?_hDf -Ih~#>0_{~W;)oVk8X83F+Z=9lGd(W8>hwtb3@N@L_@s|d#b1}U{83<3mI3e8J_rsD3fs+v(H&;gH52` -sh%Hs#lnRP)0Zq+@|e2z3LLO+0$!kDe;u_ZhpXO)IurIop^vCBp|-KyRbN^(&Doz{mMU-%`dEFb_U%5 -udo9?#1`PS{S{W?rU8ogdPZN9NQXjD|j`|8}6QaiDnt$>1abm9VDt#RDepC4)CtI~@Rnki@y%Yyq#Cj -k3Ip_v1-~o>Njj5t;hvA5%^v%Y99{&b8e_UMLm%+ioV&4_D>D1Izdiv -?7#rh67Nnap+CFBF%oT>YiKGZ)>uPqM|_X0?LG%OrPoBo+WCyyN_x=j8vcI?=}TCH{==*Y>*nf>UakG ->rk7)Xyl{ytC!4LPCjD|7!y8WzME#`j%1`N2L?Ov<{5$jQxL2ZfiESfrXs --XLFd(G~$k#St!Tgk)YzUP+zz@Pb#xjFwhfm$N=jiaKX#QrOAm@{XN;5+<*tdU3^kbB5dA2?22oHc9K -OxEQr&XMqk-B|NqX-(Awykg!Lq@<+$3pF0>(cgdn{RCN{zQ%F6v0ebaOFfkLh{z+ys$ZC&Px4qBczu3 -KasJ81m0AzE$B!|P+kxNM%Y_bNFCBFa*oV4~02#n901mi-7x3HgnZR@B&YjOHt*cQ8`(M3!b&_7MkCS -U|$Qd}yoH>*H{r%~_`|cCC$$dXrAHsFe8|g1_U*e`soAiovtSNfY>_22F`!YR(~{`{4 -z_`6-rW%1;A*yD2NSRcbSY}l~bU@)9#AN9T2Z2r5&Vrk-c>~{NU9%FV%Ns0KKues4^G)C!kx*ZOOL&# -IcFvyv0`k)#f^|W2Pc443O0*_J4`gay~h_x~FwUpN&Q$BOv2Nlfu^}3^CsI3wn*FvX}!^wO`+7x_Q!n -e*f6Y|sjoYo9^yGeemAO>SD*qU4usdK@kQ_eN;)*pWthR<=|0^bBX0 -sPE5uvQ7=wbEL~3$<3P$$>lcAM+OHM2Q^d46nh~opp|ZwK&#ZSo>k!hjnKVuRD>$Ag2P}@LOnD!ysRL -<)3rJ80vQNf^$y?`v_RGfq#$_VvxKCb=y-BBHu#3hg=W2CURY@H|#I15@TS^5y^N!eh)tQpr~`hhk*~ -Zd-Sv=cZ^t1B6mmLj&%dpPK%Sri#etoA+j=G)~#D7@y9U@ng_v65CBjC2Dy1Y2b}*KSk-1D)OpPhM;5x>6&ayLOZ7N{x8xT06zF4br_hWr~u(|3)a2`BRiKQMr%5NAbV -o_%qrYH=h2@`5ZhC;lSlF*hTM+{Ga=V>kNVQ6lJcGsiZ3D%1jD$xxE``h|>55}ws6#-73>;S5I8C=>Y1Jica{lEU9J`Iq~ZEb$5LFUlP}mYh4Bdl -p}rDgGXOF8@25AzL$Mgp$plrtzy|{mX(L#!(4HFI*&L@M -d1QvFpoQsKWB^Yk14(Q`U(7brnnNE$zYyu@os^Z8oc8Ffg&H -0pJ!_2byv+2GS<_OI(~`0Vq@_;FoSij$#@qqZW~Yrz%1RqJe~_;xEh#;9Msn8NIQ48iltwdpZsxo!@s -dZ^Xg*gMZLp7kW5}%JY4b8u=Pq=8=U+0D=gi|-lBdUJrp`~Dl{_;!tMR1zbVN3T;W6g=?40Eozz^pTun=8%L=2~;TS+RIoG?qY%))H$;v}9OvEd>^xrQA|!skYQw>McrmN^(mIN^~WPcwp>wJ~*+dV0@|=qZ-Dk& -eFhGc`{z!jF}(f7FiTul)|`WGj@4JO0g%;>CLnH@w`Dib0p6l&$FlS{Mn2_9^+70tcZut)`H(wPo~0~ ->F{Gpf|!;_rY4^0NnwhznT|T9q`}(Sk#)sZrm%u(tYRu_n9e$;w1H{$WNN*cUOz!`B-0$vRHrcA*-Uv -J(_YBbTT9AIDoQF#s!FO$YD#KL>PqTM8cGzKr_IaeZPVENY=O2Qo7NU-i?zku5^X8A3|qD>*Oq51uoc -=W%Bsq0%IeA*%J2}~D%K-Uowv?U7o>~S#p_aZ*}6Pkq0XwS&{gSbbalE0ou}Sg@23yaN9yDCDf(=Ep1 -x3T)mP}N^fmfAeS_Z9;BD|T1Q{X?@rD#bwjs|@Xs{Y83{{32L!ALy>djgjWQ=4TO)+L0^H@i%#tLJVv -Bp?uY%qG7yiIHszTLO;%HdsmfGisxvj1Jk8!_KXZ^d(j0G2F=w0e%!OvFxx!p!t})k{ -8_b>-Z;PKL$P#IZx1?CIEqRtgiSQ!g9=G8CqF>RV=$YmYXNb%&#Pf_PTOd%Qixo^8*w7uv1%3VW5k#$IP{uzNbZ9e$1=N2 -DX(k>bd98N(pI_e!tsaL6{ -G_X`#8e5uJno*itT2QJhEibJstuC!CtuIx|yvj6Xfo0mV*s{d3jI!Laf-+rMd0Ayyby;m$eHk9o?1cn -a=cUu=0(DwltS(WPq07}3@RGe;SE;Mk)#~bXir!1F(Ff|a`dEFUK0}|YFVO4s<@!o}wZ2wguU8CS28| -)mpf$uA5)B!KTtk6DXDByR8mbMohI)fy^kTmm$UZZceP)I+m%ZlyMxTj?P-CAYg|EQ7EbuVtNIv8-HF -a!Ner!=GY)j>AOORjsXB00001RX ->c!Jc4cm4Z*nhWX>)XJX<{#THZ(3}cxB|hd3+RAwgB9n?oK)z)hrER2}EfSiD;OJCN^jax}{n=f&!XR -5HuQbKxINT;0T&niIe8qBaS-HnQ=B}bJTe{j*l!TCIqsuhOihwAqrwO1roL_KvLg1=T>*Z;=K2L|9<> -PSKWO(_iXo^Te%OdHCaq1lNJ7S-DIjT@qam{|NUPZ{Pi1E)z9=v{PycA%>M1y%~|x+vb3dz&puiB=+k -NWk3RFvvvS&FPoxzFo=JP^nKaML*=bKd`}h+#CnqPkj5&t(h>-xAS^7mx<_@49dJoWg{p1t%;>G -?T5Z|doWXLs>+J!dKJzk7a3@gt1<B4P60*=2^eoZ?8K$m8npWv`~JQD)ODd|7KYotq8MBD2Yw*msi6rpKWJ -MQ2T>5&wrZ=`Ck6*)2bue6#$-N*SJ&Ul<+2v0E?ClV&n4yt(l4N99LNrkApLou)hB@5{^c<-q@&c{Wp -qh(FNbLGT=GzA|6+%}aSk8Y7I=lmyT5SLMsOxo}xwKD^VMz}%ST!1K0i<$Geuvykx~94pKfjbY7I`KJ -ExO#J`*UumOIx)Gj!_N6a4+mRcbmXaHskv985srZCsH<=`6`_pK%Ny^+L1xs8RcFeh@3TN3DnwBDk{H -_d7XsVv6OF@q-O`UQx6bU8Y)(zOiDYatx7O3Lhd!dTb>cCA>=|TA(Dde2ejY(T|=OD}zv`sKFBvRzh5 -1UNdXn)9dGiD3Tab<{=4wKoG*;wy!jjI6ADG07|rRhzTxX`-ucF4c2cH4g(ie -`N<`0V%6cuSbmm!#aMoP$ry`tn8xzs+`eO3f5;fiFE9O{#~cIPDJRmHE%8TCE4v` -E)0qeTtkEBudP&&O`Pjc#AH{N#A+or&y^u5o6; -8aX(vU(Zp;f{GgkbCk8Ss`I@LT17 -Km+^Sd)5;YHz`zj)I=FVk?6%Ve{)yd%o^V@0KhV!#{_aTn}i?%C@TiHJG;xjRJzWSPJFadfR=}XxGDP -ee4UEH}&$&c)3Wo{hwjxL_5VI|ELT>tDh+K9?v*fZPv}B85Gy6mHTsc0r$;Tef@U -dm^`n=?0N5lon5*2VYCBHWyLs+NvxgFyyC)}kI53Z)JP?x(Qk;??`v)zy!o>I1_v -aWA+Q!o2(zs#f0{MUxY#(`?iz)uX=BAK&J=W_28vhF43YH^W}ZSnvoRt8!wT(iI~oC|%a&6P2#m6*oy -N`EPgP02}2rp=weiyeC87KZd7RxfW`zil?3Zj|0G7Q7g)(aadQ*Y(Pwy!JF9#bCTJd*{D0+U*VAbu7# -0Ez$+NVl6_F2vPIXOX&6=>cjeLVEc%s965x{@fEgV^Stj_&z@KsWlV-yHbkZiS?WFdwDHZ5ArBZtU@w -`a@72Ub%O9QFx#+Twv*v*G)sn39pB(`67{`3IOsXSWgj0xDIdxxEdR -cr$s&0*$2qb|U*Ds)^Oo=U|f)~UWR94lX$#2VCz*Awd1tdg=7plhdkZUjbLhQ_u@43K&rV6sIHDYz7n -*~&DI%CHIbo`G1RL48?A{L!i2f#Hypp#~_TMZJ+nEL0z-2vt&aT^=C0FA62oq3@ErQz*F;UzCd!e^@B -Fh2mR;lCc!uN%8eU$qefFrZnsPh}(*mBwTKKCU|`I1u3Q%VD+9FyEVvQ2UyqLg!#^4~3pN};xsxq=6Zo` -47B`yNO|dv57Td4x~t*5$!~L3HPPkT=>`0IMuLiWx3ZhHbht$TRRZ=d|EXYL`byN)KcJOsG2-@eI7_% -oe_>awN9IB_S!AC9zemJX}DIOKSNVM%RyMkraBj6Iy_c(w0CJeBf|{f|s_&<6i%oZ<|kmkA*ECa-KcU -@mhCZrfqk=&cG+JcJFMkTpg?9bZ7<*~7O6e+jm@n)&qBry@7tzW!0fAyS?<_pfC< -2Z?hNlUzyu&xcOKkl(4`i2SH{1F^_F)$Jni^pU1A|u?HYlsCxQs*e8LHq~PibDL -5afH(|uoaJCsS1MW--IiMVgFp1QQN&q?d*dF3s(m1#B?OwvGGj!*)eI_HT6biK>0ViY(s35c16Z9h{_ -Pf$5QP$9%JNDwdQ8wtD{XD|!rp!k58C+`ST#$`CO!6#v=+56j-U4OyJJ!PIB{uh6skB)xl=ANY%J>dU -rEZnnHHD7?2Kn1X9H~6Ss_sd_Y9C4Qhg?0d;b3ztn<%l1NSYP5Nlt-Z+^h=hk0h8msiw=K{&5_3zt%1 -(^>!#wxEHA?ql!|SvdpmdRQ=qhN}Cx+Fd2HKH%zfWU_}Bj15JPr_Y%K&pi9@Q`0PALG0viMH2L$-^Ch -ueASik%3rFYKOSt{%ES&plLhpatLs1W9nThtz(w%?bL-pkGdYn)X&?$(&3*sa67YUt%7`X>w-#oxE>v -1S`&pE8FOLsQzLsW89++a6xUKZfoBb3ju7Xal-FHpL!m&b@~pZYH+t?5uG+YifzX4rM-EBhj40^5-BP -4rm~NvtEh(?nf658|mU%cFH~&dW%{4PeO<3k -!0bw0jFCMFvpad;REZrb@MMpbhYID17~egJ;uByAV<2I4;5#GXC?&}D0#9%>CL)XH?}+eqht3kRfYxB -gA+D%AtLp{IUDpS0EKuCn^GxBh#M)w)euK%8nw0t&>>lJ0&f(|OlxSV1$oop -tq;`MlE#=#v(%X|Yk&fQA3xidskNR#xKglkiS-}@;ci(rq$oRC7K*YH6dvdKWW# -dE0OGKSd(?sfG#&8>D+SrN2ULKq(KLc>XSlp1L1|oYn!VcxL>9ar7Cep?97#f-9rZ!|hR=IN6j$E3L-Nt;BL&ACjr9adkYAfkrqJwxAXCh7jSP(U0kumDJ@mc$U<^(kH1wM`>IWcvpljHow+$!ob}7GB3cb0I -NJ6LxfGsy<_2|yTW+WAV#R#B2N~7*$-5~XbX2leo`OwF7sbiNvBtmQ>g)c!^(i{Djnn+B~6)_O>h347 -g5EXx8BkVQgi~&xaIl`NDfFV9U1+xPPHOmiknBfm4PdI}(33k_Rm{>mw7XBb`&g!Gde9w!3Qb;yXp9g -}w?aF@z1;VHj(zi(NED}qQe>M!*b -v^Vh6Nd-js+36-ZU7+(DegwlETF%M8A-ynexbALI9BBcploJ&Kb{fIY9L++{?-8H|bbM3W{ByL(ZE6* -Q-0zBh|tLB^k0&nmP|!Te~*1S{vnO4PIPBlA5o(0W);soW2~7ul0ze@(?*KMCl3ny9I{K1C+_f01mex -=U>_waH{#x)_QCzn4)%o@WpCDma8bDMoGm%a(~c*6w3;2$Eg#c1dB)%T6}?fqugIoYG4nTaSxn=h=5g -MHMN=5wMLsHW_;F!Fgj!ht+$LM?zc_EcI(bH+j*oFq@JdztP&}!mIEV(^3c|8L~|>Vh=w;zzyN>$_$G -Yk`PHv7s8;0Genqca)#Ls6^93XPjPZ=QnF~GGVt6lBD7m*Ro6uK4x_~pqX!tSMH(*oThYL?$rN^P{D8 -NwxsAUMu#XyNAqHG$Y?~0TRUnV;BmBo}P3Aw1X*biJ%C|UOd<8xsWr=U3a?=fP`B!Y>UorEKH!(6H_z -~n$v4?%e6tq}g%t;9I}9p^bTABIlv8%nqJiX9xK!Pb3!5Dmh|y3KD_kHkL3jRz%D1SWVq!2(2Yi -xTMm4Y5YG@dfms0p=5ca#z25f$}Du3!{XK~o$B>v2ZwrTW5`wc9~tJ`Twmcm0VCnc5h6&|%3qy7R>Yr -P=F34C@;C|i~u4UDa~nMd+T;R)Z}hzMk-T6+l@rJcHSUn7DgEWuLT(JNscav~ZaSPxQDgbR8Q@xePRn ->n19*1nsC}xV#S -7R&`c5RlRAX?A -(I#HKk|8D&d;1+&Gg@!3?j9h2IrhM2%0h4RGIO-nHYbLNOSE4*m#+sA9_Kxk8B9`ymd5d9F@rd)*TE! -a`OzQfdS$3zLp&j8U^z+Qea{5~Z&%U`3o3ix`LdZ7n71`v|H+4+M4cS-3TLivb03zUmuVFLUbcmvah0Zg3a4TjV)q4sbS$2ukPGa-Cf!5S(T|+n;S)b0f^~3YY`=XU6zlz2i?b#!o6 -b8oxjNz%-#eX&}f)G^#EdRZSXjw*v~43lw*O;x?xFl#MYyy#f2&h<)B7ZxYHk3gwOI4FI@UCCJz6TqI -^x|K&P<#Mw$$>xxxe6p>d8U+?uStubvr=Lr$W-9(@I2LK~o-g1xUcMMt>duuRtB_=YSIL}Cos~Cpd$Z}G?JP55x!9iw8 -*$6bC#xChwfv0A+TTo~?hAPXDb0*~Rh9rxRHTXkL8}O*WWJoogHs$M4K4#r0EpE*7vq5H`azO{_Rk_e -3+j3za$JWQddgwmA8f*9Ije*agKH5^m&wY2d$y7Au%M>J2HuX6V(Smi8%%sH)KYB5W$G9Hz1K@}y_x{ -2=VUjZJ_};SON60o-y#F5k8!x5rk~)q{H5UL0Y>{fhcZK}@9jXkQP^em*A{b4FW@JPZsKL#Ed?RffP` -U=K9;nnf)TvjNxF=fT!OdJR5OStcceWHxg6{k&4&NJA+$dE26iTIU>C>l<@D&{j9~q7NuqFelb3k?2Y -_d>Qm?A*i;W|vj2K6y#H&I)-pOUir%dj>zumu9=d>t*MJg))%Yp$V)&5=S&0G5LD;V+OS1y|?zgHM1E -Yr7M>mbqC9dQsV#i@55H!5t1(z1Q_}hxE>X3@NP#d;lq7)JZ$z8J|L8@re=^w0LYnyrwdMBl~q6 -`UKhc4e(AGZw{5pAHl?;>dckvIwUrmsl%U+>T?DA|e4%OMe8FjLJ|$l@sW0} -UQ-!Qr&cmk7eV{Kdn1+X!>@?~f7Xf7FvaVbdqRvRcIj*G$ufuWyT%5V3?SUKA){#*n5U@qi-b&J|L>Q -e%=EEd>>LRfOR;VAWv(ljZI?nms4a;vNy|=^9>N1;AbvQ`k>RQP7=RO%bSG?(CU;2a(4|hyYNg{=XCd -Yc%OqUibl5!Mvr3)qCN=xz}*~leUAyJYa@#n9wdrRBpSwa~qV14fIJ;K!UUbe&UZWMlgoX);Mu-%0-x -=3~057phc!Y;BpKj800Qo1Uc<1lTh2Ywd%Ep1YIL-abK?McR#%Ad50HB~42I3g(~H!t{s7@i> -Qe+{fy}!;rhYLSN<&E==Q6w~w7BJaoa&zD8hKh`{nNLIti);Ccz^NP?ej%xqR~z_x!sA__s77TCGB;O -6=osPkHaO+VX_3o@=LxNCVBb09)T@zt4ktTAX{lAAt$2$#3K0vr;Vd4nma8n8CinqcOp}pM|2eQ5XL1sknTM -YS6B1`IgY`bc`%nX`2n4i`sdMKuUB-8s -e)4J^T -{R+(qbK`rRO}bK9l40fLoc;e$iwy2gU$_8mu?Ui -6FxarGsNFiB6L>n{mGUVFjWJEEyaT2c%)J8g^pe@hn{JfmbCB@wg%JEkW&)jK{!z^@P-4>MHc}r|#qz -$3j1!lJY_LneggZ?B_-02=r5jejdbrcAMHgDR#5$h3=;4@}0_*>D1jD`gC{rHM)zUY)?6LxEqF=WYMX -|xA*qgf2|%zWK^=#>4D`L%X6tcgCYerAmuA3x|27Jfv(>u -g}SBEx2{c;em>62(pst<`7c7WvhYw!|$Z|Cp#vm?HmOE!OK(odizoFSN<8SK_$B$r!FXd@Q)w28Npf%{UjnG(54jnWA5?bGaLq4a&iDKHt6`H=lsF-2SlGIC^c>ef*Q5}I -J$^RsVY8Lfmn)w}$bR#sorYV%lHQN&8q27#=YhjqcgUxM=CQ2@vu_c5Uq$&y|lMvPvS2k)VK8q~Lb#E -%wH%`7jI^1pyq{ZPsmv^FWWG4KYGQ&N*uT*D`(X4$a196J=rsLP2@P!=Y^wy4gd8nk^i-`Pm@oDZBpj -e*z^sUvc)1H^6yX8Yl8lu!jvkB5DSnJduzb(7EeOQ8I3q=K=Ba>A5W{2TIJ_RF;CjNHv1qCRmiv+$P{8zRu#J#&wv8d97 -tBn!`xkWF%UF6&JGSw-ihb&MW8UFbECY`0dE&?n9 -Pv^2Bg4?y6IiM`pp=qzy-@lJPI`<3rTQ?6u4=nLCjz5U9fAh7X-0ju*QgIwW5CTUSJHqhz9*o-nx>5}t$yxC$ao88OI2SNB4U`9sJ<*j*M4|At^JkC+P>$5!~;ec!*QG&RR61|mj}EC&17N -<2@XJ*-&Fz*bx^cLq{Tl`T2E!33_>2I(;SFbmqRC5H;BG~rXHAxjO)WG-jajQC5XzAOP=7vDcUfxz1A -!bf?vDbPZX+-BoxNgPjexAfrYxxz@BFHB;D?vMqra8ytz5#{UO5HD+Bd15h82B4tHI~Nj%&yI#q4wI4 -3co^q`!eTr|rzle{T`W%7JPG@;7Xc#*J!(sj#-(~Zz5?OQZ);r|I!M6J)ot7GXU@F0}^5X(ZxX5iMl8_$1F-e;Wu(otik`W1%V^~;AsOo1}_ -xhVmGO9$#L_mKiB77qcnop>l1@~n)Bh`*O9ntxC>&y5_0SH|I7WjT=89E9PQw)3eRs5+8+m4<%-UQAm -q1xKPb#v%nrv0A`9{4{(YisN6<(T0j>cqW>nq^E~$5%pP -nHYAW7Yq-XIF)CO~6WvrnmxDL{!{(zgV{czER~@Iu)WiH7P@+X$>xeINN!*{K`y$RM>YF$$CqLj#HR+ -THD9iXz{krtp(%)~WvTe!evhoq`@TsI$!kGd8G31B5&SH3o8mdh1c##`)t+N`6X|Nx6KF^x?6gaG%XF -NWHVSAG=Q@C#{Wze&oop%A+YJtxa978XWf|J;HHcgeYxaACCL7v+n#Z*f)F7C=U_;k0oZ?Ioxcj#5Gr -Rz!W(p6?mE#NN{%rQrmMDn&lztUm<%Xw{mV#-@>x)T6rYY^9mXFHR#S||Kyfvx^v<`NwFFOkhxQ>K8G -N7n424dAOs9x$hiP*Sy|GST;K(#)_I27O|Yquq55S4$6Ya(9eiWoQ*eq<&1vwJ%EcbQ$Ws$IXF4n)!k -Lm02(Y -!+e6JFg#B2NFI$PYW?zt%>Iy_;oacdUIPJWRJY(yakVN9fkuPa{g%IdXWs>sRENHuFrjlj0G02N0O7B -nh#Ient4#0DCOIJ2?5DcUz~;Rdx7JXi7{wDCZz-pXC724P_@`^d3^R;ohGzlstvyF`Urb4Cxw>cdS!} -NM~TCx_5gETiEec28_vi9+OR{quAc87$vVu)x*M~iW1RX_H0!CaAnQ6{m)5FfV+h0(Du-jjkG@9nO8S -7%=4-I3YTg6%{#g(9W3G{x4%cHLuPWYeMA1~8Z8e}u{plg((BwGSM28?!{T*PUc8_a`Sty_5S}GDp>k -+(L{AgB-c)#o*E)5cEK;c;ISuFMv{Aj~ir}8PygehQ$lt&?Qo4Nvi*W%`T+eK&9#hY*?BD8m$`uYPVe -zbKz9lq0+gykxumw|6NoWzH0 -c|C@Sogd9w{XqTmP(!y65TqOG(yo_SiHkZAw7Ia&kP%d>fjHRy)kD2Wpx)S?C(p7H*IJ%`RS(*H+z*l -QR#SDo%@1#U|JoW)@MeMEwQV-um+H=`@8N;vr`?8Ks(Qbh+bmxH9?ih(AK(lmLqM7Gt8T&%Jl}XXCfx -cS`g?F~n(iF=9?dXz7ABbd(jK<^f{Rmp!DVUaqjs6?N-lfOp35dO5#)>KvU1Zqa@p5@c3fiNcMF8llS -qs5e=7NcGa7P((}4Z0bKfo~#YoOAF#q%Fli0LQzq?I%3DuHp+9iBf-X;OcY7$C*iEnPRJQQgzY&;*^> -$BABO{hN!LfQ**@oH24vZq@Ez;{jANGF~nVZ@d2rk?B14Lhs&c#)HvKjmZfOlvW+kq%wO*S+7-)|)F){c5AfkIZxTD?zJ1wTNw1Y^j#wqjVK( -g?%ur!ApS5KZLH?6%9(TGt5ntSkFUjK+w+R?^fW?)-fd9)ZLf<71%xtcuUeuc+T`&Bf3a&^eS1I(9S` -5!+ef^{^*Po;yLzdQe?K9YZo-=KsOIBh9Z6nG3O5fgPSUkT5VXDZ=-@?>aoJhnYV>53IfhXIUq)SIed@7)Hi^wY -Avu-fTf)*w{1_tVlbluDuR`)R30&LqewXo67nUD7g}$o6Sgi0ETlEtFcJS}$rPHXuu6?VV}Fd+(x!w} -oJTx4Qcw(mIyDMsi7QY~RcUihGJsx`L-fD{#tGfz8DEq@R36_HwwI3DAuJ+P&z{L0RlZmg&7&9FV2Im -JV4Spe%7l78hj^N)vcv{UDp;vaWctGlkL#fSAQ)`3 -ULO^`JGFlrOgcWjkjAASx7S&6zA^$%&>IukuMZN~?qaY<4q@~Css;=#}<75;@-f{_wSt{+HzT9;b5pV -}&iuupMaG-)oV;2%7-6U*w(gMUW3I`s|A!bV&~Ru@I3)Z%;^6)Nt52X?^EXcK3KXN)k2|56e#Yx~Fpb -WXC(A4;BdjLe_eE>9@O?oN=?^=hA`N$H$WcqSyCR66^wh^)qA0(pw_))L8i$ -ka|lT9fbwrf$&cMjstqNgX=FbUFegZ9!VcW=}~(|zAkDFe2A!vl8K$)U&@2Z4svEi_24kX -zYX8YTy7)v3+J0wN=b|eTi2r`1A?lsKB1(#BMh#E|jd6%S3C?k)pe?AwS6`E6dwr;8H}b6Q&CKh+98L -|rCK(Ha#^m56w`U&ou}jK}c5`5?lwZezp-u`V6~SO%Kxf)eQiBu}bmx8V5J?;h1VyQLC>LF;8Vv`?%a -pI2_pL?qc1txt%_dk#?clZa7@xa{M@p^u7B(Vmk8}wL(QxH?;KH3may$M+v{%*k;f6=}sdY&Dj=&x$# -J2Oxij -?oCxa2@xiFOEXGB7bT1C4^23E6c_?!74S*2mDOp_RgS|fqf(>xmx5XV$R}cJrsZ*+Z2|nCEXRumCKy} -t@E^IsCnCS^_5zo#ez>bAWk2_`$f#X|Q(Ax*i~qRhWS9^4P&$K<0p69)k)9X18}tLJ -+N3)@3de>Hb64lL<#uS5oOb>a^=9k6d6rV9qjnz$xUw(7eyle%w?$?*22bMsL0E;@(N|3JLy!V8g9Ix -qh*27}2D@yEmbG4Fx_vn<(%G5VOt{(y(GSNI7;*@*pwY8PgM<+w$jtsJ+?H -!H_u<-z(Ed6N3|MVv_D8J2$oNHYhv!>%r}b=v}u@GHdMjM>4X>fxcSg77*X{t&}U)IBj#!$Ui&cne9> -w3Z}2w#A=sd%x0T%Kouc9*F!Jndh|vBeoHpbJWX%%WRk}2EDZ(1(x_GmxlW@i?=qh%Wx6Lfx`O!9ucn -UQ@YK8IAC@zk(TvjAVCb}TGS=GL5eBWWjhEH4p_{!%0;`}U%8klCn*=Lavb`=jMHxNvkk~JlV^vd{0- -ktkTWpQ!`30msec)NaTYY22bGqXn9Y*6gAB!Xp{)SO5b$nkaPL|@UdrD>yXj>by7G8~-K1~ClW>;&He -}LvtDhmy9JIQiXK~Q8<(G8*bEN$4!+~V>D{PDH6!pEDjctX8`>@;(yBrT)7D`jlBq~V#bsrW=jk~1KJ4#vX5MQ+D^rAtG|wtXE!c`?qD@~Fd9FQOTqslFI(!SJoFScb>6y5bIeK!M3 -er~rztl}PYZ_a)lw3dXeQM&wv%u#z-%BPcnzzS_jkBKiTr&Ld$@p(w`ip*{iP&01dK_yt}6A^!;7Iq$ -cyG|3Nqg9ppHbNSm*L?(qKb5#TE0JSD15-Df0X8dD5GOg*$|ejOIzKu=xY5j!cdtz`^JO7MvZU4TJoF5OSdoF~Z0dX-!4*2Ti=Uw8w*lh45dV2HfwKDM1zIJ>&EwJL28xbo)8he|hip%NZ6f!g -3@jL{CN-goVyC*WE3%3Y@ZynGl+#i5F~xx`O<8jsh|4gj<+?D2J7KHbWdha&a(wQHuIivJ?tJ^vPQJP -kg`hF7-fcilj&_jpWg+0{f6?-M{u@*UJk`pNh9p{E&Z>PiIJ(9YS@QH&V~wBr4Y33xQ8%+yO+vQXS@@ -gi8uLvQr*6H3V%ZhG1!O55x+g^~9&9pvhji!OUlXM$7>Ycq?ZKg>cMsS?(^9lp)|6kKseC|!cOTVQ((dkRS^ -dmZoNi3=$45Z0)^x`jjhi0P1K#;|HVg%rGPopE=M?h{z>5I3Cw)HG+DAVWL6hvlP)x=it9q}OA+3vJ`1 -u!zBt(nbdxpvEj6N0o-@cRl;_3X6Y`r*cDEiESW1)B#6#X9l|LP-VL^i8<#Gziz94zkdd4xjv)SZ#FTeeM`E(TH;LAT(bHO&E_E$(OkxIBCp -T(thdAgg4P^X_f0cXlFdsFcoUxm+@pBqZxDd9{kYQ)I}{o7BRzz=#PZ6(m8qgbd31@ZPba5ckmho(mI -6v-cMm=eCeB|U7b=o?42*vxA;-oRrNZsUMT*-JJ_{7C^39XR=5GtPu{#3vzx~N;&f(VGZl_BGYJw(<+8_R7e=^o`_EuVIvN>&KWk__-i-b1ogT%w+q>2Ww5DSY|KC&XoJ>8_D;gHm3N(IhfMIZ -&6v1lT-GID-)^d^SRtaH6!BIjMw{MJGyh+n^^fP1PW+8`NvJ%coKny8&59AJBzZ6h! -JcI{_(_{uxl_~G;!xMl(l?WW_62ReHu6eB6aN9BL5UU9X(q$MKcxI$KKYD|(m6_i_BHySxe+4m-t;-UROYWrCX3)<;^JF9{!Z@fu2XN$_;yp3_@bq(F -PmLwliFc0a4vop-&?<@E{5lvh!+Cl5vHXlp0gW-F>EKCZW5o!WaCh~bWI?*`_t>hc8gh#FN$}p@gyA4`av*8b`-^@iEBLeBW1-nSz26OF+VoZYk -YY3g}yb=pxuSAd2cGr!ym*@PMXp=bcG$N2~ADYl0*#kgIWN1uc$-ch!efLuwG)JrH0+}x7B>>7IC}h6 -xg<~37&^7d}MxYFFUKAKSzf15pT&yz64+fX|e(tLlgRhy@ed6wuFlTquPk?`2*)VafaNf=?5X>R0Q+k -ZF*v0FffklzCP@yO$}|vHf%8mvCz+{EVG?Ezz>KrK*k`TLpGQ*YWFWlf^z&BWW~psa) -TplNi#8^b&15%)qUN2geZU>)wy%eG=1rY_ -s?&Hkh5oZ@>~Q+kBQ2l2Vm%c4< -9y%72l@i!3h3+0%iMPTQ+3h~dCQ4)XT8qPf0V;q;8diC@5>A!{y-~KZT5VW`)rxLd6$9{*RAIHF3ZSA -tgo1Y`d4dIY%@TaXE`?rj0H&*qg_;4)g%9J*r0UrJ -o3_hj}YLg+s%h%A=K2R(XhWDp^hhrgPYOKD70GXzTgV*5lCp>HA>1p|g$|p;hD0RmIZES%re28C&tC? -+LUaXcS%`K?Z;|3wQCT&u|04F6J~XC*n5M*Ejh}TOQUWD%*8+#A&+qN_F6URqXc_Tx{HM2~Dk9-P5d` -m8(ocmY|jHC2h&niRXKasL!wXK5Y;yD9itdus&|Qpb-QQdpFji(oqRz{zU~>XPs(Bok4t{zY*ngZ^Qj -xgT_9;=L!W&`^)5XEtFn>N4rh?0@+78jNL%8?GCjPO|sZDYtT0OB%Zt4gSL_Mk`%NJ#TT^eeB(E|jv6 -54f^D@^%HJZCduBKa#9)cE=zb8wHfrCnFEG9M0)ocsfskd5XXuEjWhG|E9hBi~JVGhfahIJ>@af{$wJt)IPLOa%H_d~zQK@~ -CsxGLPI5kucsqMmo17>y2iiqJju=T<*-5x>mc2KsIt_hN0SJrHsjf{g!fR%@z61m@a+hrLnB)8O%nD( -9pRPs1DOZFuE(`bVUEN-zcS%O?FiQgOUUH;+MjY?omPr3R<}$hm2PCnpe8h{#QObU7^f@V%jPy)$*T_ -#xOo?>{qGH=slgi5#95^MO1V78YkhL8o=G{dQuVn$@lVsc5*hh)Y-}ndW? -@8e7?G>$;AQ%$@s$1 -+2DNmq#k%)9WN1Q+t1g|deu26%t`g)KCLHU-kG%b9ALU>~wkAixi1{}83KqB)sEnEk###0Tou|(bHdrP~p;^4cMUUN5bXlh}68dyF?&{7qGUxkeNTj -j5cdshbVp-~M&!C4uPwBxIR{504E?r)Pj~@9^vE6Gj%Manh9_Z&|NiN;_Pzh-zyi)!tKu@cnD4pI(Y_ -syM;c9X+PqN%p<6~AAdi;xPya;-ZGOt~CUMk^S;8Uo8^(N`{K7F%K*<^QLTvg&_$9xQk+>{%rf0NxhU -iviI-6JOy`Q7%Sa4F()U<~y-kK10{(NckaM8g}En)BY$qk^YFcfP4$PgGJxQ%pbVRC5=tlbrdQ%iC4KO+wjV1^^^6{LxFLny6nQE;yKU?oANiv>IwZ$MF! -A)SY(=st%8; -6G2r5BYecp|Mt{#Ev5a>qk>PkZAX!raS-Y&Wwn5rs}1>ov}tcb6#|x53KL&hiE9d>8P6ScD%yAMi0$2 -tM0FXB!m`NP}Fy)P5|z4^%GM5S-?g8Pn!(m8mKF&jf}P(>g&zuBBIN&dOf*iT^zJ(B4j>_xAH+QZp8A -7Vhknki&8$1s83<%Q878a94+zg8M?gjb*1l=P1 -=*n4taznQk`QfsPdoYQh|o$z2~1*tC?A>gNQdwL3U1MT=8rq@gpY3LuC1D$Xp(>tby4A%?ikds|?FR{MXxeCp`hlMlSVF~Uvs}(Q@Ycmgu%1)iH! -r##YKZJabKmQ0!?$1w|O!p|0TTSw!d)T1X_NlNEk3g$8RFQtd_9UjWq*hv@Oc77A2dKB9(TuxZ9T`lk(sEHSW(LwTYocyv0lX3o)6$DnVZ+F5v8L~VGf9uuHduxe$Ka?WxEo1;x4}^j#+6$`t0CK*`EwlT&ZY}ETy4715(xE!fD -BaZ8bL+x>syC3Sw(Uo&fi&&L((32N)y0{()*pKPwhTWO -9RC47YZR3uonpJm>Sw#;fg;PX=jP9{cC`2{yQKUE|L9%5{8|8J2f2bvcF8is-Y!}MIZ0S2T9no{=`Fv -d!JoOs#~S(e{_6+E{hPT=gnn$n3(JCN2-iowex-e)FCSQt7IuN1_LerjkciA6Y@XYZ9c6T74BlVBYK_ -aQQA_oOhczGy*H@WLSED?-`;JwkurL5vJ@hcegAKd~U}NF;XZs%P^|5zTPB{F*K`y++!k(LX&>x!PO7 -W*RS4S&~HJ0)x|ms#s=E_49YSbm$Jzbg=c`}MF7i7(}GgO-~xop1 -L~b15wIC4Qhr-|%}aqH>hUjdiOHV>Q7f>)$eXs;VM#!HGx~y-T%h*ug;L%Eg;Wq=AnfU3M2yC@~`=H;zCM?``{fAGI2{KA=Im -+BQ;204BLCE85&{JTzW%rn!WVo3qw6@GZa6DmmYL#4=Rmm(1Y+@_~nBhT^_CU^vEOWrt~_H!Y_RXWBc -0RI~#%TOxmc$!5(^i3yf2=r^!Pyo7oP!e<1v@iSF?iN=}i;Hp8*TYaMw@ -|tnatiCvp@DneE$M}czDK!z)|=J%lumo$Y++rquhMM%^9djBg6N#Wky6Kg()}LM@1s#&5A(u7yl --9d^HR0GmHV?!>z#{iAC@5IF76nnI#*X)vox^Kt63Y4;H*mGr3ZrsNm2;I9?R!$XC?Hu&odv}kV__LV|yfB1tE@WYG1OAG!`A$Y3z(}q8tfu^>iB$p{X=L#AUy|jdGj*<6 -95lcJ(WOyL@jEgDnDnbbYz`Hp@Daw-X#>k0ELt0Qw38Uw%(qM*H4q9<)+QWFFATbd@-HfMM`IV^To9> -d>gASnNopB~paJoHme{jq0xa;OO3nyP#=sZ~^nhRwfs{(Rn@9>x+JJVE`7Kh-MVlH!4Y -Z)^7W!-XEh7$TasE*1Fpx;aHPh^_mnOdyunASqrX&}?NY0{x;n130c0#W@rqg85|M>czSb1V=p9Y|K$U*OGcs{+PcP~M6q0}nsz^oNpFge5(Ls2!0Ug<*KR$xVd%g -Ah|J5rWCh~jl}QYn^enZZhENPu=Tav}jA+b33_iAK981K_;`jbYaKGvdWN8ibNxpppiL^D@eqW&I*$L -}iOES`PR^51757g&m$UPe#1A018WFM%Z~TZMO_)JpCq;pacKl68T(1OVFd4b7w_04C(}VM2=d`=gaN&(q&N88>aroekk^cNyu{*t@!AW1riO91!pJ%!BLns>4~J&>8R?siF) -D$GpJn4RdMn6Y{iXaUjO#{4*ZU4il7|(o&P$L-dCEpdYF^{bEAvc@*W5n$p+F)g2W)kg1T7r^Ml_g)E -xLN=T$2eCq1N3m>AEc7j<+?yE7S#J^1Gi_g_n}>(vneqo6O8XQ-uvBW(<+H^Yu*#^>}x -mvQ-ZUpjN%wy%Fln-zZsHwE34$hZ~wI1GrW$#H{MS#uAwmjP*>+RxVfqSH<3eHKn&`17UtT4j40(->j -x0PwPGEXHU-((+}-ZJ#1?(t3wtrvzczu_w(;Bb^jFc0bai7)SW4XbW86)cLL6Z?rwp~+_h|es}!<5U9 -9W(7@f@#-mLdpjs{m{Na4ScUs4rrPC2fmq{hiL`~Fy2iV|PcS=Dwrozu9hx7Z*byxsuoVOcYPZ8uN%b3%761aYsD<|fY$fp -4W1)3wX|R?Qi97RR@3$=gt``a~A#=oS5%F7#Vd -I`OuBst_^1fF>ib&p$OZi=jjISLHehn?VdEdS?=$_&$sP` -6ucvawP;TDo@lq!1yl#@7f5$kprb!b%00Z|(Y@I!K8{Li(c3lB`WS&{(gQ3;8yjHb=)&Q;83S+jfyD^x^};Z?W7C9NOh|`i@Z4Iv+K?cPje%6{N@Hg&-PXKDFiTHydU6yI52$AFUvw$5ZN9`I7nA~XoJ-|qphg3dBYqSZeB;rGhCfwbjR77 -@x71wKtt3-7X9$KJl;MvB?n|+y!P&A4pYD;>LzGuaMxJHcc4~l;M -SJKuEbJu7cHfsHu1nF5qKmJK$8@;{$^#@1h-y>8g%iJ?$@UL-$?_qP(lFCrs=0ndr5b;os5uz?F81jL -lm4Cq-ZS?})KklZ9U#yB{swS4zRTMN%ktt&cV3veS5X=PYzE2P%jz^W?LSx)OA6TLOO`_1AyWbv3U+* -S%;->8-$XyqnbN4N+m~%m2o-gPyGU@8W5g_m75c56bQH5^!|hBHW}~y+Zjoku`hS1uxs;56=Avgoc~~ -Z|O;)(TR -FShKmS;yRvka;c3nwlcEPQVAgr42=YrLb(lfH3Rr-yZFuX%*ev%KuM2Uf|0o@%LapOQhP`r`F?OxX+q -S$F{|d^SUP;KnV8Z4AJ@Z#x -p{eXd4t6n#YT0sj7Nv{*}y2Uz=TVJ&=e7xuKMqw3blp-la3IJ*s(numL%eR(!T#o}}uJx47aXsPBFG? -bd>D;xbJb4^dyK3gWMr+R{V%a5{wIJwil0x&FysSIC8f`|rWmLV_qE$X=!cUUNAgSG!gPB+xj3YP?V? -K|iljBt`Df~NH)hC2kvYZns=vA)df -ztC(c}V(En-A|+FT1<5H)ArOr049ujuxB%J5(P?;I&%3th!WxE{=chH6EC$4tI|*vj_d_mZCdg=y -y92kULt2H;&!{IK|I)>N`stU$h~T!waezAfQI6~KBiQd7rwwFW8{GqX_3g#O0-k+Yw<92KSg`^QIqUi=}qtOq<27xq` -&~WbsDd-uEWpY{f)k1>8&vCqV~JyK|LAjMcT1NxuUvqgm4D1To7UUe_3fyDLVTIoEUr)ETMw8I19oPUqf3Ko|21%R06o}KAmBi*F&i% -so)p7xY@fx$8an!HRyuw1ETwaiJgssGVJkjz49CUL2cPYf7U+l69}|+o=sN?b!4d -uzUI5vLTg(R1DiD>d+X92(u`=dXDq^L0y6h7ZGmXR_MH9~n;a@{y1(IxN4aoHx3_cYNK99j?qd~+@6^ -MO9(h(lB06llaG#6^+1e73g%GK=Qxj{RZ(R>;kqXg||{yvA&x`jvV{c2mBnYUGM`F&7ifT1!KY}KH^3qRPS5DwBg9yCcHGGjCgi7t&eOR@2H~gBl9Gw3+K+npy7%kHioLh# -yT!KG&_~ZAoZ}`YKQ{g~RqDx!-cwXo&qKc7CB(AU&Ke3Cq{>K8>78jV}$(lk4Vj*O2(aJ -abHE!jbfk(Z?o9N#5KHo@C-~24fv5x=CwK-N+r~UUeeM)BGwVBaV*J^U;R!t`3OGWP9nw$Qt>-y7mDypoL79_hraNs@4!#_RO6?7YUDb)HorQ(M -w{+oJ3x}CGCSzn_i=QqpZb&Or1QB!ee=^uFLSa$q!3ExkcA#VsxkWTG?a>}dnlQI{vxN3VH;hs67}Go -wV;;!8#VgbE>Cvy)@p!=m3%(Zqb;e`?-=vZ`{knOeE8Fw0p6?wt{!&6)x(Z{!N?f)=E$&(D?&Dn3w!8 -ztVSqzNOZGcbKsl=>AN~5z2R~nK7M69d8`0iy9jUL=N^**WxGzF6y_(z9=4rsG{bwgn(-US`JIqyrNn -m96^!aL2a&wum0@Vz>SsVww_|Spg?GA8>bG>7DBnTeW0}pWLLWL=Ig(r~snNhM_-%R;&TsS%dL%gbby ->V82Hw?IUkAjyS=;v?zNZB;Z0d=R_{VhFB^1+AQ3R_(6rprZ!JEaAl> -e~nS7a)SR$3Eire4j$C==qPIuSExtt?FBd!xZ^1eEx^LTI4ngMx3axRGIsrw3@-0O -%RMQ-P6~~fMxVm{1S+2L5tk_b^-H`vV9d=QA?muJ-q!u4DPo=d!)N=wK7ah9mmmFsKAe&K?uV$C;x)b -v@8R~IUO)dU^aHx{_eXv0=hKkQZ6IPKEdEpm&e4*AGuW`fM*7#X!)YTy2L8G3Is%7jE -(}yGIH+=*G|LH{Ykiy|7UU&oY?mqL%^?kfZPeFctvupo*?>gVV7cPnqyn}7!0r@EFU39=AE6OL^_olc6TcC4;nIDt^!9q;Z}c -XM+LsYjuJ%!?syhLDJ)Xv1NfS}IC)8AH^6D~F{EX4A`MP4t-Gnp>Z=mK0hpM>}Au5xlhes=>G=QUQU4 -hnjQ|o)tI+$7GCvoTP6;uA~VTXG-op}{g>OJf>pxuIsDff8T;deOajEX7udDx+DG3PZEQ(pCQ+u?eFLPM`~$KoPo$F!RP}vhFZ#(_T!h?F_+%XBD(M0l%`B?`h?z?^xYwp -+#xjw=>GK96?8TZlg8HaWc8|m@?>I9z$>20lSeoL5?~Ib+Sn*`sa^{b{n+hH>|Eqt=aFgP9gsTjszy8 -uxwrd1x8CmOsGP3FT}hCLTUjEKpTkeR*hocValZnN(_Br|(Egah3~vRE;cL$Z>X#4Y2I|GXu?7klFyt -KInEq4@-4=!hck`s+%~RutuI8!K-8?;|W>>|_&6789gE)2o(M^A2jZ^sDxZ*pihTc6`IfgX*-qPAv^T -b;3o|lCTe3-RNm!E}}X@5N>cOJL4w-ee2|Hl0rCZL^V7S0=mE^Va+YtWa_YG|7k3O>H@H`RLKPUM7hS -Z-lZZs#(>E0X;o{tEQ^c9t|^>=QZV*)pkGl4RAb$ -egc~2NW_T~*@RADld9?;1bMBt`<5pMIDAn!&Qp6Fm*TEErLlHe3?@%2`SBB`PV^@2E>F&|cVd#St9sW -lq`K4I&rqMDC{G&UpqkNwkag9aD1seF+nr(30gT_T$v*>Y1!zDaSaoX-{tc-~PpMJl0F$Z0nWo -iPL=+FL$iGIm@*z-=`zJs{#9EaYc$@g(Q(qtz2ROB~(?;S|+UO6P6tP`f<8d -kd%aIau>|v76hZVTR=Mr5T1C6K?pqD3#7P)Q6upBpU;T04C* -s`rB;Z`9Qe83VY}+pR6#&bs5w-`KOLks_)W(P0UTR#o*3t&y!T3{cy{xnjVPj!qYL7CZDLLtHDuc*D_ -O=qOBAf4w5%0KGJhcKA}n3{(n>6K4B-I{rB7>Y25a0u7GA=oOSOE-Q46%e)t{s~K>kdO{tlkob}I-5; -c5(wdw>)U-ccuH=2(;z`Sz_m;jY)Sdx#Kb{!gne_OnaSz2|H`okA=?lFpmN)ex?xp8YcJ13GPTP#k;`kw*$f&t4;R@PuMvemFNfk$UbK4pRi-Bded1H@*$@Bv`u56IgB- -S-rS;`%<*`<~u?!%oFnoCqdJ+E>f9!g-kTH0wpYfm>I}(_dF> ->C)9nxb0S4G>d&%zSbt6VdoX6_}!LwR`IWe-#cf{ShemjoOh1w1|}3ZCMwq%Uc41~}%?GvB9 -rl5BzOQd3r1QuKeg3xcdToVD*8)zEGmU+q>h<=kV50qPXyv;;kQA`TT&Z6FD!9~78^rxVvkm^Doq>Rd -+Wi3^3=U!=p7->|&yvH%tuM$tzWoK9uwf~SC4dT~eG{Ea=`}h*zYiwdsm<&ZxBejRB#37R`pu$N_(;c -U;-{!-y;k2wH!4;OIDDZ+D>RMVoxIzTLU(3psyggbfQC#IGSNA#SAv)!DdJBaL>*HNIYFlSYxllQH!F -JVoiqwQP58a^vJ|l>mG0nh!i+8P*(duf}C}G?Y)N5jr% -C&XPF@_rb5mhw~Vf9s#s`g1-GpqW^?hu0X!hYNiH17*2NPP=(DM~!_9Lyn-(6`+T33=i%NovQ9qe76O -KK(dLLtgFL}JI8+t_}@mswDngb}DO0&DaxJgQLry(2` ->w~pN7@CiEa^a|>LLf-@8o-!RrN%pH@Dgs~xn7n9p&;S??CLcnlDL%w8L|3C<;vBRKbpdmU3DngTEph -r_bHi$~s_Hph`0H#2nOxggyS7DD{a3UQnyI9X+&vv7OjQ*EmeXl#V#Ti{xS&V(G@;f%ee#)=q1wtzJ} -bw;udk{a*U43Ho0sT>ukq7fgo1tAn+>p8-y&Ux5n4ao1&W*oUNlW$L(YRTb6%Yw@6EkeW^oJC$18sG5 -#^hz3U%&+q}ZcTMzSl`wtV--JH!#9tJhq{Y|}IOsvY{4>6f7~cU%Q!@EuHK#jl=qwR^%Z?Z+`!m>$P4 -8aK2`;*wK5hKS3!@vCSFoyy2bo620B)A45YGRV2=&i?qZ4sx&h(`A}kmZ|gOX{JSi%bUhv%-IKF4fSchE&8~9;ty)Rll3kfGFO*?cr_?Lz5WV0*D2 -xGkTanB%}+)lxJdvHVM*(Ei=mBe{z_d~k|t^G5r>*K@>lg~&>>VOo|kq6f3Wh -UC5$!(FV8G=UX!Z2)$P#v*1U2FYVinwIv{J2(%=(wJ?GS$yWk|`(JDD0)zCO`sk|1Bn9R(Wou@-h_Uv -Oh!Rv!MZep16RUJHR0k0>?vFh8HI -qa#Z{ZCqsS2v|VifI__N;eD=_WQ&5RhHbR?n5-J<6B&wwLTP4YL(}ITIf0m>bcGG)a^>|_831D+9l@Z -idsS}{gju~OnCArUN;DT#pLgQX`|DnBqUb2@XgdSjEtAdWNz(utqFm5;3CA|D^Oz~IXF1iMp55`X4)t -jOHv4``^CL^G&(AFEg#2*AnVw#pdSx;Aqde{GJ5{q5J`@q?f`pFl_jRSwj-+ -sm%X6TqTU^x|46I(PfnLztBhwei92^1Iu89rGFD4P#(%H&92qWxfM<(_^-kAYF97Jj6jG!0i5jmU--v -)910D9x7w$EF@?W(gKwRTs^JTwwZ7ny`T&1K-(_5uU^|>!aeoJA+llZsKL>bUW1|HXWSKTdzF4IQ$_j -&sv>oP8bify9H&4sV5r!RK6Yv-e}Y+jCe_{m6K>2m38uhMw2B0yF%<10(N2wavAAO&?c2~^M0=JnsRe -C2Omx@&v&IS$V=z{9(GBXAm`Jvhf7fN2+#dOdx54P$(zAdJ(gC@QXaN~2+r2yri53vp`M3&6E}&F*0a -dmuk*Ab#3U>kdvjQR>QT)O3(FJy4jyr%d7Eq)Kk3N7cFfN=$qg9$}!yF&d;whDSFDha|0H}n(kGy+j$kkg-;C6;JyW@aSe5$2C1>?m_2iwKk$F2beTT -ujBgNjlBL2Rgqrap*+!+w`(49@W5$G|#*rV`p-!ZBLAd!H_gDIRiT?gVe}AUG7wK=;Ud_UEkDYp{sMo!Q$ZCxYS^@ZvTgOD*Gq~f^FlERSIPDj@RMku^Pe -^4pE)6^~n;wCn-SnTSHj0RwviZQaK+pT{+ZEhq@@(oOmimBh#`lJ8NJOLO?t_?nN0#h<9d%dB?icjbe -Y?wjD0L^Y`^S0|s8(=@*v1A#BfxtB^DafS>bSqZV}M#;@o5+=<0a3ho@UA^eLs4dDx?4SX*NGz2D4WC -QW|71jU(i(r)hqrh+sWa3R>N1pGI#=mOeso4eh72RJjCxY)zuQhqiwHPpE50I*v;_ow^u}!U40Oa}iD -r(40?WJ8VysB3{!Gt_tr6*OodAJS1@s1Eh%ixd$cPl7N1MkbtL=33qUpP@V9;nQn}wUf7jLxZsj-Q2e -`{_Fbv2dFjo2fA7Amt}X7a{H{N_@5{>5O$oCH(9TYJ*Kr;%$@0TXvYhY#k(;z0-y&~!-ImbkeBSl#fn -HXOTWk9n*v~PC8azzElntT>1<}zruQtjlVj2enCZ>BNvHebW5}|7}344r{7bVAFbKD6n-awpE>odRzy -)!0i0`^($&RA32(G=AVpR4k;wce<#4c)NCwEJS0cbe|>1-EGYK2TjuH%bD@puF0Q`Ioiznp9^4rsD8l -d6wE85>wcJrDutz436fbjuNS&%(_uQe?i!u&fl=74mEP4PCDC)0cu`0P9=?H5VcZ_6C3$ -cC62%%Xp;aeX%7hCr7I*j?1cgq>^11K`w%F`sLNwksj9(2azf`il`g^2^EG-_?7WwDqP8@mc>|m=ts_ -Mpdw=flq#tT2ez|_k&@A`VvxKIOhFfij?1rR_<&8U*D%(25YnnhP@ytcHix308kRb`aEsR=v-LB2lwhxho#ipn9f}Sz96vb2k6Mct!@O@2n(4T?a2AgKJJ2WY -Wz_D()ak3c?2`qv6~7AM2AJgYs(XCcQHOjSlDficvGrm1^31}MQv~B&w_Mge*-10L1loe@LXF8StFDz -Z9cXYdispU%ex7$+1jF$u9(!o^mh-<_RuW>#v0pJoSGDMf71;^o+e`s+I?reK_?|Hpyr!}Hu0e*p{JW@T0y65bb=Sg8seXv -;u21rW}9OQ^i~we$+z23AyuaTMFhRHJ~q*To}9t%_c+r4u&CG!nMFn5u(t8q~4}j`*pGUW5fW)jZGEg -JZ$Cg@$VuKBDWxdoM{+`I?w~!Zr$I@r?p_rrl~3ZVojHrIAMAA5_<%XC2dE9gFW#$3Ci%>lhIn`3aI< -XgA}Y_MfXe9ez+<1gp=5rB+}+)R5?7R05%*U>%t@1M5f|uOsh564otu75;ita@(pUP%mO!^@T{+y&J_>_u=~9`*NKT4$;+WE-?+$nOkW;3KrTw-%+g%?c>$6L=t4Z|_lVj{zlFJi3Cr8Hg~%y49z7|L*Z -f1eM-u^x$Cw^1DHl6aQk$R)9j;dt$ac%0$5Z%b@pIJRWsn+(T&MB;Xaqy9~CE5q^DKyeeparITai{W? -{SuAHbRf1+`II2t&^BIl`*2Ik4+{)2XZ*yxk(=iU1D-n-mcqrn*439*dFq|rN{IP`b8F7)}sCilZl;KH;A7MDEg -ckQP+<^E_hNEg|@i~SsL3|6tvk>3N@O;E;7>;Uk#Wf5sL)^;na>R2PUW51&hBqK?V)!P+H4NW^cp}5M -As)-{?T8O%I36MtLrdt8mMUz+QDUCEt_K*BL#7Kb4f7Shp)J+*O0Y>_Hm%Gi6l|_$HciZC3D{&Zn^%} -k7TBaSo5zdg*l62=((lo>M1sfDb=2c(7E}#3Cz#E0W)llGN0?1Ivxx_rCT5euY?8p{O=dHZ*=WG#C1x -{>*%-iP8?y;vHu+%l8ngMOh&4B0^Bl8jXEtSE^Ek8lxX9H2f#v+J(Fb0v%)7iW=BCzU50jj$ycqU&Y*m`HI_l1CWkxM8XZ=$;&<&@?%H_A2%BWEr`1=Q0X -vHtq*{PI;H~}iD;x_JTAcD1m}HR$C1~Q9+tyL%S(RW;);^95{<4`2o5u-S`4ZKFkoS^_gOxeXa_4KcO -hV2hq2;yJU@OD0yr9^4aqV^n8$7uF$IGe)gI%HfM$LBEG -W}S>yP^%G-+3!atG{^nt$=43Dt~TUl>)Qzga>3L^=u0h{lX8URVm^?qP$k(D4F6r8T_$rLC-%(&sM}4 -Dt~EP`4-wd3^wArd)=Drd!Dxxv+17VRw?3A0$uYDxEDX4IzJQ*vco@^Lq`KT;KqSBdgci=(?PCq?#|T -a&w;7S560xiQkAIih}=2dsQP;=R&S-a`z)K12_NA8gpV(~_B9N|bF5*8xKoDuV1LZ;UQzoxx;FKGR#e -^NjNp+olC(2E8g-lQWCLEocgafmq@emL{PM4-hmnV`iP0HyKGE}`^%=y4 -NH^uia7>9&2v(^!?v*0$nZ$^#MU4_C?E#vqPE{3lty07qZ~_i2F$$mI@ezGBxR|~06LzPnx(ej3E-0a -~{9>SLVdGS#~njl>vR64p5W_gn$KA*^FHxWu_i9&VPOX#4B(MiqD+finyjAB|SEaUazI08(edyU_r6c%O<#Yc%4CVR)DrygQaxHhbZR(&1b)gK#hpgKESbE-w%zMohD -Ut2_I($xWrB+rRl$lIpw-^$}M?exzo|%$M34oyr7a`K7j5=buU^f*CQU_KQ@qUYdZ{ueYD|;KBIK2`-(X{#7+9%sHSH_VMJ5(boCI7^QvF0v$m$1KF8LdS -}J%8b3rUE=mIku^loDho-?$U#+J4aGG>+jd&0MW|kp2kI<6djR(7QcncjZ5G)>pq5gjKFGb9WXT>rBX -3yTJnvxMR#B~^Q@Fwl#Ce>ZRxJyCU_d4Y!O`K}OZ1CUy1MmaOKvmr;X9`Ec)MH=SnuO;Ba2uf)7O+E= -S36J(1!kyh@?zfscYEd4`cY%W#mkt(y?y7fV)O6k&@zGL(0sY?9A2ZiGKYAhXnUA~=gUf0yh8YV+nR9 -9oudiea}*5HrjS2r;>*7s8Y+I?2JzaOJZm)8W@}svy~+dYaXQ2x?51i>9*WzOa10N4w#X@Fl{;bra-j ->egxZ5p=cUe7y>kv3>NkdUmAbelDZ)ISHdsO4c!VeU^7@@lr4-RN79|>u5n -ACA%P_P9+T_cs4c>SuAo93cQdMKr(9UL5{^IMnUi7VV=>xc`4)sN}@4Se+((k3@oCmN}4A2IvX%h5wt -zC+EZyYO`moKq{XbC5sTcKa*ss+ZE(aY3WDL;(Yn+ZO0);Pay^N2qFKSt;ZQZCQ@uP_G1CTxpRazPUzLq*Q(l6$r0{lOQ}1;<-OjpDPbxvsNx -XuYp9qOE@{TBx>tCR8I86FDcS~)Hu-}HBN*vmltP>KQeU_NB@AjiC*{_2InrahlJ~~lR3*`@q;mUMF~*(jT`PJ|HjH=MWBlpCUp -zRPk8^}(UEK(+@I9W8)X+nodPqWT`gVQQX;sx}sta%FPVF0n>gd`-*$bUb%^QA9$#~neC9C?w=yKmI) -oXVtNr-}6p&X;p;N3D?^;%Vc8eFxzMIS5#7@c-0RaMwWYlRj)wy`-((?!)?T=PXDhd*%p&pF)8VU-`- -J{N;YffQ7B<*M!}#VvMK#a>)1Mv{VS#lY{|R4c}41=or(gdz*=cB&EMBL&llF^Fo!2vKm27y#rvtqVVuQF85Hk}D{=L)ypaRXgT&8S2yN-ChPWOy0@{$x -1GwfL;bwIiS+k&FKOYF2s@=J$PQ)*q#Jw1iLc&DXtu9X65^+c%o5DHE7fh^`g!?)IHIjA*-EW%7>S)J -673M!1UfxbrbYNR96YRWCT@BD)IvW+I|RxFcnCRM+FlwQ=0FbC+n9 -uw_2kQaypZZ!c1hPSQ_ZkD)I0otd#rJs7_+C)2nu}%)xdmRVVR2S0~}2Lqc@;qkIIH2AG-nILFfhLMq -|#%k)Rg>2eN&q5=>~?flF+bEy7^IbGE3sXF4E5~&7Ksy$Rk1ZgYJT+k-}qE*fN1sc>`raJ=N`p_LQtX -JI;Ub5Ex)wfks=>ScTV9+L -sAtI>X2AB+O0Waz!pi?908??S|glF42u4s>KTNPt8c}vaKJp(+n1Qah@DbI#z-9On#*;{K}O^3{7a90<@`0h;IsT03J^1q?gmp6*S?p%7{JG{l^g=?&ZnjsJ4i6vbKo -NPr_Khjt6CqA%9SBPKK)bCc1wZ%5Nf;ma^0zMQ$7vQ|Eq#JroUbF6BASFtGKqQ!i?#h*~3b^kN}A{;Z -431)_0ZgBMw41l6K&{6)3+HB%X}#icSL)k9^(&@L*mN_!;y`g9K(FFtpH4{4DZY4+vS(z+aj@PkgZqa -RF68tI~dc^kXPM>>qN9dXJ4UK<<}g!FCDdBoDVVGL~L38<&xXzW{LnFVc(|1=>+Syphu04mn7)uuv4qP7I(nn -?gQw8{Grw9LTy0lw5K#T$VdH~U|^0T3mll=FrN*~aepoh%y9(bIWPx#G1{lYZ@zsz{1&3F&`YZv4YWa -a)|O8#bc8_HiN@geRdiGI`=RZ{3{kgR0IBn$P1UsP9O31+D-s?3a8gFC+Odb6mO$+%x$J*ZwU0;pTmkswzK((81vzZ0wV=P>!{#*ACJSO1#D&=Vx@G61Zk%t2T89#o4IIj`Fc?gx -v4bA;BQJTI1<8`X^VZv{&Hn^YTmAIACT%TTra-*kj;kV6AW&g+SMC0|V7F@%BEhXF}J03-v(tOz7I@% -VeUptl^ZEOQ2>W;F`~cR;S9PRRXBUS|uV`K($>9zaydQm0yapkAUBC_5tu4ud42(_Y=LZY(K{kpZ3!X -QM8{#1eosMew0~xwYU7rxK@Tg8J?OYzL9goI{LqYNAa;cTtl$ymPwK($+4;Zj!w_L)m*h7vNH)DtN}kJCwm@Uv>ic~x~atF%a`JuV_ZWaz11(Ej-9Nz7Wr;k$`pIYqG2Z -b1EJy?z2ld5)97vX9{j1(+a!FZtxHLYSwGE-jfOFx-%@rqhmyRQ;X(3jMmLh5W&9>dg{tax!brZH!AM -R-!&97O3>qHlPO=V+f{1q~tvClWpRu2I>T%tY>fo~ES?dWkzMv -Qvh4BQbEBh6EmLHDjgy~GNG;IDd3iPsd=`aAon-ZrC-Bys0o@iLUki<12tDWeKFyzcZ)n}Kf#`QAjnf&u=p|1IRVW1$q*ki{bF(8<&cE@AS^5a}d;yYXl=?)hS -UkedJCN5>#5)LQ~Q$ohBrKc$N_Huuud>@HE;WX1>N^g8QW*>k~L{MLs> -;^Hs_6)VfM5W>q+R`@tl$>zKNO}>n>NUuSw=T)jMQ4*8d^Sl}&7IGyUQ-O^p*jJ`K=n!0{f($OCV&mhmIar>;uJ^m9qBdD^iNnbuT*8+{eC1ur$E%A8&@{o8{VQG6aK<6pOVVgf|)X2Hfj=voAE#$9{qoPI-L$26hnU=vPcQXQ-V3nJzQbUVDE5idd(-9OUZ&bG2kQA -`PAR54>2R)^|HtihtdSUx`<*77y*9pNp;H(o&fRv^#TMBOC8IRRyqeO!W*naW7 -hFXy6YlB%r9BMkf6`yCGI`f&QN13Ou(I|Y2o8Ip-2!7_cvj*X^@#wFpwA^aWIfq{LZzJo?sDI`N7C^~ -s&{-XT$fK~8n>8gdUsd%O@_*Kp;C!~>m2n64UpSf}mI{m|?y_OG2_6oCVuM4N@=XfPItM0O2#*=rA?pRF8jjBoI4x4IYT7Z2mN+1giuU?MYRH22pJCJ!zuS(L}bZ}80>?eFAK5#FSI!IwUx<3W(X1odN -u%SNOPn2@GMkAaJG0Qp7nqOn^{sawg2T;dF<-iU!cLw1$4hBj1w=yP*KF2vN36~*mh~F)_4zb3B}?b -8j=@Wi!ZXK?p!`UQAjf7Gao1Ht;mAaN~vp;?OXAAp?1#>O#Ge7nST$;Qhicy_%{^&IRrvDdKyhe$uC- -y5M*+-poeWe`5ptIW+{-TXNl{{$O0v6QTfcAgYh<42MtUq_HQuS7ooZKymfp)Tx0;-6_!qxxgp2=%cg -;g}S0Gnky|tC!Nd2tNc*bw997GQDeHasEdBr9%wE+uaP&lHtNB15WHE$uUa&s#uOl{H2(0HdzTiamXu -4Y&r?VjgJCr~>ADkmmf^c_;a9@`4K#BJnD+;fHC_h!}U6iKsHuVpBdUX9v{e_+d|Q@wped-U -gupXn`hO8|nc9Z#F#VeVLjUc|0O=tCTaS>+~$vV5-K^WLoTT#{4)W|E|E#`mz_K<&Mpkzi6N*E>UH_h -58aB$ex{PdfbRDxFiMy>KGBaTIAJ#1|8R1*+tCIb*jpNPM@*)h%TLH>oOjXQ1HwLMiY^A&=SVm9p#tu -#k)#EHIcL1dGF|Mu3pH%tnG(aXjiA#lD8}@4%?kl5au?>rdx(pQv`|=!cpl*LRvcJV1*(Y}kk|i(b3< -Jsa*h*l-U=dS1iBphW8EDCdCPyD~uHD)3fDh@{B9b#LQB`UNZ3Af#*Powvhgvyq<`FTGV&% -tiBKKrE9YVl(H{?LgwX9zRF}yEF!Fk~P;PLRP3@~#$(AVhuU2uP6kLYy -+Mh4G!G$M`NC%r$;=EZXc%+YX3ARTV+Kxkh>IzPO@ni6vU$dYHoLsqU2|_7U4uuTPRUqcC-Ob{x?ZhB -Bo@m1|=m#|cy&&q@1ZwcgH0q=;4ha0Yd|sydq5Uy=98_e0)aSi$!+LI!3nV3}7{ZN1z*WgFS~#3X(r+ -&KBPvFrO=r2Nqn25kJ6vQ6`#d=}DM%Jyt -Kv`_2(qOyf|^nOv<8%wXas7&*n+z6ee+)fG2!>jxTzvac}ga&#|8QoZ85Z`XY=<%|$w{eL`wPT;F;r9 -4e+v9FLc6p}VB!<5Lojs##fazj~`1e_^E_=M8evyJI_-YZ;mQp798iZzNB-0nf> -ers>>?ZQtv;=EgXi4c+!FNXD&5#0MK92Jz}pZ?yfYsh!=u-%;q(O$`fwOPcjgrdXmxmV_dc9)F>eddG -?6SnjgR6I1zGn8jy6An})`4ZBo+PGVQzuqIgzSs27_~LtY!lqA*=*`KHV^-t&W+CD$`js;LT`@x6BTL -2UERo<|>zR2czKA$do$-iWv)fDQ3Z}5mP*3Ap -e@D0k;#v^C*YgIeeSLRt~@7u#3ackqpLisN--EhlLz&;P6onU*WKc!;d)phQpsZ42)rLFo$C~oW|i?4 -wrFwJBL|UGnmTZbsWZU7|P-0SO&l4u#H3AC5w-pSzu96rZk6Nkq+wDIzipIFYh6A!%fU_#w{iFYho5rzO-%Q2eLd5zL8VHBR4r -!EkjLPX`x)%{ym^}0502~Iy|*VIcj_Z# ->B*g#^{TYjg@4UmJ%x@CV*WI!Pn5$vBe4wvA>I-iE4o?Xuh12OQ5+90Mw&}TwFqoWsTqB)0J<#gm@iD7jmG -2vTl7-`IagD9h15UGSvHMX=F>QuH{@jj__08m)g+co0NX;Kb~WW5Ns@hIka?aG% -dDnA$2rOW(ZqA^Vze!C%MYI7(&>oY!p*&Er-0SAqFdi&Ee(Cs22icxs^+bxfFSD)Km66 -JXg`2{&v0VExzmiiTF@zbN|Wsu64y{r6q=RSAu^VgmO?Cz11YSZn`PT^b-Gx^k-747E(r2K7mUXGhxZ -erFdofCz2_@S>7cOn}w&C)$bDSj;-QKDwUQiWXY3$cX`58A;lb;!dws8>8qdUNpJG+&@1AtU;(X(HcC -C$)kdu7Gai}#KO;ZgW6Guc&+d^6nZCQ8BCkuRoW#=hHlOxQ*b-P=JZDnUcYTfbD8E0RUi86a6w9=Tn( -e)&H{PTC{y6(QY9(n`t@ZKwW0fZ1B5`j^W(p!|33s#%;^;Bd1?Zu -bfUfU2=Nlbg=kVyV4=YFUKp#gLJZK4{D?BsXHCBY3ki}II==tr9J#DrY%A-9btL8q=9cwJ2Pzq-98r5 -bb6YzX}(yza(ps<=rHy05hG(pjUE$w^)+#0$Bmy5KXFn*;-DLVb^IR@k0>rLhx=B3VGurMus(c&dH-gI-u(pxgKvX|xLTJo0X7u>p{u&B7idYi4( -?pV31Z1wGTtXaEmJ^8=>sIT~ob^TrGcIBS|df4CktLo*iyN?QwKgA#X^9;Yifq0|I_UMU+`R -6ruqNf5}t*cX#t2&96J(J#FX(Ij*O?VnbzB^__ -pJsjU<4s=xc5hI{Y(^TzuhcyQB0e|dQGBai-d%VUo}vGvKPp5FG%vwwT;`4|4a{l%AFe&yBIcI@2s`W -tV)_4YfByZ7wfx4)^m<-oh|9en@L;UhXFa*p#9_9ynnDLr3rHA?M -9_D*`m>YVS@9kl}uZQ{1JN+F7a2A$?@@vQ~ja4Qq$}zv+}dxfeEp-3? -3!;ApS(DRN@kWlK9I!@hdOCv%I1lBJjSm{LT&K;l92QLv?jE6m)!id1`qL_>LWul)AVa!b2pfsi4?=mr9b^ucoCXLT6%}W3hlFaF+!u;#XRO9?AjfT -K)R`|>EQ$VvXdvLo$8T -96XKW={(o9#FJrT4P>n!{HW?bME~hvd-NYbjx0zT}m%F=P~kECq-w8w_VpPD!!dR#K?W&o0g_wAil5r -@Ne&TkKHG1$K2#Nv=g*lBc%H-yZQ9PuE)A>j)EQ{5F8gXeuV~RYm#Hmsz2KV3e7J0NtV@NQD}t1XBQf -9Wx%}Y7Anf`IcqbU|CpDY?-PaRan|5omKe-c1x)>JIA8V&a*>~#!PUO+9oV3D4t*`UO7e%+(SOy@{6& -7#{yePagn9iF8g=KW3d$#6lYT=LD@oxakn{2>`-1%Q@WGsEz#3}_uZv7lYU#Ukr^a|xSuqSXc+xf1@? -TDrBZvg&BOYSMe9+HG{4+WFZ`49$LhT&ttR8K4XweGt)RrQvef8D9AKx+%H7-oqkkFiLC>B|mDN~9pM -J0SGWdyH%BV6@R-HRO|3l{1Y?ypGy%4_r;+UGvs(CYhXZ3zyjQ>JEM|5}={2nuO+2K2$$(UxYE78F?v -Et!S9ozBQDD79y-x-N0NHFp{L0}s*;8=xcua)Zf$#2_+Yf$B&|W019Q4qGelKZ1~J;q5rh{7(h^1`o4 -B@m$Y5J!$H2DmBmEmgDJ_iWAJCzlA4N#u86Gw&kVM%-NEE~!l@>&z62W -YXXp9;ca_z8vDiUq)M+W7FK)Qm7Dk0G3*XDD?3p(+GcIay{e4q~rgfQS@RRk$W5ad`99!SCyRU~{;Xh -*-c;3I*JN~?dCUuqb}wGZO31I!J8xRfMnLBtU`ZMhQ(SqtxYp0=p*0c1$-J~AY6FBzhEoAhf8wg&OI+ -k7z|B?-@kxY7b3KEM}*TEi$W{3$PFx=SY$vK-!Ba-LPdt2BQ%&uF?JJ$6V>u0N#9k3>z1Xp_S~FolpE -@EUk{>L2(L1$>DDz5u`41{?`%l*{YYsf2tAZw~jL0r;=bc~;8tM+X95LrFB0Q#6!Q^nJ99QWcSbBofL -Y63QVGcpABYm0ei4ALJAA2l)b?y7KkvOhWd}bm!~0_>1W}pnV4NxYo2&=k!27`&1{J|xBv=tf6zX82&J82#G? ->2wPt>--9aptQ9vRpeZdD8pW-^@yG7bD5yudBjVOW-sR~6({wZNV3JQ$+hX(pugE022S??wC-4^wy78 -=)i-Q0@^>?h#P#5tG6inOwmOG7=7U$n&r({ki1!VUWpB;62ZI6yT#EKC|3;zHvUt;CwEN0K*0aLY;zo -l^8+>Ef~-d*55r%LP!U;C)Muv%e4N4`tf_zMxda;2<*C9tko#2xN938 -La3}7#HO>7vcjMi%N5~H;sMCa#IPk`Bt|qv+{v7|uO#H1N_W_(_#iSY@hLJ)v6*!5QJ72|@saz2eo$vapw0%9@cTlotep ->pI0Gm@6+?o_5PJ~xDS>1N^ch2d&qF3fwGBEF(a6#l1bzdVUn*ltDr1V6KoXM}MPk0csw1*(;F0jg{? -@Q8Xs=No7C?RR=mX_ESe_)L2HwSAd$d0uFls22@qIyU0Z05BeXTxO-l<;km=}Y)9>zl-tRH6Y4}1=Ta -tS2^Qu^H&*r9CmJL1zQ_rV4iZ^Iz%p+t2o$V&Te-oFfjwsb&3KU>dm@vd+x2-lCOUV=RL^CJBw1;#4^ -y)fVLir&(FT@V?Sc$@bqMV@zWWucA++4zmJjoMGh_50mr+gE?$1V0m+-2I6nQVD${yii{vL53nHLBBx -zOL(CyBcZIojDdM13pfQhVei&$R7 -0PsjQAe{e<*IrMcRcMw(_QC+OQd`nQE1VblUsyUCxePg(7tvg+$ad=nK!5uhLeSdSy1KLVN&FZHvAWC -f=x`eS+nA-w=6u^1FR+7?>(H$d0`ZxR4)lUF?U#eO6h;tyWHxD_?Yho}{`B+42|WiuY?8M6yexa^czH -dmBG8ipknP`-UZ4N$!)Ne6`|uh3zq${ -9n8I_rd%a?g#h${Z*d~}^FD7w53oW>?n3`?RUrg44$#eC2ZpkvXB2DrYvuzfOsbHB6cQb4wDY!Ohk(a -Vz?uQ`_bTP~$JdCG(7iSmPXP4L(78EZpv@mM=GBS{8OG^uu7jp_}CGMz5u3|PNz}IAf`d654%t%T}uE -n)?|0*xAHJ9W%3N5n>3N1He7op#$z31baWUsj>@HRUN?FF+|+bwA&iwklsDf!tpax2nVhzlzYD+XIk? -n0Y1OOchah1}2c>!PG3WCaVA%Q6iT>&4gT>EbUTCNI9$ug%T1(e!Ra9(jbA;cY6(&gDD>ia%p6F(+xO -trn7uzEetyOG^qZDRx^S3uPlWQ+tQaW+}Go3T%*=65Hyb@!q_gjKx-m-AL0n)ho56)T0zKF?}xMQ$%MewcAQo^DhtS3-t@+_ymHCTVN?FSxJj#q1B -SJnCKM??Kb!~0mk)ZL(yqv|M3tWu<5X=|rwWOket>7qeB}Tzy%N#fttQ4;U$V8F}BQvzNEAR -A*V{Sian1ONAnb0wSY*7T60H6@X}E7p51l0#-qtL_1SS$qI*cwxgIP1QLx4U6JULl5Mp+Y!)bbyQR!d -zJ(ll=KPS4yvFIS2~D(KGntSronFRb$ZU3D!Rtu4-7Xe}sCDRDpw@9NPeXvru{1xqZ{)MLQ;LW}( -h)@ePZ7x;FQVs>FEkXn>o=&+ER(X>!D-H0YySmnq;k6QAcN6ORk@mq!wIJ5-)vjQcFzKbDdDn{faE$Q -xU6d})I87{KeN~!5X>W9fYA!U?)D*7kIh-*_|^f3cN%+s3@4~9~MR2JmYwgp6+tZ}zxj76l;XJMhmVk -Hy2O(|wb0F@WW^Iq=-kYbuNV#iR3$^}K1(>7D@UKD5Hpt<~lwr9OKkfG$TO^^O -SRZ2Gm3Lqav|!!(Dth!X9Z7x^Of=eY%Zs=zq-_JDZ-Cl+EUu~07mZN?FCvaCZ95{gB%fZg5nD-tZ=q4 -*@+1_^~M4R)9;xi%B+f$(@(SxIEv>{RI_ -MLP!FW4<74c@<04!v-4s-&E0l&gp%KVa4kUbyS}>n_xfF5|9SrN{O9?tN3KJY9zQkip*TX`U#dQqcU+ -RU>C-wnkhtrcH;1?f1y`VMjTkGXrKKjVeWGf%#g-!S)l{?-2ftKt9M^#7~j|F1r%X04mWv-}+SzY6|apU^%Z=C1DZ -`L`$SzvbzBb0~A~d-LM|Y`XuI&;NB9=<)pjTqHUs^Z9_65AEKz!T=&`!|Dygx%*S67<}wW1}pyBMvn| -?)|FGZ4gBwZ;=~i`KIm6mW>CZ7tAEhHmc!S;|KZ0^KYkTC^SJo<&3)5f_ZY?I!+>Z0iCa#nN#==LPfW -Vf{|Bv~w_PM;;yM=cGPK7j9`4({7(brla2tnPIo!hGW)3%T*uY^8hvghvIn3fPjY9*6Iu11)PUA3%!$ -c0_IULJjEQc{1syQ6YVI+s491;$HR4{l}(VhNjZvK?R;~chd*vR2_4!3Z)iNlQ?)^KR$FpI+gpYCIVC -EPxhLj#8z4wE>H=P;JTNDh@8b`h=@g~JvOcXGIe!%ZAEa9G1(IfrE&S~<+;FpI+_9Hw$;;84S1Jcp4S -DmmD$3xGQFQk9CFrW$wSni;h{nhu8Qp`y)zT-hsS -)d3+r+dA;>xkZaDB%CA&q@Slf}-#xwL)#LHzj~reuk6E1GJ=c`R^H(mwW$HB?SPZviIQKJXApr0(=lAxix@q0w}?I{3->V#B0ML&tR_uI4%O(E5PFcu7 -)>$n1ZYUI36a}g=i1(Hk@P+R**7)P4I4yRFD>ccSS;58LgmjPc-x^;C~;$BSXLs;0R5_p}hi{2p0`!^ -sNBzfwyCTf;0du8UcM3;8uWpN3gg~0~|7v;c9@_aXb~^pExE$a4U{PGEcx0Y)VLiGFkb;Z__z -}EWVBeaAO3+zYgy-S4g8ksB(0)&Yz7BANGp0km1zZELeg^cJfHweqVFpXXc7V%fGWxjyKZiGTpn|jkd -|1PHz8T=7S{OHg{T6^hvlwrK0p2-_<+ldlxA2yMpALY}r7(MhB|4}hU~dH&Fq@ElfCmE{I-8|m4e-`E -Fm3{S+}l%N1o=c9pwR^BfwY+bK4FG28sKLE2H(KKA{@(cgti-4+8O}90`C&=-w3c3-Yme|0Db{)F5n# -i&%>J!_>Ta~=7H=1j!>G%coLZk?FPIX@dl&$&^OIz`9ioH-bS#`2UtCyrC}$)Zx#a2!QLm0kjZH*Jvx -8|X}qif4o`=C0i76t+tL|Lga^}kT>vO8g80B57xF3=Gy5ul%^Yt5cx(xz6Z{+p=v>0+p9L6mBcq8hgX -0MA<|Toi>y!=zj|6zx#_ACsJTTZHUZ8_8&(7* -mKEU_vyzBtB+j&_4G&*2z0_}4-z(ernga0D{m#%{R18xO)QyKIffM)=FVKqz7c7Pw0L%WY@1NdD9@EY -(AfU7nzKji=iRx&&i;01V31KtI2LKRC-JirQg!y(O80EbpHKBxiS-T-n4ZO$5iTknNA3*ZQo?qlgs0~ -qyZ$TQdv1~`8s%X=EYPc||c_!QuP`&nG!0MqYhVV3~3avY)NLFOOft_PVcy$SH_Ce}70eB&>y4SW;eO -Aixb2mBR)+cvX)0pZP$Kzk1M8327??%V)4!jItH4tOiTz^7QbBmpdYilw0e;J#;|EdW0Ve|?6xKhHw{ -3~w9QBRujP@DOl>>Cdx#Ede;@1>R=?%zuG}ML6k2X#c@J5#YP<#-j`Xyyj)dGvH$ZJ_~O?;Lid4%MM5 -r;F|#|cd|YOVgFssJ{+K97jMS^YF-D~z`hvZpf@1DSf&8az`F@>5#SqdG8uRi;HGrAGE#L{{p -Ps5A7AUApmb~0=@&D0r2rA-bVxcsfo!+7r^>vCMOL5Gmk+!0M7#W(=k?dT>wvh0BtGQe+qEIaV~EF?> -WwSj`&BAX7IBO;E-0Rhk(ZdENW%#gB9Qoj_(9`%O_06vH(VZ2JI5yg8@DW?~ho20qRac+2fcBVE;C#r -+|k8Oljle0f3Ld8w>VZ0Oo!P_JAWS`;y59LjTi{FR)hvTzi_=Q-E*4n+y1x06#y?XyQ2@JdaZbc}F;& -;|TH0$u^J~ggM+E;X01vnUY62j&K+EkMIL-kMKOl5#qT5#1W3;I6?!*@jO62#}TgMIPT$poZ|@J;yA) -qjwAem;|Qa_W;pIWpTTj2i#d)E_xNI(5$@vl|9RN=K>Wpt6$~TG`w^-utQ;3@8?bu@xQ%^Q^YHIa=PQ -l4oCOfXz8u4M07Q2s6eE6LR0G7xN)kZ)hM218Nk>6Xl;-zh4_zxM@5P?2EnR7k&vuU@^|Wv7!~RGg_H -BLGcl2TJIr;Ro5ADNV-G_aAFZQ@ThUZmM?}N4y;AyTzAnAT+hZJse)&tN+Dcxq}U!h+4y3N+D;6BQ2j -(iu)p>A{I3GnaZHpiY)P@Q11xdF^dZ?}2VmkM%|NBpsvFM{h{m}*Z=2UkAh$B!p-=FB0B7cV9S1qH<6 -aIgX`FNgnfvT4&M^7PYBlU=)Zk;cYG^6|$XlgpPc6aI;;oO%XB2bzM(JqOE!iK=9THSo-c#dGMu -GtJbVR58p`#FCCT+UI6E2Fe}0E9fSq*s#Rzf4<9^ukeccAS_wbjNtg1d`>Hh^%CityYU1Wqhm~CzJ}> -VQGp|Sg2M_1v9d734OU%6x>@T4i=wAYNe8A6oMxU7rFHrvn4<2q}78fY}Qy4!pL;R8?96pFi13OILrN -b9bfvFSSY5F%@syle;U?1 -|N4JyOfun`OCy4=7E~K-aou`#B&F!Uwpy-tah5z1;OdJZ%F^4C(;gfT{>LeNc|s{q+iqD>AFOn(LeCF -eRG#Yohkp3gvgxHKUKEh%A6^Enzmpr$2I(6&g9at#`SI9*1B -ki2`14c>Up3!8=SsIS=Ks{(Ewsn3zb+W;0p1a3Q(<_S?J3ctb-2dG^_7$t$nCLS_7;k3J%2&YW?{xfQ -n=Y=?TgeTP4m#2wZ1H_22%K`5GYWA3bxkB>j@N_Q09+^z -?V~Oo@L3n7Lx^ZSy4Q)l6w!?U;9NPR}Ikr6=BbH67{gx*O@Qm!xwSE^H@Mitm8_c-Sy0)PI;ny!lIh< -CXpR^H;_AggnwvJ}LWV57weLz~+98Q#yf2ZI;}W_4ghb|_l1M4M>0e6Z=C37^(Ll2S7n>Uj!TegrVpL~**@AmE6$*ZrvO53tGVSxL=-tA<=d5OH*A(8$2_mcw$4v -_cXf1eyZdXyYLew>^*ae{pI*=OXtGp*!S;5C^0`wO!& -&M;cO6ar$L2iPeviIx2?*RSDbZH{FS(;B)OSh3t(!JzW=|yr}Ix4rPBpkwzfbj7UemaCVLHHXX{Bj6i -CWVnY2)`M^zX0JIA^b52f7&DbXb7)?@HattJA}U*!aoDy_dxig5WW?{e-7dQ0pZ&r{C5z((&UBcY1_Zat=g5_-F_}9Kw%=@M9t -T3<$pj!runr?}G48LHKtd{0Wcn-JeYMcv_{T%+k)%>L_lyCU#WJh!LabxLmcf<{FJU-Q1L!Gqt+Raj| -2@jEb2vXQWI)X9Q>XHv*#5WyW2N9_GwZbN9LC6#d+pKwh7sojFUJITk&P8Z}}#cQ=|f+PT^kT?&N9bd -4Vy7dIo*oyfW7x$-kRI&x6v`01Eae4tB^oc -OSQTeKp`o-(#>de69*~4fihRo*TF>|U`JIPz+8$UDCoM|@dc`99+dyOfHvr;DbC<1Tb4#+E`PU~{doH -8Laz)ztFGe8P4iRQU8L6F?;+R4|(Cj@va`y0VAWfsVCVq!{)+dVULmUdopKY!or08Pn6>PDSA{>&8gG -A}vA%U^@;DKkM_=MuL&@&^P=6BO2OUS^7UW-`bcA)fTvV+akKV%7p5jULWOUq_w6esV%eva!1}lOLe3 -13@(EubtY%*@Hf?#;Bdz!OH$+dE>-!=HW)}W{%gi_>w9^79m|!InLWmHzdcTo$8!r7ETH3 -&b(T4TTOabkj;bVy``jU+q$^bs_zysvrhaV=7Jn{&6?6Jql)~# -FVSmEWDU#8>1*I$2~juk#^e40EA2fB?ZHgoITgtSurKprsW=BnuE!QU!=Cf^4E9E(D^0D~O;GL{Juy?VtageV<*U1v+W?AjrBO9FoQs_*TFPufPSN-=P*Zt}cy97I?`8MURdVf>BKSuB -Gr1y8%`v>U#`YSr -t9RK4b!zo?wu5LUNVtvagcuCRSk&XGRlU}qE8M7`>Mb|vx$Yl+1}T -qYj?UtX|!mIwP-joG6NT75uZb@@bIk8m{LH0wKQo5Wi*csJSGxOgmeSVZX}oJJ+n}-}QfETuSj6c=_t -UpF%=HAS#oeeym-kN)?_o;AsZ_tOI`vLM?^)`hlhR;9pf*F#s_BjO)Ad-m-6)$go4c<|u2KmP -dRcj|j~A2@JeuO4?EIdbHn=B0bS_~MI2@4ox)#Gs&{@TjP$2tQ82{&n~&26VU>`oU`)^B-&1uFcaN(C -V6U-W%M#d-v$3I`s9Qw{PD*S@URFvu2Ha_uY4*{#3SY+eU#(cJACMntuzQD-NQ5_RFH8qVE;gueWa9` -qH{}>qfR~*RGM{;}c&!x!&=8H3V4T>s9{AYx`9go`$)JYm<|c8y!D>{DgxUEI<4=D7`nU4mM_uX3d(_ -20n$$z`tqJCRwp!g(!ToeED(%_ujpG<=bz+m4bo-*|KGexsH1@M&SKDde7`dix!Powrtr54cTrTJ9g~ -dsi~>4nVFegG_D3Vz7`XH{q@&3nlNF)gSXsr3$zQ4jg76#x)%%o;lqbTW0|QnYSd_=G|b$$Z=bAPySA -9ln>TNkPe1+Cz^VK(u=9G?u3hr^=bxK%aI#Zl9&=QgJMz;{KOI-OJE?0Hoj7qqe*XFA!=HTe$%=2j`D -Ul?^()sYp3kbjHBlHcx%Xn>*LaG(iYM^f2@ZC`6FY(5;$dIg8HkIW3Ul#Po)=H|`^-y$|E;&)nxuRTQ -<)eC4(r#iH}E4LpMCb3;lbBme{Ifz5uH#SHpjxkLNn0~_`wmrp*!63{`>D6_~D`IzrcqxXYA8zzMf?hj|S -S*Z|}WJ%LBSw)97lgwI5xKN4yDo=C*oBH`;q8m<+&caz8~dqs{OJ65Q=a^nRdcfr4U_3EiLYu0R{F?^ -=lOZZ`M0A6SgUBL%l06VYY{a0UoWhSqoIrIizxkYhE*)DSIlt}L_B -9W_$TNCAi|Ce8WL6#>qYSbu9WnmmRC?C$l1z3W_pO$P+8)&=p=FSICCN106@skbCsP9?=U%*RMtHQXD# -|{NJ|ShePWEkrp5NaEMf0`0IL+x@#^TeznC@Yt^dNMEQ`3o?%-`!UI_^O}?N%pW_#}4?E)?aeGup!Qo -4hj*7#rio?PKQl9aX&KF99|JPrC74?YH>^Y)6fQf<@2P*jT?ulJs$`B$Vng`$USl$h=;`mS -x1g`ey~LHhD1s3pw{wIdK-fSHd~TJ#bL^hptfl-)NTks3iE+-W&N>UCSgMLgy?V78h{9ACx9rz>l4LeRNy#Jkd&CQ5@zf4%q -{J@TVUXd33+xP$Y8yUY|Z=lRABVR-eJa>N7Z4ea0r$U1^s2B@lk}4F95WR`CP}I|K13Nk=R$jAbKR$l -~EG#q)S8d3mVfFu1iGJ+x1@pYY-Eh~m)wJH^4J&z=1G+_unXlbV0%^Uu~M)lnR3tSr$k8Td86pVXvDl -Q4}@#sNQeks~q#4#Yeb7v96y+PI9*@VCSaj5kKLkfj+dWRc>KuQ<$C99GTfFGmi3UoK>M_k_h2rpfMoU>Zyp=3a90K+EUuu) -4CbyMIkF}Gh65GqzKJ8^>uUMHl=t22vdx62h9b+`~#~7u-ulC-^zrvFV+`z>Vn1CC70B*|@Y`i-@#{Y -sN^8eOTZRAbGVY%Y4WQ5|Nx_~}|LyjMZ8Gan5fJ47_GQO|k&^uN#dfjSpU|^G4x?+qbZDSJ>GnU&T?rl&^Bw3HZ`oYYn(D -h^L74r3ID5sCvNFvj?MVafIf_*E8+{Ht7#1D7YCd{P!HSYYre4;~g5?k(E#nyeq!Ox7w6D-{Q$&x!*! -$?9{K+N2lLqUHJ27K7C5QUiX5$J*mB{8QWY|`t^CSOP}ZXahU1H;h!o;nUA%V35h-&7$(M0|J+&UtnZBfecw5M+yKwj|4z -ND!nfdggIq -)A4vzx?t`V|R#!O2P%W@eSB2Vj<#D@&N|=ym{UrIdwwwjoiV-`fOv28Ge19qPlP)_*bo3b*;uaf3xs6 -XwaZ(@7}#rdiCnHU+t*jLrzYP+dFGjC4Tt^ML=DY??FpY>YA37h|B$*rXSR-U;{@%)g?dq9)vV=bfXGAC>i~n)f$({q@%us1A#MCPRk~71a -sh{Ej>BFfqd0Z@+Ei0oZ{R9$C4v`~W{>k35IC4ql)S=(N#i<%3(FUk=dc50=d)4xCvY;c3yL#k3hSW| -%q%d;4`+MvWRJadB}{qecy>SFfIEY;9lx4s^pk!NJZzT$sp|T^rl_;jA9A>K`%cpM5a~{`u7r?Pb}se -dP1^m&&oDM+=qT<*q+WpFUm2jT?7(>eQ(+X3UtQ4?g&yBqb#ox@%r(WCGzo8jeGs-+c2;g9G%TZm9ZUa -EOnOm(HC#8`+vOXO4j%T0?VQ12=kr{o#FLQ{;zO8$Cb=&In -!q2|$_{Y+fNxld?%3IOcf~Sg&J}AFM<;}wDuJU*Ds={Tma%5&vNSRUb1sN8dOC3;afBRZdMTk(``tY^&EX%x#G(&m0&k3mJ{}3_}#MVmSMMS0~>fDL+HZz@#95pmhsc>0c>`14|WDy#6W(?iI~6+Ub -APCN0y*DIy9Y!`7fUC= -fLlle{4jcj}63yBQ^Gi9(qWgfBtzR-)_3w$#uvQvd%d^0N8DRMC007{|4*^es}(>z9$p8#0PC&b0!V51LdA2&t1aDiLCvM^#nX&x?wV8PpDpdG)U@wN>?HAoKj61d|izm#itSoascyT? -r0WY$J?F1JKyT+&UE>YgkgCAH_zl{8={~l-aud;BlHBZ~WgEzbfA8bz!o?(mVCD4Nc7hu;tF2&B23BS -AkV{@spctU(n{KGkYIVQ5j@tt?xF?JUkps&a~@S_JRk8>^~>;`^!{Zs8kas3Az@SVgj*gxa|e}wOZ#^ -jvP9zNLmE_~n|n~$x& -j0!!p6tPM50~XUD7UFKs2|1rpabS~2|C}4fpzN7rdwU-0_k^ZCj -jzRuo1^=;<|9Gwc7~(%h`;R02NAVqlIG+2xolxfz2G93Y^3RG+8L=YuKArFBJQk2Ia!yAjupU_2V6R| -}eIwQ9cS=Y|xJTptShe{)hRtJV#N2;!Tyo0VUmh13yj!HhHeZj8S};9@Tiz0R=p&JBKO0!ef&pA_tXQ -#PGtKP=s7@cpo@vZ^RPF8eYL|XcyY!jH=Q$eN_R|=c?=ak~Gfd-+gMIe+`ef8X>GQSn*K$8TEVB70k? -0L({~ycP|0cEJxw_|ZcR$@eYhvr?{+R!a&ckYR3)ODE!NT-R={M5nqQ62-oLcNBM??yKE?2KN1Uo%u% -$WFT)277%1F;kN1O5@ajxWMi6U!2(@ENZe-HXol3+eID@1&+pe}|epJ+=$&PY$3tXo}_w{cL_up3A<( -(a^-^Jj6}zLBH(5?|l6}dSy!vl~lSoXB-TW2eZHX*@wVq9-s;S>%iX6ByVh-sbgmPYk)lth&-~-*Ej9 -D+t>HC&kwlek^T^U#wb00a;{8<;8Qezjn_Cg&ixz){3iwm7W~i38Of#wMm?CCyxpJq_kF&;C;c`fk2` -$5HhMhBBRwj5o%9JGc;DQ*(e95Q*L*)^#E237-2HAF&vGQT_GGj-wM6Q<)DhkL(|e_Ve1CvE#`t?Q^! -n&AA&=p2`s{<8bPh2r<*szq5BS-dg_g;a4x(T#kP+zCl -l<)8N(PyF_iagR|qPH>D-(MQu(>I?RlW1Tt@>p=T_Z_%@U@thZ2Mqt$jgL0{E_y}OG^veSd895*e}&$ -J>2dk@AJOYJv)An|d2Ic`x%?+4n=oNQ{EIKX7>6#B?-QScH?Tkhj$3mRP2Z4y6?N5D{k84c{{8|wL4S -l^;i!bzVj3{qHk#h8TmI3l#~*(@MeTn-+aDk=Ah&}i*dAzcr07%G^lTT?C!jvP&|hDl_AW0`x!@+1uT7 -`f>Nia$xs1)rkOkOln))D=TY%dTEC;{Yc2*t-o|VU$84s| -1iT+>LzryYx7Z>++bab?-yV9FZOiYxgpMKipcfe$Afwh(J2ihDi`b<8`eoR)3ZEKzdu=1EQ>^52auT< -H;=L?Zi;-5Bc+BAxZi5UhS85tSZe(PnJoeaQrVgB$nQ3YlHur(%9HGB`wh?*+`eX)c>UCRHw# -tnE8Z>BdpX$BI1M&6rW#}zwoF(16cQ<&KR%;IAjrHU9*-BlW=bp>{g1^$Ay*2*WM=z1OamS7wP5l)Z1 -`HTr=#D+GJrXMewuWrwLH)$3q@<)iD$D5_Bk{#-+lK9yr93Pez~|` -0Nt$|+Gj-UQGL}3rRNj6)@;qs4>-QBY+PuB*cv};5Zgg-YPrZDwRHL#=!d(H01vPW+y^Ys0=tdP1kN> -U)=YNF*P}4{KWWmW`0VWLIGc0BXJF{lr;mh(hs#}e-DP02bwAr5;yUEU+6$gbT)cR3w&Tkc$}^1p!~T -pNJGLL|QIp5#V{_;&JpAy(rpJt4a4iEG*cvbKGCdXIcE#bvi`ct(|G*lSyC#7@N=r*Kwt;6=ZCw$5L2 -K~FCKnbK&b!FH&Hn78w#L~1lHjm0@S;VFWY(-%rdEt?q~>IMikG;z*`Ix^|3#L-*T&%Jp6yEl12RUBg -Zk65Wy|byf|t5?G5+PLfnsN{eeikV!iC7+0j0$R$5%hO)WLU6s$Swmzb<6oN*$*{Mn&%mI_JB$%nN;I -*Ztky;`DdXsK|jKMX1DGnL2ovuDpI -Bdd-!&xw##)va(j^=jR)KS|0|VRj0SP@28)(ZrwWStS5DiT`GS^&_i-#s)42Yfm3vY*d$!$);4#WtZwz-qtWQL -t)`OzrQB4SV`?C-O(~S8@e%l}OE%W++_rTFJ?Q9rS)*u%r_agTr?<4PQu6ZXh3 -^5gOW49ROFvN?m{cC_(!#(z&^wo5zBapK}Klp?Xvd^HdeDYQkZxQbi>k(@b>ymFQcyWSRgPfy-!U6vt -c;Erk=f;LXhg}=8W$CEaCZ8mBCvGQiAa@#(aJ$)~>rRpRN|%{4XPS7BXGG|$!As;NFcvRZx6s7>BYGC -c+#vfp^i#iJ>=r#ao*%Hjl(8tIjqKZ1Xy{1}^^Zie{}Ic7WDi@9oWjd{@4eU16gv$szgnLoi^tq$vwyI92f`2+?OnXfw|Gbv>gPclEXlPaQYftf%TD*CSsHNU&|JO7oT=2zD$Ih89A?!`G>ok#TlTb+CLRY&J; -=Po_(sQ=%luNiM%dGL(yckqIY0k_9!KfYJ$zrccPZv%B#XP}ejBswWhA6+fcNpcc&ov(vsuQo*4^wF3^(?`x-BnlO6IKg#I_oEc^qQVdUp-ILckXl2%`3*=oj> -bZcJEl7>3U_F`9AnS{lCB7S)Mg-b%yGzp8D=U{j7(%j&X}q#kGE%xjNmo?#)g^Gb7Ehv3W0&zsO+dFw -k6|qAMo3FdU+3Kx4f=!R+Zc{hS(leP?~$$6N_zQk5oP(MKWVXLQehFI0o+_D(%LUJSjO8`$pluaoG9& -El6*DvU7>^4Uf2>+kf^^?ND=<>wiRPnGlT52R*Ew2U?K7^mx{l^|gh;R!eXrk^55>H2y6Ief2j<-#kY -;?vU;l6xc#3muxAl#<>$Y*1QC%k-Xo6O!Z88zd+8OzWTCzxTifJ^LrOj89K)IQZtU(B$}(#NG+%_Ajf -p4!gNwWLTT4uL=!~8kjaH-TV#Ka<10Mcc0#wp3rkpTH?TA{&RgNEn&bQ-6f${m$byeiAf2464Hx5bbo -y7P`#Bu_}V#Pa6(dO692aji%;*EGPwU^329-WgA&{JhC+{oPKxm|L*>;QYGz&GS3tcgydaK -Q#ZT{OS4g^Oxsu%-@k;lz%+GvM1P6*VEkNLvYkT9@Vu{b+u8t-V|LiOV?betFF~`3v}gOy7nPm-SJfRRMj0qb&p8hCC1ai)5X)x^Qfn22h0@I^$zup@;>FA;+^ -iz^3L}z^e*?V^=|YQcz1Yrd5gR#PLTO~gx#`+W=+ppp0y(@I6E@Cd3H>8hwLud-Llu_Y|JUjIh1oe$H -}dnTQxU0*HW*8q2HsqeRETDhvtsT&B~ph8|aCC8^4YJJLA6rP)h>@6aWAK2ms(pnpVVTw>TUs004Tc0 -00~S003}la4%nWWo~3|axY|Qb98KJVlQ`SWo2wGaCz;0Yj@i?lIVB;3U+&PNhK0vJL$*zjC%>X-%s3u~k|3M0MDmc76=iq-`>h860whSuPWRlo=MK+I$0C73p#T)>g~F~kxPmQT*40&(dS}_JTE& -I%o@dK+8dnLtgFi&!#n4__70Gy6W$^2=5Mm+H3SpfI;k`J0dh+V*B&|eVdwcri{kzw1&+ -sLb+nE*F!i%EWvRW1*io9fzXGI0@6X=SF=1C=rcwX-8$PeSV6yHBqzp%`tRKEZ>Q6&q(K*b_X<_g|Il -x2J=BK#7~lDSZIuHy1)o{ZJcPi2;>zvtQIB@k2n%yc_>RwkeGxVlm=3JtEjT2{$i|61!hm009vyI&Ii -$+(6J&nUVPMF|v+qM`RJDJ#J3-bAUPYW+jjXNHc_HKUYz;&hce -32Ui8A18P+f4#m)WdiLvE5yP~kKYuH5=D?rvH!ds4`Lj4tdis#7}G5wW4488Yhxy)C!y(KZpwKF*t^)s -4d=qaE@6*}=&pU!IlX>EA3nd|}N^$7;Hi2(Dzn;8}&fY)gS9-mKG~V=QbQ2eWZ;&O;rdj0=ka%fUc{P -ATuM;V&75`p&uk^ip)H9RV=Z6OuJ8%99g^8eR-+N%x+yU(QlhF;Uz|Qg8r@z2=bIJvSun_QLA_9Np!w -^Tl@g|gSpz4#;UILuGh7#OsEQ%}}{qj`K*`J#6aemi~lOZ4WiFOOfmc>UBs(14F1l9CpF8-Cr!yJ9Iis=KS%)LFP2*PVO -h=o~)FvbTRQH1A)XK7IY{Bsx3&+liwQ*$~1x@*aC2Sp@L6>@dwr9E3&uSqceQZ13~_-g9_5aBBB%X*6 -625I$1R_rp(Fk_J?8U`%golFF$&H{b5;s9h_1djb^-L7OyeRzczW{!Z}kZ~mMvemejA=;Fa(XM{g*(w -{y|AK;t&gPnk0jg41>f9GQP`lk=82k<)h5b_^``x3%9!B6r>T;LBbge5+NtE>5+cA#oeG6cL-_td3O5x)$fP=HZ7n1a`NQ()z7U)$A$l)yubU+`QJYjAJU8aFi@)KGY}F^ -U$|=gJ)k&Ad=P~92Y)gky!q?9UtYh0>SKTR8)j5~W -j*-JeNR-61xNtF&CsX31w!Dn<+_LD|FRGC401G1zxJSd=8+gm!J_hc%W)T?cC6$zR@qmVncbS^UYF#A -%*^{54&Jz>`b@6nlmqN_rBzUGJ)@^78QE!)Z1F>48Qo%!^O*3Dg2i}^191c7Q4kIHOWO -vDIf@DYf0Vp7f5eZ9tRb|K{GZ<&h;42@0e5Z~4+2y}2l+Efb`K8tL+oQpOLe$P-4UV#6ps}XCYBIP-P -y#NUO+ro|dB8pIa28{T7!2h(^qO83$na5@6y#yT)1nVFhe*&5fjGY|jY*Iy0P>T7?V8i$`gg&5p2ZAY -(2{8Jv|FOSA@8oL@FP=^b6w`$%1j-C3s6er@w}Eq213O>WX*U@zbJQ6F18$8#Ar>IpHE=N6tt;Vv*Fq -x9vpmq%bS+#r*F*0Hmrf1A-nC!~UgLL-XM0n_4M=}JzrLu^o+as2jVR+jTh8b83_C)0VRQo;Qw4h3EJ -V4SSF)ou39LD9mD5bgm`VJxMwQl+6V)F4>iOM;p|Ju~&5ItC%?41|?YqlG -NOGwsx;QD1?YacQMOrKJzn()>yEe}gi*xHIf|MigpU%Y6^yWu5;;lDMZ1P5z2MEs8}IS -K4}(yHpg(9aD!mR62=;ZK(ex8t+N=|DFUI)Tt^z=m;<;h)Bbt86)+MvM%U;6Lm#M8_L4Er4KWea -hGT{+x8v3;QF8xTK7w(09N2t(aWV$2eU#zrn^z%jyW_ClC@Qt7%}VT&lxvb%tO_0RD8jSgif__j+jky ->Q=AAkvLUHm!d5@B~z!8j>+cEY;*HP?cND#-UT85Qp1ucv)ny(?X;5e!B24TE%v~w}NI) -CCEC9(!<P*6w(Gh0URNub@4l4?9T=H-7E4MMR3nCH@=8FCC+44v} -+o2!r2s=624&ubyv;YjL?87*MG9whnZemr20MHWiq`agDgJYfzQ{P&Q;k2xG!Fg<+GOKhc|-+$-aH=F -|3ui~J@ol5AOesOkcLOsmqpH=z1x($1bZCf^^S#nCF;!w20PhN3!9fGsBVSkyFRI@?9yol$`4+9&}p> -ms|JWKrJ8L;Ir_d2tDJ+Qj7f_NT**=Ysr4$4{)7)nb`zoQCNHPIMqiWzKyPzDLq=Wi -rKSgdP!Ex9MC;a(ke&>G!ba7tZo{*&8`vAgKqcD)&?;pbi6M~A1fYt`;{x+E_e__^hnJ -K$mi-c)@%^xT>_!3UDhPz%A9+W1$++Px6f*qaiBc7^jYQd1p-xU{{U;zM)x%PfTTng%V1G;hZ>Zz5?WW{a_@EOC3yl#~cBq@6TDb{2d=<>0YrS(CIqFv3hEc$CaUkYh -%P*Nx@NZ5tMBwj+1+Dl(>C^ -IRGSk~lOqz_HY`Qf)Wef_+)y-&>z?_tl&?I%sl7kJ~9ro*Y-Rf?+wOHoCO`tWR(Yw(eBZKCWV{|A)0rCvHziHsEYGhvqb8 -*C<9>r?Cqi10RH+3>Ns{@fzdA>)!%|LXePi}IVlbSE0{xSSAJlj6K6ML4vyJX{8WnvPZ5#g82V8 -+E-C}I`&e}iF5^JpYVQrdqcq?kNtZ#0IZ2YXMy&A}w)pi5BkZCA>KDpW$3IH-hYZX^bqxb0jF-lU$~x#I2YLna=KwhCBEA+BVw$gqxalmG -X#1QtYpRfrz|juuSSZf;gT~IL0|WyTDQtv#<>+e|O!A0 -A9uX;>kRV-^S;+)Q$YS%`8`W8dZ3%Tn -Eu43txn12F@8OUI{7zL=s6l*Bhd-gJmH<^&+gjSUIHKn@B%c~df~$?Cs7dHVY8Gh;o(SXxDN1XeXes8 -rPqe>`@}S}J;x0BW&;zD0AZ1Np$1N@R74zQ6)*ddIt_P?s#Xf~6tDki);7zJWdd`HSOsC(oP`-nP>NA -C6xI)-qmR2L5kFRteB8(2;kKLPkh7^jic_&lgFsKz_HoZgd-?a^uTVy5uZRUvuAZ7+$#on_Ah2h%#6% -Cdn)T{wy0n`|Pr0>8}2W&DQkAaN8-$cZ(!NhaO6O>?4@b-_%g2-4rURj-W7CC`^l#b=TeX2Bg)9k!h~W)T+`^*44!G624*WK1SVnTw17TEv7i -Nvxk}T&4?+7#z&Ut_h%V#KHY0;E<_2m>&>f5oPrD>(BdS&!<(b$-=?2`|>JC&18sd+Mc9CTj -ZdXM)tT__YUd8k4u6nAjH0UL*xEKpn+>hni5PJ{frf2D($D(HLm%v!a*O)iM)|yYxzNseE5GfBbW8Tw -v|K`|LOAadXHZ|zn)Q{q7dlc1%%S{;T?^U*Ht-j -{U8+uuFMYfJO#qG|ht^_IuQSX3q$uOg8NwrOz^<9<*8giiu4n2N#S?P}}+MKH__vYdTB!MiQ!!#`88& -RWzZNsi8+F=#D9EpCNfJ9VLxinijmvsV&)9MuIa)D=;1iI+Uj`=oC%|$xxFr%aHpPDncX0tu>*r2du^ ->?*JHGw{e^m)?u#H+_`6_3kO;Mu%dwytsYIPx|t)}U2`a0S}kkQV0*Pa66=7O;(6ZWq1eXnpgtW#y&f -bLExGq@u{YxxitC{d%IOkISB-=?yk@BI)LmFIQtkRido+q`dyoEV9IxRr;2bcY*GSE@3%&-{VDycYvtl2+H7O|qkwB|6V?jwajyR90lo(IO%V)4OUGtR>a#uo>4q{jRT?8e -+8$%c`)nMvwBIP&)Q;At3@$QBx;Jq8<;+Q_gQSg%R8J>s6UB`fIpJVphF$0#(uzagN2Cr}c{Raldw^h -U@$uW*b}JtkXe38RyiM(}XU_EZKz+jKbSGD0@7Mfr7IhhyWIeF5o*jzIBx!f7rT8zMRjY!oN8XRKb-z15B -arAqo}`<n!qv}<0%N1Kxy1*pF?s0nzYNXFAd)cW-FNiW2n0>twzAF*m%I+N%~yxVOqd5fuUfFjJFc0HO}L8MUpB -xIm9$dIF^S_0h)Nrx*DFU$3u+_2`GbRX*$11u0(YEVH8gdkj})6zWeTA0CcFQmG(dyfeCtqyx^(K`f? -Ed@L&+`7$YXsTDrk#Bp&QTI>dAM(V0KwqjAzD1$x(W`{TzT6Lwb_WK)WrKzjtEHNf ->XXva7c;MtnL5cHqaWtM$1)jUzZUr6o&|M54RLP)dQz>(F=sdsRvUYcAlIOF}?d4c|37RL6XrVgm7)! -WOhj;RgEh%pS1F#_IxRg|^>iw;VYa2L+te`|iyN_QE8vroOM96R!Q&uOUW0W$I(@b?0$PMgB{@Y%6Ss -pThJ(8(0RMP+ADjFQ_6;C25C1xTr8SXhQiUi0VW=DDhCm>q$q5sb%4_%8F}VNh-HmxVWC;-wh`V&_PsQ -1zWH{JG9H7zl(H|?o`Y?5Y6LdI)M=-5mcV@Wp$}hPfANKWO+kQU$Q(_Rpah*)%ve6C{_^>ipn>9Y<9W)Z~sRHVJn=F4B!pS7;%HM=g?)!gFZ~-0 -E~HK0eEbHC6h$vEPFu#|yHsek4mPx#6fSH<*vLyD2<29SXrm+Stb%-K^2Djy`M0oDDrYD$db+SsTWRd -f1Ov*KkQ7UpHX*$U)OX)-`5YnW2CtHN<9aw?OTuL%kb!dAjhigS-^@L$;5hjo}_{pBp9Wn -9C?8g?RrP=caGDeoc}eXW)MI(1)Z&HN_7(|qR_Mg6H4N~Zh+wxfo7WHG4xQbVDM`r;1)7NE?qE -C{s$O)D`L1_Lwy@p($3Gl;IU1)+QjNw*MOG`c*XHuz$rPP6P2tFf2DroiT*Q-#_Z(&MA1HC<3ccefgr -NBg{Y%qi3TP8p`6dI(D-nast*?;id5=<(x&gRsOLTs;8KGA|565PQ;PJ -O@Ul`q%D%>0N^KNk+&oR@8Iz;ovJ47BIdM<^7J65j7s4mcW=vVnp{BrEP7Z&k4EquoY@qq1?)cHB5fhpR(b(kM;AhHW3 -8+6k+BuVbY)trmQ?-p17f+!YkDuh`Me4r@TLx$|F}F~(=xUH(oxyn1|?e591!U0BedSZLTdmGFq#gvM -SLHMh%ry(wg_^CYqPU`Wo9;*_XvMk=kNnn7RDQ-_W9$Ze(FJVBZZ5fJaMBo7Md`LLN5xO9=VBYX3fIn -f^|GGdCbHF*{%^Kvsyc8QIHkcQ4996?}VS8-mFsf^eF=%?+dw&o+HJn4`L{3kAS#MHm_AOUeG$>kARE -AAq$%u+)NK<5YLTd^d7{{0^x-11!3b*YbcA7iJ=zq44Nkm(RX@tLAQ)9g6QkQ*1W!(jg5tPT#y&YMZ8l^TwQE}7j108-t4xYr}o?NTI@>|L+0i0 -OTM49R3NigI{cm3VnY#{|M>%htRf>y(r-+cW*nHOZDm8N5@xmPc??_h3V#wnjOBW+djX(2+6Edc3DeZPs!arln&OL5OkMW -@_Fdpgq#+63)6&rFvEH{o42AVH>2sk+t6p02ka2(VSfU(`74iNd~LfWs6e8*=jEQU;oohDqzt4V333NgC -LY`gn&63fcwcW4Y7uEn_IViseKTn&A~n|SA*SxA-A(7{Ytr#Bx|7%W^CdP+Ox0Y@iz3rA#2xt*u445+ -~AFo2tn^(Y_%t8b2)5C@L#zlA=u4pyhHG3klR(?tORVD0$Wcwd}J6I?)N049J2R&^WJaL+GufmI^**- -v?e6_=si@O+aA^(iQhV9q3r28M7&Q|a)$l|c}H8j9wpxJ_-KzC9T`tg39vZiTUM3f&sTAJDJYW~=Pkp -6ZVbh|KSak>P{-qR;&$%K2%+W)Myn+C02Dk9q$saInVae>AId<66gwk2)B~%*aY{iwErZksk~c!Tt^U -`D>Nr>m4l9*yp&V)gk!6f@e)2(mLbP=rTrWBfk@dXsV=;>;}22-%F#|s8Sied1n4r#U3>59Y8OYhy>zWlyiE-PYz-va$#6}lO#jzbwk@iZw{n%c|^>(^gueMGUK|3Pe7R$ZDdlk5S_%mA2HL}}QSNG0_`V -S1Q#yP0TOv>n~=-6*rpqPs;RD%2Dd&ZwzpiooSfcjJ2*}n0Vb^EDqL?Xz}4ZTfs7 -aw`)j5<%tQ<;X#uCp-*ua$qdBNJ&-MtsL^GM@LQ@UIUJCNq89E8%SYTw5N-!Xqrplx*p+?ZH}epA1xY -jkVjikXzs(*Z7XOaXtnRoH3)G0)z*QF|U{N1&$g2YMaeJ$Y6mOpT~>m^6N^t8yI -svbxM->wVfv085d~GuBv{7$UuG2DO@G{1;3Fb4 -;WE-g_tzZxG+c6qN>J5!47O9O1;IiCWSIg)(iW;9*VdBqlwyhBc2s{xlvjB~r~NM@_*f`AWmI@ohzL) -BYXwKWCB){&I1yV>MtzRyY}qQV=;1O@^+Q_Uz;brIE90@CJr^g6`*?`lEJc|+YYt=HBcxtcUUqrY3s6 -(g6{mh(gpsJwg6J(`V~%jB}|-fNEm7up0CG2RNCo&k3meTjt}eLb3dmi(VVW%<|nzki+o`^TOC+x6bP -e)d|QET?6Vu$Aop>mzZuImWZ~5uQ69-`VEqPPfW+mm@p7m~cX-1lZl*|L)K$vxUq?P;$I-7|Q$tz=34 -)846x@z%tSm5FQw4Op!5Bw1|^5io!5od*5ITGM3}W*`)3M-u3v#Sjty`7iZ8YX+(@{ICRsndFiZrI?e -#JDL^@ELdsRsVFd09JC$*bGIa^mzn!C#Xsi;F8wWUC7~b|sRcD0%)<>zn{utFCbcAa2@u>|*r|x)c>P -}&ZTg6%5{ixJ!j!FHYN2Hv`qeyn=tZNz|CLgl-`i(l2^j|Wm3uSPm4%Y&p>NrLx7J?!(q%W^YLB*^~j{@$9-wyF$ZY|o -1m2Q&nP(-2H*arm67f}a&hMaN+1gfiSN@-MTJwzJ4WHL5j;VoQrBA=KJ8)taCyr+D5LmD*=t}@10=aN -Y&TMK2PVYg*KG1*yJCgb^9?J9-{UJp04%3=R}d1k7~AZ@)RRs5FK3+D{~~-`lHT%aD3@#RO -f%=N?DOyqD!l;fj%~s%ErzH)0oJXc?jixv)Z7X<{Q?3Iqc_>w=+bApew6jYiMs1#0H}vK|e;%E_dj6VnGRoFmAbY{d{-^@& -?9_Jm^;KzD;fO5HN;zx@;+%~~rP#odHvM_v^$=Jk8`M{GWZTp2H&hZ&Wx;km{nc*4vFCb63Q@kD$9c~ -&PFK91r$c_#D8k4**vBDpkp-V_Az0nQP6|=U3K1pvlc3HM?}4{}Xx=W{6@q|Qt&jFEC|Tha2&<@6+0J -2d8`ph(Ju66BrXI&v#5=9;#x*x`d^(Krw#n!z2iP(4uvSt!XfjXmP%5Redi;2Aut@~))pWjxS@@mPB2 -n|xVUAo(-Rr7jWGI0i@jvYcBk))7Un;&R`2A8EVQA$cu2)Ec>DXUzmYZ^c4Ts$e7Gqa9SFWXn1?SL7XS64e^5JSU|<(gKg -ZKgCR&rgUhxDc{olkFtQ#idOHM`-7_HN-}?zp{Rf+L&Eno|Ph)IZQ9zJlGj!q{!F9{ -k!-d<|dD8bEjfs8ln?mJqUJAcUh@ZUQkan;WllLYOSacrgpWiTQ4+6>{(=7t(`QxRnn1b+hWw6NvtgZ -b@FRTtBuvRUIj8B6%QSg*GD(d_J&IRPBFoq9UWSE3A13L*S4HD2^vHy4+Ez`h*{7(mhRN6P*szL#%2U -!Lf+5wJx;nvjTlEdO-;!#iH6MsiFS;TRI|`VP1F4n>I~TYu;++{WN($cB6G)}f(i~o8q~od5#D#82%t -=YZ)KkN)`bQt19M++i3Lfg;{_7^dh#|pd;k3T>0g*wi}+K9#I4^e9}^O4k))J@99Ayy=%5v33u@!Y+a -JpR>>DK1Nt)G74N~ztrv^FNm!JZ=MjT13ba?9g<;h*+lN*ob-ZRSz(@lv$rfFgK>jjB?69 -}fo5nSsV5#3cK2enAt*PfpSH%s0E$V5wvsE&`A8!fwQ6FFc2!L)25({odc6*R$xSrnvB>c -ryYLakAwrFdaCb)j%W_znEOqa#u|I?Anz(q`h94vs71lzHL$iv<0f26g$CL=-V)aOcEmpI1{J<4PtBg -)7k-6@CgveV4KVJV?5j?f}T-*&y18Rl_foA?CyUA8RLkq0e|B9}m^8Nq8FhSxKq>jqeYy$Pw2V`Ta^A -I&_2)0c0eH*ZgXOKW3G3H*96a9?=Cs4wDlJqHc;b8GGZYMQID1JqzV7DJ`_uBjtg1^yEj0_skLEFE>6 -(Nv~Omk8hzNalD4519v%6&`d-qzo6PWpFU`zUz}h??&8h1#n-}dq2|t!mjA`Cf@r8{|ty9?CtN}0rwy -NNpOF>8TUUBof;LJx3Q&t?_wxz?)$et^JYHWxq;$Otm&p1F`r%?2b*fEs2Uq>SRbe@y@VeC_`cJ-6WY^;v2erKq&>v9 -t5^^~*QM?@ph*IEmgJ|9r*=`fbev6_R=L^$x2kcF?mDZ-xUuv_kEJy)==JnxZgE`{&Txh_f7 -1Qm3UQ+oOp}yc@~H0>mv=JLuFe}dzs4VGt2f@lFV~2=&KK49 -TiUAO{{c`-0|XQR000O8;7XcS`(SX~BLM&a)dK(k9smFUaA|NaUv_0~WN&gWWNCABa&IqRUukY>bYEX -CaCvo;!A`^=5Qgu43bH3n8sET!rXHG9n`}L4%!CS?pcFPhjgN1;EHI_Gmonc^XP{s9Wb{Ptn6S=hBBr -x8j@(pa`MvbV=ZCI+dupI*hu32dZByq-H$0YbKSbIIHUBnie=*KZXyq}$4>xux0X!IIAsMK78oBZ0Q! -}pU#C_$D2!=~eEeGnHDF#BFv=0QkJ|mIhn}^kMDqy=~NjnxsV4Av3^h=v?jVlr=N9hLI7Fr{iI?wA%X -p^r~z8Mg{*}_u0H~Az_C0000 -$0000U0001RX>c!Jc4cm4Z*nhWX>)XPZ!ce8ZDDC{Utcb8c}pwG&sES%$t*4@%2&wDEyyn_QOHfq%;V -z9OjC%D&r8frjgMEbwN+4xj|Yjz$17QJDF6Y8qoK(K08mQ<1QY-O00;o!N}5)a3I}==EdT(rzyJUo00 -01RX>c!Jc4cm4Z*nhWX>)XPZ!ctNb98cVE^vA6eQkH!HnQ+{{|YSg+!M)_nI_$Bd$e_T-NbEmn%X(G( -{^u?l_?3bSyQAgNySln``@2=0YCr*B{?r`?>$%NG&MmuK~ -Cmt8eb(vmW*W%H~5C1lRe?G;3J`*Qt2_LT|6oO(;)2YlWITNdVCQDIYOL4SJrtm-YWgvc#WtA4Wcocs -udRQP*pQ8TX0m8aiiAAy&c~Og1B>_ZQiFukyA>T~pvKDDBrp02JrAa=O;x?_XsTl<%1`z*JAc{$yKN%KuuWC3JJL7ReHDnI -;p!FiUPlQHtcMl<=)C5ZBu>t<(H!AgW?s-zKF5D6_Px%XG4;9YSf$puctjAXSo!=;&OG&Li>F(fR0n0 -5E(OLHi)p!P&EDOR;=4y(+pDk7~#xdNPu9C)yrUW) -`U1`dJ%0nhdp!1Oei2c=AA#6-qKjDTu@!)qn2R&&soQH@-}21^OTxRB7_8T`G>lBtBJn(%){gXcbyJH -1NtB-V2COxK8ZhvZZ1F!W{4LwSzJjJtyqleY7ZdH -s14}7t}gT;I=$X -Yric=b$J299HY_26F6S_8VMx$`xKz!6kgue8_{pP3dtacks6bmxR##Qbs*%(MmBAukUXF?L$RSr`Q2O -_PD@6%ZE3cMGSxNo;a|J9=e`m!Nh{~0IEGqq1X^L0ZnS5g&Rud2o?4NnFHh+S;!NFSX&C6mT>h%&wuK -L#76Yx9A*8}?Fagt>y{`~YLo!0!<2xO{xf4XFm&X#d-;U_4oGbay_Is0 -c5by3>)23N`6G|kIS+sxzfFc?VlOAR7D&DPod`Cc&rBNcnt5Nhaevx1JU=USpwWwW(RBZOx->MUnD<6 -JD_?>eoS-wak5IY**ISS|~sMxV3vMmB|~#Z2Zfc6Gz!=O?3|K+Av -qWON3-EUFmHbXtOl!8q(i*4Jntq6e~`Mt!dI{QT_c=&SB(<~vnHCm>5FSo!pPe0Kcw_~`t24A$rPwtSb+8^(25PQ*1q^ou7RXU24fbqiv=F5H%$IS8w$@p33swu2#{hu|b}lAh{cb9+C ->gkF3d6i=+NNfQ;zV^BO1{Q7@!rYl+4o0JNB?>J1c^C%0_6LZxEmE&G=zW4WSU8!JBaxy{mq6o9 -S-?jILSODc76y>K0W`+VI>$_SuV@8lFeU9)xq9lQ$)Eef9(cR$r8A`NlwJyxHeedYv`A$d0U -h>6}tdfy}XtgS3djp_^J4GAU+d6HbufPn$|0^=rk>IW -N8O6MX!{odE^Z2glbUR3NS+#$0rx?{KN6tIUw}x=;Gq|>;%v$WsJfB0N4vDquxJ;FaF(swg0l;i}(94 -d;NcieRy|%@l^Ex(R=Z77Ju~eAUXI2O3eE7NmdCUQi^@}9)Hx2(8X|3pBOAPZvs7Np{-3^7+t{hve95zc7f@^< -^gplIPsUjh{y&bb3E*%j9>$->AMep8{J9!BfJy(7q9z6e&PHLLRIDb%InSXDztU>~Zh+LxDL)<$!&9~Omu92d0s+%CpzJj`L{(oT^O^%(s -wdXWLPv~v!bm}+O+7KqE0hp}6n&_9GL;;(w1P26P%XBZ75y|3rk%yrjxtrNB~BDji6t0OsH9<1T36U} -KoC%>EF5P^oltCz#IZ6lTlprL)->WchDb7|!%Zp0bSsXJAOr$e6{~WJ+Vwigo!)pcDEMAeJ3wgijb`b -5E=k@Q8%7x+v;sYBV8NTI;5F7rre#rKKrO4&Wv2S0F-dtUZo+Q8Ccu<}KZZdn48++@RG`G-z9P^OG=} -k3Fz8j0E6c#R5_pas0*7nvRL~9OSOmGE#s`*_=K>=F=oc4OOjERCn&cgF@CD=3N;Xltmc??FC8bX=;I -yrubs#CmKYB)wMH@8oR)uUS;;4bRO(%*6R<1s|o;9lr2lIAnr=zMvcyXqWS_=eq?Gi- -(UhYy~)56&JG{(+dliXtg6S|WD4s|ZF3P{G@$U=wU^2UxT2sIIJ60{p$>@7D%R!621}3<+^;?H@Wn!F -Wi=yj8Yc+@p0irjlDI$6p_htQ7D(7r3ZBo3=?VkXCPhjQ8)$C$zr_3DgMpt1 -r!^7^}Tq8kKg_9Jr{uYP{u%j_oSV%;4k8woc2o101)Z|q?rpds^7!2Jr^^8zNbfbf)(jc{AlBe);-H) -rnvV^KdP^(!|`Wn!|^hymX^SssYiR3X6iZ7svZvbjzCynNz*h1`r_gvfjBphHs)s9#?74TNB;T-H4eq -D=<81)UY_(#s+mR*L#AJyKjCk=tgTPtMAqihyp+=V_BA}3Z;N!6;|jU@{=IrM-)S=1$m|(DIwGCEu_R -g?jeb&+wsJmv1CL5P-cg_M0?(Y5+^>_@5;ebCxW1CgfE2tGYjo!52^f;ujAH6gj+|3)7uo7@WCOv?Q? -1j(5jNw`YWFc|oH+v3=w@ub$fef$8TxP9@_;>Bsz5N0XOJ8Z!&PgfyUA(cd{{pyr3>;idr*VH@%<;B0v?%YnXZy -l@Wuy$PeUV30{!4t>iJ8Nf-j;FN!kW(u#WPuX%J=-zm`VN8ptYq~q{5bnXhH -33ZjeGbTU{yHl90>4qbM2L-xiueUr%eY=l+?GT7UGEHg+{-bAK}PtgVG))&+0(&q?$fS-d@gAQ*FE0W -^v`Yg>e9x0IZ03Jm2CA+@}D}|Le3^RoU8-Nd?V}{7{4(#oe7ud9wm^@|C|&vkz#guGc1t_BDo2w$1|V -LDdlh;yHl0UO~@|_s{chdj^2f97e&9-cTF%7((J<;7Lb3Xt{u+8QkNZjIUx5u?NYf4rAnjX6kaKTG7B -z1!`zCijw7$w%K%o7N5lrBn`&!#qs=d@ZoQQvS4!LfdmBX_qWDk;KMw+m8e_XVYx* -#VchU8}why=P1=97)2vCtY=kL__aR(VtA~sUt+1c^M#lObygBY@!mMLv*`6DSYFd}ZioA{msk*Q=xN- -z3CZz)M<&<@I6^o1TfUp8S7LZIqzL;?IaBfT5dmZht-`qB}VkOspTU{&8ys~N@eVHKO%;}_6vMg@_=V -MITRKaTogsEr;o746V*O0hr9W}>$CQk(LXr7@J6`waKWexIbvqHkJ0FBZ~^K&p797lN)>jGAC62C`D# -Et2LYWZHb!QBb{N8rUrt!<0Ay8`!ML+s?ZQqvGb2-%qGl}WZ))MVohTMAuWnZW5|R -tVosz$SAhc?;`8_snS5mfK>ItS;RvitARVOEgd(@-2Inf!SEqX;l0bz5?I*+-v|z5NpzAHUeUnC0#2k -Q{NSIBfXbltGdI^?=CZas7i5DeU78Q!(kd})kceROW^sTu2K8~aPCMK^Np=c^Nbhuy-;MoycLPryTGB -=A5jHpf6VI#;4+8rEh(JUM0$QDVr%i5xe!b_47jFxMGXhv8ZXto(WwiNhH;;=*qFw0B>uGF;}+28?;a -ss3{Y-&I1N{s_+!qn>a>R2jN-Ntq+6sNGW3^Qv)NYl^P{y= -?ocq6>dP0;jqw(UY;FdeKTlEvs-NyC0E2<%aWe2BbMS -W07q$~z%bd|vB*zd@eHt`KxY}tD&wjh8%j4e*%iY>TfG@t#?;7g18nlJWfejBz>eQN>s_vDJxwqgpnF -XfE*v1c3XKOs+Aly7#f-N?=B=s?6}GL=@BaFxN@F^a1m-fTz(3-xl-G%G5Zts(G{Uzaj%X~Zx-IVRVF->NiBT~303f)=U!J!3 -BJCB}+6&op-NpPRDs^N1$D5BAm@zc?Fj{jya;aI@IIRb*ItpQ(H=QnX}4nW`3#ga~C=>wM!cmw3@0n~ -iZ0E(~cMfN4G18op0mK`NXdWyb%Q-+z$Hxn;Le#?kv{x_q#nIsv9PqWm_pw-HqZn8a1ZO?~Jidr_oe& -dq5AqX=!FC}e(Ynq6WtprGk;=ruloAtct&F7zvKmBW@ro?8w&q6z&;qH^w^tzd2Q^X)&b9^<)1hh}X; -pbJ=>@*`=p}JPnN@K-wt9-p(ruSX`pdYDXx_X+m!yHTRG&4KIW*e5(9;>$AeL>9&D>f0n9fGVIWV{h; -z3m8w{M~|h`XF3zKul#x=dfElk9^fq1vjz=v{_Ee#eDp=T$3HFu8Z4Thv%E=xe`z{Gl*j~U&k&Fhx&B -836TD3{=(n=basCz?&H>(`vdojvQ7B;v-snVuk1`i85b-SA;*rYdzJYsx)=D>2TfmXLx+X#J4Jr;kU< -TGrFiR(kE-T9mZ11z1MD|zucx6k4!qSA*vd;AHxl#%EzYp2prJ`hh^-qPmItxqbGQgDz;mo_7EBZeX^ -}KrBMa?~ne33AC6gQCv4E7z{k+f@Lajnr!qNjvS0Mf^jl7l_QgB?Uu}fNIN -Cy&ExEeQqUan{bMv{QXZs)X+YOw$w!UV?3tYv`uh2{U -WYCwEa)cI;uZR6H~K-Lm@z+sjMQ37z@E@MNA_=B;&TQ{=ze^=e`zf}tU02>mP3QsqFFu@3&r~N;P_+t!USQ6M+{GR~4s{k~=yNSY9J -KkoSn~8}+b43A?qLML9F%8~qyex~QEbI05luTb>E-n=X$FxWufFTyG*Gmu!J~?lC40s>eOHlvRRXAY4 -fT||;6$^2S8;>#F)c}Kk(+Gma_C3_)``b+iclU3_>)crj>n --wSio=kN;WMQlb?r_=1UZ}IVP~eTvabj2HTgN#gnnVweFfjtV-L#o{i-O(@IRAki}pd;XX#wE@=Tx9Z6AwIIuwF)R*;X6VBmd8izK)MX|~Gb! -BtjFlFW3`?4@U{FnqkH=$>G(0-2sRd+d|)iViu_)}o}=TYpv9mug<(ndBl%XS8g@@@Hkwt3aEh{9Y=3 -sZ?I5982R@YiNSvX1k#j?x&?rD%Q2za}4y-7)Ge2w2@E*NK;wmVeFe_2t1FFtq1DZ1qxe}q7e78sY5+ -#Kfi@vc@@2X}MMSqgZ<*UFcjP8^Aq!%%hM7C6dn}me?}Eq19-Ds`3U{Xj&+l_0kY9y|n2sIH(1 -8&;@eZoYm&v5;#5Z>0;tEp;pLim?$?cb_wGRCCBqb*~8ZC^E@_r+ED;)RyZ?JlTx9JG)LazaE}+{$yD -?iZ%)-=y|+-R3k#NRuvcx3Q1nCmu}{(Hw(!A^134b=z@tfsB|d~r>JFz4@0sCNVNeojs@svoiE8 -InVy|AEJtuk-6&JwrqCm3w>*usZ@^FkwN^C(bVnaz2zqV$a&gNtigpmye~V`nyLAS&P~o95Ud{<@Wpr -j!dKpkr+2gtQHdSQiys@Yrj26o&e*EoV!ZlL@$+xCw!qWb=Wgf!L*lsUZ7at4g{OMMt`s9|wAulVkg6 -=drc7q~XE-<)x!ewaE~R6`d`hbF(r>TFq2`_eq*FSn{Xr?sV{3S^iC&?j4PO>I+p+lhZ=X@O}r5dr%b -5EnwR%Oql0NrY%T5cb}~$8F-8VKVkTLSQ_w^IVVb#{Vb@DlnT -BeQDbKL-)>Ki>cRf#-!qTR{@AWRm{4zD5H%=0|OeI>fBBS$A+CwQfWd;|UvTD|Et^leIAQ~MzKM>8(K -$SNvxfJz%Vbs>AINdYj;Y)mw({&Wk-daAw`RgBz@e=gFzrwb26L|NWZ2N_s0gWlRHW?hi0svKwOM1k$ -u?C5O7WQ6Z%$mEYV(E1If(|Id|&<6H7$ZWH0zffk(BXo(%UNmaG&An(u0O;texq8Hn7f}$* -1UBuS0DThNlPPCW8!#P&z;xnxdk*d_w#`!H4HbtOcAtH1W`9Gv*^dorS&iXSfUtX8nq8@NnsCF)vzhx -Z-c#e+9qDS`xGVGatGlCM#g_3fvsz?wS9*z=QFNx)aF(S$t&RM&&7WH4aS@MND?L4z`H?p=4}T4f&>PL#B;9-z1vht@yV;E-i9h_#;F?mF;sNy?YmS}{MW&%{tiQ3*MA?Z9N -1K+>jypsK{VUbbj{{XM_-9#UPqgEP^llqtZPW14@s&+avwaMPc9g?Cqs}S8ssR?sytZdBs?XSe?3 -2l>3%fNAy>F$swI+z{0Sr?jzGeqOBb@ppp8u!bvmmE|R#6_L0ciusDR%<+bF!gU6f=L1#_~s7=zA8z- -(Yw$ia(t*lbC6~bk{v){o3^wTPn(3kn~r_%PHsBbV3XH8Q06h6U%ID8p}N6pz$xX1-Uiop9|(}H+PFg -LET;5%y?(52$LmD`FPIuf!6kocjRsLLi)^>$>wntu5~VY%iFDr77={`S5MUtudz&`3-`X=58Kx -EG`28ZoR}XE%CbV_yJyXQoFS7{`YYWov(7dW@FM`u}WX-%iv7R0p`tObed+%pJsv|6+c7qOOSjt%ixf -A&E&Jt-?3yRK$W^5LF#T<4k@;fk8N5fs?3S&>nwtCf`NmxgLy5=D7vL#%u#ccA5XoOu -Ib@!9@1?otvczvNz>$iv(TJJzw(BxUsdVfTIN$v0PVq{QRp5Y+taoY#lvI9OD^$#hD~#nE!4WX22Wp; -q<>)%Yf=?OArGKEg49#6bWlvTv@oW;LB8v&F5T+wFfRIJEZbwiYIh(aZy4Mek#O)NpkS<#=L$39>7y0 -G#2!fja=)^5O3=o{RgGsF(bMfwQf)8DaSu0<9*ur7S4mVP`s|{c7IazM-#JqtCrRP0lLk)=ji|do+N+5Oi!+*Gu?1a@K9PLK40Ht}axh)u@I^7$nJ;x&`=ymb2gNE1+lYp1uPveUL!vw4B>r-@hV0*@l*vuoC7{5io%Yw8ObtU -4%SKOIJJI{qs{}K8-vX+_E%T?6Ua=9pbIvpTy^H;$q-R(}qo)C>h&1M!(5*66#zJu)eX$L}xsD9c)W9N%|@$oCG<4%ICckj59F -YLW`+{=&fHXVOxb==89_0Ij?lnw0d`s<}^c$@A%dS%B$Z)A5=E7YZpsk8`QNLk(`ta#Hkt+qQB2p5g9 -DqB^13>%wrr*4`ILt*8=dw;BK7ojH2SuXv%C%)y(N=*-SI;Culr|zaY#8@exMO_ntA=GtX1(~+I<4qC -vekXXQHRrrAJq-nMf^pOrk%^r)&b&Hg_MKc?C(Jx(J5NKJ*lerD#wf?;dj2fRitM7x{}z*IH*J#7+Pk -DrveyFKXxyCz4#937KzN$VTWy>jc0}2g0yzwXJXE%nV0l(JhwYZ|N5+aF1`=epGbWLaSLNG@8{6e=9m -&<&xdq)?-XkiKLu)qYe$`TTxXYq}pC832p-{#NpI`5ud7^Oz=}gI8lFGcb#`C(ogEIFujAftvY$$&c` -t6uj=A8$#-~U~R>DOtf8On(ACn4yL=}_L8paBx>LeoIChOAb;l|KnJ-2(^jb8t6(-GyvTX9McnV -<+vwblBnad4;3t}Jvj*nh@*K=r(p%#* -A`%Ps4kdv-1!~j{YO}b4;xPK20)>`$4l0O`67#9cT=~tP2LqY87 -8vcsuU*^#OFXl|&cpC_)czk;ejZkj;F)b+S4Tw$nsJM}|T8>MDJ*w2eAcqkP5VfhKA8R_QIX<*3(!3r -}7prTTWwbm=m*Qa0@%+q0O3eNZe4sob9voDSbTN|JQH}{W{%ciGN)~X`@TfwSCDpZ%)ihb+o<2;1FqQ -r~p;djc%IfrhIInK^#MCwmJYzb*D_K*zfh(7{L`4q{a(cPMlCqx0eU%+SYI^ZfE*<(r*{5{G>e -|#Qy~?R;LwtKksIYzsvZB3~`)RwbwwP%*Q~kfcgOeJ -n?m3Dt%;xmFIjd?W*1j*iNw4+pE^7dKXnz^~{7P}erC-ftywq##FkA@n=hf -v(_@&jyzHZS-`vmUd9IMV2PC(i+1Xj`v4yV^QCZ!6el*O}!O;x;19m8HSlJV_bYkS;O;8y2l=|zfLm= -UhmgvuDj)1?=abD@m!Hr7Uo<{eYe{>C71!d+a6>A-5r`b{k!+#-!H3IFnOvz>b-b5dl|o?$rH8l;^S9 -Z44gfLfr%5}RMza}wB|=uuayabFQTjL6XIw|>7=l@k>CJj1{V69UUl5toRG~-cn|V@T*ANK?9a@bEx= -yY6ddb1o%6ie*|XG2lfZMoLv?^Tutl~_bVK+TxN#l*db(asS&~pOGXZGrxN)b8RL0*?8Zbg(=~F`+-3 -fLchU8jQ?UAa-6Kbq=g;8Y6A43=J>2Gbd+yIVebQf1om))*E-gOE3PLb!pn#b=mVd*-R?$0zwbVu|pU -Vx^N9*A3-RpJM_N|L@+F| -R*D_bB8Yw4v;io+1Qv`r3ZinI=kHDtegb#154C`zb3yP=0yr6YXVp&ubp7(b7p*6WaH0kG|89zI^xHv -vLQ9G|SUF|b0{&9hpiMDyvK7Qqw2!2H37&cR+Gsdtq*mB3Px5H=n!(%AAt~v$ccX#y7$>~|s>+>KS3Q -f3cKO0;OL#j4XuUc>Ji61e6cUe8j*$^8o0q)0CKPj~Gs4MRvb-ldfq{6=m`_J0ka;C87#wgAO&#?4e^or!uA4c>oe2FsHORMsw? -fM{7a0j9Mvl63be1F93`}G}s-!`gF#Z5OnLs{^bTDZy3$4T>FE{KnNY4ct!O-b?)D@TDfL3S})twyLi0HE=AzHB4rnQoV-5u$&A@h{(L|b5-GgtT{U9 -Qj6Wd)4uSvte96j9k|NSnI#p}}^Cyme*ON5gNOQYf4ng0_DvU)NnFX`tN`kF#PmWAFY8@!1fseCEWQG -B5F75aKM&3E4peH$AqIiKYmE5{yJ1$@v(nj&WFFo2}^DKwDvUtAdpzX|vBWFkEYPoa`R9Otv_u9bw9* -$!A`k)IZ4C-7weJxOQxv2+h>-ge=}oZX&yUK$Aj@w0A~l%^jdoJAZn7&MG?q$Tq$_zm3s;&k7tX?4Mo -BMI3jIkR8rdI}wH5;$tSl$rgvGP4VV}lk_)tO3?lwyg?oa;!gz`l1}5?-a2tl;O$a)xq3Bx@ZbtqvYO -!ez6X3|@&Whff%+dM09{6rzaQ3Cl~OHm!Ka%@hrU+q3^#K4i6q$i{q}bwSpU6$23vwu3-KML_kNaqLoo6zo7@#i -h4LFID4NcWc)~sTk26DnWO{V%1O{}*`nV}!b=%Rf2(>iIWLkz_XGLu#cdbY6q@TIjbJOHzSle8fx0~VRp1=?R=spnMtBUtcb8d3B -M&PJ}QJhVMK@vnNe9o{TpSx_a1)FJR21lmSM{l$5g3x3{4b+Fj%{^ZjMo%vW2}i-$p~PBsXYbW%`180 -!SU1?@CR-YCW0U -*c0o_F!nPc0{{Rn4FCWc0001RX>c -!Jc4cm4Z*nhbWNu+EV{c?-V=i!c?N`lj(=Zgj=dUpBA&Hhn9Y`E16$#i50|_Kx;?Pc&o4m9}juY9Apd -kKtokDW@yo32FR#efi<_m6VkXyn+$S) -b2|{P#BwfTQjlV8U51K9BqB9HLC>WL9lEDGm6W+(rSs`XQ+vBlr`fJh4V!-nLLL@^8%MeQxp?0@0S<1 -VH^Y*r%I8x#&6`jr}iVB1_8k*hr*{3Dc}X>LN%QdrDa0Egs$ud`V4VlnGR!e{>lY8Uu`w0gfO9Rr`DQ -zSm71PvsS4+HjkuCL5ofl-U!vyCVR-8GTBg(bA!ra^y~Lx6sAQbOR6JhI*x;`KT&BH_n{ZijTB@x8YN -`X%KL4fv{8!_!a=y7Eh?_42dMab@5RNU_qb6B!y!<7&c~p*Ho6v>gc5|N{K~>7cRlq6I}Rk|#}e^$kL -Yq`rIvruZwV2YG(W$%Jv<(=nTAIqIq;5&gJa;{g)7jJ>X^I-s7YOE>;gtP-;ze4EK?f<*BZqQ%{b8;AOe0ME27jx -LbxOSJ96ywx@x%DowsHc`)PP}vfsdR`(T+E^yI9hw5~zqkz@YIzT>!G5o7&0PV4h*MlOP(T{C>nTpRh -AysI#r?@VvV%^A}DRWGTfr=&DYzoBI0c4KmO2*|0?>H6*}#C@Jig*YQJbdn>{@|l$Kl-1w1X_NTOykhoD`w)ayJ`2xPkW6jJ=IS@^AoD>=up-0#TxK!By4fk3UmD3pG{kN>CW-H80ZwXa|5(QLdn`P06%v`i>HN868WXh!B^7py-ZAW`>1TA3}vRu$G* ->Ac_&dlAs<8=2|;S?!3%G-x)QRm|3?c!Jc4cm4Z*nhbWNu+EV{dJ6VRSBVd0o!23c^4 -P2H?Fc!Jc4cm4Z*nhbWNu+EV{dY0E^v9(8ryE$IQHFN!O1+x -LT$r|6VKLY256IXr?Y7~Xwzb_u3^wJWosf!T2abni~09GhomHul6>h-7hMCfBZ@rt8xQHH@rDdYuu0- -HBf&DFOPbM+dR_#ad0Fw4M}ZeFnLZ(99UmcNPe~B13NRm|AdY(EU6R2s4ds+U5M?QiR*aX}ih;QoM;Q -&GPG^1}q;x}JV6zA!06F(U$~ieF&pUG((gh3WNy_}-5r!7dW7O|Eow*`xzKk>sz7n&B?5f1`ux1fxVHu>L2O&&A@~<2oH!R9Hp}=hvXN1!% -;C=wOn^8vhGz^v(z*rK4*!RIo$ui);WBdS6f!#d92Tw5Q6@W;5C(}Vdc7NCVo;14n; -oEFqa0_bv{OSQTz}QZ%tF`Wh_PZG-!^*oU$xWBXX~p3izCRX^>=s9iF8;B;B67d;Y43s^R{lBE| -JDw>GlH&giqz~%vI=;JbFTcx?F?*lre4~-~-_Z;Bm!#rvQ+HjBs%wcmQH7bv{1(G8vx!{--kl&)QI!> -?#EcozJD`hb&rU>#lg1$S5-vbo3D7%;FnV0}JGAm;6k|qe>YH?`s-zrW10T=FC70aM5;lVD1r+Z4ly2 -h(QxU#13k@CugTPs4pZ8$RQ_ZBljRmy*2ah<`^Xk0)<7$;SfYE$N&=;KrFg`Bp8cGnuidW`8v)+@b)N -tA`3=nl7tvjfJ`X|qD+UA_qW%T&2j+=36P2^P>Ep-mEBOUKp73bH5UPm18npM+*4iF -qIh`%;;9%92#s0lMC!+rkTgnmX^D9&uh?i|-p}X0m2TTo{BFlC+mJT8g2{B5d=L)@0cOIqvMQ5`k$to -RyKXg%OQ~G&AUCVNI3Sjy=1wEA$oZZIg~(2Px0=G@>bIlfx^paZ7*KJ@Ov29Z=e!FHn`t7a}&WNMwDT -C@}2>OXpAyVHI){M+_y3kCU<-nqtKGrmmse6Nt_Bhf2XG#v5fgTP+a2ujKa!{Js$1SGV~6PK>`2-!~u -L+Q!M8cu_8u)=W1-q9{p&)jI2EaX(~!CY4(1%XBH5<&n*DJG+w6y4y8aKxxFq$1>(0&ZSIt0;) -`@iTKkU#Fq+cpjc^Fv(Wk+{Fo+OBB;$Z{m;gv0r^3L(!2majizxyBSG{A>V4@Np>QVNZUvR*>jdheJl -n(cufG>_NB)pc!SF%mKHgz5*X;)LZB1NHRr-V-A^lp!ZLH8P@Dqog`qmGiAqVL?_esGL;d4oY$tA!n#Ha*qiKd9K;KGOijo~-iG0r -%2RtTsoL>bzurk9$ -RM8r-W%LBiabTe?p*1-7M+C&QsPG15QGhRw!sVuyj+zSuxO`s8@#x(KwTBhwJ<>`D?p@m(#aVYCZSSY -kKY1#JD}9+7|6cKMH3VpO@P+@|W|e6V7fMtv}|q9HJA!jZysZXLJI1ZpRUtUzZ&z`!X$Tsu&~i~lYiw -;_TG?rU)qKZ}&nJ3~=u@9~}0F3|UWhspFA$g|pS{-4S9{eLM}OMdZPySpsE2X|@Lx2$1WCe))!+!$4Q -RpWANE8yU8GaN2{GFo9n@6@&sTcGZt()UUFV&i -ICgo6I{XJ#uPAg6KqwUNeVe+eup4KR?nd~;2`jVz!7&yzrp+t>_{$gUp9WN>O)ip)KJIwjmdiNI%m0? -?0FdCdlD>&7PM$~apAokmTKC7yDsky1Jy{|=b@$TmK>i64UYiP3cskLp%cxJsu~5$Kd8sxpDY%2l;r1d9uA}buTcHFn(CXh9B< -e14h@$h2PyebS=b$>W}+-=EDB=ZBJn_KwCGZu0Tr80YJ}W|!#l(2*si2()q`*C5L!Mh -L3ZSwFi|(;G!+@2;~rCSe?{>V=91s-t;TaeyC{$M_W{iCOWT5NA*j=!NbPBW -KAm>W4w-r-8eAMZTU}H2b|upUc#7qVy=-RtptfL#zrCd)#vKTeFZ)VaQA~bQMvH-e6)Zw^@d6^5ALr5 -1F`QoKt*E(_ni?B`jdUpNRU5Fa`)6vVrdK;C)ot9SvC|R}Erk}Vv}+Cx_GemNjmzQ~KymAA4J3w9D#y -(D>3E*94Nbbscmp}OxCoLhM{{wUUvBoXG8b1ABAIn)*w6V+ -a6K`>NI}9Q`CZrsRjhMt<}>Da&k5nmR9dIiOX>V`7_5Onr;aY;#>s;HlhD?Tvu$o4JhFLS`?}!S{|+5?N#E|FnnbNUW22G;L@998H}AZRS2ty;F_h()*~J%!=gr31qI(;--w%DftQ(~vnL(L9& -8B0>dlTQtR-r*>A?>zoiMJ{Gn}Plm8>pVOR-c-Tk3`w7SfQ8m5_^+0Eqw-gr7(9NEib48g`}Gn&Kfgl -C5SAsve9KUq`1}Pi+sY`@0ZkI9$+~=xov_W -LUhG)6AN5OVI+}%}=5ul9d*Fz3s;-=5NWSUHCO7Y9Zrd7N3i;bR&f<2f3Kq(t{ujZ*EXxcBKP)yB!fO -r(dxV1a>h;6Ln>T1xW*K|1UrT-uc4(PpTbz2kv$lA6EfW0IPF(>**Zp=boqx|R?U=q*^XdNpP)h>@6a -WAK2ms(pnpOce)0iG500395000~S003}la4%nWWo~3|axZCQZecHJWNu+(VRT_GaCwz|OV1@aj@`a~M -FL)w2k?wTZ)pH84BPM%9xoaL?+Vl-+UaRmHLA+?GzR_Ot++b(%RDE$7ET}`h`L|IA;q9b1*!OFpMLj0 -KL7IR{``maX}9*jfBory*{`36{oxOP`t7Ty)wEuno?|)wFAHM(FPyhVYeg0kl7|Qkf7fSpWL{1 -=ACL73$$@d}Gi^w&CoS2+JE=;Z1iH%_Ds+CeU{(%`_ -KnpAGdY4%S?9_^u=_K-$(g<#P6g0KH>MN3cZ1DLhqmtp-<5D`iHN(2)*LIJu$r>`P@V31N0f0KHqe~G -lAz8c^(1nR<3{JI`{oG-McftyCqe#o?n97Ez9|GFOA)8y=A~KU`{mXf(E^(?5|Gq{eQ3@h&~Flthx+&}Cer5XdcohV(hKPP)NTPBx;LhWdgy_~A0nO>QRjFbx$6fo0lDJOh=Vu}yeg&5y;VV-qk7eL0>6OxtaIsQ^^Lg~&F`g)> -1u^h>m2^`F=O6~##HH9uDxG;imj+~h@9PwVJK;)mew?)Ce-hr;wT%e$RIU!dPiKhwWkFZ2Mq+&AV!Ps -;1(pY8Ydqv?`!MW|!r1>kD)(2bw^{ycd5e|KI6T<~Wg1Q~eA|7m&P!@&B>G1&jSm(qXuOJEIPZ=T}oK -42X`3jsF&0Y-E`L1z;cphO|C3Evj&NcArKtlh;OdSjDpcyx9fbs%A2=)lClt@1w7yDleU^$@H7M&1eX -&N7hW8OZfR-hck?fBy9O$In0h{)b=x^vCtZLAm~Mv;4Q8-rmB~b=>vb4cv{~P28>A?bP-AzHfw2m+$M -J`}!~4z}?8*#NEtSE<9R!wDG9%Xy@+W?&R*`?oC$?7k3?ZncooTQXz6TahLfGg}cmeXxwFf1M?f0-@y -C^<~Q8bjnDj+FI~r@p1aI%WPT&_8=2q8{KiU>jLdIjelxR>nT5i0RCtaG>tx|)p|DPt%w5*W!gEv@b7 -9Pd=cw=;6`rHQ3>Idv@-tX@jw;VlU48}|KZA|uxAFWop -5Mkcr}6wYp5Mmv+nC?R{5GE7#`D{FejCqkd9XeYetri(zk~T5{QM5)ckuH&d44DJJNfyY%o`o^Qiqs*@#Jj -(pCUsu?#D{*p{e;ipjiG`C`IEjUmSU8D=lUO*3g_Bq~sdATa6-)R)PUoUA#MHD|IUCrfg&BqwXmWX+k(?__=_^E;W}$^1^ -{cQL<<`CZKKVtyC%yO`g_{4VBqF~5uXUCi%m9sG#tYNWNSa)?(s#H$?QRSxkghj=w+zH;GilQVfHQYR -xS6Op8b@tQ%|zD~HmREn#I#SUHrg97p0S^9BEdLG%H7%l_Sl{k!IycvvQ9)xnG5Z{8R*p1l=jrY|-5hCFjx;Mrnw2BX%8_Q}NV9fUZ;mu8N1Bx*&B~Ex)H^po_n^aUSpM(=);zDd -7Je@K5ye@Xx5eh~hH@E?T#Ap8g6KM4Op_z%K=5dMSkAB6uP{0HGb2>(I&55j*G{-f|8h5so0N8vvT|5 -5ml!haP0qwpVv|0w)N;XexhQTUI-e-i$a@SlYLB>X4gKMDUy_)o%r68@9$pM?J;{3qc*3I9p>Pr`o|{ -5!|5^CY!haV2v+$pV|1A7x;Xe!iS@_Swe-ZwR@Lz=gBK#NOzX<&-X!@};ORc&g%&`KU4eA5G??$$T`Kk0$fcg#RY|H{rh -t|4sOB!haL~oABR+e-r*q_&4F-gntwMP53wA--Le?{`pmfzpnAMe(nDJ+Q0DEYj5zYaSo_%ONLR126NIZnBw=MdMs=sLZ3sXYZKN(7xUvvKumR{o) -!n~B=l;D-1@|Y?Q-e7$QSqVju@;2*3Xi6|8bR`TWOohJm7q<|W>c>)fNXWSfs$(napD5C$NY_+?B3&| -by$aG^o&Lh>FM|FeDj_K$>otlJsuG%B!}J$j2}A#6>Mxf5Lgmp^9!=$83d~FiT?q=z6qqd~+^i1sNvQ -i;*XJcBXI@?jK?zX_NeNjAMF~|2O$nxiu7sh4sf48jdBmo>l%Vo(Di5dfa4HX{@^C5-r}A(r52x~QDi -5dfa4HX{@^C5-r}FSB53lm@VuGh^J6*Tz+iZeUf>(kVgIo4)HX$h?E1@W%DxoRCl+cwhlrWXBlpr#_q -sk+yJfg}Ys!XHGBPM>b@1z$^deNj8O=5BHqDYHgwCF{PUbK93(WC^OxuP>ybmofAT+x{;I&(#5uIS7a -ow=ejr_0)1RUTb`(VfgoSBZ6%SXYU4l~~V8D0&x_Sa13#rUaE(SBdqhf1(oWDzR}1Fm-9~A@<`Q`s}M -qdk@uhb!qRR@=%xdR+si3szHxS`_l~9yWmC%%6O6W=$N|; -JmO1OpKR31*{;Zz<@<>6EwPUYcL9!}-qR31*{;Zz<@<>6EwPUYcL9!}-qRUTgD;Z+`9<>6HxUghCc9$ -w|)RUTgD;Z+`9<>6HxUghCc9$w`UR31U)5mX*Qh#vw&Qg+(72S!mESKl}^_LnMOJV_Ke#Dw`bfQxIN?c!0j2g2W~DPbso4qb4j`=Az?M_PEJ~$#@zf1B?(=WKl(kN(#FpM3 -q=n38G3Ys)Q*{JjDqTl$yK*2};d)!W2u%cmi&z7)NcYlY;RC+?jF1nm8$^&%m9f3K+PhI6DJ(X51OLv -(y*^cV^rfxVciTg*Eo*+T|)2YE}TO -46p)VWq>$%!By5+9K7Hvi>l!vY5b5hT)XkL8)m2RG&Hc&m>q+>xiZ_~PzPsH*@{~l-_pR2F*^o%n^eI -a9o-17Uq&q;&2OdDV6^VbGdjf7oMHP&(4Bi7eDh0&-`L}FUWf_Zj{lxn+5xEriL8Bfm_~kq6 -Thx>j4%Z%efinmQow;;VF6clsr5o&z_Qpr{vjF^6->AdrBUjl4noJ!&CC?DS3EGo;@WGPsy{VYKF>?wIXC0@>YfT!fyQ}XbXJbOwWo|0!z$-`6f>?wJ8N}fF> -4^PRnr{v)&dG?e%JSESbl82|{*;DfHlstP%9%l%6IROK{k7wV<<18E>`H&0vKAwFaAHij0E+e>%d`mb -vo}C;IC&#msA7JeRpC}Y=0OUh60z%qwHzwnjHz`|$T1EDHBfQ?oUT=ig8 -`y7O7MtHrEz1|3~H?r3o;q^vV1K5i^l;I51t&Ty=Zq~ey9Z&`6m_IhK*EgRnw2lvFrw`{m&V^P6Jj_f1H22nKz2-i9 -CVNtOGH+$5v0XH8D6B}^zkvb8Mc4S98!qJZGXh%5Oksa-bvzMYVZUb&(+y>n2e@FP=k^S#zz|Ctz?7- -a_cL(myxI1un#@&ItGj6Oqu`})t-0Z|hIPtMF?hf2?a@O!52PQ|56O%K@g~=7<#$*GzGkJi_whB?kUX -qDCAy{5r?n?nJCRk=LDwbtm$=6S3|@UUwqaoyhA>#JUrC-HBLtBCk6U>rUi#C -t}@+yzWG-JCWC&h;=9Ox)ZVPL|%6y)}6@fPP~De&pC@&jv_Bd5iv>Rm?Yl7eKT%^Dv?8#h{Y>%s1gyX -L=IIVLY2g!N4p-Muik~maJ2vrh -?DhZ)V;!q_aR7o7FB!nu7LzRS3C2^>d5UL~&RT4s##Gy(;sFFBTNeEREhbjr7O5#u@Ayi2msw9Lei9? -lyP$hAwk`SsS4pkCDmBgV+!fs;X-NbYZ+m-m}&x9SQ#5+(Q$KtV#O|Y?vZEPCvL-YcZBgib10h#=N9= -S)?e!nEij((kSTw&%YBcEgMuFP&?&c`C>LW@9#r^ru6<&0)QF#?MN(J_$usy*>Ak!@k3ykqfVpvJ+>P$X@HAkW{n052SrTHUR3;gTgK@LpDE%^ -nMozpZo*_b>)o=iSm8t*I^wpEN@5*hYSj5kUQuYHVP`&hy)6Wf%C)cvZ8Z_3}JQ^IR&gQX0H9Muer7%wy** -1RTBlq<%9Qx8#$*JC6A7Y&APxKy{9yJHqAO_#zE5X*@fyVV&dRjsUnDOAxP=y79H4R-F~OcaYf;>4@q -&o8FG_t+OH{yu3Oqa)(9kY>_(@xw9f;g}w%>=C}^P!KyjV>8{sc)f`aG!OAwEY=f0;V9#{0vWp;eRhWI|6S>&b+kOx|*z> -G+A0jnafsnmqG3rT>~d^Am5}CvO{0ER2&CVnQJ%A5uLVF2c_6#17QtU80G{cya`T7pd3e4W5Z9p1hMY -2e{;Sx)bkoC(r!EJKf0}B@^d*J&0jn_c%yVJel8cD%f*wnU{Dsj&e#pQ7H@j3c^;C*vxBs{?J_ -tfcaTY|@b!r6<_!l-<#lsBf5Tb0*^j-ENOgzGKx-%J$I~&M+OE@BTVcZ3{Ip)4$A#P5mx#70lteQ7e^X5#LyW!froqxkWx!Do9;fUP46 -Mw@Ixs7E4N95*B^c!yP-B~6b>~y{*6!~UFM)3b6W=c}!J2O*God3wGua_&rZ#i41t_03`!ZYrQq(v6!LlOMtY{a=zSk9$*(B(RiTj@f_M{tUK?4}&weYcVbc-(>AvL1e<{7 -IG**3aDv9T{P@NFLuiy^o_8hZmr(%KReNz%|GE{E_%4*}m8l*saiyi|3l;TH+$)+~ow^X#O%+5U1m&hKs|bMd_7+O4E6o&|EZlDl|bbM01=7tedH-AeZ2@%DBr>5FHf-L2 -#=o*kwq(UR#7_@#hhIpCKHhJ}yiEU~N00l(BREC>8zf0hG&dG3}2eko&Eu-i-O7?uZqDP&k4_@$CzdE -l2)hUI}@Y8jRXeko>H9{5E+mj`|+XIRkNC3?F8@Jm6%3cw!(e*k`|bXWoSI=9@K@lMIAvAf7r%Wq;BSJz0e=(x4fw^MS!e5fw{qWx`^sn9mf^lqy|E1UmGTX2);QU$ao -DZdt;o$FHxrx&xryJn404mwj%C2#1%C(rF8Dj}i=V$b@Jl?nI`DVF-+{ji{to<7CbBy4i{H55H!k_u= -o-L31pfejsW({z_$3Zq1NevFAHXku_!_`J1pfg3A@~RIPr*Nde+vEy{1Q*C3H(#=BhFe9XRQhR5-+R? -{PGdfg^!RfiObdmel2)ez^@fA3;4CO$PTZoz*8zr+# -i27ZYj*A4u);J<-iN@&&%{8B@+u#dE)h-TqShqw6Ecw6!9$96xy`6$0f+$uYu?nWH+%}02D>tnl!A8% -P_k)5|&DKNr*g6v5;Y)U%Wl-zxM+_n^<Av2bcyPD!@!#`CVYehtKTs|+*zekX2f7xXB+!e{E9gz=26`9z0G&%!M -!|iH-1qoPyA}LLA9l-CHlyM?RjyNU9rjy1UU}{|3%!6|h2B6np?A;~&jfu5{XX<2@^8T31b+kmCiolh -H^JY4zX|>Z{POkXfv+!*CiolhH^JY4-vqw_zkXNPfZqha0lx`;1AY_y2K*-Y4fsv)8}OUpH{h4LtI>h -K3;quLUGR6{?}EPre;526_`Bfmz~2Rb2mUVjJMa&|KY(8g#|H2Z!9Re12>t>5L+}saAA)}X{}B8G_=n -&hz&{251b(S-8x#1a;Ge)h1^)#8DflPwPr*Nde+vEy{8R8x;FnKvj|Kco@GszBV#gNjp_J~8Q@iJfd; -@&kxQ=`!{e7y*lmg9p_J4L;g+4)NzEJDnXO`ceIMGWcfJc?|Zk1j^=k*Bn4!f1#cl^G~?@`$(SpvI{- -w*jcsw^cTz#}7IxAOaUiKJ8`V_(b5zSdV?o#*nr>m&$;Z_brD8A7|AO#jW#e>c$OOWW_yf;Xw<{LL?O -(0}7g-pF={Q)+zPIfju_hz#k|CKVP)Rk$o)lD~;W&CL6dhWzo}dZ7o{I8Pk0Tj8sKuPVQ<;HwH>6?{p?aIWC13SSj`RpG0GuPS_1@K -uGc3ce&IIalCsg1-U3}L`CSztel*v|s{S;T%8*v}&Nv%r29v7e}`*{$G*{VZZX3+!hR`&nQ=CC_2^fnV%rf&DCEKMU+<5&Kz -SKa1GU0{dCSeiqozBKEVueipHx1@^Ou{VcGbMeJvR{VZZX3+!hR`&nQ=i`dTs`&qK!&%iHswG`mz{g& -M~(7VtF=u_ypzS!XcJ6yyL7uew1gCTz^77Q{*!tpDFU0kk1tPoQ>VxCZT80 -`?DXiTb2XLop&o0aA&@z*tf0aFTvf$c|p7HK$leGlN -YqxB=q~xyU5qpp~zgNV3M7rdf624n``=Qd -Y8bh%y?15F3)3fhVfU5xkplo~WvvS8!hCedkrdd6iQ`uZqW@^6?B0A!0!8@jgDfIUVpAkm -S0n;pR=UIyPaQ0ZGTWklwDP><=MfpysXuMkfg^T{3KwG6H0aB~xv5z?E -70qEVmbg+OBj3~&)pSn$79e{8SoDJ>hiMuLea(5CClkTRZCH;LcyOT-}_tdn!21KddIlKF5yn;&i8?bLyF2IL%FcT&%vR{jE+D$eWK^XE*}-Ab;?CY*ctsDA;tz7`#*7-%|R7+5-Rrq(wdXc#cPRL -9MwvE=3y@Xtf-3mKUXbXUHn6f_q46kwdD}eoSPdkkh?e(}AOKa;l}nx%a!3biz$27!W>?*X`tB -xczM6Qb{r^H{s}Rl9D=?CI%!|&%yC>S^V8ih!_x&Ae-7{U|!ZCho^3Gz^#y9DCLD+ZXNlCA-y2xicS47Wz#n7-%|ho{tvw9+; -1&^KmNipH{!IVdpuQV~ZXF1|&ms69NWA8Q{Y?lP^U$!*g!Bupp`Vo9eJlm>3WhMf$Qcsdq%7*3*77aQ -GM!O*|!CXF#N8+Ffg!m;3)Of` -9PBJZuRCF15!4z2?Ya92Y{-IG9a;dw_XPV2J}+U-6;;FJGn3JNuuR}_qS?pUG8poChAsM-Ea-0X5S%^ -^=aki@Dq0{70cJTxeub$KE6w_<*D_^_4T)$u8*UV_cEwofjLJBJS(b{8^6E4lEw68n7(XcOY+&V+^tl -4X2dwVm5+s>7wl!!Ow2xJ18hH$XfB4`|Fk2ZlyG46XqF^$2l -)>uEj3z51-^aY8CeDHRNukd}R|bV0x*AONn{S_c5=#6_Fs5d$;m|6=+G7J^U}V%#!rxu=)P9^4SmEW4 -BQU5(b72Obq-+VeWnqc)%S8a<@8=@E7TufrNo9138`n+4t$F#_V3;Vmo=aoNv4d_=_PCeaArqyKOSiF -d)x)Ke@0^%Ob(iG`p4JNF?j+R-W3AZ;QxlhKJD4fOxOdUIk)Ln`PkjisotMYbVxlDN)f)aA!bjf8O6P -nYR?Z&)c7y-=3w5Y_F#+I#ADmYclZCpr@`_3yWVn=TDn-AY(vp{w_t3-M{ -~cNnpC1ta{N4WpP)h>@6aWAK2ms(pnpPYffKwp@003DB0012T003}la4%nWWo~3|axZCQZecHJZgg^C -Zf9k4E^v8$RKafBFbuu>D~J>rY}7I0?iMuNW!NqQ1`NFgfuqDsB0!crNnTrEA3su35a8GG*9oOS58VzeTb0pAu!D9P9ri{$+z*~$M_7 -B)^@B$Ww%A*AsJ-ygXb$%$goCkNmgmk3>+2Fww{=lMJU@i_s?ug# -@2T9n8kcqtrr$0>8|FuVshuGgs!A-v!=9QDrmIB9mQjtcRVX5`1>BrUU=hODZo}eh^3r&qJ>;%UTR_S -)q^U8uo5DNzOmbGWf2^zA0e-6l3^Uavhsx2J}$UUuQku=>bqdBsWrtdXH?0xngjVt62nnn#D!1CMwvl -gsfQ!ZrGnl4dEw}1e9woi-50U@6{W58Hc3hH7){6cwEu-V}O_3HE@Q+lvNhMeg%3FO7BgJEtlX(Ky{s -l#1bAK;qwFhWh|nojb~raGP&xkPK0$NJ+?tySfx``xd`^C3YpfMa8`m$FILjPtzceR_R0}&|)^*r -Q;gL32oKUn(NyLDpeQ3}nR{9g9mT(yjZ#VZOjW<(yg2i=$nFnbmk0;*4o2CVNYl@-aD#pviQH&fj#PI -1>q=r7*v=n#riTZD4J3L9@6aWAK2ms(pnp -QRZD8m;3000#L001BW003}la4%nWWo~3|axZCQZecHQVPk7yXJubxVRT_GaCwW5FH0>d&dkq?k5{l&P -&d{yQRm_U08mQ<1QY-O00;o!N}5&`l)R;!oB#mJCIbK+0001RX>c!Jc4cm4Z*nhbWNu+Eb#!wyHe_LR -VJ>iati9=T9oLa3`rUs8yL)CVPup(Pa&O)19(PaGt*VHQc=NtY&kIMm{XDc*S|lY)l)TKF7bJGB;J$< -VPJ$!=Zde&%ZKT2$#YGFHF9adr06PKURp>PNDcMEkYGf$p8nR)X3-LijuZN=NmURk -m7wFMnsv8>^PDS@GiXl`DU{?A4c7zx>wnH7~!k>=(aXw&smDR=)iYD_&Z?{0A>BU$gu>f4A)26{ -~)KEU5X~pVSfBepxSAI}i_M`87=askKShZ};Z{KvpWh+*_`Nmsomi=EV-d^+lW&irln -=4=b{<8nEdc_;7zw@2%{O#ZV?Z4#zce?DqEq`<2xBt5Q7j7^MPydg9{qJ%0hwcaNXFvb>yDz`>wtM8~ -KVSCaW#0`dKWzJ9+jqb7(#x+b`}x~1zxwmG7rwXb2miG2ik~k0>7OpV=cg-HyH~!w=B=Oo^~Ij>l=`! -u{pdT(-2c7x@|t(vTD|P23;%eb?Kf@TU-sSTyWji%vwsKb-=X?ZOH|1S0S8U|<%1eyhb=0TvD5NIw0nhk;GL!cQEXify06@lhOpqUY9ZUmYgf#yf3`4Jk8(E -JEBKSIrqQ1c_y{0KEaLd}m*^CQ&!2sJ-K&5!U2KmH#{C^SLyBWhE>hyqOrH6hZ3SQ9FmP}PJ)6Ka}J* -96UvNb@7o{D`!EL|Q*0&5u~?NBo2z|Lwc(f0j#X_>B4sNsXRSUzF7N8TBPetvsW?EUDFJ)K?@mc}9Iz -QftqsuSshC8FhuErq8Iql+^4Q^>s;YJfp6Z)chHBm82HWsH-Kld`5jkn$EUo)Hfy7^Y>Sh>iPSYq;~{C!taJ%4{Ksh+>TkyOv$-%6_I@9!j4YiLDlXhmyiMQdn9YiLz#XjRYHs-Ce`nz2 -9o4p!S>X;<5-wggpe398x>RJA3jYD-YnmY|wyLZ%4~P0*IHsx4!+RD?uZ#zgZu(R@y{WlS_b63vf9^C -QvxNHjkZ&5uO$Bhh-7XuV6c-X&V^60LW&C;a${Bm|leYC@z5u_jbBp{faqCe$>ct_i6oWSY>>gj^E}O -(+$iuK7{d{HSYw)HOfqnjdw|kGkeZUGt-^`BB&WsB3=IH9zW_A9c--y5>h+^CNv~m)!p>lT -J!w)sX;M9DQax!>J!#UKAIu+mC0);*)EjQOyr)h~X -uUx@LRb&~FvzfZ;`S#vJaoXZ5~PD{F9_X0`v?2{{frrDQymm+w)t}~WME)n`(?^;Cq8EvW?-m`e`h$M -U0;=QAi?AiO?F-i9Peebv=d+*}C6O!!t``$@O_Ws3trzF`s81H$W%4IlQ+GV)mJ(u^+$WeF^zIRrVy$ -s(wC&}J9eDAy@dr`i3L6W^3-y4u*FU0pQO0stl-@7EpIpla*k|D=INroJUBpGrXmSo8BiX=mhS0x#8y -e7$dw&dXS4M_&4M+aC$OQCIZp`E=#+vY-BkW%xb)chzlKT6GyQuCwK{3ta)O3jZ_^P|-KC^bJy&5u& -^qtyH;H9tztkD$#@#rM|{UGpVq^V9JC4x(%R1Z{o_zTZW3&8MKvPrvtjh_3k+wD}46{(7Qoz6EW5^1Z -*2=$d~)o1b{^Zzj6tW6SK<%I$i~JfAj5 -0FBU>>>0dd6-$jDX^2tb(6pWKF~|sDhtlWUGdsRq&IHtcer`Rq&IHtce%~Rq -&IHtce^3Rq&IHtcf57Rq&IHp@}30Rq&IHp@}F43HUikbi>aC{2V5_;b#JVl65qZ#vlPd$>^AfV~}81b -Cc+P+J8V+(*z)c#9Pe|$Z96WY9`)len3_;F;+A2R#Wa|f|_>SgPOOZw`p?MJX1d;Pqk*4TJuc(kUZ6z -VQS4Y_4ZDpdt3S;+0vS^r8Upg+q;SGRrNNRlbUDkhnt9QSX=Xo`4O3fnrGx~GCy^%p0~-^)IC2x+)i| -}D%Jg}blV4Fq{k93vBy&Pa=J}sr*7m_hn&bn)V-W;pCP)R0v|Guj7h0`Lvfp?f88tg?IEHY#jZmhG=) -lIF=gCPT?icd`peFNIeffBx9QzW1D)N{+Q-f>U -sE~3>^g~+8ShDn?K$_bkD<&$#p^8^}{PfH=Y(^t{+|_y79C!&%=*tMrF{t5uzKdLqzq%38EX0A%OW3T -UZ1oSCYStc;ITLdxidJ3(<{2BfR&~R!Pr|Fc8}Nh!~L@(}J+xM`UPoBL;-@J|csf8!_ab10U@rx>02W -^gh~8bfd}$=6!UK=*B!FV)qgGVY%@e3U3HLB12$;c0u8l_#-j|CU_SVUM)T%LtuhadYA-dMI5M -jSt>xr)U86xa=Ya`J$KSPB5ZuuRlbY3b;>%4>}oERdUc&m@-MotJP-r7cVBPWCtZ|xwukrTp+w{{WT$ -O+-ZTYHFZYl -6XC>Lr-^R(iE!ervqU%iL^$!*d7>MBBJ6i-far#w2>ac-M0CSXg#B&}65a3e09u9f8~_P8HxT4 -=-$UPLKEGK5Z(LZb)u7%kp4_{Y5kcf(S>MH0)=J@OebU*beJrmXZ-2Y^N=ze$j$wi`jEBnbMqU-v*sOGKgolQj7b$AhidUrMx9h{Q8^Qdn06ydy2NKf -ltD?b?`x}R5{kPHxf`{WAIF{`c;9o)V~bkFTih}#IkeR6~7;5I2$9o!xzx_1vg86&#qIhDvo2;6-#L3 -GdgPbP`(Isb{=T}24r-64yXdj8)bZA^8!Xq0-+-{~N_=lq>cqI=HY=_0!4{GD#1d(PkKA-d=MonE4Q& -fi&2bkF%a8;I^Xe`h1nwPO}7)a2#%OB==_BDQo#?mZ&ZjM`aO;!HfhP(Q}sf@l--78PVH -eN#dfp@!_vKBAiwFsL89bAaf^oT7H@PCwDL*A^iPb>}eAwbvHGQMhxI=w^L`k8tNW(Tz0WAKW=fbhEx -83U%i+(G5Qlg}QT==!Tz&Lftt}bi+?Xq3)37H&LhvQK&m)^Gy^gDxtAtugVtop#)cHj+jEU2yrad`Lc -y&Hg#zc;#hb1FPLLmWxd6yz+1AqCXN-A-roL^f9W~-N3zeQw*Y^X_BlrE>h4yedw$;CMs&~5yFT_T{i -9@Q{iC?eTb8>!XdGTzcXtxqOY80~qWhU}cQ?_!%kzT<;ztx|i!+X^CRQx<0*3bT8LW2Z`?G`sonSJ^w!)Cc5YUr&oyX`TyxvqI>>-dX4Cw|DRqb -y669=H;C@}|LF+PJ^w!)CA#PTr(;C-{Qq>E=$`+d(mX*_?9)l2d;Wha{g@cBvAb)Dj(N3?=$KdSM2G% -&5FPs8Np$Fc7tx{r-9(4}_YfWW-%E7p|9YZB|2GgF`oEFr(Em+DhyHISI`n@F(V_n`eiEA_x-sfyXXr9V_#Vt)wx>3g)^*NvR8lfFmx&J@D -LD1^C3_RbW-#MndMBYS5GVPfo_?~%PThYn-xo9~gmGp7z??3nM7y)y?7W0c0+BYS5`V`7xX+#`FJ8h# -@Fevj;(If)n}^nQ=*U1s=+u=_o-cbVZQ0`B+7-kGC_F=Fla$ljS?dyI34_sHIvlZY`2XYP@`GlerT4j -|qmduNUx#tj{fjB)hvKKVcm9kq^e?C?H$KMh^i6646>ee!!6diNHivgbZ|JPo~ji*Y3IKKVKgUDp!hI -N*KqavD086QfS(KKVDMPAEpq=04fq+~^^qHTTK>=0*<@r@2q|H#d5S2+e)6za~NxBSLeZ?5~N?#E8(` -C;Mw6G%+GH_sRa62u+L#&3&?yCPEV0ePh|t_8J82>`F(Neg$xfOGO^gW5eX^4#LK7oGbD!* -_iO|G|(A+0GX(BW+A~g5OPMQc!j0nwrvXdr46C*-%pX{VL92g@ubD!*_iOs}_&D{9U>DI1KM`Mfu!rb|pNOnH*hh53PsCIn93Z;kC!#42`iXA%i8#uG!$ddyL=e9yL#&og=#U#y%tdN1ofCT_C -#m$vz_~pz!Ili$wRasLx0isM7fCGSR{RL862ILqrGvhlvjUUm-g9f0gLq|23k6|JR8Q{@)-v_&-8)@P -Cx(;QtuW!T)ihgZ~pm2mdFD4*ttEwSp6lpRXml=l|!lvf`ZM=j}xI{Qtaz=$`+dcM{$6|8rUmapv*!Z -ldchMHO?lv4Sd#&rb5_%ps|YshFskxKG72WU81rPNku1R4V37LZvY8GM-_j)P0(&ZKknVpqnaHgO;(C -V2RtFRueClt@o5r-PU3)hQyQ{CYdgoNE+t -vl;-ak7q%9fZeJ$oUW;_Yt6FS+Q!#zTD*D@N74vth=I>NZ!!py2u4WpN)#`fM)C$v)&1~@MIE?)0#I8 -pt#tEwf+pVz_*dC2#zz%Ax0qm&8a$v_aRscJ%u@cxNg&FSFO&7YlIoDY?g;#YGKCat_ZzddEPi-?c9a -^bp=I>-WOjOTI>o{|&te)9EZ#p?7qVI*!^6V*%G(9ZO(Ytw%xHQT|oP0!ubY_QTmOFT6jrZm)2NJFhTX=MJ6>DHUV -)qQkk=+T*R!p!%WrWz?++(&0_=;!q^pPD|tX{5C>HFf!Eq-R@dnr5W2o&l*TfKOw?GgHu>##)zB(;gz -NXuFvTOL%6t;)1Y*XZC0emhj9$jTt^vh!5l-EODpSRG8B<=k>tMR4{E@)5M70WcN~IXj5ZoQ`2ZOHHJ -1djWknZXj5ZoQ)6gTV`x)jXw%G$*<>(MV`x)jXw!yn+?g6fn>NhfF@`p682%WKHOEoGBai}YtvIcGiEX~W->EoGBai}GiEX~W->EoGBc(yGo~;zrYtk2EQ|F5n;A2e8 -8ej`GnE-Lm6?t+Sw%0fnQ*Qy9DQ_wT7L@X>cTON*|!;KR1JrWRmjX4fUIUXZLC6OtU_k?ds$5{2$^xe -GSiSEGwpLTlQYjuH{7glq-y%%W~PlpmYSJivd&p*w8OMb$Wk*N(_1z(7AVWiZyI{R%uJ>*Gp=4{GJlz -|K$)>XnXy2baR)Qw4rayzWoEP1Xw&a%7|YRU)8F1OmZK49-Dnug(O}C#%kNTmXf>v!VN6NGn39G$nA9 -+)q!DWYHjF807*oleD`ul&gkzdZHH;x?nEhA77?OrDB#lH*riLkpYM4D*!x)K%F%k`9BpSwbXc -*U_Vcdd-aSIw|QZ|fR&@lV2hMANNGbtNpQZ~$_Y?uUhBR4WN$>m0_UA=~J9U8`UXqbuHD2=>KlC)9kz -muEEotw#>o5`J<$(@_YotwFno4J#lxs#i@lUMY2O7@=Qmna#H}4XIjT{6J5(2W;{k$^My;pAGqxgVGuzvs4RxlEubgH?3(1jk{CI#7ZI* -*J+bOOM1!+?q2N|(_#7zV;Y#ZFj-1`(f?McADD($#XPde3inUOk>K}J#_LyTlVh8e+>?z_TB4uqS& -mqwpsYpkkfyX8o>X|;*!1y#$SYH8+KV&9lp@h0}xg2W`ug2Yr21W84^-9cjKe_~t>I5@B_;^sNT#V~Vv@B%Vqyx8WRx>8m#{dJ`BlyGzSd@VU$Zxb)D{x6|H33Q)LNVF^b^!fZHgn=afS -9*iP4)XuC+BgP3x8u^}yKPx*beltCo2^ukno2H5vcIxEM`~wnYE5@)4p0WExxz3=?W&zx1D{&^m8ORGspVH{_ -Nzf=^(%|b=rijJWr_V;R*sno2Rf2zlG})kC)tQhE7Ye!Z~m3NNTPvrspt$qi~bU~_;hbXkAf>a6f`N| -rpz^*l3&LF4ivXDfb+u}7{Gz};|%!q{o8#T88H^CfkU!W9a|X*fNWzV1hSox2*?gbVjw#isQ}rK5Hdg?x@MBII+F5h0&rj0p -L#(xgH@Cm0d(Imw8S&nZTPd`>eWG02M9AknBSJnG7!mRrU_{90A|paR)P1^<3He-RM9 -6255h0%;MudEZ84>bfTayX-TxCSa=NcnIKGzu$^0~o?kk1GsLO!F6m<70z3HDDgBG}JXGZXBm7S|2C^ -=#PSM8moU4U>uvY`QAQalBMfLEGVneJ8QHKu!oS;2I# -F27{DSC-eA?p0+a)4igsVmfXfV7giGa~yPegXx~{)SlS^p6_om-D}QUM8`>&HB9%+e~0Ow`M+km=RGS -3PP*LYI}&iz<@PoPFj=p(GvfKrI)&3NtUx&J!U`n10`FtMTT#9lCKug-`L+W@_gUpkWZ#jz1Xz1;)`h -hMXI=P?u^c%9)(IST!5uy1_APNI)F8((nyD+hc`UHSSN1UC#mfqcTm~y5>h@U?QK>q0h0Or!RQaZw97 -U?{G963gm6MF1N9GU%Xp%Y10J>z->Xf6I5j9YB0Q%tdFo25!nZ9U4=paXHBj!}KviN7C!IAp7YSQB4( -CCO-_Bo*5>f_Q@A7^bHQZv-Z%K_&0h#datZN5+i?&yn5$2CQ}7{GiN3;g^!4V8PT+># -KFR=QEbASdP`<7yhY!m4JLPaeZ=YiT9?sPYY*H`zT_zvw;`Qp01emIGk{x>HZTB}^9rjRTu#2UDTl{N&Ga -4M1@b$ldwG1!>oMHXk9j?YH_Ded<#0wnVJ2E%v_MOQsT=DUv6uUxE5g)`4o2+#K4@Stb)$6yQ=KX%ta{p%-2 -tfWwT~i4qAuUuDGdITC!n&WPo6B=|hSh~;x6_&mml<#QzXJi&@TNA*zm`e&)8f}jj- -X57rEFCd>&!LA6q_)P2~t1esgTak-+B>HvFc%%aOq65jOnxGUx*P$f*%F{5FhVplQO?2pfKTC3H~{d} -hOMZ-p)@g3oOD?ZwcA*yN3{;kS1~7Zt&0HvIN_=%OO{%!c3I5M5LRpV{!+OQH+0qZ?tvZ>tQ7ir_OFe -tT7PQ5AeDuGneDT^OS(t|pV>a!>!gcB@R{wi-N6=#;4|B2)4bM^1fSV -HoBp+qB>2qs*=Ar1o~UsZqAiwU!tA1WVkh)x8S>9A( -2_vjRj<->FeH{HCjKP@t{v)F>N%)8NICAiz;J{N~JXP>8(cC>ws$7RHf;0NL=Hlg5rD1jvTp-aB0&b- -4WFNk)*GQWn#kKXfGj>2JTyfcqv -snY%xtwUPlsqW{YV~Ejp6mGrP*>OtB*gKC`QAn)3!lF8Iu@vgywoh@&`DW9%xMQ)>|F>xvwdFVa_>U$neFo;_j?zD&upI;yW(5$neDT^< -+~^apS^u1M`?-M$hucr0hU65Z1_!cU`G-HWW#UoATLTGKsNlQMX)0Y0kYw@caRsNn0t&3zrBXM5LMh` -Z20ZLjG`0*WW#UT1qY=FG>@-k1WC^Eb&O!>_dNL<> -o@lu3+$G0*fzIq!Y;;XkaBEEVDBjT%fG9td3ueT3OEoo`%i%Svr96!Q{_=2O1h%Y$Ci1>ozjEFBd!HD ->RlZ*(tonl1DjqG7*i=#^savZijU$MCgNBVJj1Hu+jxeFaMlFRu&Ve(o?-Sd -z|(WG3qPjIc^zPmuZR=0bTMyWkIx3;{48D88$3NctA2}uk4p@glUw4DEM4In*yFK|go{x(GhlZ9W#So -47yCNE>W~OpjjyHKaRYHC*DaYEgO4)at}#@cj(2Db?#g(l#!%@r-lZ{kF5}%ALtVyr4>0Msg-hHm*S) -m%9LCk3!?^T0jLV+GxW;oBmp_Mb#d8=}F3PwCOa#Nmk7!IN#!-z4#Wh6&#^L`*}~8A3cGV{ek@}gbei~WvfRP0*6n -LKeFq&5IFqnGrbxUg1MsJh1$A+% -_}PRivE?E5bS89m0{e?tmKG1?xwC~^DxC%pB|&0)dPG>CE}u<53H9{PKeoqQ1#oZ#J34nDE>ms?jq7y -Q|&_>&hBWB%lVKRXqF?5XLp0DpL{71q%eA-kKrM<@g{c#j|=cN3$Gv~pQR{O%@i1PZ~EUd5B5kQno%@ -I3jSL^plA97)X8aiy}Q=hdC{8p5^nTQp?nDqoLIj_4A1Wp?ipMnGF<5yG3e!APsUhX~|Nj57jx^0oru -Jj*sAP!?G!Rh$uh7C3y`T;}PInXV7$JJOTEQ5`4ihBYLkFwuRa -nIg$>!I+BhxI8wRzr<(|qBSjefko%9pm_dWl2Ddy|h)gYf%HRAA13K#KNJ2fj7|~ -JRur2nI_~(CSpymO7<3jN1=}^=Ydg~pwRT9HF%{v^Oi!P&?eCfHjnCuW?TmP>`Z3eJ>3MC -VH&}lMx*WnC=&tkm-JQMoe!Zfm#a*)LKZO)5Z(>?cBG2L^YwGH8gH<|9a|2EV8+PjA7y6r~TW*U7 -sk{{h${AW!GP1t7IZ-ut!TG&>aUjli}`^ySx*%UNf;!fP|U6p6!e(@jP;89 -e8yu*lB5IPX+0JC-k$W{LS@+*vZ^>~%(UOir8x;JX?pC$mOTUIdLGkzu0^=`qD{1jQubU#H_Gjq&=6- -V-4`XhZXjzs(%=a3s&5mzeI^z_LP0mOmB=*gX^M!eKkyvu+WnWEziz4}X4018P2q97VGA)QEySF(5VL7$=SaFUzav>k3p=$oWBg42UPscg<}fgw0K*W@z~kQY?mq@|1`TdJgAks<)BWs@neHcdh3S5BSDEhTcEWT&vujNE)4I-dtb}b0c(w-Wi?If(Pxk5TtjW0wB@qx`3Vukp~<_i^t_|WDHRfYJ-&I^e`GL -O_0;$u56)D?p0PSB>H0+8lH2}rS_)&@xNp%wsAj93V_{S{K2Sg@{tg%m4lLQIMmHOMJY%&0+7f#OCDk -_r_!Y9^>3*TL20{Np;f`U{1CsV^!7Jbj6g6fAvNA>imM3IRi3RS5X`nnJ+N6$$}2f2j~K^L2%Qmn#(l -tzV@OX#Hx1Kz(w-o~UtYIXBeBMzAs#UZ&-#Y*YpidmWMO^75jNJhV$o)Oj_&!-`c`=Uv%aA!hV>0KF|2Q> -h+)^zoMa2rHnj<}TdmZzu?kc8m_Pc_j~VgS{KpEY0#JyFL8nlN$LIV1aDy>3oXp$=;YhmBDzx|NI+A& -H1I^7IU%t!;N;57GG7_l&kk3{|gnYI!BIL835h0%)j0pMcW -JJhk7b8MGyBQJk*~5sCk8izCZr>7Lzz{Yc6G&?ya=y3LC -Vf=Rb|J|UQNn)UMCQU3IJi0!)RY7~ -k)N*)ifK{s8ELUBFG;~}=>rmImXt}J;x#3sCEy$F;%Jsx7)ZJG}`5@z)f8*S5k$dNFehuB)1=0jlvN3 -R|av6(i_heB~_%Htu{P1AfR6t|^39%936nh%BInv};wY>`d#p-|k9@_2|%@gm+@UGSMrrMX};6gQ$g9 -%36=w|uS(KC^MGTRztXpV=y!R!5<@{N(WvTSe3AC=|DzJRUmEh~;xC_U31g -wC=?f!JRV}7+_XA!B*ABP#!aguM-qJI#nQAo3dN-*kB8Vwn^s3*1JR|&!)%{Tt0PAOpNGADCUhUlee$zwAks!cfHvFcCQrJMK>hUlee$zwAks!cfHvFcCk|RNY!)*9X4<$!}0EgM|n;uGGBN -qZ>!*6;hIg$_{8-CM6$&mz~+3=elN{%G>%!c3eP;w-}XEyw%hms=+KC|IBJ(L_t@R<$2jXX4R!Dlx7r -iW74CVH)*>d1&G=xh+G? -?Lm~>w22O%-b}>5vip#yS6%S0;8j1qO0vjp_C7cFkvftQZ(cXa`P>#fKfS_1{mN`Wo?ef@zcR;h!>5- -Is9)K?W$rc(ZBu_ovVY6mTI@*nZ`l&;+}v&KNcL~#_HUWfgJEI1j)a9RV=2t7l3`(ex&o)wXD^WnEv% -pl9L1ZTJj{qu^Ab_RZ*Ht*Bmi=Tkr2o=Mj{|L8Sw`78|t#`5Wi{rhB~x5qzYscBMFcrjMRXPGUB(!Go -5N|-pbB&on#~fa-I=yY-hUL8Oed{W~2b3{+gHXOb>q#qJ}d)R~hm0ndxQ8A!<0Y;Q%9EJ~JCf81eF%* -|dw13J@Q&1V^b;J2_45ssYM!YYn%O;1AMVEfJ2KInK(0aOBJh9yP*|Gbc7M0>PhP@gf{KbK*235d6tuMj)Sot&BiE7g;G0j-0u~GDXy -I=5ik+kk92~j6gn@)n9{r1}`!K`3w#+0{L9$34^HN%yl*msLPwV&VLOB{WI4m8G(F8h8Tf-M%Zkjwtr -@X%@(TrXU48D0{M)o5kNlU8ySIosC8W^daTV%u(Z)*ZHC%kg`&sW%mnKWO8sYUb}-`QGuz8E3q96mdw -DkE7{Kg${vMnInB94akpKwu4L3i`?(ShE0>U#G7eLJJKEX%@2pe1612MaY%{>kt%^3yY%<&E9j2BtTdbaqOYlJH|*I2+v>~d1$U@eZzr==6ZIQaNMD}UUA3Er@7$*BVIn -uEuD;%Kxo%rA_dai!RskXZ<{+#G2-RZ+_{&L2nerpNQE?avW}tzx4Dxw9!0p#-Kfu=ZTsu!@B$wuT*fqt``neu9b;vQz^{5e4fQ&QZ1wYrz -Uy394bG@wm$T-dQvT4BKjk)zam5_LvThERZj@r+yX9Yw4X>Q+UMj)SkybvG_HFuQVS@i##JIY^*Y}DL -Q<~2^<&z2K -~TJ4HB*KX;XlI`UR?*I3`s<8N-1<%9Iq+!)VOL`>!;S>KSwnw#Vipts-LB=5D6%$jfC#t4EfT|DQI)0 -*#LUZbbqd=KjmQd{#q>OEdQ^SfB4$Z*Z?W<5YJzxlnqgd@>4zn_gQ`uNT7XQPgM*ZcuqsL{i3zF&>H0 -CI?t5(qDO$bQZD^L8BqfS%M_k{NVvcARo1WA{RD)gzYshQ=LD?Uy792{BhPQly=V_XDf!x*!(Gu -2cf)s{uDcTNRZ8+Vpk3&-t*_w*dU+t?0lgbd;Yu{8{~6=w;QO)p1;7`CuGg$FR<-JRrdS^UKfx&n;+Q -E2;?)&BS5NaeuQTusfqc}a92ML1ksF(z;8i9U!DQwEQe^X!Y+X>jJwK_&rZXr}i~eMet} -{!HHbnlVcUNnHw#mHWB(jP>~$WCBC}Cy;8&^J9#jOsci0IMCS#fwpcgmb0o_*li!KjO -p!_Sv`x-aK}@&rW2hmZ{S4{UmLqx9oNn)(Zr?zl$yY>erTG2ubcYOKL{B^5{Det50~-aA{S~5cQ=MxW -K^w!)b&Q~3ulpP$Xwlo*&IlUxc3)rw?RmQg7(w5`&JIS|z9M2fHsbf~LIPgN&e$WcLs -wXvo_=%m~`?c3)ux&3L=75+W{M?cC3ZkWV)wLOwl=Kt7$UCgK{_&ZCS#KAr0sfqXhQFe2o$kr5%EO^g -WnY-R-V>D?lh=DPuFoqAfK)ij6gn=NQ*=hlBup!j6 -gnJrx}5Ky3Q~H`E;FS1oG+P87wZIpj2KY8jnnM@eCICPjvAN7FWA=U1S9E>AJ)S@|zB*L)q^bnWFcJlN{gkj_9A?}dv{SdEKl9FpO$DWm~}yH^!MuvB1u3d;nxRbdT*ZBtk-uFTnS+NJiy*(*Jtq|g`OO|Vr?60rMaeIM{F)~w6$bguY~8Fd$gjD6L}8HM -+|W^lL4M7XN=6anH?u+UGlKlS89S~p$ZuwwnnV%gH#2ZbVUS<*fc~41-#6n*U(j>^g}Gt1a703Wo0ZP -TZQ|RN&c|Z@jVqmqA-}mECEGX>*s#J-O}49#5qLKvzU4j|&q9yh|9?81NopSZBaHgi#v<-XDzAm!n&%`f~3LM( -WGGGZ?8a_r74nUoL_c9C{5!(1OFLp$J-VNHi2d3l4mSRk1hjW<>0bdl(UWDVi(S7W5kQcxom_WcHta0M!bBSyT*u@k8{=-@$&f-mEJkT%f~rt -jClDtH;oZ5ALpbo;^pI9G)BC9oP)-QmydJL81eFP&KV!Z8`*%tCv{~5MkgtScf3N+QU<>)}k^$3Q^$0HM$N#eJVk-e+%PY+DDZJkFCi%KnK^Ng5ig&}yG-P0F7b6F?u}>{%)S`vh9dUGP&O2?FNUh -2n0+x64aMw>p=Ky%UkoKfG5cbu7>d~!L%~qYz8LC-V)jB&E)=UT_ri|VmwQ>q>dU>TEBxgs6$-Q&N3B -q3Ajrf(=;CZ3G;%f&dN~^i?VJsSj?M-`Q)dH-zRm^{t(^@fx;q=pi|Vyk8StWd`7MQbS-t!&1721u*S -tgs>V~GIL(}bSOi(v8-OlD2bwktbZ0u1tG~LciJ5Jb7x3fV-=f~;xON`Wj3^IbA=Iv}ya -o&Eq{VF3F5MJmIp*!Ss2k)KGA9A{b_d#eRFx|0>5y+>5ofz~JnC@W -LxPW{*4lx4xbg)}k3iqq6;W<|d`S6@8g?xC_8{KB`KW4s~p4)-A)MkqP`WWfCiGfH7mFD(2-v7;n>Sk3Dw5UO!;n!^=Q -5J>QexcKFP&pPA(b6Arr+6JJ4eEjer0qaY9pK(6 -$xizhj~)?6HnHyXXccReiYHKjxVwdMnVgAKlu|*-P%u^*Hz>n>M(1NsKW2q`{YC0Z!WSJMnW(4D}OkO -Y7%^6dbcxPm#=s-HCbp;O3$0sE6NCWs&RvHp%nWT@SBVarRaaQQY&5xr8u}SM1>1=IG|Y=x5>Z%W=kh0uu8^@%hZBpqWO1o+e!e0!;?z?QlyRXE=bjo%^Cv?3$yo-4Mx1|QfR -vk3i3uNHFc9kR3yrv-*RV>Jz$epXx_!ueg;0vcJP71U+nQ=hi%TXAcyOlwt1osZ;Xh0(BUr(##PK1o@?A|T2)TP#e$UPl7H#6 -S%&G>$myo->;Rl-INceMh%7JM?U5M2AL0IvqGE5K{P>%U;YYr!f7crAEU0l1rL`ASB-7QAjCFReFUVZ -cjkwE`OWdWGN$=@iJPa056}{89?gxwcjz|rSiH)aHW(+yjWhka5WlxZ?eNiJ`E*c2&7KLE8tcnuLp5@e+kVP71*EQ9!-b6R>K(W&l=A0m7;&#EWN@0x*3PP_}qNT#|Q(w-QLQuF}X8q5OnNUK+ -pn6$6+y>^UH>`XXx>vZ^mS4N^AP^y_sbcpAL;Ae;K?ZyE5Sc#YK_dDPe5WWbAJ#cBq;Bwl}=fmVhLIn ->wJ5P%fwN`3+v)Rp{lBv4nr!E8bTb>(ju@ZwNQIMS!9R`7y=^y#WM6yj&co3AmTJ5M_j4A-0L^Dr^k8 -%5UiZ3TE~yv=hAIn!VJuOrWLi7zd3Z}eh**D0&|FfZxl1}j8y1J{8?g(z;&kSK1@kSK1@kSK1@kSK1@ -kSK1@kSK1@kSK1@kSuP{m@ID4m@ID4n7F;#VB!L6gNZw=4JNL!))>;Xf#C`gwSi#^Qni8M3zD^=;S18 -Wq2UV>wxQt*QnsPt3zD{>;S18Xq2UV>x1r?=LL-(hUVfqF3%1ynFQ_TEd_h^c<%^f!tGuy@+w}RtG+x -*r{Des6C}mMWJEWdaij)*yqOW*2*#06o4&7)5nc71Rx5(f+ZeHYt_VKwV8rsdBKW+E5zFU_;PW0vE -T1ca&-)m$e69#SA7I4txgz-7&xqx7MezABBbLuq!RMolSUy(;pN}(Q`CJuzKFNsXb5-#9G$WSJRl(=8 -j95Nb1)t9|V)&xL@)mtFr2}UgIBEhv3wS;TmNQ8ET4tz*5Aj7<+E_zsQ;@&ET4tz*1v-h%V*)b_3vW -D@>#fU{d*X(d={=-|2{@6pM~qze}ECoXW_c__cLPoEL^w#!;Dxy3)ijxC?l57!gcFslWSeKM7VDKY;v -vZmI&9apG~fH-4fxt^|Q&fu3I8pw|+Lc)^$sS>(0erQ}|z@6mH4oF=}?wmcDRV)JUwsiui=hYzuNweD~t+~GrPUadQv2zU4pn^)@&C&C>*# -OBqy!wK?_-yYh;h~*P9kGFYJ)QlgL2-oru+d%7DCc?Em#5T~nmWl8d53yOZ-eMxW#Y1e?thbm5Z}AYD -HR~-V@D{&4#AeO3fORD3(IGZ#=33!2Nd@cJteIGZ*pY-Du>{Sv!j2^P%x2A8E9^*u&urG -rwZe|%`F#5n16~_%A7sEY`?lf;RPq7?xP|>31D4^);eC9F0U!VTm}e4lcptOuk;40SfHgT2yk}R`Ts7 -=Sg7@r-nyZE#N${S{m$_=#k%W%3D{8J9b|j(W?24MJh8;=hINM5d)o_|1NB8Yvww30pVMl_FA7)!=ZU -lBD!RMWf_~`P-?F^s?#+}Gp45hIw`S!S#l|Bi51 -Z-?HPX=VtWvQg?StQyYm%Ba;V7t+>+Ij4Q3!UscSw(u(n-(gmBvzcQCsr)g=%m6;m=9BGkXnOT^%8BS -z@{abJEL`MQ#uR3ueWRT!nb;X}tSUnp@wXSQGlF&fJOe&Q_U*uSLaO%7sIC2YGXrMYXH}B}%S -5x|Ek_tZL#HiA89_s*Eyox^L#Hjr89_s*EhiX3L#Hh#8Np(<E*p>lC(DQc7MMluD!PM9AkF -BSJo`^r9#6mK%%+`HV0kDDfBIGm4h>#CCgc&x6Q+;b0fqeSbF#`GYwKD?w^mQ- --`Sf)%0{QfHF#`GYbu$9_^z|?T`OqE64uO37)-wY6^le}S^6A^i2;|eZi4n-Bk1ZOuo>P5W7=e8HD5j -aELOxp=5%Sr_h>#E4-&DwF2O~m0I~fu3*~N&E&u&J9eD*LRC2}&3ClKm*BWp3c(-X!3 -e=0WJCzQpAjMWLyQQ)Q#2yWgy4B$%Y@*0VatTzd11?h;CW%ogy4B$%Y@*0VatTzd11?h;CW%ogy4B$% -Y@*0VatTzd11?he0X8YgnW2m%Y=M*VatSkcwx(ge0X7NSXZVnu4!hPiaU~VO&i7;&Y#AIenOqdN -p+j&J@BXfvoL^i|-t_UZ+a|muqqkFv^f_7s -k)q8LsT8~0-Jcq8-b_gy4KdHV4?fQDIF@lS7sSv~=xF~nBix6~nnA>}k5#0B9Xp|91;rI$nRZ5S5%`q@jNqc&j(v=vT_0I9hu}WWtrLvkzB;=6#vzc;=|M(taloh=HRQATDkG53g-%8wpI-H)xQ -}!103qmnFn@!;6x|MHu5M)n?G$gGX9Tlk&t^t&U+T#dj6gmc*E524iamQ7!F{Pm4l{yweQE}yjlt}}J -&d5;=4{%yO+NQB@A=>*jAybz})pqjNrbz^g_ROz7tI?yYP -0~Dr;=WWK=2#4GXlfeuAV_3+8&-{IOjjp!^)3ZjOH2j4CHfdk`c(Kj~6MN=%3%mOA#tF<}R*f#LH)PB -XhJOgQU4I0WdX4f*Wagx8eg`FZ)Z8UdXW&{&+6E7Yp-e?{lV+8KsB%21* -aLi1yBZcGp-`wB@6r~)q!z^ut7iV{|yM&64<`teLIJQ4SQ4EK`@i@v$5svIP5AqU$`i{A6Y&daTf9@P -Ft%z#QUSy+=s3u<#?hrU0L+rF7syVxnbq7(+xsB{%-&YR>d9cM# -Q_J;oeGRI@qEdX1>&+WX -U0_**w9zgQ({GZgyu8)to=8o`K^r$}<>I&G|8QazFCb8_N|xoK=eW1p#B=+q*YR --47vB7ZeXZHe8%~|TK>kwR(II4I6`E)40VPalVW5dL}%#IYInzOq(f`h20b~8~7)a+q%j|2P7ed-xRq -;_x|0O$7S*C_<@nPgWEr9rd%S*EBBn%~PjKyA>>1~v^izCYW~1^^{Ovxj-1Zit8nJ03W}KRe2^1V{Lr -Th$0Ke|E7HaEQNolp{qAv9aQX4TVYb$^peWe!dvRAz0XYnQu7AKfjN)7bp2=*7DeJlz-+5e-CPxX0Nm -9#!>#cafQG!RI?FB`e(a%w~r(JvqyN5!kK=(dBLIn`TacSaH@Z%m#r91-_LAi#}H@lX9n2?#>xBHy}Z -H3!TZ^Mo>@3|KYQ#9BXA6d)qCK0Y~}C4q5I|@cBF9TzB$1gMI5=GJI-H<6Zdn+*^1%7{k+;>yIP$b9?wbIAA}&pB)^O$;}V4zM)WVew1TXD3zN%q -@IC&yUrS4iij@j0S?tS&#Py=e3}<{n}%|_<`8dqaGbumk)2~4rf;_M+{RJ*xdFvdM0Cg0U&F?C6R+Di -L_gC@Qb>`Pn(6If1omz86eE~F8+R}Q$9;G=Bd~85yBHA}kwc8YzU{xlh_G*Cj9~s8-Nc9p9BpOp-3%mXT&lbIjgzzHyE)DM@ -njbt@<$>v<@DiIq>R8SS5~MVg%dM<17P_S2}Tq5zn>xYpgQJE6sPX+>lqA-%r7a6nUj@CNDAqE7WnC5 -o}Mpcs?VqG{ZT(6nUi?y6w;*(CW?G7(sY+cRwTWf;ktJBCj;FkNJkY(#%n|8^|lo98=GT^nw~Stk9t1 -8`2ByI~l<)rAxg>gm=heN|9HZ?HOVOUe+$2amXvpvR{-UuQa=#d5yf%>@i*?kXM?$%DN-2q`kqG4(Xr -SaWw*1oi64Z(m&1K^NhgiY*l|vlK1lM+onrYQ$uoC>zXwU4xeGi3BzfkB*(*VkXYLB?4w5``lh+tQtVJy^N -b=0nC4dfrFLn4PBUojQuxExO&+NLZjCd*h<-|swj>z)N_3mXv*M5~Lk~rVoV2>3^oSANZcOq61wuVUJ -d^5>fuoC0g8)+jWEyOgy!Ci|i1GfKzcxZXZhl*`e932N{9;u#Gt?vO~Mr{E6(4+Ih%Za@ouxJ2 -ZRn03&c8l#`F_(Ch#kQ)Gu!<~K!lNQEU+WQS(Q)CeG-G2TidJEWZvWQUq-*4mA(4TU-}qc -WmlJc4z}{0FWKh8#iQ!n%f2$f%~wNonK^!nmc(3Kz69Pmz@!0hnjm2GXnQPZ5>5+=m1Lr*`X$v)TYP| -HT%_HgZt3WrW;9|=5Y=wh+A^cDegc%%IOhFoI%AM$mc4550W_AQ9=@@InE9yk~rGwK@w+fGtW~bapwA -1Ly*Lo>*x7{B+lGPo+U`)%$;HlK@vy1LrCJxonyxWNgTapMiOU^gLNsAING_&T2=R?NaD<$XG@MGj&{ -h9#F@LuT7@KzcF05$XPm!BCUMwaizH4ruS`hd%&%wnP9$;m@#Y>$9PQpAiKBxh4dM8)jv|SpT|y*r=8 -v#^ki^l>B9b`s7g$G;#8D;bDUvvUId+uAfGm!Kcs)ZJ=P$?m*yRy7+FoRHg*?tTYk5&e9_O32tR%?e{ -N?0&-qawG^OuvuymLS%=P##K2okBB`H2ojAf-w663p@8GD8ITl~)+>oOxx%qTc5cU+m%D=o$XXN*)Rh -$YU%|kr;@2#`F8_H4Nx89A$<|{?D#_c8#G}Kqnch2OYu>rv@0(C*vK-PlPY_eSU=@6ZOq -dS^ve*=M*N%5TE?w7z19+Uuw}1wmH(H3V55&=6#GP(!-)f+ImbhxD)Y(fu+*emQ;esNSox>=$CGX(D*@_-R-d&sOocRnpX?#EWcuf!&dNX@^QscHFWjtSdcc1*mCBC+!%uodMHEne>RQi0qo&iXaogUQRJXBA3DSmnC%hL=s0DZlSp#soD<{&C#+ -*2$L6u>x$1%f&k2dO_;6%cx~Tskm)9-@3uIoPtd0p2}L0&gB1bL0)8HJsigVYF90VzghfF5=-)DV#Ru3SLsy9xoR?}EHK)!?yna}W<6J2waM;8C^muv3i? -J2(gN2(g265RVXrD-XN$2&)28BTNLOMhJOz=@Hfiq(+zuNR1Hk>eeG{2uO`E7mykuyD7JY$>Rl*fagcgfEFkqR$ZLasS5-is8|2z9@tr2_or!oSvl&G)4>#yfuM0?hdMY6G=`g -gHA6{k%hIUXxP=xgwdZGvmA-QD_H$B|OSP5*i!WIf?{)%nUSOBa~VB09K<6;bi=s1s -K0R#j}Qeo#tTLTj`4yKFmYb68et+JHA2WsJIE-OagZ8eDj+q&Oh9UcFt^%|NQ671pMts79sx>bj7NZ) -8RHS4XvQqyh!mLx9Az_R0Y@0gEZ``dG3za2OlG}B>5N%#YhroS-zAqv^)6V&ZlxPFxjeFN)Wq_r|Dae -Nm2TAJ@~FN`E|2_OsG%`t7DY5}jo`r}ROTQaJj!Uy@_{-U2l3$RVtG`9uZ!hT4_??qwW!vGJyb46UD! -jl_SHo+Mh`v{P!B`G9_nETd#HyY?4cfpw1+$l1P~p>!$_q)Y3P%V}#`DF7fR&?wwEs9RkS2K3_8oil9RPncU~Ar{q4L -xzZ5(e8uL5+~@PVP|jmE^9`}j*H4LsQH>B4J!bEXk{+}7Zis!pTDluzpRb33g;DRKQPyL2(WvV&yJ!^ -lm{lE>Jq}`ngwh_fRYq-(*(#&9$842R+hZ1d)b^N7FVZJw(~IgJv*|^7kMRXi-s2$tWMpK_&KBi8W@n -3Zjf2=1$i?bn{OQr`u6X*U6h9tWxKf}z#xb0P8y>M0!AHp?k8Ic7O6lQ|Q?27@Me8_PA?KHZTE}Gy>3H%mkf$;VPzuLWKZW_V*6iVNjN5^F6 -ORm+1NAN*hq=GJuG~+N{<^N*PaNlVD~o!nCLr|`q&BLbN(H2z!YVebpAy*x{S;QQEBdKIK)^n@34YZbY?~+=%L}xskRWJmhslLy*_$hZ`9(Mb3FeMw(R&BCp8Uii$$y -6&XSq&`%0qQHLAyiVUN4=|5W~keP)9&H~8ns!%XRKS?nYH9spEfjqA(vW&qnfg&gRopSNgma;;{4C={ -hKp?*pg_2J|#aoemx#~u%{;c#8%#%`mwLGij4k-3jjq$VRT7xjQ->_va)LR#V{ObTfjJh$pHD -X+~$U8d!=h(+e1+weu?9=eSbk$rd)>(Niv2~)p0=X!~+l5%fNXh>?jVn1Tp0GoH!%&wI7kQ#)|yJkTV4Yd-bc#Q@ -{gw6ihQh@r;W)!v2AjL&BC?eSwq}ZqiscKExpG;ayJ$*A?rqrL6F>M3Z#DKKT%cPyv6Cz7VDr!I(y;F -gW=RKJ}Z$M(NY1t>DIYyoh8Ra%0xWTIZ|>rGF7z_7kTy(|_2mj6Pe -z?Xr2pXpwj(|kKn5tws#Md0hce#G?n8T}ubUU^3U8>UyE(f^t02?n#9ks6RajMU9A&2__N5g8>f5K(x -%b|)htkR6P82K=1q{zG42y8qDcF+F)k|6fe6J){3`rq}WLYOE=cU5sQvwldNHvW<}($Oc9VAR8GefzT -nE0#(D)Yu7U(v~Ck4=o7GZGb0g@EsVrK`WVrd)H{-A{ZES{%c)keQ? -1fsN>#k3@f57Im{Jx0xjY3CEz#Ov@gK~(T=7PZb-Ch=80+#v;A9b9t_U6TZoPKy^+ugL%QZwz?B{s*Re!Tv|4d%^x! -rkfi%i$oL|vvokA=HXfmi3(#j0*PtdS|l-k%yuC$$GVH8iXXG7Kym7mR4PL?Jj7N6;hQHZR)$hM#6}j -8nELOEX^WdPgTV+_DUJI(-{uM-TwuR6(qC^=*RQPa~5h!Q{o5b5 -~xECV8z%z&sTWX^>V`uh@=t&!c%1cFQ+alMMDHr8N -fSkFdz<}F(4|)2oU8%y!MG&pLPbsfhh*WE}wuxY{eN6;VuS5@ec!d2m3UlxPx69S--)6+^q9tD@9;aO -}A2(k@37LWvv)bpwhJHC>H7(XfIH<8E3d`^XuB*Fx}hezh%02g#V7|-c0`oru%j6KQi50>i@)a@3#Eg -cNy?j`UR%@#qE1c_XheuGum`~%TZo6yE|uRa0Oy+0f>-CM+n>E0K -PneMf)!gRlBt}@-LX2NvuH`bW$^|j7)&wuZ)lCQVa7f6+X7wkXsK)hi83)8(9|6`{6_4c2b?gdMZb{T -pX=)W@E3wAlvy?=(7f_;_gUa+q*-3xXF)BVQtmrVE8>2;?2P3KCc`- -!!R>3(9ZX1X`PZx9`|18*|j^Z!>&_xyj0>7M^@Gu`ul4bwgU-(kAv|GP~0{Qou6J^z2hbkG0aGTrn4c -TD&C|5K)W{pW2#8TkqDGp73q@c%O1PXOBXma(4z|C8x0CP3U`0>mvQK-^*i#4RR3++qU6Eha$RVgkf1 -CP3U`0>mvQK-^*i#4RR3++qU6Eha#v#RRCdm;jX)6QI&!0#sT|fJ%!AP-!s%DlH~JrNsoOw3q;u789U -FJfcKA;{Rj1*Z=>`bg%#aKhr(`AD<#OvqaDO$K0f~L_r682~`p8+Qf*6c5P-vM7!28;w3TNF~&$0$Pg -n4xwao=1R>Y<HBRgo@P~uSSbjLU&2+Xw~V+ -8VPKfws((|(E($fx}bBalz~IYuC#_VbJg`3x{35%Rgp2;|d#oe{{VeS{Inr`>BJ` -F%@$Z&QgV$aFj1-%}z8GTnZY5eUA6rxGezraL+rf#5rMlH+9VG~XCo*2Kizz=)Wb8ySJ%JJ>YfRPJ;K -n+8N&raQJU0>O9mF#^GNY-dDF%w3F#iMf{%F)Owv|nd?G6Jeli -4K0KN0LOwj1>q0(k(CR`yJk9GuK0M9qLOvH55%OUJP#5xH15g+8;b~qM6LTLUV*b$m5@l+`1&EbRb*^ -P31j17abum-j%oY^IOm((1Qo%FK7L>zGbu(K~vNF}lD*)%g)TK;yvdA(aA2w2%kWUXIkPly!QD#CuJlPP0oa$W92;|erCNC56V -Uw2$`LM~$gnZcKq4H#^lT9AVPNq89Qon-KZJm%x_F-BOzKn@n?D>$o$BI -wZmUzuTyU4CelECskrBaNww1ZyE>G}WaF-`|F1X7RJh$A<1$TMQ=YqRD=X1ebp7Xhh@Rm3P`g>L>#KV -8j8ifO(zh`b2XzcR`wvage`Fqx<|I^x+?AEbl*UtSF7kCpDo>4g2L}caz-XPD(Ou&EO$s3fb$}TtM>T -bDQHBw7ay(mglFHxdMis~hb>KowMfS+VQSE`!mdMNT79@U7S;G}qOtjM)v4<10^-hpBTPe#OEJDRm4c -S2kLzg-IA&CgG?V4TiQN1cquaV;t2gW51JU0$JH?H -J!<2q2Uk-SO*7qmVV?b_b`j>;Z)!JTp8clw5a!u$ -YA<1){igO2=Gkv*f-uj1Q~SGE?AdQ>k}%JHQwIq1>^F6gFwcHdhY0iRH+7gW&wf)!2=nYWb(ApAepAN -?lk-p-nAg(4Jf4>P>7ll)?~T{=8N$5rnm$XIH(t}{2=m5k`aEIYcuij*%p0%i;O92YHh=JF^P!$0rY} -*0JVQ)hCd_lB=~==&N1DDunCD2-R|)eRX?l(@&yl9D5#~A4^gLmnBTX+5<~h>zViz0u#Gr+2;1h!uvV -l(wTF3@IF=!zh_{5-vY~T}v7P5hFKU&BJzWrz+8~FC4g>2y4j~23lZ$Dbd2EP4hAshJiqlIkX+m9Bqf -p0%r$OgXsXd$b7`_V#H`SzoQtn%$g3t8pcj~22@Zkp06Fj)mQi6*c~G%=rv+p;83&&uZ-D>ro}^TuQ5 -G-2L&%$y<28;_Z@gn8pJbB-{N&ok!<^Y}b-fiREHov+<*VjiDoE)nMOdFC=<9-n7s3G?_obA>Ruu{N2 -<IBjBlE^W&J?CeyE<@gqbhvKG&0na~qf^Gx6oOwk!?QGqSb-!8-pvAs=?uR2pT`Mt7W~gCL -Y&|I+X5lZif_*n;%xY4nvg(`;AwB?2yuS)=iBb#oxSBYe-vr+na+RT&Qoig_rASGh}%QFnIXh^@SD?w -Ksr -eOZ6C^d&3}@=M#|Ux8d3%Kr_z?LWPSbD6^Ks<;4;nKZc>iM;AvN2=Eeojfc_TMX -`IlGbxn7`sjog?NkvzZ^k?e1g$c;`B7?&cI{U`z(j-oF&CPiP`qY$y*%`*OKW7I2q^59tZ_|4zVGP%J -jd-Azu6!^U;@O$DD)0<_5tQX*EnMmH3f#_Qq80RvTd@cjgl+pz11vZMMxZu;44LbEYyQ^*fE>HU~5fI -)ilY}iBS+5_MX!?Nx-}+KA)eAUs-$=vsGwFE!EKskICx?C!cy1tE*DnM00u#d^(BDCT5Ci|Ty}Xk!@6 -@)ui!krhw!E7#@3g(VhcNH-w!D`x@AS63k1+4Fy*xpfciLXwPndVwUY;b(J8dr?Aj~^$FCQe#Q~j0?5 -$2t`mk$%>ow}Eg5ayk_myZ(Wow}F18-;;?>Rvuhm~X!+!hHLkAk4SlG-1B|P7>zZ?-XIa{bmUB?RT0m --+pHZ^X+$*FyDUX2=ncCo-p5j7YOt1cabpPewPUI?blW62BmMmS;Bn#T_Mc3-&MkV`^^#N+wU4-zWwG -2^X<1lm~X#D!hHK(C(O6s5@EjmZV=|%?g9oYf%a`(cBFcN4SFN@CsE+qRus4vwHYRn^)j(PY0Jchu-zz#{X|>VN%q^>z-{x_X4;2|5 -2v?f@;*~*Rk2ZNM=emV5r&BZ_q?Jg;oKjaWmeWp1#zNC?wF$}lLm~W14L0RHfC*EB3C6GixW{42lx^P_!79U)|QE -rU0Wtjc5Rt-sH7+RkwilKY0ISDl30#&63cN;lECjJa$-p2y~VaH&<{EBw`F3Yj*?XJG)aY0(Ut}Jk%o -Rx@*r^EuPqDoS1KuOne^Yphy|i`{lK_bIUgi8U|+dFv}JN!(g3egBNm9ZOtvqz(tp!{|EA)Sep?opPt -!`;*93mg^yNZg`f@%nm9$$RR2A6(Uu?j>RxZSml^c(?OxnW+`e9|rEwXY0)t1S6S)d^KL*1jkeTBs^=XTrsj4M7J1k%!eS5GO<3Y#dk9NCY%gKP!}bwoJI1VLo@H8 -`>8>>hfNYzc-R5LN)J0oSl`1A5jOC!!-Q2Hc7(9n!;TWxc-XNn*7u2VoG_mlQ-t}%I6;_CjA_DrVw@z -*C&nqld}7QH=G*TyVZQy&5a!$OEMdO=&JpI@?>u3?{VovZ+wUS_zWpu{=G*Ub7Yj^K0V%&NlN*deO4e -6RZ%5hsER5XQHi!bd%^Vr&kf86Rp8)ROC=|&1OC= -@`O?|&Z1Z;)+J^;BmRq^tx(#gt#A(ELo;HOD+3|qX6*clUL(~Kou%?lQY2*SHCxv)!95_M6sTG8XQ#m -oTWnu!311G51q++3q8%eOZkqdDWknECFBoJ@Q;u)AH%`1ZR;m~X%Pg!%S+K$vg8Wx{;>JtWMx-wI*A{T>nK+wU=9zWts -M=G*TnVZQyI5$4GYzQJs_GVxKpT+R=TRLZSPs?( -OqjfidJfx|X|c{8vcXMuGr&l=IbJh1NM1NlaD9@sGFl{`q4)INWsWVboB|K`KQLf@8&6Kz{2B)7IqOx -)$xCZOU+JP#-p{gf0 -J5?aeSw%8^M_VRNxmDy%j2HKvZvUSr+`EOo?~KHe!18;%{r?Wti2`-*Qk^(Z=N{Eb0(I_FoitGA0o4& -cQbqE6IkK}c_q|k6o -?Ci$2Ir;wP6P=-n;>gND6h}%9qB!z#5XF&#S?`JBNPABdN8Wp)I1=9z#gX} -*D2~+kL~-Q4CyFEaJy9Il?}_3_e@_%g{(GW065tcXkpZ75juiMrapb@!iX#a=Q5;$DiQ-6uPm?V^e@9 -Hj*YAjl`1l<$5#PQeCgRg~#6&1P#6-wE#6)O3#6$=@#6+k(Ct#6;*i#6*ZX#6&1M#6-wB#6)O0#6 -$==#6+k##6(Cq#6;*f#6*ZU#6&1J#6-w8#6)N|#6$=-#6+ky#6%;G@Kp+lhDZo~hDZo;hDZoyhDZomh -DZoahDZoOhDZoChDeAL2aym*4I&}V7(_xGEQo|SO%Mrjgdh^)+(0BmhI}F+666yJksqH(i1heGLS)A$ -5+XT1kr27@iG)avPb5TUd?Fzd;}Z#y7oVm>WK$s~B9#g;5qVUIiAbVCOhg71Vj|L~5EGF*g_wxMDa1r -%O(7;CWePD7`BI39$c0Z#M8*_iBGRQ06Ok*0n21Cv#6-NeMNGs?Tf{`Xu|-V8>srJ_ysPDy*x46ub8` -O8CptqD#qs(VQ5^4n5ykQ17f~E7f~EwBlK2tpkim~whxC0kK_Pb^Q4fjxhr0F -B-Rhkl6X-Z_JDUp??L{^#-S!qgSr74k>rbJen5?N_VWTh#Qm8L{ini5%QN@S%ek(H)I)|wJoYf5CTDU -r3NMAn)TS!+sUttpYUrbO175?O0XWUVQYwNxTIo4##Mqrdq?P2#LIiL=%u&RUZ=8!2&q2WU!UqbZS%r -bITH64_`ifSs4Y`ONYhh9NYhh9NYhh9NYj(SH`7yOM$=PdM$=PdMiVJAqlpxm(L{>OXd*>sG?5}Rnn=o8CQ=k -e6DbO#i4=v=M2f;_B1K^|k)kk~NKqI~Bsaq*Qp80QDdM7u6>-tTinwTEMO-woA}*R(5f=@DAwMHPQ5a -3ED2ygn6h;#(3Zsb?h0(-{!f0YeVKlL#Fq&9V7)`7wj3!YOMw2KCqe&En(Ikq(Xc9$XG>M`xnnY0;O` -<4_CQ%edlPC(Kk+1u8R+QbkuZ^8M7dOpz3gy -w%f|DcYb(6>ZR@iZ*CcMH@7!q79l<(FToCv_T`^qi)NjEZEuaZFd6x_KAw#XpGbwzXKFm&=^G)G)9pH -jZtJlV-#7?7)2H|Mv(=LQDi}56j{(1MHVzhkp+!aWIoDY~MUTb`JR_y{o(@ey -KTrl^iyK6zqdrl^iyMtNc);v>YwOpzYFMDoPMT#+8V6!OHxT#+8VYq|kv38;M%qY$OL8!I<1ZLBDuHdYi+8!HN^jTHsd#)<-JV?_bAv7&(5SW!T2tS -F#1RuoVhD+;KM6$RABiUMjAMFF*mqJY{&Q9x~?D4;e`6i}Ne3aCvK1=J>r0%{XQ0kw&ufZ9Y+Ky9KZp -f*tyP@5@GiUMk_qJUbfD4^CV3aGV;0&1DhjBziUMjgMFF*$qJY{=Q9x~`D4;e|6i}Nf3aHH#1=MDW0%|iw0kxT;fZ9w^Ky9Wdpf*z!P@5?VsL -iAT+Swd#_s0d=Co0ma%@t|Y=8Cjxb46OUxgxFFT#;67u1KpkS1x(lTv0%6t|*{3R}@g2D+;L16$RAhi -UMkLMFF+BqJY|5Q9x~>D4@1b6i{0z3aBj<1=JRb0%{9I0kwsqfZ9S)Ky9HYptevHP+KSps4Wx))E0^Y -Y70dHwS}U9+Cou4ZK)`rwp0{QTPg~uEfodSA{6xR_X%+Z`G1cIk+(4|!aeW!cif=Adq9XA^>@pJxM6? -ykPtWS?^XzL1OM(3A#UW~aZlXPzkAX}5cYZZln^)g@17CjM*rP&Lfr7bdqIdB|93A5apV8)6(PY0t|nT_h1jpv#Cb1)FGAHgDKKcYpvNFZE9B+U>nB9dkZ7!gS`M2v`}Sx+-ihL{ -nNG(*scNSYyPL?q1+HX@Q{h#L_}GX#!^q!}VdMA8hQBO+;r*b$L5L-2^Gm?20+RLl@1A}VGG6A=|N#E -FQC83IK_#SD=mqGEqVUi;L!z4ujh)IeF5R()kASNkdKul5 -uftaL-0x=a4?O`e++yg3h_MqGSnUD67@IT@>B1z0~gp!!!h$S({5lj+`gi$9*#FLmu2q-aI5K-a|A*9 -5%GOB%z>VHP{Kco7eQT@-T{%2JGGphd?)&Gp@e@68`tNNc+{m-iYXI1~Rs{dKlK34TVt8Oq5W@68@s% -P4OXMTsM4rEmavZ@1F)q$+%K=gBnH!(>OaAJ}o;>09H$cagcm=lu}K_@0DqE1ZGOf?YVPE1k+o|vSFJ -TXZTdSa3y_QWJb@QF!^=o6C^Q6eU3u1Odf;zUeE#DkcM2naD15fNf4A|%9AL`;aOh@cQt5m6yAm*?s{ -hQJV;8<8P4YOX1+8Dc|XNL4cws+$z5n-r>>6snsPs+$z5n-r>>6snsPs+$z5n-r>>6snsPs+$z5n-r> ->6smnn)lEuuAAoofJ5Z@QP^mglsX9=pI#8)PP^mgl={XSp91KJx^+HNSQZJ-LB=tf{L{cxLL?rb>N{* -!dCN$gbPpDLx7po%n_f^Y#u_|J}7po%nd$B5FzZa___It4^Vn1S4%znhGnEi-VG5h<40#eLz1f;|wF;FK+FCs=~2^IGe9qx2k6AL== -RKGbu>e5mIL`B2Xh@u8k0;6pt}yoY*@a1Zqy(H`nKf<4^xQtNqN>-j+Id8PHd)_UHAdmi{STUF+ACM* -m2b)zzn)wV3<7lO9FH{Gol_)1pQL^8`y6U(nJHL*x~RtLU*)s~68J8hZx)^gp8#Fu~CGST0<7mH8ewP -oTHo^6>(4%C*}K)paepjN-XM~HKf_xA~L9`fGp96LL@?fwi)`$*?|@0Y1D&iURyB*b~&`xQc*`@Mfei -1WYqj|p)O`2GnY&I8{+BgDDj`{#r>AAJ9U5a)#NUlHQG@cnB-oEv`FNr>~q54*YuRPYbG32}!1u!j(5 -_z!ytarXJJj}T{{4-h_la!NkW``J{%&%+2_L%LY#d*93{lr=g;R35abN>r?Z4O1AUkw#2M( -r8A6z48Jd=DDGB*1xWbF432!R8UYeB|l*Mf}At_2yJT?;ZcyB1_@b}h)*>{^ -hq*|m)7Kt^>S$k^;Akg?erAY-#LK*nZgfQ-$~02!N|0Wvl_17z$E2MK`#k()rq{^JxOa3JC}Wb6;82y -yoLaG4NipFiFt#M$T1XSoT^Kz}6qTJb^4x+lLvTleHws_Vc9DC;N|i8AX*eju|glh2Lh*UH;6k*KgO6 -JH^(w?35GtryFWgw}B>wkCDp9d2ey=TK9F0Y{L8_f>Q%BI1@0kjT)K9Zu*k#a2#Y=J8exft%@dY-*aBh3!xjm%9(J9 -u%)^!l%RTG{VTFe|$L(zHw)@|^iSd{)pBPUF^NI14FrOID2=j^YoG{;hF9`GP_mVK*ey<4g?f056&wlee3G?hX-( -Aa#*t6gKZo)kK&F>*hdnVe7yBNv9k$_aXqiL-4z=*x+%>dAUlVBxAUv3*=5#P$B;b -wV6>Ki(q5G56zLLc}LF+A_!2ZzlNBzGGqL#8Qd{P1^6h>?q_5Yp>Jwk?QF3 -k78)DTPV$~aB)f-~f8)DTPV$~ZG)f*Dk8xqwUlE9cJsvjh(A0(DoHVx}rF1E;szsFXA+B~8E>Mx~_u+-h5V=PWShnabx(onkX}ip^BMX92!vD&I48laZ;c&(uvuCRL<5Q@0nH)Gq2=-IC`j_j8r -|xw<9KRS(G3jd`wa%yZR4a@9j})kE^Y9F(iGe6D&(u6jtWdPuH%NTGU2p?XN6dPt#e$qUs_3e`^v)lU -l5PYQKQUZ~zusNPbj-ckhCh*ITpsdBkgxm*U0m!-<$Qe|K=X7J^HG9^i}uhtM1WP-9vsswXOp~cio8Ce-pTK(DY*Qd -reOUGMZi?oTllOfqF9V(DeF3Uut>-v0ZD+0`;muy(&r~@FA0giM -#C(sWjM(oH!$|f$Vj0Q5M>0l=?~$C5@_VFUMBEE$qAzOEm)bji^aFz2knQ*zhTNF#_%TCn(02TUAvbC -}e#(#=wjF=VkQ=uhf5(s;xE()Z$c@~Nzh}q|-Hv}?$c^2Oe`Kidpnqa$;Gmx~R5|FM8LA!h3x*m8{gR -*<_WBh=u-C5{g1vsj5bX6eL$KFx8G^n3g(2AMcMQQ^|H=^T^?Qb3uRk#4X3f=|Cx5fL^Ay2u>ijVQZp -r*L0dB?o@lOar>fApNB4VUX1lj3F1ccMwB*dDmv?ZdWA{$3sh>d7!`lLxj}xs1{^dBARY9{4?Zy -R^vzyO_KmsMnW#DFXd1jTD#4K>Nz>E#A&HaJxUj(v(@C0Wx6IlzE_DE?uq+3}o4t16lUv(Xt#!hbjl+ -7FbhOk~n36uw@-+Ux2V>BkT182J9DdU)len7*f4~2w66LykXZPz)eIE0dC%o32^guLV%m6Qv%%lYzT1 -kvL(RH#~A@`9?l7Ht6@O^yJfrW7o!`OTPa67^-4Ld#r;g&|7gp^W%Ib7N6fmmEEe?!TfvpT?v@ERkL! -NT(^~x9wD#RL>Lo!DpeF=5%dS1$MG!8!&hEWR7>*S$X9;o!UVC+iAPeX@K{!_I+)a=(^KjQQg0St`eU ->0>d-g06)CY8oAh%6jJ#mR3+;5#d!|lL6wX>1hgc?96yAaNS!+qBX!j@p)V}fuudG_Q5!mxch@suEJR -QJ(%cn84=YQ1+cdG^#H!eFwA(*(g}6WlYLES?`G2qv4jMG#Cju|g2;Brom1Oc;)W`}xmcvdKLJIg_nU -(+~PbL1HkDg2Mw71mWo3*`04f2_P~wj)JQvPZ0!*9okQj1$2NQ80-*P1xLZ*A>uZUg2Ti62!g>5bC+S -T!$c16D0qZh2zwowA_(?6a*iOl*pcNfgrnf_2u+GO3J#CFCJ5K~XRi|zajIM2b&ntn{jq}tVd#$$rEs -d-n7utm7{>nCO@c7?$L;R#xoZ~ -`4pKOzWDc=9+waKcm51Yz1dMaIENb2zh?AeeiG)+HPshcjeSsLR6{;xY8);b~ePAutaw%n$@?pCKYZV -jf-~|AfXoJWEapjd^(XVHfhwx05s_dFR_X+7aN!lI#s9nR7$jLVtB -S#l=41UtM+Qvoh%Zd{qB2^H_b4(Iq`FxVVT`FIm{c#RB(Tbo_Ab`yfZu8}|B_U3S&AiNE`apfF&7_M< -{TseP(FqmwS1_ZCf4zHgl2qwEu+Yh`HJ6t?N5KOkTKoC@#^F%7khw9BT_|~mSf?%p!uL#24;>sfb84P -llHW0YqIlRj~fG$8BV70#F7G4=_IN`kBbsSeihtFx3g}b2}H;$g@Vu%_JpOcs4dg#X0!!-Tl8t8bEh>v@q!xuDGxbC?+M~fludv44 -fqgdA#8ce*T%Dus3z9kxU-7dr`mf0Yk=Aken)VII>o|N(hfgGS9POr2#7) -!HYjpC!RnygLbkN0J)6s4^RU^6M#?|wTAtbYh?1EdTqkZ8$?lyn^W%HSc_3WdwFfO!?_R+=&H(KRim4 -J9K5lfxm9~=Opy$bHOj`$#t%dMjcnz3-Zb+n&O8Mxj$+E35I{npWb@_Afv9Zk~S9XDJ@leFi+71z;$i -v)oP2g&1c7j<-q=!46sqa)l5xbD?kWEI>;9UZ2r7#C7UhiKx&jnvT*n%nV(ve8kRiIEU;bc_s!jF1~w -?{cSMvEwwmASvYN7@hx-6>@Zx780a|T)j@qD)K^(rueU5u_>CQkr;Axf{cmGkfSNuP$MJn{MksES -!ic~-(ha8>azrvgIb31AI!57O$r)jdqC(B0XY0}3x%SLBO4ncCs)mwCoM0&~5IXa{v!Q?7$b&+Cn^(L -_cNhXIAv~(iP<6ljGgD333KoJ4Rhb!pRXIS&?#bbb%%TB%K^xpzRpaPL -3|pG=;>Iql=^nAob+N+%fV#WS?BUO}0e-$A -dvvfuhRV?`Vh$o`8*^9b7>6L*=r#=%!f31aY3vb58{MXL5uvov9Wo1oX`?$tDumNUcSxyjye;Sr+TS6 -jwsGYl2`C7wZOq-|$H8c#YdEycJ)lJn2`ons=H#pCSxYc>I(gP~j!@-OCF!_mT$M%L_F3>L_6#!|Mrxa7Sz>H3Xrz^_~1ML=$$NCkSWAN5o`A- -qv>=BnWrJcD*F107NAB?qJe_?56{oJvmR9v)TGSqOz9_=-Pof!ko?4CoT}gFEh1eh`Fs#UMC3GFDF+B -!gam_#|gsncP#=Fq#zNR_^%+e -`h^?(pk?$e4wmwC+LTqh)>OMiR%LyWecg=E|xQlC+t1rkI5RqFyd5s|C)w*`?5n&d8MpJ&`ndQL=!eE -wD_XzS;u*-zOi_Q?`5R%)t_UZ~@0}mt1ASkynziTgH*t)!aL6EcB+D;-kf@kaJX&piEY-4`UGGVcYJs -=GJG{5&OVX24lZ^EH2(7cFCn(G&6lo3E%zeof^0Bw!uU-MmuSL83~hahER7i2`Vuz-?leD7eqlVL-B=_nu=F5Cwl=w&AkSIuPQ8JOYbUva0gPgvn!#O43Pw7o_YZT&H=N{F -JZKOwsyinjigxQi&-+Tq|k@A)==*k<#YaL)zay&ycdv2cKTh-55lM`%h#m~La?5Mv<2OWIH%PPegem= -;3>>egS;)&_yP_1FB1jt%3TJk(&r!Zb}U2-IyXoFqCRQa9d3j76YsV_}9zvcaFxf}ML?{UfxLAXK+@j -Jl0b-FP=GcL>#u_wFGGRy$6s3_^9|y)^n>sO|=B9&^uVmuOPRy=c)T{yXoeesr2JPr^J(dpbnxINVhr -S~s4god}|J<5#qhBU-mMMYANLb>o9{szb1De2~Tw!MgE5T6U4lWq6Rb8eSNW^!@^2ys`Kz*z6!3rV!y -9AEH&)i|{Snq6G*MzVRX2pCiCGKFl41qa7iKL4a?3lum94@Qn}iU%_BUxns^?<6}fP1o*~NT>-X0fNy -++=!O8_m~O=t2=I-M(T)cJzVR{Qs2AW{;0=H2&5abZFA(9|SXd@^Mx#qHciw)ByK!S)IlU}e3 -G_ah{SCyiV=a$PSH6Bp}38O7j*1HEN<--aR;%uwNrHPKrC)!;T3fa!MKgZJ+!SrG;Zw_4HlwtXI+<1=G2Snl4&d?f -$DBO6Cb{>ert)6&Jkmp@jN%lh&ZewwtW^IJw*3QxTj4<5VdD^BS3^%?(!-z24_$JNF2*Zu<&;)=m-1t -7tQ3%6rEIuHnAr3cwKukj%ZoKUH(b@HG^T&TSp9wBJBqav{zA;Pf2=HwzzMx|wB77UOv$Xv{h;RIub_ -)pcjUUlcj1b@WG3^<>5Z^2l79qazb5ipV;v2sp9S0%4jq9grIz^1H#fT{g@_nXzE(L;opZCz@jTqnOy -|lAJjBn%m1#%Ar`9AL@t0Bnud6K*4toHd3`8|SspAVfO$l2`k0Wu7Ne4mfetc4)o=i}rZi1BS)zf02v -f_$H6h#&~^tu4?mBFOi7hM3xTCSw*O$hWpga}0ufpU>0D0YSduBRX#&$oKgI&BqAxZ7i_@??w5RCg}) -Y;S7^VVrKXGM-AQ@AW-quIu-OZ4JbdZK88Wqa|1=4__nJgW%5Mv|W#aYrBu>Ql8tdNHN1OhtTh?^y -wVRILe*K%&{^Unr|LCj#{ngi-dx{-jkT3g?-i{x9`N#j<`e)SrXWac~(*0-J{io^v({}%vb^n=n|5;E -oxLMS$h#D4A%OYx8L~VF|{wI_Qlk`nA(?6`x0tj!iJ^xCDg -uz+LuuK5^7&U?MtYADYY-9_NCOml$l5EOR0S+wJ)XirPRKZ+GnVJhT3PSeTLd+*fpqqhT3PSeTLd+sC -|~&XQ_Rb+GnYKmfC08cd31r+GnYKmfDw5`!Z@@M(xX}eHpbcqxNMyxlsEuYF|d}%c*^vr?J2I!B=1Xk -FUP|{V#v|zrH(p{r?=x{_?9I{_uzY=P&*nP)h>@6aWAK2ms(pnpQ(HG#B&%003+R0018V003}la4%nW -Wo~3|axZOjXK-O-YcF44X>MtBUtcb8d7V>HZ__Xke)q39WiLq;ybfs+s?-Mr6(9suTlatvN}S}=YC9pukfq6@0|_DS(GjD;65@*#<|$kzBFo0pEaUU&LeAx7#JRfWa*5_%J8R??eH?wdez$)8=3}DVe#xETy|0vp0m>D?h1KVh=6r -ET{toW3YD5IzjKE9b0x3iy0pLR45o@5D9*@(xv-!fdvCP;N^}0FI()`0ruB7I#>B$ZZbFRPf-mN6;R; -g*?>fV#vNmghkmXqD3AEb+#UM8GvV$Eii1b -`59%YzQ{ofBkzZ(i{Fe@gxiGnj>M+l#uQIT^Qksw;=QrZiTjf;_54UKJY5eMpSDN1!_8CE#{7u-j1Am -ZKF*wg;Y(IahI62ik?o-_7ooHgoXP_FbXn-zl+bORL-DrR4_k?&Y8@wZH&RgZ^RyF6HE_V$|(O6aSjR -AP@=;#*Q$$i_gKLmT5MyC)z08mQ<1QY-O00;o!N}5(XJDt<50RR9w1ONab0001RX>c!Jc4cm4Z*nhfb -7yd2V{0#Ecw=R7bZKvHb1rasjZ@1`!!QuM=POp_l1il?fW!q6q+Tczg==NvHL-B)%8!=*J!?A;Q$QjI -$MMY0j(0b$V$Q*fKCt$q`E2pvrP1}YTi#Sa&tkE-V-BHBY+)=o(<9(Wb6}Zt$l=sUg%FaQ)bHymg+Fe -0&CPHMJv(Ri91g~JXu)?(g9~ptixDaI!rB^OBj9WToS63D4YbU+9WbQ;tu=O)4^r$D1yVbYjIYPrR8^ -I;+yx=fJ_M!ei%i4S55$_-+u*n2o_Y2k@`JHG^G!5WzcLlD$^L#1B~u%HWJ+@A-FvE(NCKtXXCEW~ue -dV?G}6_1R=I+EJXoX(A*V{dP!ndIu}D>xD}dXAHF;@1y=6r$X3Cs@;(#nh1U1BdV>~2WDw-7F#2UtB* -AXxehrF0Bqt%%fymp=OP-|M8x5#>uStfxzX+^W+hNFP}UTW$0``V!rtAU4nMcK&6;5$AMUym@|f82g2 -q$onuyUapp!_`T?KH$sn)OJ|TZKIbz!*TA|E -ogui`PUrc!Jc4cm4Z*nhfb7yd2V{0#Ecyumsd8J -r;Z`(Ey|KFeD=3;}CI-2YRX>G*ChCYT4TaaSO)}bgA+NN!7vgC?X8mH?%`|e0eA}!f*J0TC7y7&F=j^ -rblX0te5jG&P7{xN%&O8St=l2t+QN0%2s?Pi*>>~W@W}Cm+`9lE;ge2DDz?}JDtwup92`vo -8Xq`0_8<+BsXg=ki)|-JxH>2;j4F1A*Z-}k)^!D6TzDt_*t#Ve4}4l -Y^9|E{kcaO0j?_|emCW72|r4i$CE3hp>wbji#4169Ux^#vCQ}!qA2AbqsW^kqDOh;Jtfw!J-`5`nS@xxsgN -w4a!-?CxGXAqauy2?WP%EUr>$HSLc)YBkX?U|R8rf6$wqSVkX$0Ie5Db)!RUz3V;UjpFsdQ#o{dtTj5`3Da=n6?oS(=&eK^asnE{a5 -wNfAX@d+)l2h6=}G>AttiAWmb6X%sw}_ev!_Tf;cCV2O%eBSXxR_?`o^GNzMkyrO5cW;t6C{7bPe6fc -U^gy)dWE7vgoQ?7t;eewD&@O3s_f)|D(^#j*e&*5j5LLd6WCn4rKP747EXX{deA2=F*Wg7x@$`?$=x4 -hjp%hO%AhAc8GihxvG>9c}!GJSHXP@>rBLIDHVa8&^^7W!b3GL9%@mgy0W8SzL1wMc)qs@S|R=dWp-i? -QRu1WXmg!IKRh}bwkoo^r1MsVtyMKDNsp_@8#550g4!DzHY}f@>qx8(r7{dkx#Kc -rZu$O(^BUV+1s6t;C6rgC9N3sJ6QJ(dB__t7!q0A>_|*UGcLN0Iib*$OwpYD|6BVg%JHS6wT`5Dn=dK -semmJ$E>H_|uz-A;jdJdpeB5w4hEtnI!JS~nh6%^3{!oWI4CMD-B!J1V%db0VW*d#w?EOo5%+^2)J?U8m4bSPd -K1^HYdt*GJE|&d!S*C=j-G28zXT3znAckaB@Jt!IS(cyxMZ6oV>4w<#X`GD)F#-1YnZ7`({aD%SGyEs -S2kL5b#%n20Z3y8Z_%{YCRjp9x+P*)^G5oqOJ_nTjEZ!q!kRN>IO9VV>a@x;; -c)YU@Uzq8X8C2v}l)CvsacM#r%`Z;-Jo;_w6u4m8So;Fx -0n&(cKgNTxYwvP}KSpa*BCSk5^N&yFXtR3I`i5xWM3DZ55nc3QGkzU8*HWg=V>@FeX+8z5E1ruYu6u9 -n&|HJ}n^6&MP5`Sz-{uE3K{@cc$C=sL5Uuot9Ur>TtLsMR5*sbAlvz9SZe0UI4B4X2#OT|~i#W~8iollK|R?IZ+0q -juh-!3##dNhk~SJ|v|sAn+H%&PYL;M5WeE$wl3S9Z5p8XlGxmxrXKp(7@P+^Y9{>OVaA|NaUv_0~WN&gWZF6U -EVPk7AW?^h>Vqs%zE^vA6J!^9t$&KIjD|)%Lx1>#RDamWgs->?aQQB2SwiP{Yv*q)RhU8G1h@4?&hL) -66{`&#w_hb05>|`qmt88(m(P#jTMg!gGW~0$Kjwh2rJiKGGd6BTQ$LcoESUR0el4+7vah1YjK4#PMW( -H7=Mq^`KBsdhb5g)Nl`*8QJRhO58aQf* -JIlo>6ih;-UfqDnpIKtI7>>X(1eFJo8;L|Yl8|$$(W7OVHKrSQoz4y*&MZaJ^U0&H7_zY>gZyqm`uvV -#|_`<-8@T&`6xm1s)F7;6mfQgFX->u4f95kCzoIL6Kn3Y*^i>)x9sX>^2lyM(w$C+UY#eyIl&(lMP2| -2=kp8&O^=$AC@rHxf+kqjOnhpZ>IHr#N!Cm{adA_&Q0QA$VVsRvTBcc9#n~_saL_$%6iUkjRplM1P*m -l8THQ7q)A%8s&ZkUK2DHwqTb4WwlVp^P8XA%6l{HzqEanN9?QLAfRaG=W#%&PjQx_|CxB>=V7@O|exF&04(91(loYB?S@E8uaS}yDNF>KemfTO$v -Wjj|*$AvE9yL=|oz8$`E@kC|N5C$dgMntXPdHGpvx=P%JgLa4xP4q#7bow2jxH|G;m^U<$!Y)S9Mq4? -8_S22xGa^(n)%?*$*?jyi24vjpH@-SER)F?RHrv+Gz<_LfiNoUH~2w#Nh7psQP)JpEnBUHl{)ckmSiJ -#*oGAyn7-be3`fHofu&%(|QYLyVq`9TYFwA1DKb$0UcmRS)JROW;R;GVV_SlDyFwO~4hpRb^Y& -|sQ<8e|P&nJ^Mdq1zj5XVCD`pQ4LDo -SXqsUHpFd{vB|8b$H3paKel8qy2uge}2CITl5QjCH}Wn!Q1^a{d#9(Qz5xLmt;T7Yu>U~~ryg%MhH;kV70mPK(s13J&L>s6i9?8SLnfvsK{DbOgz -{R0CjOs{+U(i0yL*~Ld5h>F(TL#4<4oY=&0Of<*p)SFUTqL?nhkSw=c>f1W(J(Libg>)o+Kc~7LLiIFPc@9Gw=EM=N{Jy#c18a<4=m|DRco&V> -XpXi(NEp5eDP1H9+oRcL@0yD>DX!TVyrG<<=~$AV3lPv23Eg}L9t2q9_(3REgnH7$d4$v4GWyX%(iwx -JB7yw*8q@=tQNR)ZCTzKwjFmZBq>@5i#&J4HMter5!PnVbYNNpD_=I3ZjX{YJ?`r8DFw9R^nRnHn!@TcA@-fpv3ZT7NdI)of88Hgs#zJoT)dtHMT(14?d*(4pN6&V>&ud -*UVnIt#y@KHn`9RrV48gs7mfT%H=T?e2jxi#~dMDd8hsl2ffy?Y-WzdwJwe;Hj}9Q6ST8japw{Cu{5_ -y;j9T)^AE5yI}n;fp=i+-ftY9?VC=^0(R&^2a@rRO8JrjZpDRD1L#(C&A)ZqV~Z+7Q;-Ui+A@ZI05A0 -^4C!QBViAh@5|Q54gK-}Uhd+{k@4~{$gnQ&Yc}=EBh8$Cc`VWYQNQeWIr_%Hc()}{-Wo5rCCb!zxg$~ -j#d!HbqTDJ&y!U0t47S7NvS$V_!sV|-ql4XWIrh!gOCsQ97~=IJB?4bUL+*P@WECHHN@NuudbP=k(Ex -p~z5{UNVF15J7ax1|dGX)Dc<>lRnRzP)fuRk~WfD*IoB|e!o0I+GW{&F{r7$mhv$%+-Yz)>nnxuDzIX -#9~oA^r3MOC_Lkeg6KWOw -0BKY4&W7&@Vtx%lcZx2itaJuqj^jddxf(oOb6GB5l*E7ZC!U*6KrV=?#>>&2GM{PJ=^MTzwlLn7l;tDV+sIkqS5fa!CnmX%Uela1S$ws;42zxirbdkTXC_5#KK-1Aq+FhWE6L3NYj -V4)e}1A7Ovvf(E;~Jl@=8NhaP&5?g-fR5EnXBp!lSQ~=$#`MoaY^Az;7P?OP~j?GB_*`^VOm?c|KGM? -md#aQzKsLVjQNSS~sc69ds@E1E0+y;20j5XiISzfMCV+U%;b-j*S;A73J%fnWONkMH(JuT-m44=@~^Z -JU18qqYKMR&=g*KJyoFui6Iny6V`@csf-N?1HZ&j+*{XLCRUH2`6Y0k+a^Zx~M|IAFwhjc)V&PB-`~I -;zI#gppU?=JUx2-B4LoYlyTgR8%4~=|M~@e?SHP(18LEY#b*wSn?f#$GN)kqW7ObhTm*PriO1`g0V?*1G -6&(Z#o0#QKnn9tE%CyEKOxc9f|@KzyGu}YfpXorvSl9na>aqSpM&D3c+O{%K-IM(=-Fxxc5IG89V_#BF$_#iC?$|!1Ob+oP(PVLPy%KICq;-Eo;k97hE!HCQ*~US0 -w69{-+Z3twTYpr(IzK|o8XK=w_Yn~YnQiS59_)Xe)wTK+z5nrUsA4e^x$F~ -PK=%9TpvBeXn}-c2ybtcC^w6%?AY<*_KayZv|gb6Cv9@*UOiQWJM1bu -AoahkQt%F=J_yla=@C`pT$!I*=w&!z*v~ivWSbqU|03_a7Z|xNjsAMBsB94$qzRYTuT2A?wTkOJ0xE` -SwJml_)5-n{zXqA*&+N1R?Vcq0^x0eem -8UnM!nS3Bf{J#g+fcsbWuFKm5S9U1Y)#*CA8I9#Kx;`hBy23pEk5H{t4`O&N1rNF$K;vz&s -NK!t_a*=^desk}8^y=TyZD=2B!3=-64TQ9{V>LH790~VKan();vwfzGLXuoyqcvGAG!i5$N48n=8?x< ->Z*-t%VaSa}Jf*W6^j5WBFaktai@nosNj20Xi<;`I3g8c5l7`_rf8Bbw2?Kx>^{m!W)y&V9RUjyoE8w -K$cQgeII^QQouJEYZf0M;I~;wb=Uk4N$3s~p5tQ9d4*iEm|fUx+Cay&_s>w_FMzSV-(*LOdU|;UhDe;Limb(rONLKC%XDKyWshm+7aZVPR{z -c11}`j;f_Xl7J!EsQ8W|Yo1AlK3_yGtARQ$%LH>~O{Z5CiiDVO-i(3H8WV{$`y8$XE`{a9J|_^$S6gS -w(k`Ou0%K~|OgdPD1bkC)u(Vqw-r&51&OAE&9h2CgFZG6XZ30Hg#PaJu>;)@+41^Ja=gnTQMz}()U-v -C;zM<7kK0sThD -wVpQ!=HycnBGY*`jE383A?Ae?L39jFNcJ(Hyc8iz0|S+p^3G{pmHi@_#^9jvpue}=&~38J9J|Lj3}2q7V(Cu^V#livCMOBikLd!>*GS1O0{0H8aGsD2Vj!Udoinl7vN -QLDSIH&N8&TfsZ-qP|Mxc1iMqQ>Mt@7YU61NL96JJ{;-4=#o{>c|NisCRS@LDbsX(zVo6sQM-@RW%3f -|5*3o__(zKvTg_&ii$%+(H4H}k)y?YzW=MI+Sb_hHlythHkSjwE5-4o(hQHA-<7Qf`;Ot{>7jLwqHrO -YenFiGwoDOl87vS%caaDvr*5$j0{hOjV(=jFUD;|jQ?sD$rnQzUc(4`7ODd6{r3xf!h80K@u4_~

1GV~AUB<6IOOmBDB<2Hy_ik9JkBn5N%Qy;=~7_0Lweb~OfN^E*0UO9C>1 -Qjr -YB$o*iT#Y2N_Cp2_Dz?_sMm8zc+23w>yw)^?Dr@3u-5;@L|Cx;!J-HK@RHz;gl!+}lwMSaJrmzzs7=F -l2)L9GD)v0pWkEGqUlXtfC@%0cTIL*_mLPw!6)9vXPMU7b-Mw;b*~kVBS!@I4ElO5gn#)cq0{QT~e;q -b7^pn17tV^6?P+95iRS&03RJkm!1Fcg6t;hI?-;*4%Q`Wu35Qf25eW=y1lf(bXmQqz-+u9EifE(m%zL -??gSl_WU1J{^z3Bh88)_7+Lj3T3O9mNcPe%i%m_l(7~?});M+4b+`b2FF@C0s)E@j{X3T4zbuehTTGw -<0*LcptsyXb8f40iO^Nr%@Dy_}86l -9lA)Q9Rg=X7rrk=Otc*)EQwARR)?d$%^E#S#VS@+1=E4wjrZ~R)0V?bQgZKF%@pkibpZ_%-iFwlj>F` ->yazQ1BfzpRhcX}P1AQPoOYU{Wf}tWeS{7XFaEZQfiCesTDgEHCnxTC>5;>R84jHndO+E6)K@G?K`XR -NLztN02q3;clhN^&@NkBJRykT*TC`Vk8J@)s)&|GMMmIXoCzD^?+8E7&Mi;#U`H_*^xm6|_!w87L&&< -?x?B>1OnmOGC}WZ-lXCUkK0jm~Z;M(VSTh3?$#~65Ym&-f~ql&8mULkDSBW&(`rCvp{4p?B=_sJ$cU1 -&vwmv{+yYg?V62vbcX$W*R*HU8T#3-*)3|F@#NjeWlSw~U+f9OwFo14vVuCx?N=pVJ6Ap6YlAhm1TPh!UBG!P--j5Emc*`Wb3jFFyHc=A-` -y;M!f+4sRk<6qU_)fUawsjuGeIQP}rvA828AynQ=;r2+B5wzjF$oopuSfswp$4o -sMVnU9VqN?3>aT@hfa-e6A0*lW%*Z#*g-zelAe^xgKic!JI&6%(7vJ1Jd>xL94C74k#E_&Y7gO$079z -M$m?=Sg=E_uv?|C5t41{J}ViAG__W_D7o=F+OI{PyyX<>!y_^Jh`aOnq~)PND-;_QHT<_T!&+nv(>MhXF -#z1@!yJum8VN+?>4=vblk6A<}}Hfp!=7bkag#Um*2R;+~{V3X5UD6s|co0}UGK)skm1yl&})qpf!8g5 ->CcJJj;Zx0C~ewDvA{*X?xLXHsSQ`Lr&BX15f6Ak^JNNMAT__0 -#R8*Q!W{9Thg0K7~>j>X=Khs(A3n5Y08b;uP9WRLVoe81TNnIZA_X}Sp=*je@*{Y9LC@icb!|da&^j;4@XPbn*Qozacdya$FgOm*afe_zwu>fqAxJntCm-(!Gt+m*k6ix45DXLq49C&H(t^*$K(>!f!UOU@LKhh8_w0=H&i3)jc -lq(kFf%(^K636%r43y#&D=d0>>n8i-ZibL=B|RbzCVVk=#iuj*+^v%2#-5i_N56P{&4sZg2oed-K)z} -6}&&3JF0n(0y`H -_C$UFT)NA=+L?pR$@sQ{qiN-7YVJw3L&lZ4QgpU=avFaa27le5(wjj+%A{(6p(c*tlO9KQH000080N_ -fRR-@Nl3yJ~&0PqR`03iSX0B~t=FJE?LZe(wAFK}#ObY^dIZDeV3b1!XSV{daVaCyB}QE!_t5Ps)ZoK -PPUsWb0U7p+UwX;Q0I>K-Od6S#1IHDe>6>6(}Q_SuG{OWIPpPT_@MzVm(GcX!04(G8?&+1buunu2IrZ -7gu5wB=T4MNu@YY4@}AaK>A)1zt;TOKqC9Fm(QL6-7}lIT2j({L9Vk;O%@7fxF^34)^U_D1^b>Y9o-q -Er6{N8ovSP7LB8!DxeKnY#3Zb{Hvq`wgYjKCkUU+gLBwlgFEA(s0O1o^W?YInYZUU!kqbtLk#vOw -^P|8&YbLeOOpmN|ZkHwb6#;E}V4yzlJ5QZ^u$*=g7+yF){c`Gm*;xr;cC`&ZKD -5R=Z8zbmz|!k8X~8W|-Ig;#S;_1mScj@4~G)kv@Pb_~ -Y>n)<2U;-{%zZ{bf0e473)=7nA|owA~t+D!xcpFR#>(H{og!e@6JI_|gPAa^Kdl%`xtcbI(--}^&JID -f^b(U0g4P)h>@6aWAK2ms(pnpRm0SC#h$000;r001BW003}la4%nWWo~3|axZXfVRUA1a&2U3a&s?rZ -fSTfaCyyH>rdP`5dXe^g%yyRm6oLUb+1K7fwo8oR6wPZIFy);v+EH1*jGgB`XqMYbU8yCH -nejY+^RSaDnUg3==Vq>06cL^mQW-*pkcJvAg&qvbXHr*J`biH`WSmHm@@YYpW~yR6w9mfSXO60%W|r~ -Wir@>}4&0l77QB9(QIkrQA91A*J{-cbDJ~Qg_36 -hA#-krL|pG-ZQ0m!o`#TADbAdIMW0}M3}heN{XBbL++{K^fqJKiD8d4hgfI=E_xtTxsZT^={!T?Y|iu -u){$bWdE(v*nlmC(yDZ+X5)Ut^sgwfoK$i#Pl-|KLxF6UXkI|yABHvZ;0s}O{F<6L2P*U#4BgYBiHTb -dzXGvLe=3pMjWazXbE@Akc7LXhvS$?Rf`9PT -}X)N=-}!g`h0$RyozC^Vm3DKp$r5iyaLF0-|GnTM!+(xS)fQkrL>$-pcF6sVPkYxrlnzz1r-Te=X+hV -T0)(F2zoMzKzAk*{1c%K5wJ(489s^}t_zFihW-DraGR%~UqWu5Y*;k$!RptdnQ-0shY8Hv1lmmkQLFu -YbaD|RA$Y*pca&HO&Y1`g#dHDnj3E)twCqx71}zEdmsJ_b&o7%b+Z0j_YmkL=t->F}tfE{?v(mRa1WR -;P;=nazw{7j^@2*dz;4d>mP&M8K3qOL1tT#$g-YZd>dW&9oE`bXU`_|a)t%fQV{>W+`Ax|5g2*{=P$T -hNSj}ey3@WfY924x6zbIKPPH-4kjl8IK4+Ih=Hwx!wY>$l_IZdNXM{p0*wk=4a;XyaSJgwTk)S#(%qL -hz5|E|V?g+H|&6)(u>nCbZ+~S!o?{-y(Z>e)jR?)7HvtOWbw~t+VRq)Yz>AW!rVO@eLG^U#iYBGYKD) -l?dCUc9u}VYPX%@*%J6l?0J=Ko7cy6`A%VzvN5udsc*I;ZI5LC9y+HV9DY9DUbffLww&x})KALwZ3JW -?&zsbMolI!*qPK5*8|GD_y_fL@du+3@d6sFjIUYIswwTMSgRAXfu95arCV4b$>&UaA$>hc@23TGUi^d -%=)gj`=m8c+fXK*c2z@I`WtJe4Y;Qh4{CawPc6EupsEg396zFbeQn0QE7Z+N&Pw1>*^Ps|fM -^=f0j>zt6YgSy5A+>|564Z)fN5YHYRPKyz(_ofteL@)mZHQ08U7sgpZ$9i>s4l*qU7egBqffU{saoP* -zn!a%d9DsGzrCV;^gL&%H+42DUpgBwFuHrd;O4__Ck)6rPI9GQcA$eo!*U4DJrihm+|0wx=n7$s<100 -1alE!WT450ii>S7mMm&vbVOH&+b7azM=N(RD-B>DHV_?2wa%y$V`2vZ!$0sGd99SQ2zAeO=7nH`mKYB-d}3P9IQBzh=RY5!URLE$NOubxvo^>F$tKgsVj0NP9F;ab>So|RI!0&i?DO2-+$7`^a+N&jnRkRxwTS>S$G}!Md! -(idm1nOv4v$Co}q?)dU$KL+RMTYI8Df`juedl|Z-)e34D+r{ISR)DtFK{QL`64O~l7yu6jsbWk_}PZc -7)|WFCOfM^+hkh2G2q?2$S4;JJpgF}SRje8Nr`gTiCwDj?hvYJOL56{ly+&p^$42*u0y -ro+XqJ3xmaW)?vE_c{gRBdgHxm+Sm^H3{57(Q-+Kheh;XSxhoZVSt5i+F)(w&d~dg$-&al=-tdJfv7_ -}MifEQa5gztAI3sGj(cotAA5cpJ1QY-O00;o!N}5)PdHT_C0001>0000Z0001RX>c!Jc4cm4Z*nhiY+ --a}Z*py9X>xNfc4cyNX>V>WaCuFQK?=e!5JmSn#fL7U5K3v+J_uhx!;hGC$W -#Jl)7hFDQY_F%OmPRc-T!%%)8`3Sx%3&v~G2M{`Z>}w?AgNf@;)r%bg!x}*_^BWJ!5{keQuw&~nT=0V -z!)%`-4{?x0|XQR000O8;7XcSJhnv;+y?*vx*GrhBLDyZaA|NaUv_0~WN&gWaBN|8W^ZzBWNC79FL!B -fWN&wKE^v9hS$lKiv=;wApF%eagTn-Go9;4fpuM-GUA9B|py{$OO~+AfIWcu4Bgt*U)f^dXh0!d=ll8ny6ZgV&a^KT8LB?Qc{@*Aq -_{&t^C`(Q$=omA%nbT30oB}ewolZwtax$(Ek?c89T5Z8!p+6 -e<1te6V#1R&B=ER7rFizC2`v}h{Wi|4jvP$Il-aRfXJur4P=CoDpsL3)kMCS -m^2FWJao@ag;B>Gjq1<=eCF>8Jhvah9EchLSuNjm|dauSq^{5(lT?k)}B_ugM?eLU0CV;lIUXgDg5$uzY) -0zAIdJA)FG=ExM{q6v3>$r4XSiE&e#7!+9?FomH~HXASeM%bsOw)K*i>3Tw<;T!~9zu!#%hk+s8-EIL -qCQ<1cw$4GL0WRs*>+Qupj{UQ=>U;yd0>{C(;7?I(;f~hhILdmFRL0P2^KXW+4m#f-?N|1kJdsx*K)Q -C#x3-=S#6O?TVP`RCUzkemg5bU=lyS!3o%W}(Fas}DBJU_p@C@XT;;#$!sp-|&wxMe6T@!A%taQ;z62 -9+*caeLO>3f0<-{WC+SSu0FcGqzSBvC`HG)%u{~&S=-^W0=;&mUz=5hZ2a$Qv&b-;2|H30E-s$HsSDo -in+$e7+n3nQ3NksJr4#;{n-uF)hV+zrst->VcpnPUkP=Kpv_rXnT&r_^-Dtc@3(%GAcrD8*4SgbZ+`8&4a0K~aETZd-XG#GTnP(c|&?In6$Wi0WnpeUy6(mB0)YSvM8y*jA>4};U%EW& -)uxK=xFt_#L>EzVWdTzfhxSXZcJK4Y} -JqfT&R7g-9`;VSd|{&ML@v#BQzhWyig@k8kl`IMzk7PaO69ti*aUd5P&g}f+Ge92uSd9LHUKpP&HG5< -gh&El!$A8|`u5n9=u&%wzAYgs6rfZO^^_Ud;SvJ$XGdv%^W3(4=(tW{5BZBj2DoAWet -jUP$7T~ysGbT6<}lL;K=MODL}KBQ_UBaI@a6`SEWfk%lc_9acA>-~tMr&F2Sy=RcsehxnF^7hOTtT#Hq7DJ#5FTlQbuhkB(@*Gxq3o#fD --iC)C8X!G3bYyUZ&uGHDYO6_`VHRZKK)-s~s^O3r<#YEJ77~-)j1q;;vu8t_r8zCPXi~_Yq-@@+Z(G+ -~pPd5A-2G(m~6%AHmZJ;fzHv3oskwNjAZ2Q%Kc_g%6M;m=LH4(g!#&X$?ihaGog34dHXwq;uw82z@rr -Qih;sk+IvFWba(T3V@8o-vgUKPVF225_@OlV;5vv; -XibC$Afd8}|D=2Jc;H+$J*T31TyVwHUSz`+Kcd)( -*%+1i3%Nq)-jnvV2Wb3b0adU@dU*D{Yf+_x9ev2iw~mJr)6d6iI~b5iHIGoZJ$a*Csy;H8Z2rH^@0?` -Mr0LRtvr>7}Os;j6`!bJWXO>?KROk=jID?0?~kTTx7po7-8j@eUxn!G3@GL>!8Re8IJDZIfN6TYoD-4 -`NR`4^1=o=BCXf2O^t_m7(f-%M8K!k_ThBGormBsXXqk0*hBl!zYDPLg9n_xIo27MT1{ePRL>7Kk+@u -&t*MgLl~a%<;X^RDIW(nHe64eP3q^F-#8SFz7Xg6KEKm3h2(7}E^=b%Vu1z^A4Qz^>x3Bj0?Y8PUWSJ -&shRgtaleWq})XJ#b=&s=^#xBIEx(rb*zYg=p^jRgpu|snc?JW-`KrRR%m;tuJTicCXQ-u+BSNjW4O9 -KQH000080N_fRRvj8|6QBeD0JjSO03ZMW0B~t=FJE?LZe(wAFK~HhZDnqBb1z?CX>MtBUtcb8dEHe_Z -{tP`z57?N*@NvuQPQC3!9WhX+oUm&CW|C33KWGsmS}rwX{4QxINC#hd*94R@<+2<6exPA0Rxgae0(Gy -IVUG41H$h^vnp9x6JGvke}e-PNkf86qpWzLwOp+W{H;_gsztUDE2gcM*0Lh0;AGd8N+ZJ5M&A`H)-wA -G25VYYI+{g6&aj6NML`>>azoXUOtrLIp*i3gm#s+{@8n9L8Ox;)#Dr=;7%)p~s(pNJ4L9iBJKI`dFdNAEvh*HDGxv -Z|@$bWcZ_Fm9c3F$e;>m#G+u|O%ck9VUhtDvG*gz4Y}dts@ol4ONO2bDcq4NXq(6MENJHq-mTU^aVZZ6M^?j -4o+-k$&@SdOpPGyvm{^q5*QU+GW;h&Mm*#p?5`bgZ0;8!7syvhS9@6^-UfAHW&z0iS;;E -`J~-mxBP;(dHa0cH8GsStJewU-DzwT3>>N)S`F3PYJ*aw2S`>oeFHnUfRwJ-&Z0*kG7hKsCF9!CQ&aP -m)|KA*zM&g-S{jRehv~*1@;j^B93>25!)bp!)Vh{+ii)bd(rKrVG(_)u@W3m6x%FRqPq~DOgIFKBF4ByRtRG{+YV#AqZ`r{5}UWrW#s!Z0*YQaPlZZnEG^hiW8~BZMZ*qoj(BY_Xb_vf#_RO7VE&>smM1514{nhShNiP4N;NBR^d@S>QrCXy|o-Lim7PpzhE{jMHhw& -rKf@*8aJl_URIzTPEuiuY{Gh?XDn%~Tj^D`_?y60dyw>~yL&OmM`Xgh?b-d*p}dawu(>ctNqjcaL6rYsR(C3D=k>b#@R@PlEA*=)yJzpA{%& -g98oWBVdj$Wz;qABe{)Ya-5dWjq9Z|gS|F5&!s=jU8@kRGq9mj(|0Z>Z=1QY-O00;o!N}5*RHt=8R00 -01C0RR9X0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mUteuuX>MO%E^v8WPrGizFbv%F6@;f4Xav_o2XAc}p -h2Ig+gVm@#ui{bAhAKT^xG@jX@+njk9S92mSqf5x!7wo6u1ytDkH><{$3ZG;n&1~#P$)KRfgbTJv5Dr -G*|;`eQ|3Vz9_2Jy69CuPz9U+7RsWyTbD&y!af2G2p?x15K4Um0TJ%Mzn -I+qZf@6aWAK2ms(pnpQuH>@&$1004zt0018V003}la4%nWWo~3|ax -ZXsXKiI}baO9bZDed|Ze=cTdDT4IcH72w@A`@fy|Mr*AYv5p~qJr@jaBxNh7r+kn|%x&KBk9vz=v9J5)LvxpZ#oCtq!0O0S%%T<;aEED>hSXW;cWf3R(SCG$FK`!{-EYFs(_Cs->2P> -vpBOU=vd$MsAul&g!PopgNHF0#u2{hy)&eF-mV++7AK`i^n`3Qp^e3S%2oMy%AtV|=1ovjL(=s3@_++ -$G|iXxBG`DDQZ;)BP2CxXmNF2p3_VHUwN`_}}Qod6e>aT+8Z)88gMg=UybPw^oQlT5&aOThc>*{^{4i -su`kPWS_$so|dUViF|DL_YQCH+`Q>*ON3@8nEc0UNp&qNOdDPXK}*qvA|7wCMTH1sqP&jnQF~jA@#+I -hjCyijd-45%Z8D#z%nQb9GwIp5PIwh{y1Jvc?42%A~B+8ul0bPCT$Y0YLP@RzbhhIbgNn$w6hx8^s5? -)hPxrJrKX~t{QWp|%`^w!zHH6}kIZDAd3u?b{3uJZe5Zxtq?4%fu|}VMZN*&_>x8$al20X(>AU93-ri -osXKX^|W0H~53O9pJxfmW2%iy74WA^v|q+jujr5P9{>LEMeC+9_(r_`68p*5pEU`bn@?Kylj3@dk7wc -;nt(jrbvZXRY6uyF{68njB{!gV}nXnM#Mp_g0{yVvKGjbr&=FI($TtnIqa6NJ@|JAQe;NU^~a9KU -JSd3P+$1pxsvRqXN3Qqz4$}OR|WeeNJ>tYv;#UI_!Yr)4O5}i)n`b+*Yphn;I8%h)W>FGO)iuqx-(lY -wA7B-)wL}evu@E)-Hmk2v~)E4!!*vJV_NFq&y+z>LOHXg;jqmOwWyCSA&p#D4R4716-{?N99DzdglkQ -OOM9ReYE%PFO+WB@1$ez=<=!uX!ea=4B4AD20Bh{P#$)D?*>@Tmks!V;=j76SwVt%3J9qLqlpcqv5uX9c3JG5VKw8P6kcM?24F4wx;vyah`{_L5S7q8rw2;i-B -$(Jf@xWB6+Kn@Z&^tN55Pb=he6jD2!@n0be&@e7s0GVJkMJTzNpJ*5{rW5Q!TJb80EslCLk0`h{HjvL -B-h6P|12a%PO;hA2JAKl1TN$zu>GO%z?iXv;_4at?4a_as|_YJ7A9gF^f}TpBR2c7Qsy0GJ`~NFe4cB -JFbp41asI|teOkE4Drd(VF0D$)R~O9Xqy0V3~NaG0-Ug0_faw8gN=tB!s0snAXdMp_ykz{rErG8(^%1 -Ny8`ww#{?l87_=LcP+=^7R3TE6Cm`uCx*hnVA`CZk4^<^d;y`doc;q5X?8K?gP7-yrPCfF_Neqfpx6|T+LfhR8PZuR*XxvSRR= -E5RAVkwHPXaOdD6-Ve`5%yn7Cf571z+kYOa=PbLxmxtOp02(u1q*0-I(LBsqJczrd7)%8};$nGG6jxz -2aiKea6YJ^jsKn{=KERj#7B%P%YK&Vb+E|6&&q;1~BMnzSp`{NJ?s5NeT%EVMAc|4CyK(`w8Ux6O1L1 -Qb$BvNoiTqEd;IE#*V%K8}x#|TL@X<*hNff-adhnPj0@5jvHub@ZHLh4jM?{ItU<5+7saaxkl^HL|?+ -zz#i?BAC=3ME4z72MW!Gm1lKC*Yyd0Y5Ek$Y}= -~+PcYIRbHibMgZF2i<#YC94uMDFv3DTmi~srW5~7R-{hXsk@G%NxV2L{!6wPOlJ33(btxeWGNRb+`m} -F_PRynE*|14&!?il$8>Ds*`8F6ntb~i*RxdWQGl6F3cmper4Z`l`POzxFKe8v`t31>GqYWFDq8)u`Fo -0~ehP5>5K>NHEOoERD>f}^K_zm0$hA?X36;TdM^uDw5@ruKsS>c -wXi^y=iLJo7R?SL+hP4&gYW)z&xz>pOC5&0DFB3ycPT1&2sm2K&b~k`(&D&v;Z5OF| -}j2XI70SYA3LNkQ~jrAc?aGk0Z;BK{=HnnL5?t0T?R`a&mHfhRfQ&UbW0+3+pD6j8KP4WM9 -XbZR;3C^tU$m~h0qqRneKpk`}ef9kMk*a^xMCizl_;CM2X-u5@({eV0wQ>l#EVtT{Kn=2WIO)Pvp2hB -Q^|d9Bwd2}wrU*Dddf4F@8_T>2K!ip -BNZH-qhAC;cSQg?jILP|x~A*@Tp@Yw#oHQ#2*U=YRvz+D?#@OZ;UvxV4;ru-0)ewC*{ybBha_$asI`U -Q%(3L=EEFpuwe>akIv1w(}jbxjMp#b!75)LCO3$m^N|dEM|qIysf=zi#-T(Zitxl!c`zvL$o*Z_qsrk -|9%-379ujiL}%U95In2suBa)16H19S)$f^Fe?e3@UW1R(j%?dND1AEh=|z@3dj#tw_2Q#Xp)+yijdDV -9;!Yf$-)5gS|D8#6fij}GFAeq9l^r;sHRDqaH36lf3>D;xntQ*H6aa9EH( -}+_lrl&f&O@#;t!5N!`l@$Zr^=U`ugJ8V{d-1=p9|i$nHyMh8(9!(y>vrlZ5(rR83&*=VF?8`zT~)f1 -}C00}P^2v&j7U3KjSeE7L)Q(w^t -8=E1fV(KydLzMe{za|gZC8UdD24cD!M_Y2M^IsFNHtT_~Jg}C?*tLQ#{u$caGEv6vIhai8f2eO|Dt~B -gKTvVRr>IRW>5vSNus)StFk(9Iwo{#Ow&1mLgstFh0(1LPCTVa#+4O#zfxu5otSme%Q}w5sCOX8d_NK -r~gE$tTAqAuS4j0F>FljnmFfgKA(HS22d92m6R#0Y+bXJx2>T=j1xewNKyflRe`I;@UlZexhqvYQQX# -tXNYXoTuB=EqKuQK!aAm&l9q8mT7x4H<>eFUcfA%^iLe2z&XH#%S -(UN_UO;TH2l#}hgZV$(06a#ac2lIS3Z$e9i^nmIs2mgL5pdIB3tSu}J0MuM_7$&c -oKUs?R;CqVf5WKX;uyd{a^|IZ|7%U;>8sQsTMK_F&iQCg=+J8N+#0cs&FE%47ugP$zdU~b&hZ>)C=cq2yo8`8$>@CU;9sV3(LA2BS ->1m>WmCLPF|Bj(?Mt$ZO{gS5xNp0CUHi7o<`uhaQggPgQ&oacm7A!DReS1)%eWFl;{sE96N4(&@CR@l -VO%6@69j4XBWb9PylPx+sHR*@ErBroK;g3tv&@oI>yzCx7dQMwfsrf3Ug%{S_ZrBhSt*l->bo?i=#ji6__}}k~k1d312W@28Vcn5JEIjMGuh4q_AdDrVvm8n+btn89>&+Md}nLL# -yRB0=Ht%*WYvqTlbYjS9S0V(Z_W{TSYWY2Gk;{mc3I&p!S6@je{SjaS;be3`_?LryozM$4!g)mL}^ws -up5{bXDkgEaKyZ)QKdV+tO=8m@rF$F~u0s^%zyJsP6$*P;tSF@#_GV_83k$Ml)vQ@7F4Y!Cdboxa7aF -dZ3HXRoZmJMHsAjoC=WH8@+S>tlG@;FptLM3bG-615@Q#i#S{$mS_#YYtTdy-MdwjOgXH}Sze~81}9u -(f@3*KIxmB{(tLR<*oLI*RNZcuhF0qjcxl&e9b)D50ihZLAw&_Rp$TQ`_dG3Qo$wi+pxP5%J+G>R4X8+p<-zc)!RJuC`u5nn9`5;RVdruO8+qv&z-gNt -Ggt5IpwM*pk`60Oj2d{*)(aafc#1Ui?DD$FYU -jbL>*~X!g&US#M_YC4@nS}mKVeoC=u)aN>20$D3cjN`}YJbNTM*XRHDtm9?sRiRA5TF2-HFjo6DHdJP -3w|_vsgv6o*Hz_g%7p$KUr)0jkKW>21oCoKZ1z8$Q+=is?(I=k48sd+RhXn-6yVn$E6nNQ0om-y#D!3 -2=AmTHabFIvut7_hbFAVRA9!pTJkYWE1YCNI26g=6C0NWjDi&n1hqYjco_CktbY>>9|5&}|fJy~S2qN -OY0fOk@%4I6p$STjUSYYD%j;zD>W8D<-ccR1Y>3EA;id6c(2Ni^3Ng<^W@a0a?Z=l{|@eVqG)L3t*fb -}61S!Ix*__eMP*l8f$;EmQ0Fthe)70z&<$A#P@Rrf`T40~DOsjuFjL1hwhe@fEnRX#5f`EzP?GGi%#Z!XGff{b}tBtrH;U`Yl2B;3$LH+r)u>Dsqh -_Z>OHJ~L6w6hAnbf$V}(9EL4INEq#Vcs{UGK)kohQFG~{*Gb%FlcX2-VW)z1~e4G-t9Q{6|6uToht08#y{@ts~%Plfjg}~e7& -O$;-psKN|Ptzr2mg$iDl{S|#%;U2F42>{U)d{FI?aZDjHeIcm%qTp>gJ3_sg={&M0tXVrQ>?<@otS4f -G0)B~-=3Y0sgU-{vwwLIdF>!PKjS96=DLDiYDTS~i?*|+EguOEhKzRcEhMqf90S2yz8=X6<5dvn!ngY -zKLpEF!VlTa=!{M0V>0yKYF#Vx0CUhd6jXfZ>DlLq8OBmW)79Fwh5sY}6pkl7MbuZ1A^d#w}B4MMe7FO -ToL{Jj^*=t_jq8u`tEXgOE>y@D}%8%2bvYM=It+sqs{DZpj0P8W_D&ZTz+=22ZBUKU~ -ZS$-?;=uo=k$*1^R)stHDk@`Ubf`E<0Dv-B6)V%2Yu%}H|3MoYi)CP@26~+ -PpatJpnXT9lCOst}sqk5`NO#G4fNj7Ky!R#t=i0l(=y4j5}54$num0fw;S#GP&yYa|N`?r8$$s{=$3m -yC1l{R?FJm*+P0qj6hMZl~OAX)niB3Y18!oKDhZvaLAYY9zNn)v`^`*E#3rYEhXvaS4KMSD&`3moDs_ -!Y|f&;>{Ah$g0;7<8EOr-`cnm1(mJae7VYgbE&@9R`AbttMr9846)siGT+E@ZFjgyBXH_{y`vF#Ud*c -syMmB&?AJf2z3&J3>lWx@T6rxQ}R+Yyd&ZbVmjqvfP>;f7I^44;Q=r6lHSj<+#op4XhhcoJtY=rGUfm -|{>#PLsb3Y{S_=c@q*x`!J(P{5AImhXz=aUXk~hV^W){>Tqsr8(J;n(Z@(5{MHyYjwvJ164Nh86>Mj4 -Sc!klhhIXSv`(_RYG?Do>TBuBMjy_$Jpd&`Tci{nYG1LsD&31I8$xw5D;nKlj-{t~MA_f|e~okx*&O0FG)(^F59fr;QBk`1IAgc4#DXN7Pn% -fi^?!Qz0YSnQ4G(Cb9$%WYi0nBm*0^fHGV5Q^sXZTm-jzgBZ|SSbHD}8JSz_ZT_$pc+>JK^)%;#k;ev -@o(@oG2-+$k-HjwiyZNS*_!jTJfo&^`UCCl+S&BX?@s_Tu9oFp*_M0ZyM#v8;7Q2q*FLN&cdVcH-yS3 -Q_aQM(jYc~CeMN;1(X5VARgLiz{clh`FnxDL<5LPy@SO!$keL#d60Dp`Y4Up>tsXl|pq5I2YVp0Tu1# -u{zr4y{4^WgW1$-H{NNWZoO@)5K)CD`wrV@FTdSVPNF)$>P&%H7E&Y{sUsoV{riu -v+SG5zNH|y?l`9eR-#UBs2D& -E#e_#MUu<~Tr~O2`+s*rRaGug1)w_m{b|FU1hwVIpBTxYk$Re@`7eq|+dwDw|ohkWRBOVaA|NaUv_0~WN&gWaCv8KWo~qHFJo_Rb8l>AE^v9JRBdn5FcAKpUvaWDC0)Ccc4N{q?E{P -?(0+GX%dKza(igiiU*01ZvvD{c!=ePWM)+7|1%)&nK#mA6zI=Z3;nV%lh2bnlkz -)ie?_W9pySKM@@9*zmDKkh=QO5J3NAxW`%wxC#@^wF2Otc!y1aocp@zaSDLZ-$~YBj?gm9-gWAISOD^ -~Ke77^XFQLKc!IZAdsu8~&0q(cy>VgELoDB)TOX|M|gRhy*jv1a<%y2f#u*Hy!8mgHwJ#LcTP0Cp6p4 ->}bs0O&A()$N=|FG}IvCk_tzrC7F8M46~EOj<-qW)GDDW4otuU+Xk&>XltwLUSxB*ZYHfJp0Jd_3G7>L{--;*47I -lJS=1i-H!#wjM{bi3G`pTtRiF;g*(cASmtYsrRTNYeWvGfwKzBncxCOEY46HEQU^&q5X0MJ>8^}}_YC -!sPG$<80TiOR5P^Gd?L{j}5ss}%x8{d2mJEqn^T|GKL@=SknnIf17Y*8r8qsVKf>2U4{6N)=i130zns -g+HG9=TnIW>#*V&0|pCs(ly3JRK%hEl7P8effebv$RvIv!yM15{>kbZk&8Jimc-I{iuoWh(o&FqDTVQ -O5Y~(r@aPc_)vuzMQ5XbNOJmQ65Wyi%rSc^N7L4)6CL9lNJZ?r?K1t9=G#^D8>Zb~-yeRHOazY5^L_( -RO9KQH000080N_fRR;RI{ZU6%S0Fnm)03HAU0B~t=FJE?LZe(wAFK~HhZDnqBb1!CTY;$V{ix3DDUcHZ -?ZZWR;K>wU_-JpNSWKQ)Md=?3P;)^-iKUqi=)~E8a>A!9^DI^Fr+oT5Ps9hnwySSC^L`FRm`Hu3&xew -m)Kgu*mBa3?f`VKYjWBbD0G7D93Xi1HjtD4pVsHvPFkNuo&wdksWGhK4vl>RTtrKYDtwb*6rtjci>FyReGn?3=2fAOtOq%)aN;k;z9YGtmgkSnSvN`Rf+Bmn@2jh4FTD5efF6h7X)*?uP79*@td --VR@&ua*gXT8TBR!KPR-kUXyEH*a!z8?3vc8np;tDNjo -WcH(+9m=t`?;(5EVzbwLg6oSI)k!j4x;pV$K2!g*J7L+H7FjbcQR?A3r{o^0sGmR4iN4I?c -CPFTD48tCp3ezR|7aao*9h!iW%$2Y~CA%7G`hO@lFzbpubB=TPcT9825j$pxQ57N8HE%wy)2yDczgd5{jyqkE*1D(K?0fVdSgASOf -4#xWsNl*>t$b*&qCM67Grk7OU07(QTXy;j4Dm<|3k(3lM-&OL?`9pRBGOdEGtW{R9Uhe`<8ziAju!IE -UQJsN@dJb=%dn_emB>Yp=_9RQajIem2MzUZ__nCR`_7`Yp2OhHj|+f@JXd$V;s@eDpmQ$=x1R8bk4ka -5~yVXet3a0{N+;x?|Ltd2BE4Fy%+U$Jl^lg$9_MC_W*UIGc*t!gkN#Z4g$=BVX2P{D#h77iMVi}*hcL -&z{7)rHd&>At4+afjYm^8_K7Ht1vbm%P}ojtuEz9=6j>9Lng=G7a@1y1k3xth_&#`uXod1CR+}ndk+) -11q8PO~G*Z_q;UQ?Dnv2S4Xf_Qo4GIOME*-oIr*qF*{yfFVH3Z%?qVm+J&UCXV+$`&cDO_ElxpevC}9k?tP9RlJvAHT81`Sv| -3xbGruW!pF97A&M6(0b)HG!KQ`)QqdcU -Gx208we)4V#*y2y_wS<(H)BJ*iF6FwOI}UF1u*40r=xt!@>IBdvsv1}u> -uqG1u$3uExZNoPc)uO#W;IAws1#>=q^8#9!KU(VK@gJ>ZqZ$M{Veqr2!a^b$$%OIrLMt+`|6LXV4Jt# -J(->dngLF2hnHRWAbmoF7C!c?a0_d{XFD6_~zoL{Qspi8-|?nSx7H!B*n?Z)CAL_gEyC2f!pIQpC>zP -Gkm_p?dQi$1d7;5E901Ibs<<;UKs={nq->K=McoUZNQIO{owoxNtN^I;*uoVnD6c72}I|# ->JiyLav+3&ZAk_7+!poqWr`!xypQ!fVlgz;v^j+7+=ToYRhVs{NhO>~Mu?DuacbUqU2t^Zj9i|Xd{sjHf7MHBI@;@6aWAK2ms(pnpXJe% -tC!3002OJ0012T003}la4%nWWo~3|axZXsXKiI}baO9kWq4(BE^vA6J!@~{Mv~wCD|&4hq9!t9Paat4 -)_a&tCbxr|N06D^2JjdXEw*glP^6Be#?~(Oe*4v{UwlaNB)K~rjzA`|*j-&+Rb8*HZXF*VA1Qd&+uM~ -cnmW$)gRbbS{|ufZ`tG}=){2^_MV{2Pu48^NU6ku>mEGPoQ}x_@R8P;(zdd_;{`9H3*{bGFs~=?;)#z -k3QMK0U+0XC)^7f~9F@wpog)VA6Ro}h)p5MQE`TWJ3cQ4ektW>I-B+FsUV?g^TTdm8gQI$5I>TPX4Hr -Yxa9WASJrPkRxo_*3qT2`^0<}%A0n1r-W*6VybUxCks7Mv-jBg{dT0A8(@Ra2R{EY(~9nEG*p3i3LQeBN+p~Q?PYV;Gnw|~8OXaJs -0!*9RWxxP)Bthkl02vd0&)bp}vfMnP@D;D`C)%+3Ym(jO3+uN$#tZV$dsR0yzXzsGQ1ufOfWRp{u`?5 --@eV!G1R_W38(UE+FIaE4cl&f`?>u3}|`R5PCXbe--1<(he&sNDACmP+1K0N5j> -f^T{7~a1G+yct=O4~Z7vCaOAizurBr<}Os2kwTVx^nAGL796vf-Vv(-i1_1;K&m3(h|HyYxQBA?GKy6^BCFart7zDkNzH5KS(`~z^uMN=!%8L0BJV!dfpB! -VxT%axeQnxTVe*PE3Y0YTnpwP6B2ajZc0YhXi?f>xYP)kXZ(kzn5>H#Km@L;mGb-DaSW -i9WZLPSBviNQF9|DE+V|vOzBt*FHv^dz4`{)&qQ^R-3v}HyTD!rX7i8%nR9mcb@^vpxveh0>~1@M^?0 -l0x}&sG^P5v$k4z{aE)aRlCUVj8s{*XbPJ@H_ZF7)baR-`M`Wo+^Z7(H0E}Oww1Y*;wfgz}4`+W=U#e -Fn=ohWNw4h$0g}FeFLN8GAft}A`iXbs1&H?~0?ve^#1877Qz|s`tTMH-8ZmOi(dQ->>&`f!*Q$t?hbe -F(yfhbj$>YAYXJU~c9`D2@eKu9zh -VkwWO!{I2${6K295cx?R7z;{u5AbKn>1r{o0m7dG{7&?_*JXvJ5V!43WTEu?M?)JHqiC;%hxYRRdU-E -czX0#*y_hBE5R86#?*J^CQm_*^Cm-)kTtnV8nhR%NQx4L6kHKv-?}P40bf#fivA+Yq5UV&pt -U6ohy>W!mzhehE0LMdyYOWt1S@{Q=ucsIR>!AeoldJikJPCmpx`->GccQ>4*~0DHtX^B4tacp90xRr( -81^tS_4=)qIeYJr6hFgUsJ}Z!RJ|;vS~(}0I{U>L`{uuJ}>gPw<}N_txQ&vqAnIXvZHd~*W#@ajLV)l -FX}F~OeH)r=-(5eLwFogGIF={;6XdBU00T&+(2bxQVRO5 -9=n)`oZ%~gwaTZabG3tngK311=)V^)hrk$9O7SngdsC<5R)*}P! -Sjma9x4BfGcQ@`FxSro@rkLcF+_AiCtGfOt?mo2+klxNnE7RZ<-T>=P^^d2SlODn|}xAMNqC4YH$r-& -q>?QJ^GH=%c#-Hf*568h@ejr;$D32b2$i?Q2Z%-QOjy=C~dJRSg3V+$!4Zset#0dEdU=~B{w;FG7$kp -`#oVq#z4Ld^z*GQpcT>t-F!zCiUx@&b2soDr(f#^#d(gV3cNv_A-_i{T4`|HimY~!kYL+2=CD$w(TxV -G7~_yYL_q#gAYsqYH(a9{FBh;TXapuf7K1zNyWIGJ%rD8k6Lnm4Fdn|foKvPTXt)JaqbY08a{2@tB{f@$K8MvGYy2nmCexmJae-{bWWJf`$T!P&GB`=m@}!`x}RN -V81Ky?772rED~qN1XjQj%OSuYjR&FKfX)BdLlMx-M2d1#q_8wNY#Wj*n1jIzlmU{bAAP_K&^G+xh>;e -^)%4>0>DSj|9Qj{Rk`(0{nG@>bU%%@G7gEBTe#;3aPge4Wk8$L7kPiohaRr0c@@{)~UI!o1Km~M%=n; -(3hs{zim!kpc@WvpqaLt{A-o@^5)2h -!EOtIjj!wyTN#ULY+n9IuB*GDa1_cwCz=!XPfCfB>;Yc34@7CZ`8H{c3wv-1T=F|J6zV -a??J4E0~S*y&mUjK{TKrpyPnUb$ZC%!sGcw5~-pxX;23bbpx8vhWnB3+@b_^$ -qQgawE1|dX(X*+TIFyG`{;Z^dGtx!5)$zrw++y)>;znjGN|4rGvG=u1r`~aIfZ|yHd^l#rD1;-mr@)4 -7C_oe)eXjZoyj(62FRh1wV@~U8+nz)=B$Dt5dqD25Vv)Ur1ZpmL=Bn3E_Vl(_q9RZ=96O}B1hxcH5YR -ZYv=d?>mIZ2cZa#gXZ4+l|lFoX~9?`-PJCeG*JP6L_1%?5xxhjp^}h=_B(6P;wc<=eZ15@f<=IPy#|p -PA{{FA8vNa(yZLoP%jI2Lx7=2QnIpvBQC|Q~1qbM@9%c@F)A0WFj8S^L^eLz1e{HR%H1{&P4=A5@J8e -6M8wR9NaJN(alw5Exi{`_YrCkttiJ%mKt3>35^^w1MZ-mgh_NnH(a7XY&o&BZ{0CXGjWWl@p^hYOFoyrD$L~$rOQR{ -7<70pzoS&g>mGAqE&Wa$~zMc^cjl6`5?Q=GxzG>bO*dV#B|O>VXm6R^LaI=EdNz`{V@qBN6Afa&0Hx; -q;6;Bm4BR>WqlD*_h|v@4fu@}Z^>;poVKy|g$*?SSCPW0ygUUvv%Otxb?uo@lc(#aRq5^2D<(IA0QOi&{X|IzLXiMcnVo-6}{HY=Y6c>cq^+Y@L%Jb@jkPKt|%=P_v0zG!JchiqYm#5UMV~gT(x1)LIaR`qFYJFM%7DS+ -NNdIur|{Yaem$Utf?dc%5b+;9CkkYXq--VDV|ctU*-u-T8s$CL~VCvTu3@ -MAbH1utU=YV4>!{=J=umEbnhb_PvP*nen>##dZXAJK4PV-lks`7|mw(5vAF_%LIzoxid>^k~xn^$bs5 -R+tfVr+hI$3fI>=tS(4$g;7YZ8xUTq1R-*4mXV!zUCVi>XK$MsG -Z$n46upS>hz6xfJbvq$WoXFXflRL>X&Jcu-X01#ED>(?PuLG>@9W#quMp1SBNg_!?bNOo>+N9aZyY1Q -feFI-mCQr`adrit69m^Us9Yar)*P+iu&3Ptz2n{G1(lJ>&bsWk3aQ!_s!ewX^p{_LnZkgJI}u>4gu5& -6J1vDvVB66S^3vE_8FfRMR_6N5_An#YayvX$#WyCnT5A(T2S3#72MVqZGsB8*Lg0gyjzX>G(PVMh1-!*quVhO5 -6G3{F1n?9`-smQjE9MZ${Ec~PPy!yyV;V5rb>z$#03o$7KT$*1jr<2i&Nne7#40%3`C&C))+8?_G>0g -047)!u*@DVk@odw$sgNfV9YPMOZbYr!#n=aA|C-n`q76V_c#y{*<%=y8`&c1jcBp;269E_&L&eS|4@z -jYg=f8>(+Ieh&2(1hC@3^S~uWi+-w@{iaU5iiC>q6RBvF?ob6AOQPpZ+tS;(cMw8|o1bu}6E%W5I?n) -)}|1m7%fDW5H!DR-7sZjmEcM?kUBx)Gm@)AY;SaI;M=+^3-kjwr6N)DZF){y>t+;lYksosWEde=+| -Va_hP2?5t1Y^g_wK_DK+JtaVGbT;+fFg~{N4melSZ?5gsraR^a3f`f1_09D95Vuc+mnzfnbW`!MDDMl -Y9K~6%q;(M`B>UNDGN~P2$_rbWnuvyT9ELSl2c4SL+K^L?X86}>iU@%K$M~mB?3%}afqNk#$1_o(oh= -mdsjL{-$qW)q+Wz6vUqz!uRxL?(>LcgrbWe=TLQqh7pLxA0&bRDt6Tn_wS`;NRR_nk@_`S2?T{mFz(sv?oHhHQO|4`_L5I_Ey0U&YCw+7O%y -oR6xUI?uu1>aSOnAu>LT{M9ZUn!ai~oJ;nte7j1(}zXYdw#`akvi3(M=4>T^4ypG^)4e0!+jIV39Js` -CaBM7-M*91<6^_wOG7ABihIp?wF>&)miDK6S`0HA)HvvuH`IhQWPr(TXV3*eZn4TVGvKbPcHwcRVJjv3nUn;D;)OPZ2{O>A`ZCyZa-rrnaeF3(k( -D()~sS;DYE@qdZouY*rq++Mw^tjK~JF=f6PMV6O?$9gbhuYH9-Lx|@#wy*=6M44;)xH@6@U^%FjHGUWsS;xqDnax? -Pn^*gn0!ybowm7u*STeS21epZah)5MIRQ<1P|vdlER+tu4N08>S7&t1lX}TVNL{DB(|3YIO=$nyldv6 -MdlG~wVc{omsw$rv{%;DmI~|4dGar4k;V;PpqMWZC`s{bRh6^Zw5=e><%72<9XHmP5t{nS{lW -!oC)nF^PK_!B&NUGrP;KCHWjzLH0p@bm0hDlQ(3z9JC9FSW-!+KWL#_jUuNx<%p{uV3t`LR~{l$@ADTI!;Bte -vaBStg1B@a_=~c|3o#PYFllMI0dRN$*qF{-mCGfb#k9Af+}~;R152taxY2oe-!Ho8o4~XlBXbAJ+qw_ -!e*X=hebT4C@NsqA9&n^)vjts+|{JYGKH6VTQnvoHDr(UeY%8`p8$b6~H-#(owu#%4PBSI -3pbjXHc0dS&BrmzR7c(=Y>jcFQ8!{&Lqdg*$1j{WH2#j|?nth>*lBH+j#d)EOSeNaYv@FQRwY$<+|klRIE!WcPuvw%ljc37gH$LoOnB|TnJ1I>yF$m5XReHC~-v228Dk1^vO_X=<_{0dQ@xj`sY{gU%qlYvlmBI47ohFR!+V`@%3 -(u9m7}%A;&5suQE0$7Wh~cCfy%`+WX)DLa~~E3=8`ox5^D*hIx~d`#EZ8Zs$o{aYQ0%dVjamRx&guI&+?HfyX<5*ogT^9epM#7Pk#RyNjCnr* -fzYN!m#jYJ?Ham;6%~6`C143q$q)z#lX8mN5;u9XTXN?JVql3JHCO`RbDf?e|PZytLF(rd|r<+Y-F%aUChx9pIL(@lsKIcxZ1e2_##d%SR4v -hPfBm%opt`xK9RWb1F55!3p9!hXJtkaTOuJ`x{pT>wwt%|zH4OX_RZ0Hy`LeoyCSkQhP%;4KX)0TK{l -!ro93Nrc{HJ?GPCwo!>aUud6bh@z*FyQobE8jr_`Bqj2B(Qi2SLB4c>K5rmN@1B={}L$T+K1e!YjO8b -u&PNnJT&IKJ{K3prL;1avL5)Wm{MHJ?y5j+mJ|BSBnyNox -?Tl2t|_7){q8V?=YW!D7$4Zj9B@HPGm=AX8W$yo+*!x7FoO}|;=tz)3P|LLrASt|>cBrGZ?VcvXpA1e -1r8Jz+j`M)vM$p);j6P(y7O*}MQ%Bp+#%HOnT^UJ#wfS4s0EiV`)%g2&Zy_yfvyB)28n*;|!8sVP6?% -8Diyr9N(qSS-{=fFlTySAH3@*5X2H}o06O7Ga4+ZDyg#X$>y8JK6$V6HphEpzTXv_FR`oUV@N5oGX#V -B(RN0plXe23rK+{=4ETIgP^~0Nwx1L6*h!@IVV6@4(TH_z0h05ti}k;(bmc66p~U4wzoP7^|IU`sck} -KSLDVsL!AM{Ql+JH&c5Qi;ozf^%r9P;s0aIef`j;S!zEr#I*f>{|M6!B~E)FA-`pO*%|5g4KHzz-?Ok -N0rz)XHb#8UC*G8nq{G1iK7)~+W9?xvm?P_N7uPwMzhhYUxdQS(AJiS7>kf_ScEwW0zWn*p7}4Qr_g} -LrfGCa-Xuo4%X36sV$7R-H^Y3x(jLHlde{E!D$MmB!L)G4XJ4b$Gl!ngu;8kT3`nLjszi`;Lq&SGK6X -e|(vbp8}6z>DqwAG7yeR%U>l2iYBb7S_e>2KV3F+-Y7LbD}3pPO4N<-pDuT6n(v3%scZ0Pst?c-~xnV -GHCLI@jEpn9>dmuuah5&PK{jo_u+NZ010KA!ATqbIpQxRR~X)@wdBPK0wpHz>O<_IuBfYy~$Qp7PXSmN~nwwpbcq<$8% -R176E6`}xc!OqqVtRhRI56Y0IC+tN`(FhbJTHV=MdN-*}ecw3hUw1bQjbG+CPA(prm;rX|m+GfEWI%c -Z9^SJF%6PbTVKv-LVpsm2uJGjQpDoAR~UtEAY5kz)vQItl-HqK*nw=ev_nx=D-c3%JyBfg -$3wtU{hO}JqxR63_7jMVTLCCQYqvssWu<45yJzRpGHq@j&guPJ-o@d4+%?&^AFFanRa32d7KVz&!h05 -adSkvU&-J3I&8-*Nif{B^mhrE>Gokm21G-qEbHjnX-+*qQ;F}J@D=7Foxr1V-(=GQ?a0hcih2>MvFA~ -|o?e}tQD^v)ws(6#4nkyw`AnV;nh^VaCf$FM}qwJoOB7) -BpY)YbU}e>bxgl{Dw*x@IdK<3Fu%x}x7XGgFFNH3tUG7Ql-g01<6Gq1ru3jxR3g1pqh$v|5PBWfg5#z -@y(TQICANb(N9>i^8pf@2hfsmKCOWhswLcdq+4sjrWLRkt0JxL!Oy+p=-Aq9IM>1SpKdqD=}{H=4(DH -;EETi5)u7i%sKr=wK^vp?PHy0E!V9jrceu(-a^Z@ci3vo#cnV}x>;aZUX3m;BGcNq@P2;FPSu3Qc+A5 -z_B=dC%AtFgI`i>PKqdD=&Eet0ERktWTPINzkuF+SQ8hNdSg`qkM=ss(C%{9$pzvWdzM6jf&5o0F;80 -wgpP#EIXgSO$^`$BX69Fhoi~}st2>LhUF@6aWAK2ms(pnpUHU-pJnp007zp001BW003}la4%nWWo~3|axZX -sXKiI}baO9lZ)9a`X>MgMaCv=FQES^U5PsLMIQ$a3O-vHl9!#^)c7Y8>JDPPbsb`e -bM#a_~`6IhaU-+kYACq+@jfJSrJD%8%VsxDCqjsEoa%fbBdHCUk(eMZu*k3Yfuautir?LZUk~SX8D~#d=>=Xa+fBtn*zMB(TABQ>%u+u^9{o-aBLjyKZg9G6_nGSWdjB7P;B%DD0!60u^xWFzEJ1gG#ri-Z$~&ZHdsBn3f?Z{_G{~?A=i_I=-IehHH -O&0q$?2^J0PPvQz9^Kz?d^H^LHjugmm|E~L#`w$wIKIDZg_N?L9SLI>1pG|5K2vG!+@pVdh;Z#J&Sks -E^k%{%E4ExoL0WewL`jC;u;j3(`uWT$Kbu0W!WJtTQW{2x=kD3K>;DgW~K!XrERzoXW&KTt~p1QY-O0 -0;o!N}5*K?jt>20{{RY3IG5e0001RX>c!Jc4cm4Z*nhid1q~9Zgg`maBOvFX>KlXd9797PunmMe$QWV -f`@{XWsFG^tHcAaqE+fBqMbA}O{qz)tu@z6#Q3N1^SWwTib>m^ -T?Ko&%3mqjceg27C@um2A08Be>?0Y>Kd4?qD4QWme+>Ii;vWTB$TNz%+tTEX5R<1 -tN>Q*a9CZ&`^ED6Uf0V(%#V7fAjjV9+>KW%%?0-FX*epEJqPKqV%EMyUcei~ -*-PpxFDMyu-Tx^7VMn?zP($JfoHzr;YHw-*YKT%ns`C@7NaP>5V)02}AZ%$86PvN1c?n`wkEwWWuN(U -ETr=Q1nlgQHuo{(_Zhs(()zdssY4Q?g_r(;UDg$ok}2h{izQp(ao^=ld;MDUxmGLa_ -Md7AnoQ0H9}~5%nGkvg1tzxF2=5SXaJ_kd%D1C_72cfyJslu%z18U -HwloNK6zu7#h=Q$@d?b;N!^d^Lom5+sLl}#c{MR9dbkj183A5DbcZ5q@q{iO(LU_n6tdUYHIc$sO%(1 -+WK0X)x0&SxZA(iyFx=hqw)7ZDL*kAFZN^19HmNjxED*bhf+i4k%G8G&}+F*#vhwf;X-%Z1Kjqja}Xr -F(d`ricP`_gNI>GZk(6G+whUL{MXm;OsAe*jQR0|XQR000O8;7XcSWhwb>OauS`01N;CAOHXWaA|NaU -v_0~WN&gWaCv8KWo~qHFLGsPWq5CJbS`jtjaE&M+cprr>sJiC2TE&Ou=mh|0B5n?x@dqj3D(<_>>9F7 -*=!|I5a~@^1o`cqAt_la%gOqXXvz6_^X75L!C>G4{>sxn=Y>{b#rOQHEVWtv-u-!I`JsR$+sjJmLk{| -oXxQ_DSBd5d&{gE(KfVJK30G2CL7wRCK@@w)B>f|lM$6O$%Y;VP43w_WK!r9%w3X$l68nRW;IaOMyUF -C2@!jO^4mKxD%;B?x4VowU2o&e=@YnMnpPm+>4U>s2FBFg9*Trvk|HJ#o`NzfFz}j)0hzxTMkOoiWrK -~jK_R>n`_&>N6uC__(R;3EdL?7y{t;};-loe0KS8G7!Xel#Qo9rujEH@|TUJ_53+HInBzULZ!JnwO_o --ZCBKF?u>$wLfXij4aei)w0K_6Kg|D}e|$#Ua}0kHc%HZ8DH8rKUvCddrMUJp -v#El}a8hx7tO{T;gCR6ILv`HvS(0yd3FHy5<&w7Z(4hB&5il11BSp~!3vipQn9FCHy~gIRMS)WAT{lN -maIr3viWe?DQvGBRB-YC+$S4HWk`yN=1rUYlu|l3uP9z%COrw*5Q|>mCirWmx#W@{D+5rm~AlZx=(;F -z!S3?7?;$`Kx5E?6yLLnO?3%c#i#_!0$%9*E{H5N6qb|n=RBA(TO;>oHGpYft5D1g}vru|7|k)2@b{4 -cV!Djhn7`X(hcrbSA-CbQq4%%XM7^SsojA7{MM@OT=nP%Hj@!~$405$K0@h!BUpOGkdpv?w!!H- -D^->dkXzg)0Lw=3559izS*#VC7XwUQJjMg%>%V$nemNavyb9O6e3AgTAQU@owC0TRP^`1hPfsNePTMo -TTeR0~lU5ZsqfTPug@UNfPE>AZg6bQcuP6I>TC6pg1nnXIvKyuvnxXc)JaXU5f;ak -~}t(&*ffM*C&a{D91#acA!!AIlmOgv-K$s}#B}wSn|0@CI{kkEm4Cx#I=J?&h&&h%2vKXqG5?un;`v^ -_MnmA;QCHFY#`Dbh-NGs*e$#Im?%4m})jQRJVK8oG*I!c2E(}RYyb9OmzGX+N8X$yz_WCN3#{rSkprM -?0G=AH`4BHFNwW)K|-ij_sV>x=Y>rPT3S!Magfsu?>@6aWAK2ms -(pnpQ%%_zi#r000yW0018V003}la4%nWWo~3|axZXsXKiI}baO9rV_|M?WpXZXdDT`+Z`?KzzVEM?8Z -dSj*eZq(JuK<~PV6EDf+X-dr=pO!(yYXoA_bC)y$IUh-WgJ_eI#g))k&Hczxn1tU0htufSzVw)~LNpT -rRXm8-#x!J+mNvtfT`aw^rCa$huJ&JVAiP5?^2|92U^UNnm4Y1SNFYiV|IjpyU(6CqX6(ghfE%_TUXP -!a9U)>!A`~5gdCy;r`j!!hx@Z58eefs0%QfLp%9)u*;< -qkqohKl9Bhx7Cx_F*XrC8>B$hhN3n^-9G)h@KxnaVl>p-Tq~ZDLd9rf#GnT%(cuX*ptvjkkj|m0J2VT{u*`RY-OPJ0(hYbJY -}Rt`1dag#iqS4?zVL71WdFgVA`Xh)r-#lUhu3ZY9!w`)jNO8W)Oi$a?l@Tg8<72qMZhcU9}j>xEiWEsgg(Me^jJc8!_bdquPXuPsxy;{YdN -*I4R3{)~6}O4(eg?R%KShj12g>$NyE6@g5D(!}8(v&mX1yih4+nlV}^_3K`(5z~2xccAp|;0XvDRprm --2b%?(T)gogQur)?uI8BTTN9sc6<UtL+|#lk -{J?g}$weH7b)L+Z(?1G}jqUy@CP6y{^ItC=To$h`i`R3wgvFVPrr|#+P3cXG8q;)jYD6TQksjY|{48h -x08mQ<1QY-O00;o!N}5(lY6e-52LJ%#8UO$x0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mb8u*BZg^#QbS` -jt-B{^w+cp&cuD^mX5J<{YHO+=$FqQ#b<7@$P3{AQYa1Dl)=$I`nX(E+lLHf7vkrb)Zsf+GIF`0%$`xEW&?fv*{e{X*uy}w6tMbRI%*+^2dj*y@f -y?k@|`}ymO*ofgQ0SoCA{d#d|_D_yq&CV`nNmn~D68FOMmSw)y=1bT|^-h+jRCKp -u0f(b&l7K&`rTdf7+Y=^akF+4AP$w*fw3LUeq={rV)Q}qI$BI1G%A95@Bu%lFfNz;xVaX&1V?6Kl{P4 -}m?C|^*IzYbfdvT1`d0KHgouVBefWPoZ?RY1%zhqLUVg2rq0Hlx&k8*Q-Vs($6FRsY=1JgOA5Jyxq|StwD78BZ)k)4dydlDQjo#-CaG%$p) -d05m*HTmt7@ba<(2xVvuH%lv6%jbeGsq+f2RkBM7!f7?y8_-6lk&PUC_g|i^j2P|gd)7NwP&)5wb$|O -ib*O8lF*K9BLItnCb0hSXxx?3B`T{d5R@-#uc$}8#!DL*pchmIq1$FlL*Z)gvhwdZv<)0mDCb -|!Bz)s2wNg4-zcUzM#w0aXrwWX-s*;CYa6l@;Vt1_-^QC|FpjaQ#&ksQN_{$acy%9P^<8^SUjW$ -|SB8dhmoQtM`aYzj1b`51ALLce<0VnJCDM5ErbT@yofIl(MZ)q8XJ#(!?RB`QlC{TKUHSBP-uyN3^x2 -p7atyK*N?Do8lB<7=i2Ea2YPfe)XdCwzV@7GWsw4Rinrd(H7(ckcK6a7t7&h)Q35#tToEzUnonuCgIgwSh -=u3b=T+5Y~u_kxH9NvR6znz=yMW~?$3kqH)4FJ$Bf*u&UkA|tHQ|xV;g0$4GK4R-5N)Pp4yh$9_ -#Q`x`_AZ}L;^|-|C+W>VvQ5O8eilBS$2#xDg4;(ZZuGWeyOp};@sGte)aOj9(gB%gyBY&5N-dN827C} -HBjyX&~Q-N}yLmCg<^;S_hZviFIlw*E_O^u-ge>X8PYlW+J)MCuQR@gvB%f#0C29}1KsgxxDtVZ(8A~ -_JDdT)mGdf}vLApTQQM|JmMJs5^xI_dc(wg`` -!j|bk@}z-88Z5_#n(3FL28;0Lt#e#?jo2XWT}Ry?(Ww$y}d;*M~pI1QCHsnChTBrPJ?k^s3W8bzx{Xa -tm#$3?y#uGJ>ZYAZhRPbiA}G)hVOqVOGOtor|eQfLCSKe7(f(w3FBdPDZp_un7k!r1|C%3pAcH`vtnG -48&wgUf8z<-*`&)6fo&~?eS4T-8BD$zbV$b$!E6X$dLtFJEwr&Bg$X%@4qM6PPkuNOBcY~g04b@sbb* -*JLJRw0W;QSx_S`{VezKu=slQ+RCsRUK=nqeu;2aeW&`?8I#TF8wpFKnW0|jh@^9>q@5v}F6qH0(+hq -NyiemoV>n!ID@+$=1dfbN`Y18%2xm+=-H+o!y9*@$xZlu-c~8Pt0pwUbjOgu-xxW@YA%P}yYR*^AYRl -GMO{lYa9B3o|WzlZF6^SnU@gt8CXPUlztV^kJ@z4b=UGCy; -M{|udn5WxI>mFq57Sp<(t-H(7`Rmh{mzS!;Y;G}6_lriv|GH;<8+E+Fzp+8t*)yVrF?VANaBg7yMRj} -R*{+m-q0q77yk#QP*LK@yL4Cn%Q$Sxqe-8f!`U)<9{F=q$edH3Wi$8HM;=0JrP29{I#)}QO{5H_mhLX -Fe2Q0O*7uBxWI)I*v9?T(C5rFL4O!%cdh214);I}R}0aUGP{?PjuP)h>@6aWAK2ms(pnpSodM<1XD00 -40q0012T003}la4%nWWo~3|axZXsXKiI}baO9rba`xLE^v93SZ#0HHW2>qUqQquWN)tFIBilG=!dlFw -gOvMG}(v22ozbOWG=MmQFI)m=zja|NJ^w${1P>&P2Y3R@s5v9q|VOHdIYZZE?d!D72`tfIMqM>SG#)p -w+~UlVxlobEdHUf8XLnb7VDj4*;38O$MP$gP9~SHr<3WFEOtaKDfw!{5JjWah!m8P>%Z=P`}5oF*wAn -m)4ZTF^5OQz*nj{0@za;vPb3wRBveI=7vtU;OuLs#u_9}>9*0jfPlOy-NhtA1bHY|@Ar-m9!HC@6U4O -Z`{&o}I{r&aRZLilSH#ChlT#;3@Ub8$SA|+8?u;=Gzq6GQ&>jx4GE+m8t@ppic_vE{tXP+dIeAHh9v@ -LiPKL#@rO!O6uoJrCI4OeN?kV#5&J${_owj8-?syQm6Qw`4Nfp -@qK1f7a3`xsa=fdvW!WR*AmVS8ZY%VAD-o=^C?_beeVnTmD+s3dL!4oGMBaX5pZks(yj~b8@UmIQCy|IF3ouvIkYcApVljilc5i&mBp8$4|3XT>9JNrzdl -ZqJ|x}5%YsF9RA;d^^52bMMT4+aw@R08fYPjKs-S96cB)~o*Nb^n6yz40^&ikU2Wq#b!`~yHp<7t8EX?8;#e|;>A*n%Y{NLgfdT{qK>oEu(rAOxra#wL -9fDLO1c&)sz?nKefF~`!@;i@$yKf$Nm5vrTtmCu=abnv1c&JTpzRE#SS`ez&+c1h;NUbL0BVR7mu&)X -27qdrDQ{3*9HW>|?#WMNN`BUZbAK?^gI*Ln9bi5LAyFegDy`ixt& -LS`x`|i0wSt=I1_gsm(@p!G_zUVaSD%a>1f+q)&3Ga&Be4@bI -u$to1EH8@6i^%BCB$i*?jcZUe~HLuEhvagau_n5N}R_IM`2dH5o_=LJg4Pp*EIsMgZQ3|=?&|U9^mAT -qT0c?@^BYbdFu<}RPJvm=ycWnAe*?Cl|Cti|tW9Ry#n|&XnKVSXX9nbEnn-Lb7OY2Q7aA`R)F-No~H4 -E4mV?S?wdDHm94sto3?OXpY(7SEu2lIB -rKENH%V+;Rd9t3svBvWP9vSm`{5qEX(`S0ulC|i$7tf;?ZsD%Y@DiLs~R<+H*~-st~+p6D0|amXYg8r -)dK>wrO{D}T061F&W3Nb8;?u7rbTJ#K9m?m5;)zhji!P2@I6oSkr&__vBuye^sK&v -1u!57d9>1>++T|I$KO^Fa%7}9~B*%}L#K*h6O$HASxQ-7GWJO^Wh?4NX+1;BbpYsUI8#L(Kmr@n|l4V -Q%Mx_-%BPw%)B90ve-b5tdtQHgxQn~Wn(G(h!BPh3|odlh;@M*fT@=|xK#hS(};-^l}!o580i`avNN2 -goT?p=)7i=fvZ^~7?fn1Dr1b#qSG6H7J_+9(%wUzoSut>b8)Tq`BnVxy>b=Jc7$!f?`r;K><;U%o^il -g}x>^s%l=kUP17!!f>SH?QdJ5vo{mJC!$<<7baW7^UMzP=liyCrzyU#=*0+QdvI%Ck+B(bu{v -DT}SMJ?ZEXFqr!!v;ji;9P>>=AxV97@BI%@O9KQH000080N_fRRwEy(n0f~Q04Nv$0384T0B~t=FJE? -LZe(wAFK~HhZDnqBb1!snYh`XOaCxm*OK;;i629wK5a|Q$S&z_@!yXKD19|nNvFRj;y*pSm8V)VdGS? -C*h*T0|G4tD}ill5&rZSiDAvURx#d>`8P|nWI5(1xkUsPNgof@^{(r*0`d=k5N$+XCb#SpWvxh72J#B -4dy27a+7cMo;y@bgU7`$iO7GbdNwPjde8<3E2s|9E~*)_Z&S(cexCXVr{o&dJ5Um$wg3i`0oJMFv9oo -Lnxh-SfMzS2y>I8?sRi$+=;oggei`nk30erZrhDQIRDmIWcWr^6A_e${M(dd?NQsa;Id@H$>N^FcZzo -jmP0<-EIK*{l{TLs+_|P!VY_{TTycNL}>UnR`OAZ7nHKP<}#lka2h=HLh&ng+VvGk8~(x@%_ql04L5B -g@!?Vb)k;WVRx4}5jQqr!Lia5B0OE<{9K%C0R+dD!HE+`H*a3*gQ{ApzaM4r)H}|f|lmur>eYom{mA# -9+Zukh@0S^fTXc8EVvL|>95%xk5i!ocRkWK*>VBhB@mo79v$ftq#1KkSXfica9YGPxf<5luMzkmFZ3h -)IuV=@hc=1sBWNe{xsx-~qw;m8jD3Lfk6&U)b=1Z|y7r#&BANk4C+8GrYzC= -zFE%b?1`PKvAnLMJ=tin9ek%=pjm{unmj!e@gfOgiNUSr*c1#<(6y61&I|Q!wS)GWLvGYqu&~qLKY=A -O6nMK`j_OK*S(8oq~ewOyRS>E6T;YmsUOIq=9vJ#^a@_GzZYl#<-Incaj^Ov6>$ -axMgzFG~nUGCa&N*E81+CA-UpOQUl7DN)~8_*+R0E{Eb64@w7AsN3d(kO)~}O$Rvop*MREr=HQEP=nng}4YRWVxvv$Nt_I;VZ32mI8)-2n-LgUuprmBVztOc~feM(wLD=!gw<^_O9UeiE -{u1*F(Z;ZC~f)KY#u_lsci#t?9LD*CnUNQW+364N&h33=g -{ajLP-ldspD_urtX1)Gp+0u3&w5ob(%8Erm> -Bxx@$xV|`l;r)fm{P6Dx`=`-Mj_OrFVrt;v21r7Zyl+OJ!#K?1@cY<(qG0;!ajqAQ3Zz_ -T9TFSVI|}lq@krZx-a)=~w)j3X2BkYM(Bq)iTZRtpr@L$byyg(&#%>anG6|tP|Oy?d{?!8cVIwCH;=;qQ>9VP1nFI!O>5u+NF>j*GnI$hU&;1%XmoM -ti$fbsZQpy~r5e#*A{h%tE|cq0w;so33AiU9bQ@p{My59EE|7o0+3H~?;9!1Nm{L>9PbQ}uz5jeOD^9GM{7^#@UCfIvq)+oF7G6|wmM!)wU_8ekc-Vmyu~DH76LC}I5Q&K4Y5?OL*Uh -xMT1QbHN2aCcquBhYgnZ6asX6WoIN@p0^2w#^mzyz>o-*M5O~WQo=2{ydK&`2N-(5WCy}IDgut<6p!z -KYKJkLbBh!Syg?*=t8S~2kxUbfy8X{01ioG2m$JuizDHfMrMk_et)*-bQUk;5G!J!; -6Tjv=UKZdZ)s)prQ@6aWAK2ms(pnpS!!d_cBL007 -hW001EX003}la4%nWWo~3|axZXsXKiI}baO9tZfSFLa%pa7E^vA6y=$``$C2mvo}c1avI4-aKvz{)-( -<`7SUcgJ2#uC897Q-p$Z%ar?2rHh07sD5yPw@vzwF9-4tXe%6h+O<3W$?km+b1gKXv(M=8t~#qxbIGz -t4aF@n_}b+c)oj@$$u+x36Ek{FvbX_LYC{5&j`8Z|+{zyYT6!cfWr5BE8DxE`1VShxE3*mYBO#UcU`5 -Uf!kfwtW2R_3z*3-n?7mj+%=XfiKpRr;dQzDG`#%yi|}!I^ZwmGeDU(`?W?=j<>T_ -Qylx4-FIo7zmv26Q@w%lHf6sT{{{Hjw=6QNuI?Lz3zpJlbeRlWulXCa>uU@?De|Mk1e)XSAdV9V9v-I -lo-@ktG@h5M8cK3_nymQ8EPn~hDC)?lt;HsFrw~tlEs6|zY3i;U=X6p?7v -36=xr@2S$rZ##M_v{OMnDXq4mf!f4NA1)FJdT*n;MqKM6HjBSrFL5D`IJX|_G@E|wI=4_N|!69&=MKW -MO@kL%Tsj*T&4Sl%U$m@=T6yPQnoM5vL8=*oShyNayb@gg!V!%p%u@pi|KUTpYk|5JtCf?SIBx2pGa{ -{y%Dj}A}lTzi$6+G7q^p7Nl^7wDP@S~HZOjaQBnPh6q$V(z6l4-d -^xdGzm}r^Ry;A9_`s(Lxs@Nac({JiT7dL|M+XK~M1nXvLF>$%lA&C-br52`Z#nVGhPXJv2&CXAYK}1> -18LT+dlpEEL{lhmx_dL};&y;K_LK8}t-UfKnG><%_Em&jIDlRdTfT?1i1S4hPIsT%g7RRTZeJKvjiEt -khAUjslevsFjf9v-FCPrBoS@)JLE`LX`~Fo}oysL~11(+AC5kQEDYpE0J1>)JmjQqSQyEKBA|gA~g}E -CL%Qvr6%IKLJ#rq&dOIdG8UWdL -iq77r>`-xIYEk4_!V^OvZrB=wV)KB$skp+rcHq}4-rXp|t5k{U_WNZK -h<+F_#-5|xnX6^Z_kq(F)OkSIx_BuPq=GF*8V4~ft#lJts1c~Uh{>LXFAOs~k4EmO8kK{5r&D|yRnpU -AT0I+N=xQ(UGUGwqm9zMfCsj1HQhKBp+2-cNES;oR#X7fGIM=PI7cw`B4w^y#wjep&kaM -dq-=AS=whiq#5Z!QBsR!DpqQ;&5Vtvg^t+f!A?C%r@r{G>7b?(A8oT1o=A*z-b6u?R5(+S&9x^}r7uSFORLeFp=}x7az7JXr>f3i-$LuWZJ_*iKwhR`+Voj-hWWrW9jr -Df_~Z_c#G%0Hw>%j>r8!T&6+Da7_Q1mrP~WF*$*t7!@+tcFeQY839>zMr&-u~J%y8*sXa=k45+{;4`(7sm>JP+ -aQ2A6%+?-w=xl^3Ghp}5&gwFjQUH)FxWNDcJDyoX+ -z_P|4ZwnylcCeF;DH88cc2OdgTnO~}8t+McJ^bk+#w6DY)%}{tfOnp^SV{)+e4M-cqy@}hSbLCS!edW -{!G%4mn48JYy!Tylxygl&rWlb&H4oyVJF0v28)@L(8we-DYuhO=m?6uhXv4tMuIXlgKzh+{x#AJ!d;$ -df6cBmxNM{c7V0B3_2qR2?i$$FvBNn6tr=V0_J13$#cSZAfrq|xCXGHdF -jx&t8dxH2sxGH~(w|xk -uQ~Q1XkgI5tZDi@()6m+}14lNGRo^+QMh6XyT8cv(_^6AzW`=6GT&LBFJMH++xoEwg`tj3i>ZdmK8MWm7nBj8e$(i -lt>SqPRrS%%jcqdqmw#RTSn&EzKFkEp4j=XVTFq|WAVV!~6R6!4;+MZtn%gj+3HNzA?oP#sYEX8HyGt -NE{*OAYt2VBjmfv3~JQ(vEhH3kiwZ5j3JX%;hS6QrmgN?Ibep2Io1T%O}0>v+hst&7%D*|mEW{d%3RS -AD&%`npc6c21aWJlWyWG1i=AxRTSrl+-m}Pnu>qHLz%44H~FlZ#$yl@}mixQ=|78xNG42q)x5Y7BgIZ -FFc$h+O;3m%e9Q^vN{L1o!+jlQ(dFr?o^jfa?PnPm#BeSS~p9pb9Gz2d3B9`)SM&r#aa#2{4Q=}Xj!b -fG@T_3m)Bx1epA;u11D#hfts~-etXr|*JB2b7GHEyZq8L*vpk!oxz8+V9r!h>e_-vZ+Wzu1|+^v|ya8^QfaHrfpR^az&l`vH)@V+vu4M*#b?r0oP?shYgSygir -SbAQ_HNBJ8lX7`<7!uRjRe>6OWItc1glp*9be6P4%b*O@BUf=fmwok*gYQ|Rm-a0e3YBH-PvuZNyOr{LirU`DE;5H -N7G{G$n*RG7aeq_(;(&{|)!{;o0(C-DU?VyZtG8RooXT735t{PpbG^YlhUIR}J3{?Z88Lp(RtS+6Ps! -mYV>N2=FHE`39>+D)>n4IP6<<;qFO>+)Tr=6iWHBcAA)p-qEod&KNxM@Ch(yLn@ZPuI`STsvp(Li1IS -6vNOZd!&@1G8pHhiE;FX8zC;9lDljP7T!2SP#woaZJub14Ge3{m?l-bn1srt*>*p8ofJp?KALHR~#;# -#_Jh0p{UtBqXwqQITji1cY4euRo5tTS}M-bJ6&6>T={Te)Uj(@_^XM!a|9l?JXPlvm`b>sy*sbK63bO -!r>)VpaO3q3cQNX68hEAIT*t(~)DdXw2-M71IoTXe0@;mAAWk4OuLMHVKi3aJN5fTPMm2TLEH7yw@8| -yh8+kt;yr27uv{Gd53xE2e7!EW$x@B;|28~hvm8~hvm8~i)`JN!HR;2k>1s#6NUZCzW4 -QUdPp?E&jSS-D4R4^jm;V^5+_z$g}&h&`!=z~=&K1egM81n%P71`tY0kk;8RSA+h(gH|NDK>@q;0OCB$OrlU^6V(3|q)$A(tQ>Y@t#LA1Gw9z|Vz2A7xNpsJu{Nt*};D>Bo -+K?C8gie(dPSj(+Uu$BusN=*NzJ?C8gie(dPSj(+Uu$Bur?jayrX!B0PS^kYXqcJyOMKX&wEM?ZG-W4 -C}jX&Xdnf>JU^w{>(|=Shj4>gcJCp6a}?0@iRR$c}zA)lqjA3fzu<#RWirfVu-uw{V?q7Fuk{g3!ynm -{;-eW(L6rT4SNH78+}zu@)L@p|KVkYoW0g8f&4k7HO=7W?E>b1sv8QaH0heo?plTm%qj{oIJzHGn_ob -$upch!^tz8Jj2OTU{8TP!^u-@5B$*Y@Kg4_!)_Fqjt7b889>~H8V}IOQ=^{2`igda4M2khb*U_Lphhi=dV8lY61fNQwFHJ%3anGb*;^0c -C-6+Nx!X+=*fdRo!bik?>Vw4$dKJ+0_zMPJ|tbL44CPgD8|KjY3b?mXkpGwxQ#-O9LI8Fwq=Ze`r9jJ -uU_w=(Wl#@))eTN!sN<8Ec#t&F>saknz=R>s}RxLX-_E8}iu+^vkem2tN+?pBbpX6-X*``rTKV8B@zZ -Z|of?!X&B8A~sTO+dTaqra2+QEgLO$9rTTp>2=1LxFhYe(B%$XwU_^LU-s1jnEA3A1vU8iiO|858$I% -_$~Y(TDYpU#li33ckny-9sK03IQYTalm-3;{ssO8{ssO8{sn#@IejnHDf}LOU?v4XRq^n9_(7bM75)| -e6@GA51)Nn`;a}kgkyAGKH~2UBH~2UBH~0Z8aRc3c2jJh~-{Ggy%MSkz{|-OkmU6&c0ARZc|M)CCJOQQmiiV_0?3cy5r -5HI+>N>vMBp*Q|cmK_dGmp4jO@d><8!uFxHNLWL(oK~$aapYWgXgTP8B{3r -Y;{Gg>$fIq+=;0Heia<@_V1N0tEq5cXLTWEtm9-RCFxZG#mM!|mdnKo>F&TMpnuFxHNLL*c-fmf~Yukf$%ukf$%g -J#-R_*eKh_&4}B_&4}B_&4}B_zyS_I1e}vI1e}vI1k|@Lw^MPTV;hAZIAD7m&;U(PqN&}T+TE$$o!Z?Gc)A=z*s0O|1dFy)r8`x+Q>D99>B%=w5)H -f%NHoA7;1BQzf#4Ay36F&LrAvrR6rta>bgY_qC}-To69r_(c|tTB=(0sXX5g;?;MO`0G>xAa0I3vn_obzU{x769MdMTjjjokMFm+NpEI4()DkCQW=>YCA6q -mzD8&&RXgIA>opbA1JSxvXYx9k-!*)#Jpxj^o_C9-5DJ9Gd1e&NQ>8sh4bd8wdV*bDHKhZaMQdYhfD) -q;i!II9b5NIFL2N~DFzURl81SCv+GgPR`o7FSUxsVddy8GKefE6@9*4TZ3>=x?!wgJLU490 -h>KX^-r&dil{n8JzKD)%u9KZhte7+HUeh1WbDv}1S&+3h`*G775>A#bW_8ryA@y^EPdn@dMTfcqQ1;v -o{*xB+h>daxG&O`gI>|_^OIA1Cvnb5bkc4rxJu$T@kQ_?P=ZE_7G15SDXpzheC@1o7x_I!ZLl$7Q7&S*};X)^!aSt7mQx{;+9Zcyd_|Gw9wx}?P=Ddc?R?l&cyiHD4 -YQt%Jzj$?tT83xuuH!3Ch5)Cxhn$@B7F^{3WG!?9Ik8x4-+gaRBs7r=+?XlbqqA+`dCkTV#I{QeTknm -n_f{mHoin!s{eg%lo8!HMj~f-aME0lcXATc%2|K3+JCY7&Cuee|+xi~jhh98L*&VX8JvP`xEbQPE?_e -3+9(@~p8j%v@$mv9;??hzp6hXCb2XpreBQ0TzvNtANNKJ1L( -(+&7^BR|$AQqJfuDMVtVoRM-yDQ8?na1mKQkpYXVcqC1lIPM~G$cs|Ucp$zgGGLJw1_{|8i2upKay(% ->$>w=6_s$!GWD{AjC{kiEz#N2)YKT-olF}whn~X^9QQ9N}B2n7pE}23RFhr0~dTQ#+9h0Qnvpq72{+g -sTiT;|TG>OtADNUl$Qn*A27pS}wMZ{3#1$%c$(oXCQ+6sp;o|qT16d+T8ECt9EAWH!VxvJkJuxSralKI+C0;(}_?VM34af1J6X7$*(UX&74A-lsQ74`idWffg+9l%USSl}3uAm -k8pmvbLBfdX;t5{P)DCU!o$ONFz1u)E}K=fG@7{_K!s4vzu^k9^v};^+|OqxaiJk#{@-F@3VJhnxW&o -Lile&kmYzRGRAKVDXgWrL#};_LMYFPV!Dk;NHpE4!%W`&6FFp*UCt7diOCX^SzY#RW?Ob9WZPsVdJ=T9L=6(um(mM|?yd -j!0xTStEmjth2~_i*Al!~=w7e&*GvoWgWqLIptE9+8+#46BDKY6ohECU=oOWd4vqt)dE`JtAUycuJqq8YQ*Tm( -aB$$JidS&63lezL%?VdR{pluW~wGIS_9&h=+Hw#AISbbg|0`%gK)dQ@T?H^AzA^%z*VZm!2V+f#GYeG -y}7`RJO%<4P57kRt-F6pbAX68R*WDPdBBC+(4(9WoCY{CkryoD&$B$iw<7UkrDxY|i88{9Zo6FC@k>-?%FsIc(Hv@;{fH~)f&LKI{TxAB1)(B>FfME -5Vw)IrkIs;Yw%}${%h@K?Wkd%ssBIRjN@#>JU> -RuM8YMXroWY#DvM?+=DcbG!_gb#rN!mPI)iHv<=S%?~Y8LT%)DS@rGpMlx(vm!Ea$RhG?92|%yHYJS$ -CiWOV0C&SITs!K(`<~wT`HM8o)MRSf8nvg-{I$|K -mYICYJ5g4SDDRRk;?i@LTMIBGp;KbbRz?Mkl1H3xEY&OmMGx@gvvv9NOe*ibBnVvQe2SGv%yQLM -+chX6;7VPdTfZkV+7?UCInR)HMaRw7hvp3AT)%gf=`!pj*!C9XGp?TgUP7GCA9i`c(;jc1^#H9 -B;FEw=jO$wlI&R!$ACRAnmRQyz=?Umo-5ZktyrUq -8yezg;e!XFH(Z50}@#;}YF!uCcW1fPOn%!Os$H;S`#Vnlmv65-LyM*|3$W5AK@RsrCplm2k -`tYt;sFj;gLpX7si<+PNt7m~p7Iwx<-d9Qn`iI(to*K(>s|i|ddG>f<*NN-@(uAWM3zB3crKj!SCSbu(v_A{>Hr2N!JR=D>2@W97QXa#v_Y8>2-x9V%e@LtyxVOGjs(MJ -c1@HpB*bh4XO>I@qE)&&th+1s>dHWIP;?Tkyd)ig-ihTTw9fq=;rc3lP|%8P9?Mw%m4Gt|2YgkQM~61 -p#b909)yZg)oW7ey^ujKn#}~OZTevM*Xv2lmmi7RdfY8 -K((8Q8Si{@KszJ=ynXugH!TWG$8=38jKMQ{!@9Qp+trK2x2+``$S@lKHU1`6(+G3XhCo-ybdgPt+y8H -1jR@Kl6n40@`=@9=}F@QAbc9e%FpJT=2{Y@>v8LFW-;@r*Lh^_ORmd9EBiSB@Tu7S9m#3^C6T^C+kE- -0gX89X%t=2l%;v@?1-MuEjmVEuMkp0S9=7myhtvwUh@);sFYHekVNR&Li{U`L*y#@br8DnHNvPd1PKZ -&F5)8PxE=2&(nOK=JPb4r};e1=V?Aq^Ld)jBkSV1dh|4L$&B1987{L7_*( -!Qw358a>#R3P{X+An?zcVorEZ{g=Yr&#zc{1$#Lin^F`r|>)Y9s -CY{E*Xo1-@(7Yzrer1zrer1k3Pt%}W8r?Upy;un= -&=hQcMAUoKewD^gCC?(;To=N@N)~-myDglzr)XkTiM~?;YWuiI%O^Q$CmqJi%MC`^|9sp*rHLkQTR{z -Pxw#xPr|t&D}nGpcpx3F^9t8_Xqasjey&POgddD|iSS4G=_rNuSmEllaCKS|{9wKXmsJw{34T^?CBdK -J&+upXxneCD{tQ3YlO@An;73V&DexEg3;bN07Vhmzfxp7f^0ELSFBN|7R11PAoY-5m?AdB$p^1!0mD} -8k7zkRP`hytJJ6gH+u3kJ`PFLhFD)JX~l@ORVVcKK`D;~rWM2la0;E}84iaF#1o-VXSq;wEM6V*ppBjqM7#qOkFHMEr;Vc59+^*Pp3VxAT>#n12~OTX(N3CBh -@ZFwO&gf+4a_$xhF#ZM(5Zt059i*>fg@>@2*KhXAnp$k_Xmjk0|?&1M^E@q_)qw`YfUHor~yp^**oD6 -@CWz<{9MNZOlcJU06#agDZ(G&kMMIznx40?8pW)B&bD^6u{2Bf -Xe}=!nU*Ip)XaPmf9Ubt=M#b%+8}xt%DA+>Jt?CN@3jYfK3jYc}sOD{jA9bPI2LA^C2LA^C2LA^C2LA -!)0p|hd0Vin1?SS(TPEtPMKjA;&KjA;&KS6?XdAs+H+vo-b`{*PV3^-Sf`vT_z=K|*f=K|*f=K?1+wo -_v}HMUb@J2kdbV;C_AJ2kdbV>>mrQ)4?dwo_v}HMUb@J2kdbV>>mrQ)4?dwo_v}H3ll9QTTVj&WL>vP4Bq1tvr$To`3idaIB -_++A_vePugb6PiABNH*6w12v&A6N;*UC(mpaRbOK?o2yYpH)bljF{%+qZ*lXg;P7>V!&j@CbrvnXE2i)2&f~)K@}{WiKNIhW`GJ$uuT#tqoX8cQ92*292wJhS;l*BuAX_iP8w9Z(3i5hL0$>&7 -s1al;hA((MdcGLhSx2$Z63KEz#X^i1Ruo8S5?d6=K}W&!NAem479Hhd|~pCx>G!$=|uGNB)8`xY-E~C^8V<{-T+K9kmmqCGi>k%avruzg@0c(x~XviPPF`shtC5H -wn>f2_%eF!-4dipcvZ&$XEnib@X$FaAG{CJ@6oAcE$_J1>#FIv12c&QPG_)7%Gv -!0|MWu$XT%d2#C)Ge$m5@yWkd`<^d#FsK|^V{@5PKXB1I@UeJkN1aAc%tJjtMP8z-8G-mvannPXluG+ -*IxX(bn*&jNryH-%WkoWWIUhnJU%_Y7nk&SxOZO0UC-Bi2j^sdv*OKqo@+D^66x_PtcimGBY^CH~Li} -0yUb*N9Wi=Wz5^)`8#_uGrt8+X;T)|~V9d|YKO+x+B!_EZAzDmYb8K+-&>po&nnD*Ap*T=}@Uu~ucIDyP((%6X35mZ`D0p9J9As$L~-b==5htGeT -|9lGP1OIK&D3i=|UT#E!RN6;R92Z3Fo$zq>_&6_D=zk^Y}iJ0gnNvH`oku_RG!wNqZ?SXa;Ilo>3@UQ -$(uku5^@VDNZTQC-yUKCj~~d5W6=$;YI__|k)lE+33zj}i{cn|No -JROmYvhyyp!DegmuU{8 -_R*yiNR#zYV!@SU!IdbYnA&L%5f73T8_CN-PX5$l_^%10%Z!6`EZtR-}MPUb!Uki0vfV -QZ;*&1uKeIzR^d5e2~(R -eK;7jmTrb99!6`{Bl+i{6MY)*@Odu68TYS4}#LQ$VVY?g3$oB6|pIEESQC=%NK8n^VztRf`jkny0XJpxj+iwEaHq&+KaL!>DnbU=)FECIVY6_XO2)+GU -1^OV6l`0xyj!Nbj~nHM)$1^0cy(C$d?UW*bH0we61@(a`T$qZ=5bI?9nO9NV7>eAXqdiPMNiR2cHaU| -QX0O*P*g6|64B-CBj%+M!&yBUUw9^I@kU1*_|LtB7-J)$E6J6OpWDDV%=Csg8)|RMQ%|gjN;fZF4no( -?tzb%t9_^+Ps(>CEYowSVr3&=@*wxqo)~@uHa#8nWkL{-LQF;>S)dhNFHtBSKSlMrt-RJRb}MOH7!}_ -2Gmc(DXMIwZIm={)&1+L8k+5@)|uCt=BjC~d2;5#xh8d?Xs4Qc`+%tD5n9o-GAdbCv-0M7OcI}=jtCe!AS4Fi -NJh9NJfZqULx?P;9T493J&4*?r7{y3ajUDFK4#8n5~WKJ6rDJlYcc8@NcK3wYzR5bOXWy{M9oE9_EjL -z!PCdhh3khQwho*eYwubsJA#l!Ld1vqYTmO -Je-@l4hLlEfrpvc#b8#$< -`XvSC~DksWkSnj#8a(1>V67h!v_8xfgwgDOi=sM8+Zvx}y`owe;D$_zOwu&3BsF1&Xq4M*~KewqRLH4wA4X(fTHWs~f7-4iQv7GHX1M%smYri8&=k)}SX^cLJ%kNB2aDi -50txl&98lS81j}4)oQED^HQFX=TUEUs$7deTL^rkx%s-&*QelPb86sx-RtYy -oI0(~G?S*8XJDRz^OiV|s@tY`UvrMYsIPBvyqI6*dQHms|K)}? -s9ram|Czn$Mo&+nydssDVvYd>7?T3>(HS2gdra63hX)+xGfM9WS@OS5#-_UNZSq8h6`L}7|tjsXwPa% -zQ!tTvQ6@~LbymyIp=!Zvvq!^J3}YGbrxSJ3LwD28}V2RAq)IuQ(-FA*B-51>T^d8uYpK06e_wFjHcT -{LR$q7}2BDlQh0>;?7fi(?2cX#QRtV5|kx`!rQ$qLw`>_QFIhds5>cM$M -R+sq)aMXpO15gl?U9Y%=GOe{+sah*7PAU02PRLA5ol9ZRe>vFSQ;SBq$esxP!EH7%M&F6XAkw^p^Y6^ -EeaHbsE8GM2-6UXEoqES9#Vrv@%+xaLUHxX@_LlGL_HNn`WTTzLj6XPlhlhNaFeaC3G^n-9Q5JnsV;z -4;C++Rm(KK;Qzjg2%1MZ1o4)43@se`G7UfvuAxCSplT4fJQywVvcc~5db6F@f<3-9cbaUd1XpKbG9pD -yW67c1UucPLz~*Ct>nOAUHQPE@`Cl`E`js`mo-nGJ^Sr{Wh#r%e)_cm7VJj{eZJ!I2B6{6fBhTnA6+` -&%%Q{7p~KXn!_=X}w9Qf$x~CGPpm`XyF=l-1 -BLET^6pUG-pbu^JRiKcbP`Gu2Q*4Aqtz`(nkb3};qE}VJ5_fGUp_1;_xm>MMdrrB -6>Zs-`S7e$y)*%F7RfXxJVEHltqKK6&=~4Cdo1CoN+SsF=UM(u>l)70UJ3kdYtHXY7Y|N)Y^4x!krSd -%0awnF-PvGJ-`xI0b8@G$}G|3l-OZCq0vn|2b76cw5ub$(dZ!_#)T!`Uh$#}Rit^}$TokEuPMWIr4OuUO|F -tSi`QMb7?o?Do4DBh+{RpX;te%4J_scQTCRCPb+yaJf2cN7(3g0B7M0hb8_uhA85>Vi-cisuYey)IQP -3Yw~$Ni)Ggs_Cd(7T3V2NGnxO)0RJaazD{O*6SI+%6wb9>(VhzSXENg)v!-#t?I_Gd0rsQ^ZI$d>GU+ -wDI&&CG?S_fZ=3k2uJMW=_9yK+^{%XWoGWeu`^sJ^Sdtu-Xhzv_PJ+AYsF7Wolnpf3m*8EX2ZGys)zA*2(*7^MJ})G(ih%P -6KsN&-#;9XpvPYZx!Cc!orS)1<;O-uFxIIdJ@wVCwVwAO>ttH;$#zkVw&Q_G{u=^70Rl$$|{L96p}_r -@j0aU9E-s=$IHH|Yr1~Mg38quiDL8@wpCP-#S}-df+aqy;D#crC2%>cwZz -WP&O%+pF`c=N9}YCi@e{DI81C!ODrQjHgNeAvq&{v*+a|5AML+x}*;4)A|4+-^(f(>%ar*X$6gArA3> -r+06J(47_UuH}y2IR*1KZ_91-GlRUd3n_`V89xvoYWwY82};n9r#xiwBvuEFR3?)FK{i+f*_1R4dJlq -V>gyREiw2?pCCF#N))+1DEPM5<`(@iCmP|n5Ygm8I?^&YwT-}y6AaGbM_tQhp4Il_y5b&|Mma-Z>@4t -tC+SvZ&Tm9ODcP#DFq3~P&0k6(iTsSff(fcie17X9yVsEf^hs0^anC^9>F|O7mwP4Mn$xaagK@theg0 -fk-tOK%qEet!+r`D{2UhioaOk=(I9S-wc*k$$8qfD7HZNh7;{aGtk`Z@S@X06rp9pYOZ>? -mC~j7EM?j)jkK0J66|K$=E2j?4a{a+*K=RgM=hUHgrBN}|#O}z-P6NxO4$Gwu%cTy>r4H39&dMPXI#e -9`Q5qG~PhLzv$$_(Q9Wr9&L>~)FqFbarU_)cBL#s%mUOap_?BXHKP-Ot)5nvQLK^!_k8kG-V%Sa%;?X -g2;&{`ScPDVIC_)f+)Mx+)50^4|J5dgl*$a -}d0y~!9!Om90rmKC>C#ra~!8z1uS6k_Hqql=w{wMqM -+v50`BwnLhnw3Zi$8w>Ann4b45Pwk*vD-9zOtPVh7Av&*!;0&8n)hxm0q~4rN}=H9-oBGMKt5vsIYEt -b=UzN5W3QPdgN4=BcbQyK$%2TqAQ6X_c3Oi^)?@Th`l_9G1DU7}$~=rsP4`6$7D=y{w80bC{@%aOiSz -NPE;-bJYx-P&La8JjZg%gc&$=JGP%|wN`G_$hb)}P>qb6JOf7)RjV3Zs~v`$>QswYt>)8~X&io>G*mZ -VcVov^ou7f@cB;B{2CjCvwi!5%H0o@ax(u<>IxkymKSaG;Wd@F=NZslT9QW#VDz2>izya3%n1OlZbM} -CG3{}qcn8iE>Qm7uYM8`PGs8gqJJr3nOXW)R~)G6QEoN7mYe&`%q`g+d#><7TZHSNd`?XJxg)HQ9~2Q -^|JXF@~#sm@!+=2Xr+1IIY1^M1dp0&fej-&_~;tv?*y`?-4i_5E+yY2USVSznN#ia-=p_6M76ex(ez! -7ZY_^6o``o?g9t`{Lyn<-*_m&C}mJ$3QzKjMnQAKYUrU+_2jIElpot5K+T?U?6#tl2mH?l+ikoyKP$9tm`=rX=_YoYhM2patXLr(WZkS?oE0&2PpISt!Q;<+b@bSr#x--J^ -Sx`dA|<4u>@CW*PR7`OT61J-@pb3 -XfAIu?haQM29e7_G#4Wh>o@xlS^CjYgqs -N6t@*FoTG*}RrQ$35G5b9`V)yhlE+VbBU>N>8Sr{8Y*IxLCEsP=VIV_Cf85YKn;QV?EWA~&&FLPs;)a -MRO5(I|h9uEATJm@Vbe3&S^XO--anIId|qxV#!;JF~?-^MtZBGJ*HGAxxLWjZXCUGk-Ph8QWHuL9P^H -tmA~refCY9-#dpaZ=HLa+x&~q0f6z_shl^W^d)U$D&j352*TlP-;{}K;=947@1`K1saj1eXF-I$O;Wb177mm`kCeB!Jv&t-{6y=2xMOUvCo -lk4eJb*VHKI&X!~0OF5&QdjApSjDTpYfM`@7BOXtT=kR*~)zKk%Pe-F%%cS*E*odc~b`T_$LywM=_H~ -)V^~~XVMlIxh<93_Chp3|;)WqGFWQfIj-IqZ4^{aN6FGPO&s$IM(cRUR>*RR^jyR0_XKbOh8FIma!xT -AGg$wOD-WhGAxV^os*E7tNZN$Sf$o -~Tp0Zy--R=uSFWj17^R%Ua$&n|PPpw0K0H(yg$~u!%R!;NiJ%)K2s+3EQP{Nu;esbox)WZ6_s-tK3qH -W$g`lY*Fx{nw!LvpWPP``X21zNeo4(vUhBc9m*ZRpTkC80yvT67WW$)%;Wy|YlPDO5O%!mfH-zQ96KN -mu06^wCisAR?1GOI+j~>)>YlnvVCbL*BnTw(Fx2;N%^cr@qDD7T|KHeJ-;I8NKWev6#g}eP^l9LqW}@ -#Qk*IsRM>Wj{#q1tbNb1#2mGLU5v;NiWpZQCf{ZpvtH&-?BUCaXh5v3I0qt!q~to~3|10T|{E2=jyr? -%@o`+_6$4@skb8>53asyRmBtwN3m#aeH)bf|8J2Q3jkEC73>rDN*ecu*?VPl)bRa(HXLaDsWK4#XKfE -fqebrQ@E=?RT(b_>k(3AIzqqssnjYNcf(P5Y@%_7q)(QqssBSD1DqJ6IK1=t?@+t_%~N|a${z3T2y>c -ym~4)xiPr-fNjMG<*;uJF5c)end%{L)Rx>>VN`V^H&z&@UXp2r@j)r?8`F%cnB-y6?}zL)-l{NB#Uu| -4iQiauRHYiX3c^)#{GPeT5&f_>k{SJ=X-CyD@~4`1d{8gRwDS0nsQZJaAHPO#iB35;+DN{ek;w0&w?w -s-JSd$1-E2%wjh*xL8x1HoYCQGz2ebg(H%xhz?Q0BE-V>l7t{===?f(wGX&ebNLylsQCw!r2HGy(e#jI+=mr6-57)zE4nW!jk#QZHLUw -r!@5R$@DFQP7uN#{#X7X{&D-$$?PVJGOQ6Q@3(zPkg1#}J@!21=)%izZjo${z`1P>F3yBDXa3B#uo@@ -eHP*`H8A}P0FDpIb?%?3VXs}F$_p#VpAvN<4%pg0ClkrxrhG`lEix7)Goa0Z3<2^P_SnMqDK5*0+mKym=C@ll=cAhO!EB@oJ@W;s@O}q;9^eH;G;9<0*ztS$Oyv -A04p&VH!`B;-C&m02vP|(b^V?O531Qw`}E%r={z`wAaCHAhEDlD_K71_vv>k>m?5kVE1C2iMi*VUC?cCj#Zb>X@kAg>F`g@U9co$1@*x{ -#r6j|3IPL}EdpuHxwh86dA=_PKlhO@h3>4$<|m1hG{_y_1;T{r2!J5w86~;agvW*gC%rV(VW%NDIK#M -lbj>VyoPMv`!FPL1OsMw?u3iF@Pav?hGI;bH$+E3fb~-U_AFrz%G(LuxfD#9_j%s*8vpkG-CSBtvA3f -OyzzF*mar9a{}zTL3Cm7O5~3M+Nr}?CCz(SFHHI>)(a39YT4Q&K7jRtiUO_xt}9|5BZ|Qd%+-b{b~z# --FfrHn2hd^R79Hk)Aat1fvtz)ZfTR9}A;G>is_Pz*>mdl&i5NUX>c0~_*EdITeMjup0HyqJ*sZ_9wEh -*qw1!KC$G;m4>wCmmjS=xL9cMLa>03amR2QBx({hobh0HMn)pqBD=qWp2SLGNTt1?`-Kq$3#bOVICF# -)U5Q=i}sI_kTipA;AJ!(pECz#sgjkxUPPl5U_#YG3vSV5C4dKOs*ysG}QLk@g9%SAGv-jc#E@L)XWB1 -d*C9xPD)tzW_a0X!cN{sEjH@U0JCK!t~IeF*1={{-cW9}@c;Qv1#4&^M2M``&v$zWYDR%knzBE% -~m#e)ZYi7cXDr@HX68`@VVKy!T!%^)9{oEWUVI9{;=W`r|iGe)is7`}exM{o?h@yGM`S|Ie>pynOuer ->|o8^v&ZZAGPZE?OlEK`mQ^1G`J`{SdZ{g%+4L}MCB2)Gq -ul~6_Zjn#EU5>5Ig@9Ye};(9vm)BX9;Q~TSG>~A|?`sDTFSFdw>>#2Qm|DEgOow; -S;@p#Yt_NRC0$vw{U>6`N4yYGk3KQAxy|M7k@zkg9a&3EAsd` -LJR{p8KlpS*c=_mjKFJ^9`^Eyd^0Uxv@h^XEO`N6(*s7GAu3{`}F`H_eOBK7aN4ZSTbCRW7|Fzejj$@ -AC1h*Dp%%W&h=of}UDZAGO+hbgSTvu>UIW{qDuvPwrl|N_hPId4173$@3?7;muwBd={aU8Y~CS -JWp4USS4`f!RA-#c-ABUDZ>#D3tA>96_@*bd29TcEtKYoKZS8o!>3)3oA4B@5ySK0I!au)yk*_?yc=_ -?&+fQD+x$#nuZ$Bxm)k-S42YvG5<4?Yn*qbk2zkc;`%g9gr*J7g&|)n5p0gn$0}{d?~uQE -UF_?%&^~n=Upp-m0e6ipxF4H9`|qLdugb7wB)_r0{uZpZd7GyZfxX4Sig{`37H|UF`ig_c_`G^1bH~;XDOatBbi~sbifBd^&{rYd)lvnQFd|uLv@ab*m{o+lZr(3&! -7T%^$TCLoq_9C|q^P;{euix}yfAIUapS*f`x4eJboay}+ZzkX4FO`0N=%bq<^4kaU-jaI!C{O`UzEzS -s$Zk{pnxWRlHQzOJ{4nN$3mHVc&ecz*p$+4|>zipcAy;{Gqd%yIwWcyfPY)vv -ets-^Ig@a*NYm&{tUbW8WiO^&XgwXf#p9>@44yQ%X(z@RnwpS;l`-O -dkJ^z$~;zIpNLZ=1QY-O00;o!N}5&*hqrUp3jhF?BLDy#0001RX>c!Jc4cm4Z -*nhid1q~9Zgg`mb#!TLE^v9x8fkOe#`QaY#YT<`Kqf&-Nz;_Iq;Yg4nktsZmXfw2O)r53i3q?Vy9<$Q --TwBzx4XDVicyYcO3#SE9`C;Cy}i8-flt1gr7Tm@FI1f9mH#w99ldl5d$C%PsK^2p^Gy0?eHie3CF0p -!4asTwNDc>sFM5ZA!$UG%5jAJzjm1F}qiL5&#>lJNn{Te)zVi*3Bo0_6*^qqo?#%38U7nu5es@kHE=b -4}jT6AR2Q+u$H0MGQ!8(!PDTz6;D>rPZF0a2AG|!pnbUHEznkP9`^NC>O2yXZRPxClou5j-9qY)W9UM -J*%TIFn#aDHFpTTVKTrt#$`XV<4Ue}8j6k}q7nLhfkqpRaoVn2hbip!etTzS(k5h6E1kXY!2j9HmAR5 -@+O_n{TiFxB~!OGrN0t@At<0d)|q8_3WMZ$K(Cu4v^JFI?t|eUR_<0kNEuU?bXfY)#dAR^ZMQS+pn(Q -oqHWcXIuDs>H05DJa;7h{S)ux82-NO!^*MKHHg+eaQE`-*Vk{)PhY*W2)5$(I?FVfge*w5;2g>Qm!lI -npt%?!G7Z=Rbp;8PlAPk-*IZrjA`9K`Xi~6qA-M2{nkuk>w=|Y4BymJ|#t4tJg&FPD_DRAx%p66cI13 -3SDOJHd&Spd-@wFXUgx6X%8i#wn448hk*m5`k2SXN-8B>#B&cRM6piI{&RCZCb8BJN2&?Mmt7Iwi}BU -&Wt=rxenB^eiKKqWi6powG_u2cevIkI*keSq#(kSqYBZ(y?oF|71b-8Te~VZ* -y7vKa@M|PC?d}#NeijSl$BC`E*}R}7lqgs~LJI_mW_=z-piJWKxL?b+(t+3Ds%>~^X0CI9iU*ANg$VJRXU?XeZeVjar~% -&1IR4dCYfwP+CM@k%7Fg3oc1ZL=8~gu@NNeKr2Osp`l_Zot^Iw0@0gu6VIqjykf;;s --{kri9IyFk1N)R%sZh6UMJHh2Ncp+6t0b{tPn!l)oVU!L5x5Wb6WVd|fxW-qrx9Z@Ne$ctDXSK>G#^+ -{J_5&vVP)z?wAbr>j9Tv#tZE2aS3rb4J4?&X~)mKUgkpJck8;GJ%tm$p-hfTog=#V(!NJ1zAE!7~C3n -eMFSIo{=~nkZwbqfDG5lQ^OWF0N=+#7mB1kvPWLDj(XM6w)F8c6^!0DldxlxH9++I#6qybNa;PBP$*n -ik}6PE)F{KuZ3=coRUANRzf{B=1y?8wF(}TcvX~@^5>BmtOc92#5D#9qc$kYX4Q^ZEOVj-Tl8wx5RewAMsDX0mfBu`p?1^H!+6}d?Zk`Ud|679v(-KN@v@HmWi&)JoDOWIj-zV#zpOTh-yM&;TNKOJ -YJgFlkw2LVi*#cTOzK~!%EGQJ6CeWZj7YXl*WoU+SIPCls6Q{$`=uN4?^3ey7Ptc}*dqV|e2gQUW?uQ -RfFLFM7AV4HO_ae^ml|rK%&!A0%wiH-_t(=JjcS3H>7d=G+AVOuiPkIcFcm@r0yv)Q(5Hj>$+K&k>6i -?Bwp?_Kt$*8E@ZZYQ|3tI)cY&NXWZ1GosxX@#f5Hk?qfB&gQjaSMr4AN#xh%Oixd~BOtXOua0^`N(pk -I0}7Sy3z`7AzUF_wI)J*tpe@wo}l?o%QCmKHwX}LxV$AI=ga0gyRBCxJzw9OXRaP|FKm~4gKzLINr>c -tq)MMgp?NQM6qm<({sG>UGHGL9_BBR|F!y4`@(v+VispwskmAy9;zQXz_M{GRaNY2QCXEkdOY@c+E~vT_C}Q?=r)UV;V`~H?Dza#F2FOed>b -4Px>jJ7Zz!=tIWtEDHz3Yjr3ra+`_?d+V7v;oRPobb!$X*3pu5dO$=~Ybl~593m3e8Zu5A?#QI6Mb@T-}@T&6~PuWT~ -vAiH9m+DOo$5*JP!I$_#k?)q#p}NJhJV3Iw|ME)oAt{@5ywDyJ7EetRJ8{XcDuXM4oX2F7W_Zu4-Bv?oUMbGg{z5VEIV?&+T`^2Tibfu*@*Ve8W6F7Of!bw7=yp+TKhw+KG -@8BEkbZ&2rfEf3pn3)%|xo&P>~G$WrCF>q)H#LYRxvRj^K28pvg&Fa{j-G_2Ojf -s|C$&pj6fEU`M6F;HI|nBRqn;y8@}UUjlraB*)X@C{Uf30C(x3u0Z21G#T8XJ0{~Ccb5gcJa0>a{J>X -R(7^J2jbzWF!KT9!Z`7| -(12YhWc!;BS!{db}334I1y}9Up`4>}$S*MODwCAYF4Ek2RUtPDp3^5?nx6z6)05F05P{N^kVGUdw6^I -Zb8svSDSpp4C);s7zOA`lkFoFeLNiBTY7EUWo>v5CqAS~lfp`zZG4QDNrj4oL0ZZmt|np9y#w3f#=It -)9TF#NQ3G_#gJAjzD-S!^YRa@TDKk}W*6540F)qS=@(ZL-oOSGxSzHfP!R&O>BvXua6lb)V(Mz6L#!1+!N{khB@jYp*&Mcpo<|y52)76PaCKId)Q;FeHD_NaFIL^PzlxPlE#dF -t2u2^0Rr($5E}!;UB;@d5Pz$#?re;GTbgWPYDUVY<` -l^)C@+#mPDkn;u%m|D7ILW`^4=NI2F6t^Y^jw%)w5;5_5_zYFjJloOE0MY2LBr$vP61LAzhs+jLrp@6aWAK2ms(pnpPwfyYsFe006?B001Ze003}la4%nWWo~3|axZXsXKiI}ba -O9eX>4?5a&s?VUukY>bYEXCaCyaDTX)>Jk$(5D;5sL#TN9;Mk}qTHP&vor+bAPjjwENC*p3>_Mt5_}C -fmGNl6Pl+R`QUy`DI%G$Y!Am1nlgYtdcX9NPMUZstN^w0B+yDeJg^W&CPNx^SYWW(yW$cr62we`MIT^ -z9{BRCZnXtYmw$@zKjee%8KGcvxyc>p44fPSCPo)(OfP>lhqp8);%%x945u)rc9Ts`Y?Lj{TdzY?cM+ -V!QR0^G`orFm5g4soJF-1>)oi5GJ5p-;``IH^NFb@OB0z_@-X`D{E2yga{Tz|%k!tvq9}nraG3$k+aT -$!biFCcIx6L@TZ^(-N1Jprx%?#ac~MTbDyWMOGLPD#=XD7p?gEEv^>#P5oQbM>S=7&pCI_ibH>&NlR37@9tXZa89WBy)erXUcVyCX!9XGLXljSqK3vV77>)~bfl`Ow$^o%$_%uuy -r8uoVl$UtU@@i=Rla5KvXq+)0>x#ukqI=&xK^=YH~J*92L37KQeHzGGcV0M%f67I>3USWJ<7y-HW$(L -VRYTn2IbYzNPAnB*P>2VieXJ*qS%I*RgN`X#4s3G32^~D9^e`@(T~PEyX~LwYP^G8Lcfpx<46;=y}^i -&MSQCZX~=t`B}-^5pJDQ?1|0(V_dWSmPI%avoPMI1kvS7?h@JP)INF9G(9h+CSeg(#HvjY%^gVP^neM -1sUZEeH%cvGh9X%4$OSD~Ik(f@PqAr>was$qHXdX{h6{?15bQq~fu8gupc8ouwFTk@!t(|?5iRBW!T~ -s|UlPJ0X&u=^5D23uhSJi4O!gTuP&70|T7k;@oeR67kdv^Th#Z&X^cdwsMr&^Th^yTRVJZ%M;OrlR<< -{(V65;+h*Jd6$|`*%7LFN-T^y`)&?5N)cyQWe=-p89~If6*66=Slb?z-AHO9X$3#|%*vK(dv7>z!eo*BCa)!=Bw#3zG40^!3w{rLAuh -M?G%@5AimIu=c4x(eDyH6>)M)agNFqSLqpIANYf~p}NCTx*MDI&ZUV-bEMRLem2SwyB3!`0)=cdq(Ri -oYM*fel$+t_e^vz`^%KxlYew4wXh!QPn`~1rL4qF3yU4sdHTcN!HaLl-$Ran8_?N& -7pMp&Mu_NoQMng27ZA~{dJydPY35KMS@c5ixqe}{C{0kb#@aq6$H;rx9#^AFHTg=khNC@WbZ{&Z<;!~ -T0y3JQ#3jo=wgJ}fby?X5JBqvp(>g(k)Y9hE>(*wz-X>B?Nlcv$4{OHB3uShLPa+dygHSu5M>k;sRE5 -yLeBT1fjBn<4k71*a5tTf(pEbo2q2J^wqSUX0f*P{lt()oMPiMHU3M*V6#duM1V-=PiEOhHBWe?e@ap -xR`nfaPM^OU+Gl(RtyahP00ZXx7`zhS90dtu-NMOKS8}JFbg-w-$4UGl>_iVuDpbYnIfU~>>_?EE*rb -JN~@W2M7MTn(`HsAx8tzS#R2AGtIA~0ZP1J;d0W($zmfIJA8+kopd1dujh69OcAtR2c#;So9^=3S*rz -qKaBT5I8w8Uu*6Hr!MR;2x7(mX9 -oG_Z(PqQzx3#nw0HFG9fTY%{Mj(250txN`G#ehqY%P(NejNhL_qmq*;hts!A;A0&mBB>=Q@BTE2ms~; -phj;n(z0d7QA3jGT?PR(7$-8#hI`S2JA0Hu5I`v`vZClvz> -p@`$Aan*P+qCIBEk(3PAoS-WAt0qNsr>C%Bg05(FAyndU)14hAt!4!zcEs9cP%r+2!c3JW|t?J4LARd -=H5g2fn0+!yaa!-)x{atbG)zUpdgnp8Wb)i;Fh5&R7^l2`tm9M1*iQemCE;FB&XlASkeDYEtYOR`*3S -a~FS;y`ja2y=mC+*;{Z33W?kH;7SAS^9i4Q&BtREDam()F+{eM{$;>XMhY0CzYAGw0{d`NV^Ji~=uj0 -Z3Mv(h(VDiAL|ds2vy#ct}lSR!J885a7W91#AKUW_*f*{5TlMsL+Oj4?sMw`sk7Z0~Q>>r9c2WQtT+$ -Okn_>{rTvU0t1Lz6A|c84j!`T?ZDvZO(`@X3W8JM7)*h-^hXyBEc9JQ!GS^kut!bfqf1Yi0%7SpO@U% -C1>&O6X6rO>szKA(CoF+GZ+s&~Ncw12nbGQPzyry&!neEN@tD;#5gpb1uSRi~Z=OHk9;lrr&B_*T$RnFIhcPJ -y=^1|*ztpaUI{c37v5+{8-ZsK>di+sf`q!#NDeW@(>J#e;c!Ty$@5PI{oZ!;&ljoxw`xt -`P^eB^sA%KKEk-=-ho;`b}e>WtGdN^bE`3e+1w}U;v%WS$SLf;DE09l|cXTv}h9NP{=ecFjY6eLY_n?NS8zfb#z!aq{nBNURt1;G@ETGM -<{-}q$MmlP0~n>iqTT;W7u0HKg%klZ)v;BesneL6vF<^%`^1BkV*q$q1f0t4vyVI$_!3m|G0ncVnh9r -o|g^k==PZ+v4Qni=O}mU-6W06-UmLFQD@aXtnREiE$PZMggQ=ai+oDLoYK-zP0yscCPI4EOI7^L9?RT -DG*u{Nct9^%elK85-{8bzRD3TGg_YTSvkG$pJ+U*(<2G?|pIllQ;n@ku6--3V=BW)T>fZ`vN;=QCQJ*;vM{i(>`1Fl*&9z_v%>+P(MAA@$0S691QIv~s9fI{RanR{hf5ZjBTiWq(fv5iYGaEqgxc6L2%&4%@hS|VHkO7V)W&`aL#T~ -?2t%liWnl=lv2_?iW3nT&pb#<+i=Ek+4IwiV@g@wRG5KQ{LjA>+zYz%amnsaQ{^CfiD1`b;6NXTK`4o -mwf4K@m=+~aHGa0oZ)L(AG5b7_V!w~8(kKD;6g3wi}_&axUi6PWq9=nrEoQ~3_eBw?nF%{}BPuKcXEj#)L*`LCzm+4q{e^jPA+jmLJj7R?&K0PMwR@7JGsOV>MtkmqH|PA)MO>Mt{Qa)}|-UlMn6i6C_LGM>AWOAMj -@;+nT15b7@rcXEj#)L)kFSt{<3x_ml# -6*C3h#67()G}a3_}-Lj7gqPA)No_AejZ$t8wRe<|I`C5BLcsocpWg0MNI+MQft2=$l7om^rF^_NfX

Bq~&BlHzG$@(v#tefYG$^h8F6P*A9Oq#O4NBMk -&cd&?qNNIuZp50Wkv&3sFKM^G$RKUwv-l>h0XPygk_;-c@~s~&GnsxWuazi@1%A>*beWQZ}HYJO -ofK=lOPqk%RA=Vycrd0$!5>?aJ1w*z2knX_kfbwUhjCF&K-@9Aou9khw+ObgnpDCTN}Pz2E%rI$M%+Q -my+2+D%teiVGx96N_5+Ii$M^U!&n=?owBeL&ffa%l7%N%bn~}CVF;ztZvXbgWV-)5CL6#V8e{nw-2(2 -=7eTH!vhO -mjdSt%UzeOSq~e<{Nd%9x^(_?q$|-Ib}S1R%6~T{dZ!$#qc=L>RsizlRJ&7`_!B^5nWM_}nE57cA$m3 -#apA2$efuTk5^30zDQWUM^uUT1)CR7{VgIIT^rX$@FM|xFteS7($iYpAIkpVaEe>R458VXlIf7muw -tI1jPD`0I!l+k8F0o`@#i1CLlKZ-@OoSmS&Ira8okzyIuAk2=)DLFTV%E7KT1Lr9luj5z(I*Fk~<+gY -C}@7=%zIr#ZKL8^V?akAo0CvdGgw0?$?wUk4#<$WwiE(!t`>2y-5Sumc2uic@Ep3T5m(1Yw5=#N8euNyQrfG{M{=(iy*GnEVHm7ci0yZ`uqZayRbyDbPiuJ73%xy&;!3LY%#?gd*D$rJNF<~#}fF -d(31~hbud8yLi>Gl_<^tW>FEctIsU*4VY0LbAPoCH`|M;UoJl{^UI_Eb!ZF!lyBPcMz>Psv*pAfm -CY1KDkBwiIMPMY(zJh+NPh9ZEF{tngCUekck;p@6?XJOjLu$ -gFF>%v7vk;d3qy>t;}_!X`3u7ks$_ivgU?{t5e#v62E(wD*~mhl!r&jgv+rTdISjsuJNAKY=KLlAi%- -*@_AG{BD(oU#`@K9mPwbt1W&Ut>e#)nRSaC#*_0wTueKe+mReh35%tJ%UMrQ$Gt0WpbsCZ@tZp1e*nv -1Ti9mJClS~X8e!C#7Cy%K!4`3Ms>M(o<40S>=3EP( -ENnlrSc}Xtu149#9jfGY;N!`IeYVPz6`y6!r>=22O3m^rxb)1130I|ajsQ;)u<4GvY!dJIg?*walBV` -WOHeX}r1_kGaE2lLkc4>(k+Mn$C%d5asrZSUry1|ZFk=+5YVxHhn{_4{=P+UKU{2#$RjhqSWbEzTVIP -C#@+xy2tbt}o*v8Ld|brwH&SEA+1%eC03lXm)>(*Qw_;@OSbTi4*7b&uN5zs^05i -m~<{$Nth{bd#fckED11yzNEW^8X%w+dd^XIQGX5=|4N=yj8!v|H?}jzv5!W{ykzMa6cg~`c_x)-U58} -6^HHh){jLc1NR($FeTO1qES{{$ua?qx?`}}Z2CVEu}N!v>#({@aJ?H{tsm{ZSD?kRszH6Vx_@^ -IRTns_$6dYng2P1Q>Vm-bc0)N?PL%f4Er$Kormr9+>n>+i_fEF=8%AO-HnrkJS7+`^EfltdR=LUKvPt -JMbX_a(GmTuA8NwTNKO)qaa3#5}Hq`Qsrqitj!!xY|bJwBzvsd8IO^012zw(u;x`mbDd+Iq#8IAhCcd-L%B%^B4d^V=JTgEtb3C@)G#E;TF~E -3;R>O}^QQ%$4?6X}y9{^K`L*Zdf~ndaNk7CjazWs896|TT|ESGB;x%IhnD9(U)f*y&WxzLN%+pzu>ghdO-AJk_MYn;_?cL}$5W20M9De(3ZtfNkSK3;uNi?;{O!al -h$cva3h8$m$Ri5v@q`AMN+3=@tXs%Y8fAIQc`bm*dgq;mwD!EV@lHxEg?5mQeTdgS$F4P|v$~ueE4n& -VorRt?ldalySX0-vwzp4%PqgY_A*ro{DE(IsPTKX1+EuSzj| -Xmk)U1AnLPrwEjj`Gc(i>nvaUPdKDM3N+^dZ0GRnHFi_7iP@%FdAMjjSeO_nbI4e?G#5am*KP -NKCp6v1q!yHJM9eRceMT9!qrO?~|ITKOVK-%7TD_uF!3BCX_U-WMN;mAag|u~>GsnH!LmWoz|8?~=*p`6BMnJw>&KP2cwF?)X_d}0`Qs`Dr`d=kG-{~D4B -~J*KcT#A{-3G`Q%LO)pG3aoTvaul{_+n<>c@?_yuGdM#qpCTCr_g%rx!aDTz9k(5G-BQDl0-& -o9?%*%^DXxQ#Ev>f~nH`ppx`O>^kIE+PpfY?nbkwwsNJGtaid)lbYTy|C~G8{ -pNt;kKQJUFvTMYFp(+69#=p6A^HjTe?(|C1!^7!oZ$LRd{` -AcWxyR7)Cva(>}=cV!$m1e6+hBh3TtaT%k6tp<)!_*Y#-tACBWH9#Z)UT!kx~#VgN~qdx4ximbV?774 -EaeTTy=dwkqa1MMMC6@ord8QM4>A+Uhh?c&Kp-K{3J7nG_PGE_rvHy!ylQBb>+SYz<UEPsJ0Wk*Me{W?Uq-y$P=l?0J<~X(RpnKDJ4 -AFiH?qPYyeO^VUbVoJYu3A;~E+5%>AUI?@DRZfuk+6;26rRqx~lxpqZ^@lcxo0 -rALq-bVvI-TZ_-=p-bSS%t5UH6TyT<2~;sZBO?b!%~hRx-9z5ty%q&g9Sxg&NC1ewWuKtAvq4dM)Q>) -^iPcg_)RaQy)F4myc=)Mpaq@A~h5sN!c`YXu8wRZgraC&O?i6sZ~0dvFuL{wi%21_t%;J8|*%n8SSC2 -$8g(L*M<=F-LBp7s3%dZQw1|7CWC$x6-ax_zqcahpWXhUEGWgbuEwK!G%~Fb1^yGs9i$W%geeH`$VBFxLvGjD|4+_wng>CC&-|tMRnrPi<_v?aREO#8)?gEe_Si)ZOc(lZ_BmccJ!5<>jzz#pKtvyP)h>@6aWAK2ms(pnpTs3I^G`!006 -)e001ih003}la4%nWWo~3|axZXsXKiI}baO9eZ*py6baZ8Mb1z?CX>MtBUtcb8d8JriZ`(EyfA^;#Tm -+UoPssAH2M>8jvlJW9r9+ZF1qRDVlucA7HIhmy4BKbl9Z89ltpw>RAc;iY-`^dNcbU)UGXhW3ZTDPSl -UGXbnYCOSxBl<(Gjkh%1_lxta=)`KRMTm(-Ptv{>|e>*>FLiuo}HeZk%x}h9ghMmXZsZ~oRf=BcfWnS -xy`+pS`=Iwz9#Q(fA#wxe!slBzP&<~q~w-~8g$OVgPGVjN?T$&)4$rT;bvB8wI`JX1B)FAJK@vsDU&z -M4to#GaLM+3=64&>`Qzg5?&{|D1^%XPw?Yoq2w76UL=)_vXK$^jd*; -iU8FQ`dd)3NvHlvi)HKpX7+%LA=MtSt1qv+ORMGiLLjaH)Oe%ApX9!H4sqE*OVD^{lbV5bwX*pMGcEs -V_~2um<2k`}Chu%DB^{~_cJDbRFoFdIDJC9en_OE=kGm2J(P?aQ^Z4#NEbhzN^`M=~a1p{|L7#L|WUx -|m^}nOLQk`8?z~tbqxXdH^X+HLS?BlEd%&MSyd$SvpqCy66oupd#SU1L1mruc!@Z0RVwkql(o5=W-xD -1n3@kb0pb-1bCl$WR8Q8ML=%2ZM6hQwp?<}tT)sl5yNdQpq^r=g2^^% -9Z5C+GWXhWDXRtsj*^i*HkW|W|i9PkyecZGH+WDcJql{ahv%pkX4EmS$lJH7u|mm-5JFiI(pV;~V3xlaQ -YNsPjSBJ$q4fn~GMl_v9!L=2pz)~^z0{~}tSp;Lm6+#rI(S`hPxPFekW_R8DT@FEyq>G^S$|U`rwKpL -=a;RqYX81poUe|uX7o%#eo)li4G0UMGGKg%wQA4p4r)06+VBFJ2TuSN7Z9KlysDWMk685G6;QNV!>vi -4l>P$uv=dVb4XjFcEAq4x&=(X+LN6gvmXxlT}Q>*+Ishd9n3&o10^bd;L}omA)RVT!6Y -%jDXPv%f;COllT7pz=A{}A<^eK#+v5H29RnPyRu%|hz~+;|i_h#-3sno0KXToH8qKS=CQkx7926#G)7 -lm67p#Q@vJp`4kRkl9RzML6nsh5Awl^G>h>}r88kXl$AMavt1Ak;k8m%5`zBi$DL8&9qg0MVC(+xPr% -95AsH95=AMn}i$E*^w8J}LOVu@D?lK%@oSdLg1t1A=K9R&aM3a0M=}Vo^F5;*IUXL?bcwDZ{Pe^JX -9Xj=yh)$nlyPGrV~I`$?v!idnu&xG5mj5VCgueDetQ|VVgALdm(s -j#N~jB&7dk92XOqG~s^^EIREO8x|5^2)UefRha)x*R51#)3P)h>@6aWAK2ms(pnpX3)ytw%U000OO00 -1ih003}la4%nWWo~3|axZXsXKiI}baO9eZ*py6baZ8Mb1z?QVQ_G1Zf7oVdCgbbZsRr(ea}}6b|0KAQ -Wq`SedrBHoXdKVi{Ti(Jgq2+ve`%^OHy%!qW|8Rp(M*m8Yf*KXaIxaa5y~YaL8fa!eJduC4$OCSvIhg -S~?MA4rv2EbIJz)6&gQP!WOEOer%iZ-di}ng3GG~oE%RVaP&KTIJ`Xm0bH#isl<(h&N~66eUKs_@9mv -l%`XlYi<9{^`~-jP0sf7SjwU9Tr^X?IAl>MD*dN(uSxFuIxaiD&oTeH2jSjjQ__aUU7}Iq04lVc_#aI -x`jnp32Dy-n>i2VE*7Axr`v|*KA0^3123AK-uE1?@m>#~&S0I3l!_Xpq&G^U13XjrM`s>EL)i^GxHWs ->5=wL0*SN?b>RHJ(>e2x%pq93#+{dS$1TSU!Wis+L3&n@?$FBXw>^sS2nxb02*%W+Q1ZaT2!>1jKPrv -Lt1ykd;Wz>Cd7@bW| -U!RUMMX{U9lH7<*_p#r9jY9Xq?Gw4mGeG)GSmI$ITM3P95u9>}t27RT&M}E~03Vuifb&DB%H1$m=tW3 -AEH2I&WHhvjccc78K;LYG6dq_Id<#kPqqjo;oFov$GQ!6rBWS=n+1d|a?S!>>xVo`i-L_+VAUCFwhsp -IdWTo()k6McRAp@OC+L|Qup2rd}HYlUVZ#v@B`Q#a?<}xCNzRY^iePTOsxE0;YKWnKo>3g|foZ@la*q -vUSQDgP8JH7O|o$Is9vscgck9PU;qx*-A++vH3>{+pCi`B>3$?MZPN8h{MoJw*d3g==We`8L)iJF!aT -OMW%o(-Ni2)EcSEz}T(L7j;kj_p^>Gdv_!tZvA3u$#?QnW -4@ig#7fjs!Oa8l=3V{^(7G++O6wgEmD>ji~+fuK00U7pc8vF1F8mR3?WJ_=U=jv*wx3q39&=*l8VamS -6LbY@rV;lZc|yFL%ks5LHdHJL9?Bebxonceq8MCc7s#ndXl_6(*wvOSxKG?x`9I7GjtaOT&7UdXDM7DxbX$hv_lq5&4a&)Yy%*j%cbJPtd -mny@jV3OP=?KO}z_>~!?t~6dXSoyHB3#BPTC{9;n+d%CO(8*OA>!!+UQTD0Sl*9XDAzg(*%WuAWzgxV -pagLYCuuIp;)-Zzfrj%`unkS0r;pO%8eic37l!%EIp9UD@%jndt1%_Tcyb$ilxw;|FkaW;`PRae?{Gx -B8(7!T>N6R(sQ+&&Z6F*q-Y}q^%^7$$bCEU_)Al~Oo#&>tG(BySQSh!m9QvW%p`U -qRfeEq%}h|~6{`Fxphz5j1&`H%_!jQ7@{&c`XOdR^yV>n1+Gov}{QbBUx8gc!Ps4CU{=e*jQR0|XQR0 -00O8;7XcS&*ArgdjtRg@(cg~DF6TfaA|NaUv_0~WN&gWaCv8KWo~qHFJ^CYZDDkDWpZ;bVq#-&WMwXJ -d7V{DZ`(!?zUx;E90ZgSg*JTXL4XdCo1g)Tw5Z*aDv(QZC2dXa65OR-A!vVlXNJp{^>9;NMC{Id-^@3 -Uy}G)Z0RGCuu8`W -K!x0mp%CkH1*F$XIpeEj|4r(b@%4;z?VrBYkDfYtqv&Hc|`?mm6J|3r+CNhefp!^ssUGns5FQ$VT8Fn -W?YGgWw;8>pf*m4nai!3C$RoT%r*qMpT(axeOdk4XMzuNBwiI0iINN -Q&*|v$}wM?Gb9qZn#z~PGNW=-s!ICGKJ1n4%ME*BK^w4j$vRP05|KXcDpTtWqs>i);o@gvstkK;4(Py -mj7Eu|duocp=(d@h*f9m#3Fm3=O(C1az#goVg@vgMcOjJfauVy16)L@u_+FK>e#(`){Ub8%*)tPq*O)iVEVjQDFG_WSiO=|rp -&Z_65^O#$tjKj+fErhVi}N@rM2;ayPTN*3lxW?svWS*GYt>AWE~M9-qfI2{XI({lA*+CUHnDZm48Sy#TT$n3(c#2#;Ln0Mp80TM5)mcr>Aq}n)M+BX -RW*{8HTNKx+R>-dcoWBs_$Utd%PF$0$gM;o&(rC7mPlk7ra|SzBPt`)_H**GoE=cdK41+;Q?3Oz@Dlv -K2%7HCm9SVx+9S=*4d#GfxJ0-&R4&Pl4K_^@$OBQNv~p22wKCt%;oUo5#aW+ww`;<)#+@x)gb^pX94) -%3H^rEIi7>p+l-)~bQsumJt9$P~cIVEbB)|Rr5?4IRsJWib1_BJv$#Rf6?+te-v6`A}aZY=Z-i$e%z+ -JHf-1}6SV05Xr?7t3pmjs)!Yw!LZJ=bireDl_B0(d+2J96`E>uWYZhxc@JnmaLh_6l{f3C>d_m*JJe4 -oqJmP?reQWdeKyWR)u|U*V`PanvU{-ZZbs$rr@Fc!xf))PrYeGVX)E3D?{@8zkoF=1kl5U9+sCT1!nd -nV+fV<>n`KPCJU`cF>V(I~cLC4Bj|=u9TD0pxJ1_?AVn?=&~yf*s|MB1k#z~GIme6>_@6aWAK2ms(pnpWi`{Noq~007<-001Ze003}la4%nWWo~3|axZXsXKiI}baO9eZ -*py6baZ8Mb1!FdZ)RpLaCx0rU2oeq6n*!vU_Atq8dr0It_2LFK$~`3fwdc&4tuZ-nU*M&B-iu#i)YvK>ua(-61ivO4`T$8j2>pBVvM~0^YgF2f4U1bO~zv;Dz+eR?%wM8-`? -N8`*`{&snQVk1`3m{vxu8kHlEs2thgVm6?sbxIi8C1iA7D@s8po`VfYXSLqS~l2KA$0R ->Jyq!S8PUND#(@*3ZF|Zb_DGpcM4L~TkW==u$0!BT(mr!jc2}jn@wO$-5hd}R|Sn((rJ93Lh3OVM3yz -^Ycbl@d!A*eA8biFJ;0A>i#p?if#5iA0oF@Zm1#e1Lr3Z1?tZ;Pnuu#vsSQ_XAGqkaI -M)u7m1*jxr`#eVp%#PPoJ8S2)eAb^%{HqVk)^36k%Z!AeJp^D;G_WeV$0O-PiZCT1=0jo)%e_U9R>0DERkrdkL4S`;Z$~Ut3X5kzl!bdQGxs52Ck -JF58a0@bZ$1g`d_L7SOZ?EnrU!X^6&>%P^45$H9duZYMc`IrmV4~ -fCq*O%iWgz;CxyM&*=z?z;vw9=s0Z+a(OiwwqtrxU -6AJqnL>_zN9YL%spA3~fLpfb%^cd`#41{-31botEqkCJ?%;@Wg99Ju!V(Vyg|FPRI;h&Vp_0^F*IAkd -uiHx33k17Yd$DQ|U5iQ^g|E6k?xq9t#W7bUo{{|dOdSlvG|ThSH^M)5!a*=l75iFzL6^XQC4br}vc{L -~sJ~_!+aW!^=F-`Q9~Fkckto@La;Uyi2NCVN=lXeXT{eNR~C3YGI -cT=AcWS@A!?P@V(zZEE6=hrN3fh64ZS=If4F9 -D5xYdjSFhY&OkH$V8kc%pY2Dwcwz|MtSfF2PQFIFyaEVTg|$J`X0lyetttg!O3yDx+vgs7W5{EvXAzf -xM7Wh#mWd+>=?q+qSG;KD^A}>qgrT(lcwm@y)UoJn2oo8cOz|3oyOBGNu(=bPLg`lv2ta1;l;pea(1P -@D(l?$m1Z@=ny`Fu8SnQTZ;uF9o3gWySN*ck$Q%6|7PN#*dH*OmGl!J^NyI&=psA{JfLdj1SQQzU>e} -Y3yGP%GCP3=GFxYYNG5x3sShHcOt#UHRsg7c}34`gwoTlJ3r_-Iz?6N0n6vq?XLWgzWb5bi__;=2Q@0 --XXgNko3przlNhe;ph!*HM!4%Aopj}VO<)_As(?dM!opO>+(e?zG8aP&i>4}Xu>H@37_B1}0j{RdD>0 -|XQR000O8;7XcS^Kgp_KPCVG5sLr-CjbBdaA|NaUv_0~WN&gWaCv8KWo~qHFJ^CYZDDkDWpZ;bXmo9C -E^vA6J!x~>$d%vuD>_su0A-3gl1w%lNgKzOYi2X?OpTSzrZg%F1ezjZ5MTh%G~@FA_I*d6I4Ei|IX*0 -t8jC>p>({T}-LIR&;cy_}v)Vo`WnNd4c~LH-x|U@%S=7snUjA>-XFzY?=pF+4imz_}@Qo2}rFi+r+poU;{@sMZWN9q(N?wTHy?f2?zx -n#r&D(c3G;Sj6D9x(LU1&0G=Kd1+X25=r -K`#GgUpknoV2N>I~ii^=u{W)Wv)Bi;+L_wl^^S|cz65q?dzA{znRpz?4~S>k{i)maV6dsxf~3p(iAahy&JNL#m0|eFP>E3~>v -fq69CA{ZQC?+HEkhnip|+8;biNJaA}dNYcsdvKbyC$)Sy!91UW7p$WpOZqNp`&Z5S4-I>x@e6=%LI&P -MWWSgFw7cjTn_F@<&~7fgo`fRaHoTE5P$STH-SLJUM|bs+mTe8n#BGr}QvVfP#R&ZWbvJkfEm)v6t;^ -+8!gWG|t`e***Ln8F=`iH_(p$1?eq8D$L9MFn94Z@CSoe@7}%n`kR~S?ad#)`{w2C4Iv)2F2a2Dm`$@O4gRW})Y!-_2t>pTHXf-OMB38n9LsJf$*!C_d{+f2f0R-gMI^o9{L5mp_ANNCbg=FTVTZ?*N<_9-o~2=@+j~PF~->X0`px$?4h2$<15h)uzsX#Tx^(3j2;Wa=%KK}Qk&G9i{hS=giGD@ytPM39BXY%?mq<=@%* -LC{gY8V%J4Tu~g#|(w~b~QxNCMtX>;zd+evc5VDWgZs^D2Y)uBw(~A0(+_safNSSF@V!r9QFcN3A>$8 -KS20|F}|D?$rkZHcX5VqgXT(4Z~o`@=KHrVzX9O?oK^qV5jRWo_aMF5)sVQfnc50D9272R5XuIxTYLu6;e{CO~GH7u -AD$i@F*i)CG((B#SnDco=hAgK1i^%1@FMJAu!z)rbSqRhmdfocd!2umcCB{sOYAn_O&>wy$x!d(p)prbO> -Q$ulW8!+;hb!ngB(?s`DlmiAt)&gb+ZS@`rR~L`qM+}`_K>M6tUk!2HMF?vTUS(QV^((NG$%I&Z&$y}etCiq-5H(KNzV+Ca9tpYlXautLlg8eK&> -Hvd+**xZ`Q->c~PjB;Vdd0hem;HLR-OKs)IlFZq(shc@6*JWjjF$;pGm2`@oG`MX^Md1s<)*`!9kqy>y%gwyi(*bZYo&1|<8+?-02bMl8X2Jje3sFBiEk_Re -i(>hOz0n?@XW2@Je{1K8LW}12=siNWg6@lgfK2pB5JACP*TKe?2mHJ;oBG_HqO?ldI=VSVZ#Qi3Q~rU -Do?7}d})OR)|m8ECBZ)f*Fd0N28YoAdr-RCRWXk#ggP4e1%ycts1&)C)j-%ALpGduq#~6R9E6WF1|Uw -;SXZ>71WWrTVgW{>L=ytuJBC;2_EidIS~^pk2=V7)EtYFoJelKK6Cl!yQ64Xf5|#-yPr1$&3L8W1itV*{@MjcZV)%%3nThBucHc(C$IR^c#gxk -)QpiSO5Woh~H>bD&~Vh++Ur8NusB(UzKv-2sS5Kr3P5K6vKsLAlKpt}DgItf#HwM -YB`FG%7W5X$_H7OQMXBiJd2gAbJ`?N)fK -GWdWB9b5s%rmK`P5B(5M8@PC~~ekSWEEK>vCA(cuI3e0r$Fl3)pCnWHi2T>$!fQf-0ZKH?a`SOoBodJ -^1^EPt~aQwvz5GRcbKJosn}FkGH{d-N`=yl$);qA0F(!6oqNb^>lj#fmV -H~>KaxKxDONu2-L*{J_iYYsa>KsVM?k}|>>zLkCWd#2U`#I?fU#DMS_`ARM&cbcsn#?0`wesh2S!oPXfR$UWv9>w&kG^vbI_ -)k*YQlWlc7nFmEx?Jf$u$SnsC&-WW(8yUnr|@y`40-*qF}pBj}uJVi;9v)Gl6CWTzBrGjs}_oShRO2r -v+&{j48NHWAqwt*N8K$6~fdEl<5Uyi`<5D{5bYmRK&yuDH5NfV21rBdt;yOLE6ZRfA^-t|fXSd0ff}E -udoDD*c;8LkQt;jmtPoZT@N(M-rZ_S}k?n(J)3}Dexs*i(zt9!*W0v2CRuWU*ZgMdWdB1on -xG`0+lsFHt5Foaj-0e9LU+3(D#4smgMA$Qt&iXpYIvy?Zhvi&&piDLXiH2Dlt7DT?G9YbG%YGZ#7CYy -OY52CNl}OeOkCT~;h{IW@sMUaZwvC%1xfd(@SZLd}(b0hyl>72+e0COehqaM_#NHNF)-0;KadBw8Hl{ -vX&y;^i7)}O`tq>m|T1F#*u?|?e)5&k#ILcsxgQ>tipr{Ej_9E`FKWWbRgQ{t1ybro3|1X1 -1!yJ`N;bzD&+L_30XEpg~}v5F@1)|9OZI@keoR1KaN}_^oI5smmq2BEX~q-%QJM^|C$(B -MrD>_bd4ZMZl(vY8wWJ5(v}k>^-0WxR;;v|8FFwNmROr)hCeW06fvQt&`<$C6qqEs -R{(nMzjt9%n`AK6GS=te@boPF8gjx=U8XAkH?ZOlW32?LCbXq&K%Ndc(OB0k2J(wT#GYMpgDL$EQdL) -jyopIdsU(mNgAMWC8F#}=%?d;z--M_X3wfpa`7G>hH8i*3br%NQ)ilaF^l5&k0sjf-T4SV?%z;$LfH* -`Wx+Vb5BO=hcq#jGe=F>O#OEGr&bsSfK?FL<`4?(|{qsm6XtS<^4$qxBrY$StL*~*CX(av+C~26nGds`fz>F@ -VYhvSx_+#bgty+Gx-7BXxcUjS767?=tS4yj6H;ebN2r1(8#ebA1AU@1ZM%8TP@h+Yo*qgTn_#sL&iYGoqWy -<+zbSWMVLnQgA0v>?BsS0eQ7ZAQfG(4&tHht~rM|7_|@!`!OQnk7G3x?Sb2b}ggRt(R$?nxRQb9a!XM -T5vj=wzr$^k_=oC!A$P{N9P6&^$@5h`^v)RSsYu-UrcEVeT-t*?VCnorm-%i&o|{M%#RunN3Hc|zvq2tt%WN^F)Q&tn##Yy;5+P# -g%KWOGOf*@)(qVKQIh+4|82(aWn8?}saY`A?DP=I7HBW#O)eZ#kWep4f_LRM5%#wDe!1XS~rZdfBQp8 -UY@N~cpj*i}`-2@$LbDBh3hod92ht_AAZ(E(%kJ^BHkn)ylB*4FC)LlzZ*`d)WtvLdSLB5J*`ZtY`GD -I{4GcN6I^JvZb1^#o&= -lte>CKSTna=@1*gRt+T3I1)5Y$CwwirvhFprC5Mrc(cK*ptgya>2d2ydGVU-2Hs0b;6WId1;o}{H!W0 -o5S#=euN)~ZT3OX;DWXU8wp6?eD{NO6$ahlEIHm_r3^8ZkMC@l0FqE_-H?LI|iclFFs1ROZ(HTHxZUq -$#OA*t0Dj%KTDJI~FP?Z~vN5f!UP=#LfssIt0@!p`>xwVU+H{^M~>C!lnZtCPgttM7Kaa6GRErFz4Fx}7w^OY3JL`Upp95fyz*RCz -3J`>-tc{+X1R}X>ekW>ziq+CeX&mxo?aq-CY9xx!RchLrUseCAb!&%Ylo%|MJv62p&{sB5^XHtm4YG_ -{81+?mS_|GOMDEA;L)ZW1`c0(_sQkce=nqw~D@G8ktzpvO7Erdz)Mb=Zi%XJ^rFbgSPwI~dXjPRio%Q -s(*3;OD4m;r=`rHIU;bn`mls264#11N(;GQjv^3eFj5gqcv8XEcw5A$Fn;_4|nYtyOX>7yfszr)r>@+ -Q5FO{S -y%%n}aVK(a(7G=))1ech37GbQrWyEnGGQDsRXI)Qi7E#f=PUbA#=yMW?Xn{5|uEG*!2n}yA6cfZR)*EZng6~%KqK%Y6FE4dSk(? -Qn@+(Utv(X0xcBdiWHIqiTLXHE9ETPJ%#k*gg*cn4!2INTCIowoIuvpKOth1pg;V(BILyST%=M78ik- -n2nZ0XoyBEO$~}>bA8`1-S7(e>y@+3 -1WsBi-0d``;aGJTUgjWuYI;)~jsZkT`uKkvtGs3PKvh95;xN(#_m}&tT# -nc{gl!3@y0lJ&??}TyWvLJhRh#Vrxw+w^b -CtMZCycx~uQ+|QS5GSwjRT2$_U9P0)wShafO|aoOOfWG1FW(7El|BYU{XQ`4OGYcln`i8jY#RSX_(0m -GBX?rW_v6;PJAN|(K|-l;b7=JG6uu3Fq5>F%PMRMG&%;D!ly>&<$VLsNmZ1_HN}r%1P@+tScy-dQN(9 -)a)kdLouFz76$N0dk(v%}k*`W6ZFgT>+_&e~PYRkJ;pHIQTv@`!;b>7nf7}Hcn6hXCdaqwFaRDP@0L -zMN9O|14{`3?o#@Lqc)8IPcTG8nOc3C|eN*l$}WCYb|FST3Wi)z!nJ(H#>92EcPVy5s5;O>cjG|0DuG -7SLV_$k880>o`lHgt{~0!584Q*gXLwmu43UBtDn~FZ_K5ie@|pPAf`z=CMR2hB~!*(FQywj(~ryXtuL ->su?;Q4daIMb##6!g9{JaDulyZm_Z|g#ZSFlu>y1-qLCna<%CLyQd+JixLpQ*L8!GQ{>yPPQ-%lgB}@ -ATAgSyd0HC(C@dWwtZ*}3k4I7QHGzCsWcPrmJ(U{Wr)94t96dc_SKR(xX0DOip8~qaQ`7DdCEF4Luw_x11wd{~LLQ3D7) -mz>`FeW^B=ymB753hMEnZiea?3}0~0=LH1bkaP>Lqo;7rd52z? -GSO^zxAhN0aWg9Fk=L}X2l3OHKE{s&Qq6VJIl7u1dK9J$o*PqtgOfy?I+sEBFg)2+CD%zoohnts&0}N -Fd4gMbJtZ9Y;mxy`x~`D2*qx1iO6dh5O{u>mX^F2x-EK7Q9k%D=t!%5aO1JySc9VvVy@UZBG7o9dmiD;dTkuxA*^gEsS$`Fw?=gJWkEy|ikRHC -Z6%G;>6eST;m1I&E6#0G>%j|uiPHjNIGUMSudAcWk&EiTXi3`V|_C~YMs~KraI}Qu{oGSKwDl%bGH+rkqWB^LDwxut8$Ztqjd5*y-5cfnPPCuoLCvrkbP3m3hhA$x~Nlx*Oj>6MswFcF -c0!!P}BH4N#$(O&n7ywmV-#Rh&ruGRhypEM{Yv?h7^dhT}p8iyUA8l41Z_qXj?p8fk}8H3L#%bVIFI+ -`75K7Hr2-GnC-)C?O|!xdG;Dn<5NQv%FgoYY>-_x_R~BusS|WhS!JH4k%oQ6>$NbOCd&3IpBuY(ETbMwKv{#g1}_#-CR9>4)8#Pd;AG6YS%YejKziy+=J7D{vO@Hq^|*_69% -*s6=D6n1CVcuTSBaX7e2IZX_$zwBwn-xpye{H-K#C};#v~=+ImzPvuTa4fU~)xV;g27VFL6>z$vqGKIt|SnQF -7GL20?}{;7JyC^2rTNpQ1@iHCzcNMrO^8R3w82=Zui34?6h(&7KWt&Xk$J{VlLuvj%*(AD}XsqAJ@F0 -TM=4x#VQ^+U9a3~bifwx*3i9STDjuEO$3ofh_5pc7yNy$te@27D?V8H!dA^6up2Xm9y-FJ%qb$$)1v+39&nDHhV-yL2IPU -AU#jB5WAc`^X)|GkWVw3nfGVtx{DL+ih1xf@(vx{t^4G*%WK{?)>w(+g&WcLpY5e?oBUHC%P*AJ@LFXLT9HwK%hynQlA6E7kG#OTJuO9C0^Q<~LfR0+NmZqZaL|8+_#5U7hzZ|J$hyi2XsylbX(i*7B*BT?_LW#tG7Dt -~VKw!3n1%4LOsvdJ0XLO+W$Xa?pu+*71A4cp6OnCmGRc7ORf>(dN0x%A7`bU$mIAa>XEM+A&sOh}j1@ -l7cRN#CIb7U8{=D{zFlfRmfBPfiOsldfHW*zz$iN-mkCQ?e`kX&}e?xH#jL@Wh9PgSr`r_=oS#u(&^q -nJ6f0vXXNOyva-bhrjn4&OJ~4Tl2$)ldN1%<0xLpa2b8XTcxkgPESV`EAuOKQ@moa>e*f%4u?qDWBz$ -O2%z{bMdFuLmQn@+5xEQ;QR4(dPxT|D1BM(>XLUwEcZoy4?P)$< -h#n0AQrt$RW7qf_YmXFkB5gEmN$b(HC=wYrAsiIVhdutHwAXwG7p7R|$_`n#LwLgDZV@>Fc%XdUN}fV -$=~cZsye>84l>!xp6DtfwmJ_RTDBd;MN+d$wHliS9uE*pU*lV4{m@xcpnIqW0-gcDCB_Lw^Xyv#Cr0q -JJF1Ki|@EEW#PUK-sa|*c`~MaWpSmWsO~wR|?f?BXA1Is2eb2(K!F^twnD@*FU^z_JNDRM6yYE61lmD)#Y$s3r>V;t4F)W#(v4djS -7Xd+cNYM(GiB7DDmoA^F+UF;N&MbIB -$o~^o;)UR4^#D+A&5Q{X(H&%o$K=X@Yp|OUyX#Uk5}1}{!B?Ui6IW&&%QVdeU>B)Gtfe!^c6-sv>Q&9F1d@;VV#NuN1q>3MMy+V-0LE$>^C#QUG&Uv2U<2tclO}Ao3=d`J2%YX_AWzfjL;? -cGiljxC2WSQa?GHC^l-Y3QCwr}geXpM0>W8t&0Qb2(c -=w12-`tF-wFcJGoVPF6f7<=lHmw%ljuB2Pp$9h8kpdItiK|vZ^>o^yXyB93`{zW)sMQH+1bNL&kMr7a -(;%=-ni%f*b`r`)%sma=e*~tsOsZYS>ORreJYfXDPnP4w8Z;J=tfu!kNw;K9=c<;g^k$sz>U%z&?~hL -f)PoyxpYZj*ga>pe04{@#Bz^@*zA>pRX)Q}7WiAXn9iUFGs!5w80Gfkr_W}mUeFb^!Uts*a$yXS!7uwE8Sk^C$?o8Ms{ON1sZ%oqk9kMJBdH-6Fa}qS6`_~wG -^Mef66D6?M2GbX3_YCUBHfUY!6J~x*eL?DfPobW(kxUS?8>DleWt1I<4R?&aGE0B9sQhE26Nl1ZV}M2 -g29x^?lWsYWa$}O%Tzgqow-AK>XcAU9E1;h~uyH1eLji$5Q+z0$7#{)TP}u{$em_kW8XOgSV*aUnUsi -rR4b#tl#geqAtpZ%d0bFCxYd0LA>*OpoYt7$YdepT~ZmRty{UWbA%otNNypbIj+pD_(=$U)ffCH*3+P_bPKg{5iTj -6`}q5`@G){%E-pNw#5Z9H6EiSx#$hd=AC@}TClwPMj$ekZ_|kJACIfp+)FDkos?xO<~x7T(^v8nq8FZ -OiTtR&Doo0QGyY#d%_EwJseFPS@~$0sE5}ID4==(7+>O`wh>B%Nm;6ck@8qu?pz9OV_Vyr>3L9{{c`- -0|XQR000O8;7XcSFf(gOiWL9=vQ+>8CIA2caA|NaUv_0~WN&gWaCv8KWo~qHFJ^CYZDDkDWpZ;bX>Dg -NaCz-KYjfK;lHdI+P)empWfYE`%cXW*r>$}lC-H7<=VH&yPB|_a5+R8(MRNIwti9U%?bqD^NPq+-C6l -?D535wgA_;Ui`VDkbgTdf{!6(}+Rw5~jV4mhHUX~&+f@rm%XaDQ|9MHozdOU-f>_hah;u%Y;GONl!jy -RsB*(Q$`%kr4L(qGxL!^0O(pB+AX#-+uUwPNr!Z -PtvR$(N&a`%|#p)>gp3M2Jg+5DXa+Z*7O$DG|SVOD1g{U>`dM)mr=oHJQwpSjyDHozBwisMA(P3_nL& -W6<>&v{PQ~JYxVU_nv_z+Q9R*afJuBB3pQrgc_j|S!%SqQLUo$wX@2Y+{D#McIB1Y7oRf8we=|P4+4JFI3VL9O@NBYgvaq@0@pX5TBDMdH)7t~Xx_c~*KEK6xyV6D4z8|$eSdldl>QH)^DZtwo}aw;jtT3Hh -opT>S3JQlFVplM|6U*sF+CECD(19+a}h?>%Da_hduP`tp#3$R%V`|_qY^mqtmI%R^}v^x?_aB7IPhf} -ht{(ikbK4rNOawR`xo-#gcUpyU~O|=#U)wZDh)-RpoNuURUEuNeRJ~D`|HV@%ZuyD#mV{UFVgZvE3I#+(opIWxQ1 -VrA^}%ZEv*HkUw-0V*oS2y_i)GGbE@(1?k076d^JfWCly*aTcqR8A&-A>#RnU -`!Ie66$La{ZovOo(~%{!*M}93^-hWcMQSldI)~+4k=LU|7G77$t(?#=gO38*Dy!@39^`%=!%1)3-LQp0LI%-K@vR -x1&zjGSc7{L0-14Oj?_J=c15{~g~25Zb%3)8dclV@6N!K0&1X+BVuBMIJT8uD-uQ7bV2_z^f&w2kk7A -+y*|twnhLDtuOLLiIy0J;F(0~KSeHqE|25F9=P^dD-3Xn0Roxm6wO>cA*y|po`Wk?Nmt72eyLHvK%HW-4T -0s)e^#b%0z4!~OHT0seURk_K8kFZ89m)T|F6jpw}#fozt6~c}`kRjON1(y;Yqp=J;_IQ^u*o+ujoF>C -UR{J`|7^xg$WaSGj6|1MVBt`dbyG;B_QPrS(b#S}PT5^+A{T88h1&5!m@DzoTtKb~0lxuG?O_d{A+;* -nAQSSp#>u}4BLvZQ1ak_^6U7tf&rmcqs0LLeX&3<4W{QE)8sC`SEu0`$-hh0a2v903>Bv?DGK+U5kVU -&~JrVyop-ph3FN0fWEHn0Wcg)qcXfP;YD>zIyfT1iw<&F9gBR47y-=Hm& -_HSl-Xt3xWnUwEvx6W-$j|9P0Ww&VIcbn<5BRtx#wo$qoPc*PzU%zs=A)ea5rBdcL;;J)+C9-ad~ZJrhoKw -9BpYqqU*$&kL(GJ(u!@6mzJhzmC}H_X?fc=xx{Unj4A`uOn_c8ot=oqim#+`CHWCG1ATr}Jo*rv+Sn` -Xx%jbX~BE>rbz$9M8sn7I_h+$tMb+y=+%ga_u -r`5tx!@4eE6aF``@t-INU8CwXeJhw49*b(1K2lkXE -e@zWo(4BEaTbnYT}k1+amu_a_ZVrO%<7Fdd6cy2wyi`i1l?gcC?j_Y8A-l3pyz2qUDY{%8?z6I(Rn9372B~yZ+frr-RI% -P#vRvb^tF%ew133$Rz01rAJ$*h8cs0aggmguq*TQ*$n&s0fZk`=Kzuj -Vrt%<}0nrL$fpDX6b%1m6Pta3s>>LT(JVR*Yx(peN -j8m_AuJL(^6GAyA15t-us6tW;+q*Xox>qtWpuxs>TRRKA(>~Ns6C4zu`k$E5wLlGVyv%}!%P(C{e!w6k2kHP$<@8vTL6);YYxFdQevgzTj=Fmx^ -7eWt!FxAL`-^iK4YH~447fFQLG~HnP!3aq#(DBdWDip`f!O;^o0Okysud2mE^T}U7oW32HH(s89u&&> -py-~%?J1k60G9EUhUISOaKynUVmCulyJ_H`%8_0YJVW?aSaD0N#ma?dV;RwbD4RNm}O~>q+LQ*GbHWs -oTN~wVf5Z@|XIhO)OqmlziRO@8~_)@F_7r3E?3*JPEj^WX95rvDXsHG3FPihUQ7vu)4Sf&-sgAu%jv` -Ui{m#uIET^JdtFz;I6z^JAV&;_V?Fk%C$pwqo`K7&kRgamfekwLq3Pg6d9dXhvBCil>BIk-n28pV@F) -ZbI{(M9dib4y1%QimH@KpwGL-j-lWDRdDoq|jkTE((B*Izk|wNDoa-ORCirMA+c{WhqdoQkB$GLo)Df -ogCBVt5S>xc*(X;<}{+}-f%AXANa?BM@c@A-`$!93JEAdQKNY_U@jTVC3spgM_2nP;o=Pha}Yal -QVf(o1Tr*U+z{o&A!^-q6#;lhgPQDGx)gbLWJ71&Zbw{de!F6b~hO4^h)=FfA8AKP4+B`a_{J2YAQAd -1l2)!4XiVUa#L_Rkx}vSfhPYLfS`D=)T|y2WV;*gJ=x)k!6g+ca6|1b= -5ZnemSz8x9Z6nAK@hGN7tKCxZ4cKcSwuM8+Ct$A%444_V9;+NUGK6rkQs0UlXf{h_WZS-TsrlT~;<=`iI!N*+iYodeYUxkeXCotX!{tZ -0n7)qLi~u-fFvL+Qt`Pii#+`$OQ6Odd#=sH?LEh6=;OCOp|#2&0+YuE|?g-%xWqXkwc*6Me*CG -nFQEhQdM~&F6D(%a*5a;uZ>wh02IF+{+c1r;WYeS@RGmU2Af)S>Wx*t~Qz91%HbI33?A2cG^ud4xqj0hg9^f!-9hXad --e{;`qH7)8hL}+3v=#6*je2YLq|f?(*psPF{dr>AS -Wk3wQFdrEOQ*n?hcyR;`Yv!qYlMDL$6%ixh4IQL*_jQyCZIjatrkfE=9ozcn}O2D8$)N6M>ad`QRvaI -b)2^xsJ`#*r|3qGQ0LVW0PN*+%su{m=-HTY!-e^t;&h#@B5w)O1g;8|sKMT5?3txinL0w=c(%%7ff<< -yY0?gqa^it+>56c;I(_)N#kU#VV_ -co9EqtlSEo3x(e1PelUgTJEm|q1Al -uxBU($$)z`Dw`AJ5h-JA7)2U0GVt>H1D~NlYEaSVA?OR*P~fhXJw%~(2yThj`Y54#Y|rDK|6_#?G;@GnWa!zF!$v_u{rTj#Vo@4 -+L~j6*KRV%{6IB;`Z{b^do#T9>~h>RN4ukZ)>#7380*LLE4DlJM3vRFtt(d0e~LJ$FStd(akYav<}?* -l}dw7&u+ft9i|nju44~wfJP)h&=olXYqv-X$|wzKR@v9cw9bBYQt$7k$?@__4Mw-Zpl_5X{yj@j --3U$gZM#+MV1{JcO}Vm}F(n7|1q`YF-fW~S168jJ))&n%!iW}<|vNc@^VCyyI3c(%lD7BKqf1NZEhXdUp%x%rs0O%at -b{BB%w~`AZ-aA1kCj_`))E2r-f2GjK>yZNCR6x?w`u#W3Q@1`oVmu6Wyr+5@wU|)*k+u!AaGuDWx#^3D&IwezfZ0>IX_gx=l3orb-7K+3ED%xa -&A0M)&3{Rko%g8}y3___IU-{^!FAjV-~9R5w}$=zwmX9^G2c*4kU`K15+poyW))F#*ElnCJO7{^1C=3 -M1wdo{=PF*#CPHxFhbSu8_rT`wkT!j?{KOXyKBSyX3t -cgCE%JM2G!qy>UMCdKI-p8GUF=6P}~^%D&5nl=wgp5>bZ>l`zh2opTWfbQ-T5qEb+iwCtmM*84ab|cJ -qJgYG4F0gGaClIRfj`WH=vCMI$=GV|<4=pvPT41crs%o^QvMiE`Fy)X4f6Hjw?yZxmn@PHBr)N1%Ltj -?fID$m1?OezE`1YmeD1*Cp?m;WIwj7`XN^jY}O}^7nnFhSu#2>MDx`5EJ6kQ0hjpN}r8$FCaYB{D^>s -4p#47)RSZTO_aTfp+r$&MTMUTD#f^E3I|E^De9!>DnMX)IS|XE5jT0`wn9R?->8v%?=R&Y89!ZH|m3Tbik+Cq{kYUxcq5+^E|t6I9q!Mn8Iizo!<4^a4`z1B99UDMjjRDOBG*dZfYAIa@^ -Yfi8h9qA$vw>BB?W=nO!q!y7|w&UJo9a8J(R+YWzt)_u+#t&Mn7H)y$8h$FVMkS5nW?EKW?o;;jJC9e06&PD89>u -?coVqY6Ap@)yu^tP3c1p5B~P)h>@6aWAK2ms(pnpVO}m~+ww004Cp001Tc003}la4%nWWo~3|axZXsX -KiI}baO9eZ*py6baZ8Mb1!LfV=i!cl~`?W+cpsXo?mfrP*6%#)lT}d2~B|{P1a&;Qi13#t?oGA=}B*8bc6*)faftv(}rx#^->hGxk})){Rs!d;q%7_!-E5uEJ4i~e01JHF}jFAG6u(gT)p}5=`yxv$|7T2vII^pU)% -L}Z%@xIF3*hDoGDtAGTs?rHak;MEub#yIQ_2$ix)Lq(rA0qn91WN#DUkAn`}RYEfm -0g=9<0S8+L<5jvRL+%-=VB*(%!S19O1;wvOK=^#J!)K*0NdF3x43p&H7X^Y%~(^VIrG)1Wj{uAyD?7Z -QbDk|Q&n+e9a&!H9g82!iFt$?K3Y}!Sbu6(6E;Au&v^tU)Q#x=49If0Kl`<}6S72`uQd(E=S(AmQLlC -V2x%Eib0Nku^?CF|G_EO(w9TnlN8;omWNPEc?%M(Ay6(?J1X`yeimkWpW3UONb0@*`#An+23nyspzKCEqs}?m?aQg%=3R(DmI?KN}Sn0>~YcD2K_gV -7~r=38ZSK(``f?nw*s -gdMEeV_`3-*#t+1DET0< -GwwUTD6JFZhF5I -6CWK(7b-FKoS-OrzMeIMRoQ9%!)Q8Ug)05&;>L$w8(7E7Hk#5G313AqNrG6S=F_6wl-b|wo&2BfR1Z2 -3mwB;&r%q1XKXyas5ry8{Xm@P2pY*?VkbTDV(H@3M~GK)3q4n&(I)V>DSC6(xVh)0KIWPj`-%n>%K$s -}Rz}WgDQzUUeZGy*zLK?7rPI>IjiqGU1NJH^F;o3Uf`?2`e0uH1EaJ&vmIz$Fv8m{Onx+LWRGJ2omD3 -3J_9|Nt;i`9bbsgWSygG2W5L^1uQU9eWaM~ExWJaP6bMNQcUOze+ZI;|b?m{9V9344f-@UhK7=v>fV= -Ooau9ncE-trLa%d>mC>RWPKy>7*c(Sq5lwd_;7jG&=M^R2*{!Yw)auom>LcuZqY_5CJ2ih9PeAC7vf& -RA^x1cOJzr#Ryc;8712t^%?xIBigzRXNLDOtwc=jmX%x0IjiJF0Il|r=(kr(x)=AFSw@mS9beZwU^fV -&KahSm9VFevl+fYTT~&<7A6~&WN>KId|xMzM>iWPKkK(}@9dk-de`o?cK|k>%DO~FLrRRl3#_FtoP-; -C_8$V=Fo$|3gH6XSEUmbGQGfb%u`xYqaJU)3CUSeACaHUBVoSI>pF7j}L9`CL7BIszxM{9$%5Wa;{0~ -q|0|XQR000O8;7XcSRQN*!NEQG9mrDQuC;$KeaA|NaUv_0~WN&gWaCv8KWo~qHFJ^CYZDDkDWpZ;bY+ --a|crI{xtvqXU+eVV#`77omYe`x#PULNNeXPi3ukBP)>y2HJ?vWK05(I`6Rv>_206mJu{Pykcd0++)T -FNd{u}RGIyQinSXW*lwqXC0Y{PKbPNs{^`P(Xp%VOso*p -Amx~W_{L>HbKmK^}kvNEW8N`Y32S*^?U|nQe7H2Hp=2=m)i?WE*%@3c|KpyA*;*O_LR`_itXdolu0ic -9G)BvCGhsUC95d)t^8E2_D09$6aJk_w5_`_otm+yZ3@b0G%i_4$Ce7raST$OR6VK=;7tgzGu>lr0&jvm*zosN}dh;$^hRyJ{S0Ccw}V -$_1Tn;>*h2beo0wH!MBlt~U$6`O2SAyq3cpG -f^PVW=$(=bc2!g+LcGU92NMG(8k;(8aSu&Ka<{orH-oCMod!pC9&zeM?%aEN6Bf6iBY6Q?`P%pRTy9% -3|p2|Sf?iBNk41JsCM4zbmmj-m{XkJ-f*LMP)7pp-N~aF(rUr`mEM*or6FJ)4aO$Ae>b2~UBeyEv-^y -Mukynyt1*v%CDG5+wtr#G8~yEYPZDWd?|N5Z*AkF_e!vhh1$QTwzrdz#}7heFk)cl4UERn>?~u -0E)cGKrcWn4p}T&xPcuv!Ce8!LF#g6rvy7n;!F -Q$3f-U@U1G_U|LfHk|#CN#er;?cO?(|ZX-#6`)f{SG-ShhlPz!!LcC_xR%8lKW7q)@*Dj&kw*Kbe82TWCl3`T5W`LfwLfrVtN2G(HSW*5Qy#X0ptbvcd{bH_!aUzN&O}O$%Z8?2@nwU39^%0 -0SeUheNceg0O1^baup|W`N;CB$TN^>ECok?Zvrs;J*ctR&_Wb5Ti2NIfw2Nq4Ty5;5gRxGQxds&fOLe -}81f(3i^R29!9@n{ixMj@fG0Udh&z)eMP;HeZ -vJv%}Yjq3dNS>2CzpNI{ytUmwG<x9N&);2OW^lUR2l0q+ -ultdBQF{DGr`Am`za84{JzyKmBj7pRSN;Y&RQLO}QkyR;|@Kza>`{W33-n>x|7neVO`dDWGCu}zi^Wl -sQzx+Iey|po{6NGJW%LCYdsj8ZT>E^Hr=VKv#aW{t%{Uk2W=LJuK2WCHAt<}?$6G~s~u`20;D8qh;Ro -Dfw)-?7Gi(ua4$!;D>^VSdF9#1fVkk4Bn;&^hpo5$-1i4x~-^YU@d6Tvk{_3Yj8WIuCMA_96?`oCo8bso<23hZFk&&|e*ffqO$J3o-qlRcws?(aK-SKq4Hz}FS$7+07tIflkpjgi5 -4k0XM)WE_Wfa**Q?A(FS4D1^Nfgbq99e|2Q4gA3!fNDk!eCrNu%)lFW0ICo*aO@61g`oycPTUbFAJoV -TcK}KQHSnrIuTUPNRm$|p12$DeO%r^YE>jLY#u6W6RwuZ-P?wGR=X?rNwL~p@AY -!dFa?rXGxZY|*nuc9nOfkI7|~bNMp)D0IdAkie1K5XXcoj*nm8NOr3tkk=qWu66e6ICKVff%OF}I^C19BN%yg^bDF{% -Vc%O$X|T#m^qSV1BtS|d6agx!|RC>a5wH=4JO|%a&Z^C8+~kKfrfrxeEti)?#g|L$=3;4s^JEIHmS%~j -^{7JRvaTcM0)q=gYdE{hrdrR+>x3+7rJE>r4XTl13f!vs5(*kuQl*6|`1?Q7CRrv8(ZP(jMA6&^;}Oc56K%8&C*iJn>|@9ZOXi0#ftRN}ZM-21 -OZ%3Ac&sCHY+9$_dt0K@O(Tm}Tb~e3RY*&a-*s#Y1 -7$YkdT}8XZX4&M10U~P>4CEe;4<&8s=x@J)Pa2<=6Fm0t)YmK`j@W|ee>NeZPt5<{S2Qo?{;E`U&1wMjeyr@DD++fn1BaiciwwsHjtOJ8Uw^ar6kud(oG_yKmR;2?M(q0-GoK>fY$)&1i2n_;N!}#E?gg!Px;40Bx -&hMDT2g{0*UhBVAQ*Pl%v$3~yp2oKxDuRA8K$Q}NKOrQq!x;ko1^d7wFHy|$O -8RP3UwtukIBH4tpj2EB+J;@+)CTlxjZRGecZs@kXu>q_x02_X9jOf<$)IZaDPVcaWvEo{iWcPwSW);P -YIJ^b9Aq@id@qFZtI{}UAAbFyMQtF`RJF!RuyP%>(=b?UZ21!azhuj*$Q0QGwJVM6sP$P5%HPfFWFpl -UFOxKlUU0GZPNgQCe4bRZ2putmW{7aT9YbZTs{|zU+^ySDvdJ~kx3rwsRixH+d9((yxZ3dU?=N=7ElQ=X$^>YMm!l>=HpIJ4bhg&Nf02IMWj -I0X|Z7etsFipliXn6i4EIjW*Vr}a0ZbL*bE!+R_N&G!UIO9?fDvgrv-3zcHN#VZzpxlp479kd)q;%A&}}#)x$E -PwnUYWQA!iF#se305yA>9xvag#4F|Zf6=K?>2xUc>a++$HsAn}*jO^&%(F|CvnfCdMP3#C?Vz)j=D2L;oLHoQ|%BC;oJew+}|JP!Z8pjIBHR0)J1gVTt}}%> -I*2zxl>L8@CX)K6Jc-yXol6!=&Jk<7*eHZC9JIi3k4;YdNU~kq68v%8YwDs)fwpqEYJZZjCxK!)+=xZ -h4Q=8V+0yS6LDbuiIQIz*9VHq2r7fFX*@g4-HrA9%OL|n_Ku)ba*C%=;E>mU4=O;#?Yr?#50>3s2gdK -fs;KI;aW*tYO_ZL>7{w;`kTav0kP&|w=M(3Rma9{(Ul0=$A1cfC6i``s}f<-oEzv>wd -zbV!fKeJ)o-{OPQ%h_&4u(odOy@8;`O_8@q^hleujeMOIoD&hO#K}Lu3HE{>CYZ38(!~_K@N&7W%M-6 -$kKx6M<&}c$!jGmfdqgK`Cd1gGMtFyfPs&d-8d5&KC1#CrZ6_zkAb%>UwWt>*LJCeyS^|jF#c&9GRT^ -g`MT~Ro^1_hQB*i!?Rmeik=7e^w$lefOzRgcR(9!rfn9l?zVwd2{BKlE;-_HZA{%&izT_F{?6 -$D1Z;gl_qkZtw6lxDp+1tJOxkaF}~7GM1;PZL;rXKwGB6i;q4-$sk@Vn5QZ)P$$d#+5@B!7F9~O1$m@ -=K(=1!IEuQESg2X@AG6EPA3o3U)|06+QIl4tPRpS-dS@2(^t>ou%VF%*x@Lg%El~_&b|}9&GwM-&mwh -yLFk^Sgstspd(Efb^UV!(u<- -ZeAd0_l2zB7^)BQEWsM@?c0e|{37FUwIdHpGah-~t&WD*W2O1Y;6Ww}Pxv38uA*F#XJ~9ooulDg)hIo -P$}ypv3RX`TWKCf7w5OIsfy)y#qc&d;a45^;}(h>9Mp`;(nb$<60Kf_>fOt!}=a~=GN5gHWw%5dTvz| -@&q3yQ9d?A1fZT}|DlP*9T|xISwYOX?VTYRKCO`rI;Tq0=vh>iBj9+}EuU6{^~Q+`2AB -=>m;rRk@TQ==l32HDIdDP6;D_w`NlE)>x^1F7cTTha?9%AeBvh)BL7Bx4r9kqLF|~X}-vlxW -v~Cy6e|CT@coD*+J=d8@dxnIS7aN#PO!=h$tO)9LYb?IP5Qk3kz_^e7Uh+FAXDrMe3lrKo@eOm+T)f* -x{IoAIi(ldo1q|?GBdmUJ+vH*G@oplVPzcV)Tv_@=giT$h4pi=x9wCzOrD6%=91`YF-^~gh*P`!?f@t -HFN5iJ0M%bQd%7Z?{1?!i2!XI`2jwzplYLRP=y%XV_o)?9`##oz+gBSG-TD)ZrOZrsBkph -qN1(pS}a%iVF3aBHA&68%NraYxN4?{3r6~L-1Pp)RKCO!KvcCX{~fa|(>(b0TF%|2)H%@2AJ0 -Hz9qM97zw)J41)dtQ*jK$z|$xohbMX)a!4;Y-BZwK5(>!ge~rDfD&HH7OR^;`Qrq{`AgPzI80vLzY_nxWd6+?} -;c@?q;j_wC2ezdj#lpKD9jYQ{;@JFaD@nD)>B_GkBDu2^GBDyswUpp^@TlEHu{2d7M@|36EiF>fFN+n -QKRKZ4u;}u7-&28WMbt*b6!yob>Oy7qn5;$cO14DFp`+O7satHKTCjH%j2`KL1 -UuJ;Z?Z6cTr{gN^u&7e~E|uxJfqtAW+d57o=}~-}-Eng#TGdg?pd%G`q{ae>s`#Faa*eTtPT!`aD|!N -)GYQC_KJbKZFurZ19NkRTCE2Q?H(nz*`LF-w1~=a_&ldpK?!H3#1$MeKP1gkqy%52gFLZuKtc)7kA=H -pIwqIJXMjhHcS%qO+XH+As#x^mtRvfqfd^XZz0e0Wm*+;()gM34@^%sfYh3vMZrWH*t~T#_8XJ!>PaqgW@>e5zf}<)hj~D|O$DUe^(t`NJqC{oW@dp;wt^Fy-IPfisiqG<53172hNd{wC;T@xMNp9!d* -l5^_YHNUkQ{D^m;ea)`|$)h9K5X&#CJibQ}V7wW$7uw$#B^l*KVDWqIK%pFpIyQ!}rp5#>lia0@6aWAK2ms(pnpUaEqr+}67fHZTqU_~+{-Uh4* -Y+9mhZZav5bY17ee*5l7>dlhfrNGq2mdU$^_kPFWa5y0F6uae`38Ujosx>u+DIH6*V#@CRbLbh^?K>n -SHRqVzZu0!P{5>M~bUT%QGf^$Yj&YpGVyF0WWya*Hd?n{+XWzX(KRZ7siyZ-I@~an)7)IA4q8THXzfF -I>yMKrsOwJP~G#ium4?nv74>wnn+lL7XMN(!c&viT)g0h25$u%i>5zjs`kxCVJRVRF1NM%SR?h&Sq;d -x2FWM-DEBnUH;g*n1x&=@6`wagLXL<%i)R+1+&mx@2L!C*F{c|Mzw3-U2&89W$~pks1eoHA_^s#(4GG -#Ct$oNC>6Sy;VAV{77}kCVHNDK^G>#jwwYY(%o6V#!jn5Sv$pui#GJja8S)PrEwXBvKm9P;3agf)mfDaQ1fFNlMuQCM*t33= -AV|E2FexmsX3@(~*H3&XDL#*~1KK{sftGHpI#c?OG5Wb?Q#lUjS{u4x0d8y;pj;B;L_1cMOKqnOWQ%OqW-Bvg=`8e -d2j4B}UOV#+|o7zrXZ&$KaQV{2aO`GI|AYCZx->qPMdaG_UL%;kM5lkq%95|VRm$UFP4f0%pW?;ym8* --8TG2+D#96eBcASOMpc9nCzEYqW@-SDv`ZAVkn|pl`5z4(4+LR)Y7%^Evz&k&?yA>J_bIUvkLc3acbV -Thn|AhBm7;p&6E$G6YEoaZEQkR6#fdPKaFE%$ZVB&1}Z^Nk?5VuxT|SD=411EufaIbo@qJ*RH599Wf$ -QV2HFRr5DmgKAPLgqrD9jOF=4cRD9x?fD=(Enx`VNKAIW-JkAA#>3>TpO+a;S+HW -V9JRHUTQVKNsd&hW4ADrjlL8^dOe961*(ZlGXhb!vbQL2XMaxqP^~xrxagI7so75$Megh_)i&9;y@01 -H{fj^1WslMkJM1AlI7Bs#!5DR+S4Ed;Kr;1_l3?G{LA-?G8L21KR|oVE7F=2%ngJPw*W?d)m}l0z&vx -V-O|`8e4#H3ve|r&${g3(y7|)73H2oY({(uNl0UlY@->q>(>0TsfYVGZFTWspRs(AU)XMfWL+#pxn|^ -dOk_(D4sQgcHBWuDIDvv+u!Luvr9*P^WsmI36n$Oq?I_-Ebc?2mU{uNo9dE_F@8@?Oy~je2E=jn;C>Wg{LouPYCtO}nC-=<*@Oi4fTeRrqEueFcJ9uB~UIL0j$wF}$$*t -8X)X1&X90C1^*B$T9caRcN$HT8|hFql86%53Jf2ZV4U4EgNEjAh2u?`sk>8!mdZyab05x_(m_LK{ELP-#u=hsf$@&lc! -Jc4cm4Z*nhid1q~9Zgg`mW^ZzBVRUq5a&s?mVQyz{ZDDe2b#N|ld7V{JPunmMe$THsbpp4L8PtbK>sq -9Zu?=ZsXx;XLP~;|Vv2g4tc3>4^zkO#XZ4%PbZG9m+-+kYGcb`qK*9!oD*>aI`WeuI{JZ0AM+|Z1vg- -%(1TVy`x_w&ENCw*Ae10untgMbnPbYZi?(lT!p>ui~e#f=@o>FN`P$H%W;4v&XJm@UEHaJa1c0?Sz%g -5ezA{`mgs>$fQ_VWfz;GJFK@rti!1&*!IS7t=G(pK!~BG&Ja;&S0MF6f%*~=#HyI=d`ODM4IW`)-r-1 -h$1Fs6u|_ph!^z5>shCeYnQ}L%rYKXHj^AvAAEZ{Px@q^3`RiqS(?2eVI3ZqVQF3T5g`&jhYH1HJQhq -w@eRvO-|}BJ1dlvv@eD>D4#l1MDC`4M35*-FFMFlEYR@^hMXtahQkyenB(uCWX8ZIk^S{oP1; -yESbd9o0A^ae5bK0fIJXcpk&X7U -EBs6wGkr*W|5BLLdzfLwpWLJ1p1eZ%EEgo6W}S!~2qa$DY}Ta$xzvOA&1E~RIBc -&ty{a{Rc^ukIX#YGl`R9>p?rBkCosFb=RA6!Q}Aio{xKv}GHrhC9U4vBA;6eBo0ky%&3?cS2zA2|@>; -A|4;Pax6G>ku6=!v`lt1F*_mKDP}wHg~gS}I~c@s3}OdE;e0BE;yXx+=SYf;Bn^99c{5yNcHd)$E_qN -pvwWPQLUHA;Q&O3(ym7k7V;;J<)fu~CR=mmfj>)!7T+l8vcY`jp;{xAO5!RNs~T}YKPSu5zmtOVmmHol_1@j?3B2uyO9KQH000080N_fRR -@B4oXZ{8N0G1N~044wc0B~t=FJE?LZe(wAFK~HhZDnqBb1!CZa&2LBbY*gLFLHEdE^v9BS6y%0Mizbd -uefkvP;wPQ76R`=tsl~~K?8KNL7Z(LB10UJLund{WM_tU)WH4id+rQLk)r&8%78`A+_|6Uo;x}{Jv|| -O%H4V^b8Eu1&|6`x)F#w6b$fpw|D3qZ*VLXMyAhVwGM8FdY3Sppx0I?(n$U~R^Yi=bpV<{kq!lWI%~OPSlI -mhhr7FYat;~}`hr>WgZOcMidfO~Ka;UN@Yvk9`E>&)qMQPzhrFF4J*ribVX*_p9p4N5o>tu^B2$_UW>Q?A4RT*wR548NsHkjNA&Y61Wqiu1ONzMi -$-Pr{LvfKIV=DJLRFRX&6Dm*zO_h;2O2$@c8qx=;QyE*AVXhquI*lKMu@Wk5LH|*)E=-Zy(Z@0UUg(6 -sTZ=UaK4elDNqK=&4lhw8^SDS+3h~-cgQFZe_ -Nc(5kYuflgqMs$4;(qMHgs?=~vl -a1l&ZmIYfvU>k8O!2w_KcBc}%>H25XUmgFh@kT}J7{KXcXG6ctN=q55R6&o*p*2gXEEJ=P18bGkncxG -nS5EAu7n{&p-EvZqUDkLpb4F@+ju&?pPJ6AG3xs?{0U#H+1(7L0*|;7DSE99fl^Ksk{rY+6cTQ^eXbH -|xcDWoGnWYmtKdzks=l3w*!41fUZTA}&h%e&w}6RMe3+EIfqhG -*+0tX*v%WJ$0A%bk)_2J?8-0YHJ!cXbv+QpyN;9GJ0N?%0j&X+|r&VCJY0d`YjitISuKT0 -{tsd(4Aul#UU~ad4qPN(CPi?xE(oHVg>dg??M=M0Mac=%hut8<=l4)Ho~Slz(g$&VtkB(W<3~ly9dGW -l!NP4ci4<-4HF6)fnY+@aR+0bz-phY{A#=ClD5*hTMe}=Ggu!5iv?8RKfcGb=w+tqk5=}Z7yb6Med2MK*q54Cn|4J6=2D9REyl@ -U?~{e1&6g9)#lez@8jySO}R%^>HXgJxPDjKar^2j3Qp>MXer=nPgKZ~|7n7sqUKt7dA8Db(5r>s(yYO -7Z<+cmRDE%l+Mp`0{0*<73Cw-py?U$2$dX!4m#~F*1Upai?c;5ARZFJa!=N?<319cb6EMG%$B}I1p@% -VGokwLD7RfCIwxD|E7%;NvF=WXn3cUl`aAZUMv=1J%uph>0$w^=`=XjjQH>gCJMXC_zB`Q!{VXTe?n8 -r;4;!q&&>Dt_mAmu7e*-ho-;SM3J7e7>@vTeBCq*5zP+>uE-IQByPJs -(_S@LZF=;C2&jNi)yQ+lh(onJPxSM=?EUz0RNzOZ)D>;2`VzSF^qi^sk7q3$@MzIS`+&w+anZYIt9YC -Tv1b?~o;VcRf)ICUJSe`4l?@}B?0gM$!1ySE$WDHq<+69;Gn7-e#nEEa1mWzG+)tdeJm2grjZ#3&m%Y -oDj{8KML&Or9Y;o4Wy7d|RGKE7NR_PcIn4?@1@CZb?}9u??~>wc;S2}{jc;)thvrU&2+ei&!& -$FaYT_b_Jdt^|SH3gp?1nmw)b4dX_ZxgS~`DEj|q=?;yYs<8u(dkjHk7@|X{xLx3)E7iZyIn-YbEG^- -2&sgu&V172)Jm`XEP2|*DtPF;viP+TKdnJMsG-V1Aeq -YL(@LuBK`jsS&_S{`E1hWmj?+?Dm$}CX{dnnWV+UC^R%qtl?pPkW3z?ylhqLs|kZVPj9zW8y-AU!IuC -D*a|IluGBYt4-|4>T<1QY-O00;o!N}5(LhzaGy2><}68~^|&0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mW -^ZzBVRUq5a&s?pc4sbdd8Juk -yU%_zvwTyseK{dWB<{>_-j8K0%Q|52iL>RJ3$2_$CTmw~o+w8>Ea~h&yFUkX_)9_0fRkPS{Z}Sa9jDq -c#}iM+SrRT+dcrP>uk2(r`r-IwbaKKL8PhAyzU1PW=I(mH6zA;c-*4W3{(9{gm?-qPP<+DPU0<5>j~_ -0se!IRRu|C&s7%At#0&@<6M6OvJ#?I`43tuKq*EklgW0~km`$w3xyyv1|xR7gn`UrWd!>FKMay?r}8O ->y@2lOix8h;!d%w}#B&1P)MZtd%bWvPgLcW`jv^MG;XxiO!u^g8NkzSaE+c>*lFq7(LNz|IEjoVki^c -ogBkDiq6zGgtV`m+1n&{*_A26*=ks&8Lr!mB%~bI!y#aU?<^mXyA_!#9mQ7)fBX%QtVOtkwcE!#rM7pHH55WM9@u2LsTXJGG?{p;WP6IOR?ul!c|v6jD#f~?SouAnS -lCT_e6J#bwZanSr`6_Oi^`~hb}pd-e&F;7Aay&IWay>h)3i$cMf445ZImT&(F}?=kqz^5l05L3H1 -sAAh|;g1Y0=6*v;qJd`?)Nl!+e-7h~v2kP!+9F=46L6*Vwr(6E?7;fD{QpSqDTi;-(oUXkxID3`!ZBg -jbIG|E&iDjTF=8oI%kUP`)#!i!QLg~KDA#hk!=4z5mI9ZEr(qj*pbItQwjNU00`a_Nr49-y}Xz3cnjp -G?@ud25b-_WclnKy9cH_yUS}9*;GU8H%}(8wkt1%#2GZY;YqyBgv?6*UbuaFO)i4HV#1L63Ztn&MUSB*TY*=_KU?V{ZU~3EXuUWtC6<;bxNA2=z1_Q!cz)a|nsJVBV_9H*w9)=9WXHJIQxl(5!PNJuS@TTNBSj{jQ`LV1oF|(tfZBn_l--6O^qMP>A5U5|GMM0P-ZBFW#;~jWBZfK`CHWkR498 -o~09uJrlQN}owK*oe#HDp35#tF;^NR1MxE@Bh(wG -!y0L4!l+7u>={Vk_90O;Aq5$xAPWNq27<>icSQ*Z0CBkGk%B-aApB%RNvyEudo%&ykKi6x%7qBRxb-; -A(0ZdT(GnhjcXHW8wE+L2R|iZ$XQan6X53$Lr(YP^%%so8GR!33FR;GV#8DtPjvSRP6#py5W{on6nWa -`TjjA@6$aJ}a99-~9Epka5rHZ}5=B8VYgYjr;9lTcXlz7ISxg)y{d{a0uH;-D&%JuFm6ECEIdH^l(h? -+GDQ8GSA1V9HQp$ -iD=e)55U?3+z@eVadQb?#fE^y@lQG}Q@KbJT&R* -gw;BerWtpMcJ*X>?T3!9=jhwYL^L5sN>vjC9uH~`eMs}o#I%eiRp0H7k+!H&<78K+sBFYk-F+WEbprg -eS}?4yb^K({u;Ito%b?o}jEq=9naQlfAn?Aa)JVi*H;J2^hN>#*n~tK3f*pbc@rmtIiwH{aqywuks+) -U+^r!osYy&_J{tM4fOyGoF^L?1;T-v6r1@e`1s*fP*RDLdYlkK7Kntw+FlOsP=OP9$Ld>0#yb7S@ce4<3w|;(ApSv$;9UQUJmoz|ZT{+@+|05AaTbEumK5MMJ?)e*2owYdo~ -kLFa-F;Nlfl;;Ppp0$jffe8^$3?AMk_oyKs>p>DQGfSV?~pnjGsQLYlXXi$#c1eh(=toj?6gsGf#uHj`7Fn?dUZk4<7{sb;cvd*S__% -4X8TUF4S~~3LtVc1d3{228tstW7h^+f%Dy?I1I+W=uQ -5ZbVOd`OCCQ3B;IT1#P=}6=jgi>C{M}_sf=cQ#N`!RcQ_08W-oDeyM2DJ$8k+lF8J9iE5p{RA)nay|B -;iz3oxE0S~f4!x6==elz&F?MKsY2S2I}#0F1cGcb*-&h`xB%4K+J6>F=7HnE;jW5BYSdUP8$y*IxIh< -cN6x_4i&37}~*y~9FMV!_63oA+8anoJLmm<@V?eB17_LP&typcw9sPN*8NJM;drPaxW2huma;rEBVOi|70(3c2(v1o^U~?PaJ(bAD6-S2isB}`l!u^|xk4FKC0$pnyC0wKqcwF57sUw(AZeuv^=ckxcBnwnqvUykbXF>jgH+CI@y)YZ -u}|M*beaBSOTjV#D$O=B5@B??eeTT=~5xamfCuWvFXFonTgxy92unPR&J>0r}Ja0#Hi>1QY-O00;o!N -}5)y=w|av1^@s;5&!@z0001RX>c!Jc4cm4Z*nhid1q~9Zgg`mW^ZzBVRUq5a&s?qWpZt4ZeeULaCwzi -TW{Mo6n^)w;9L}vGfhZ?VGjoKkf!MxtWApATOZm$rlb>_h)ilE6;~Lx-@e0(WXg7(R1b+oo$uUl9FNB -%f=}Hp*TA((?}c1btwE|3|Ew9Ol_mJ^$TPAOZ#yJG9;5>k(dfF-WW)4|T-?mAiGsfy;037E;iiSCTgj -FyJtddjPjYs8`r9vOr)Os*Z;4(3`RFx7&UBq17a$jZ&fndBnx&3S#R}jGrsVbPjr;!o`ts^#c4hS`K~ -q+t%rRO#x|d>2YF4M&Bk)qlbl-l$*0qp&Yt|8v77xHXz#q_Vge((sL)Va?NozxtkeQZ@FB5VlrH~2vY -PG&;);ZwYZ4HuYbN)MUkgQ0^+%QeZ=M~eSYFfY%1q#8HsGw7Ua>bk>M=*_MRR>st&We>l4`!m)qtPhK -XjNqyIVWGDxesOUiRca~UQEdcS`%lwZfn5E2ttW&YE(qrlR{MJ_eWYa_{oHzvVo<%Bqfy(hCxn?houw -^FEKFlt4|-UZ!X?vm$&aRswny&>muuiDH%L*6eZz%6ipJBOjD5eflw3Ki4@;H0wVLml>B<1KK2kS-Q!4Q(p(Zkao@}#6LpVH4;d2zI+OVpZnNRR7IJ=COa`n -qA2X8Z>vTG-o$7n%v)OI%6-9=g#Tgc$QD2v{6thHcg>nQdid1K?#vl?tPrS>^`Wf&4*;y82c?z18u#m -c4;OSdVtFFe_Z}Y{rC`zo=w1ub}sagwjj$aC0y)3F}zXJ{O;XxX{>E@a> -B;>ppdzgQ0S`l`^FrJ7G~fn-Bys5aIfOYf~-NW1db*Fibop%66bx4x#ZVz51T|vHGUI}%r -nWQGSXSU%5S&=f-F|axyA9e=n8t(o=#Cfpaxv-xGXvv0vRI7mkQ^@-1i9g>nUv8~c!`--IH2N-IVc+HH2EJ{&lEd^Y2jWT@_01?- -KX4=0obDf`W$oTua|Qd*`_xB^p`ac8*D60u(r1f^H-aeE&2!2kbMyYMSngg -ulg^ZHnnWx@k{mc^j92UWAc*31JqB5va59Tl}E;tW+4tKCZSd~9ZUo|D@;WP3cc8mAH#-aJA!G>cy;2 -Y9W<)JYe9?YW#^J>47LkzAYf)|6Kixss|Qz;IBd<8pcHuTa2+_u(s8T3PwYn -!vW2*xknk}|hcay@>X0GUcO%s}nM?Xf);|#)F*fq~)lJi1Oyjh{=I|!O@l5{$#6$?Oa_J3OAVB&f}@I -&%^qB*KBLH*wCCT`YXL<>yWaR3a7O)YmlQm -%=~Da!sl4b4$*(#o_(9Fexv8*&Q5#!%Eyz@|4>T<1QY-O00;o!N}5(AFE@bg3jhG=EdT&60001RX>c! -Jc4cm4Z*nhid1q~9Zgg`mW^ZzBVRUq5a&s?qWpZt4ZeeUPH8w7AdF@(zbKAHP|6iX1p(iC}OVq=!M0f -T~l1ti5uSq9%A2W(a;scU+rbrzLId(hkXYcL;;G43XWTw}d@-7ku>(e;rq -iUm&xz9XDLiFs@bC$ZgsjJqVpePDl!!^P5xmh4>;q~6M|j#FDUQauwd-aI71awR70jece0;qa_K9*)N --Qmi=pv+_82###5k3!J_B%k>{Ve!8-ym@x2ol=2CCef5*<|M~r!w;!(Fl4pG`oFD|B84$tF0lWVA)5i -&Xvp)N{5nvApj@jDTuv9#R+)SAphyGw2`8)~1frCIepkd&~3A8X6N)otR@CnL5_pvlya~UD*q&{Y0qg -VytjWD?7%#>0tGO=b?+VCo3F`0pqRLBjo1mla1`CoBurn>Z19X6|4 -DbJ7@Mp;)}whrqX!%fKmOa9$t>-syB^GbapZGj_qI=5@YaWHy*RmbG6eTmA+a^WGZ};e}3`vbU+{Z1| -O03nnxLAUbR|3!*^GW>(6>MUO3(7a!sXyzgc&kk%LPoG^v=EDd#oN>BRLl|u1BS@vQHRxg(2Mi(31Y9 -pw?X80<1Wcr{tdoPnn3!q=Vbh3eQ8n7A`&akv#V6b2zkF07lJ_#4w1XBI;{m7jf?1&jZ81^r5psBHCZ -FH*SMy{EHH%no{M@!OQ&_FUUnm0vTw7+2Tz;s~f__9$&ny8Q=Wh#7N*dU$~ZmL-9gl{18xn&}w*)z@V -O^pvUm_H0hYZDcKkh#nLT+E3kX&B5*-4tAgJV0S+Uw|E9})A!kENSh9b+U+PvDl3RY?y#fLu=^EWJ8ATq+vq -ijc3ED@B4ao*>P*>W-N|{o=7QR -`#YmW+;pz+o5*4g}S%^Amn0|!H6C$RjTI1#WF`B5*cJjgn$LsK{jJQV+{w?b8S*)#k{J3q+qG2Bq0g` -yCVJtot08$NY&-WSz=*|)xJhOadMl2yd>eC2p<$;xCVl}j1$f+PjzWYHJKx8cuXr$;A;dir`EZukEK< -SuS-p=aQPZ5&4`1ssgTaf5t)og0e-R97<~{yqVnkH*g%?tx}`zrgbgNoatCHvsND}z*lQlR-&KRNZH< -s%BjNsJ!iM(CYL~YHfJL2Sd#v;4{eo0&Q;=PBKw2n~wVxnzLV1zR=LfjY9nR-HY>c$Lc~iE{A(6t6fD -+IGbU=pz+K|f{;>(JzYzMpoL^etIVlsaP+O+H|852ywHE@DqGO{qpnnQ}CKG9+^8476~Icpg3%DDrmz -B8=n%6(qDE`u3;#+lLnYTv6e+KOa;b;{)NFZlAI)5vd0S+!_X6mWc&-HWlFSqmZS~i6^Nn;qp=?$ ->-*?!nN)oedD%LClBMyf<9Qq*{6sdZbk0_f>nzP6BwMWJJtsmeh0_67Rh+;MBZsqe>&g|yQjjiRq~>! -|wVCs|&dNDvb`+<%x+{)L3s7U-IG^J?d7Y*}v|YR4NfygAs~%=JupIF)%w%OofH=Y)AnyXwswAvymsU -6Q91s;zlqu(Q7&s}X?ZPY^$sn>)%a{6vUvfiP06>+&r9Gw%OdTG|rK1QjvWa205_if7hoJRL&BM~3Cb -tw=dS)QfTS4bP|5fg!_^M4(c2@va%2hRQMlrsbw6_KNP#~?57a4iT(dmSZ&X^0Uk=JZlF=ce=U=8nw!yd~&yX1o5UYwp^=Nvsjr{jJw*kHhp&${e6J1d`KESo5s2;DMaP^V~jU -eaUB9&@|h25*gzkHKB1#}l?poChedL*6>jQICzsm7(5&T`$-XkR2AYcDF%yJ%;~x3*d9+g>i}-FOjMp -TpOONgkl|vLl0v%K0QCgf5$i)1FAOM{2vTvU1mg7{2vVI!L8?DK~KJc=v{u;I%dd<@##r*&=?5ZrfNf -+1~;8@Dqty)u)gA%4lD7;?q%LRszjYmar5qRxtnDBhoIvKBpojC+w~7!zib0wWuN_+`L2GJrQHzJdJ6 -u|Pm&c%Caz)xX|tuf5fwjbDIOAIpLSbbX3;KBv^_cmD4~2gcXu2i9#C<;kpL5k1_Y+&0A}gz-)CVQ-v -SJw)4{T1ls!4r)=$O4DN)>@i;$&gpOgXcqJDfKl83sllch^y1RXs}5A|Tts+>9ABhp}h#jw9kk~nD-H -0;z?9t(ReFHt7@9j#rpB}bFIXrw^7NYKz#ieP2V>e>1=j#Mcn8}pPZ6_}L*4kxM*4;z445fTScp+Yaa -OC20sRPJo7ZY7Z*4~yto9%bmXlSfXXINo5llf&?>KQl;a9hr6!dc}YcY=^Rzo0o#X!m&~&H3w%1;&^XRa!mZNUKCaQyvL>V!~OcTx{)*{x;0_!QPds -ut*kF;`la7{y|?phd1Bi|Ee5xZRCz4@X=zS7lO8o?zE_; -qw(6YxV#uNC~sByYgEsa+r|>^!Ko%BZyQ(ZrJuU@+zs=2G -=YB2UlYB)kCHd~=&x941Kh&ytyji>qMwB2&)v_=NB6`ZxxR}F4ZJlYeDti`!N2Tc1Vw0U4w6B?Tul&E -6vkNlyflvDEMjJuFCuaT%kVMBq-BeAEo&$P91Zf^gwK7?nrA>iKKz5&=e@}?@Y1ELjO53@Sd%5(N -_N(9INS8L@lMsH($Ns<@Rs-?yY`3HMU2;iF*ocYr7oC!q|RAFgjZot_ajG{Ceby;L)Sr4VYiUsQ@fO- -hxwWyV~QR?GeDHDhkAid6lsntL?^VEf`Jd$+6gf2}^xFW|48(53@WON)(0vA4+@|C{h1opznky{sT}; -0|XQR000O8;7XcS%ZsXBc??y --E^v9}TKjL?MiTyAf5pPRKvb%-wu{~sy4bxmO&>to1W5`UU>Fo7E~Tw0E|0skBjj>_`+c(ya!Em%|3>EFD>snYfw6r$Tgqx%i`81s*fW30PLGfO{M -qU8=_y-mnO^g5vgYY#$`t49=`U}8c=`HGY{?X2$xFp&?3*{=+V?MheD?h3H_urvYnE}HiUMmMf$NdjR -I=7gZI!>&+ls4EUds*3%T216Yv$g#Tl-F`xJq^VZjmZprW-!8Z!1y7$u%!CS;qsZ#K|VDDp9Wd)ECeH -{`~cuTjp(K#tTt$KVijnl8b^9rwL6<7EPY>`W6yZ(X2$-ZbXz>Vjm?=RfnfGS`>cbvm#aMXQ{uFO_@# -Es^Ll{8DE0I(dgOBpI$wE%g)$)qlWRTtzOIWix;%Oc;@fz?X)-KZJjRpB3)h$#txoOM;}I`BuR@RNwC -btm;_8Pm)`fLhr7@o`w3xMJa3}C4>2o|L!Zi<3Q0KQfXsw3pviA+m5iI1Gk;ThIR604yk3 -8_!n&$4X)zZg5&jV~u=Dp`YNmj=@!m>au6vsO0CLSY4nHPyN%^3!0}q#YLS`~q`gdVPtRxE@(4kZOpy -lY>Q|I(u6;fgoOU-P9#SvEn7KQw=6%&U8~1ycGmE->~^SvYSi`0qav%n_l5+$~IzSY(!1wbD}{4y(;B -R-|PICv&W8;$4tPhfEyOkDquNn3O$)JXFhfwQ%zMBf@kEAU?TOlk^+`usHHW>I!dzIY=dVpV=qaGH$s -6`Sr%KiXhfkw4q8!W!cvw>WW2^`FNIb?Lh}u6+X61WP7A;^nsn;f3SMMp*u}~0(mWQq<5+dWT4fWlT? -Y_S?5LV|v6ZsD_Of=jfwb*|R_0FSLz|0+sFznw)#Ba^A+gdZryqw0!Z2;Dl<;5Ve)^)KHx9%h5W7uTe -e_Xk5Nbwz!V1fY*G&+?NOC=+D*CWv3I5%xBG25}nVs7g^+Dgz8+8}|z!3NbbZ-Qrl0&NT>IyR}_zalw -5UsQ|GVePffgO00rd{lA!m-!c`cU!SMMsH|+uaZ_!yE=)h%3(KJMMlyg}yY)Bls$edD-E0l82_H@7T^T!vWM>1#Ej~5bBC+@op -JjA3e>36)gKzOLp~o4-+kF_>^sG@@ZcGM#v=`jH%+-i0HCdQL_uDm+DkKGKB&z&f#h0ku> -;N#agsaZ5(IVC2nlfAKx0||#jMuTUr%GMT6`Ro2@nyIBhqWu&PT9v{SBbde)w-)w#2Hbqv{E(y9e -l$fztXu&Pcg8luKZDqrjFi(X^BHz+I($AaHg(Xwr5tY;s1SY@*HeatADwZt&*lymGOOlck!7s|BjceH -;r^31jL|ZIV^Smi6(1@5Qs|GwT_%dx2w}hhkOgAq}*n!<(5 -^oToinxT%AW$iJB40z2hfrqQmbeR_}aMY3M^Np-h4F+bPXZH+f@)3eNzRo?yAeea4+&2K-jQ?Gf?o$&1e>=eF}EPs>r{7p2u-{l>3!I6sezdvF -lMM#WbBc04CGdIC7!^XcRbyAs6-nuc+pP245ae3B;AxKqqe7&N~d#?yv$F -_%i-($t%rXzIk5P4q)LcmW<|mR41mO>N4`g3Ks_Ay-24G|_hW<`o^RH?G#-@<$I8; -~*mFkg9LkHsE=82&C6FmIen$1q{sh9f_g1G}6}y4U6BW5t8?|ij%9P7)EUQq$L$6at4rV@2q06n}iRS -NgL`AZeu7+MU@C*{J#QIuOdx4@Pe^J3(R5fY7SD~r9N;Ja{C%9c$ROKbEedCO_-nAtV%ELS(nTB=!?U -@EmZ#QfrvYWV*X1IP{L^5wpWH-n7sDy-m!=z+4Aqm70L!KN^igvS;9mBnMo-vdGr5F#E!;oPR?Q!UnQ -=zPLSn`OFjEJ_?Tus8*U|WW898-qDOKw^-AsX8Vs$2kPO({&9(GxKQ&U!6Kvz+6@r|5M`(JT^WE&~pF -tb+=@4%owzg;>I^IeSq=3O2WpWz)GfbBD>}$77F;mL&D>j^i&G^l;pZi9Vbl8@oxjDj`ON=>vtk_c?& -jW777rXb^I75s+%*v(I}BahLf}97jAyqL3P2R)-d9Ogf;1y&;=1%_=N`#Ns$U2D#S_(x7E6Dy=@xxP} -grjZje6DhYXwt8K`YG|2QW$a;^G6J^aL5{OzLdnn^xV*y$_l=#Ly7iILzKDCmcn)itbT1hetIP?xqO4 -b7T$Nm`}uMXE83m)hSsZeyqw`U!Y!XyFYk%%3=k`T(Gb-O5va$tthqiIeRba4Y)%S_=3hKyiTZMI3L; -``4XP_GpE2&4LdTh8$0L%GcPY@r@`jPA -C~zuBBAAo?LKcTov50GyX=UD?XczT7jLPpIdPa&W_s?-~*!S5jZH%@tPNfjMsWo&_U;uM`!GBxs>eD` -M6W^li{(oMlD~!sjK)k&9u3PT>MJO86msdH&nDSf8A~f6uhg1^*{!A3i+!98d1Y&<~*T -?XPLMk_WgtP4CT>(%XW^OFA89zPuo*3~|q7U`EKUpbyygWq2 -cd91d54->a34Re?{qt;|JIMOvXzU!QBsSySTdJn1+I_}~$%WNxRw*qoIv&{xNDJGYB2Y&-={BLmiU0O -K%cJX;Y?7=CB*Su*ZmC=Cwgbv_Nb`Ca&JE~+AO?E<_@j5{T9>V4DHm)(li9gH;&HtUiz%GphbMf)s7; -H!kS?bto3(NZ2HJ~R!F=sw@F&Vk;m6FPQebehae&&lQ)Gx?Ldv8SN{D)cZ*S&$hc<4QZCXMT+++4 -mKKT|Z{K-NtdBrb-{Gy6A -oErDQNV13-^{Hwrsb6D~oBGh6Uv=$uJM-~Yh@Ik3-y8_o@!`e@@a#1U7ZA;s)X7+xn)uTslizH|SNhM -y#Qm>~TKw$UuG4H9l+u^P4Px@7OWBH)O#8M>>aU37pFNgNHirXX0f81Z#ndbq+u(v*m;MI(rcHmS(*! -Cz8LV^b;m!y-vK5qBu-h*~VV|{wBpzN*Cw_e{GYP7V8cVr5h_$PDo7T2BqKBYma7E9ZXw|SxS{jG7D5 -+!k;ZY4>ic#+#mp=X-8YzqftdHr*| -xstlQ7WQn$qC!@W@LDkNOTQA&YZ2wICt)@6aWAK2ms(pnpTMOF8upB004v+0RS -fe003}la4%nWWo~3|axZXsXKiI}baO9kWq4(Bb1z?QVQ_G1Zf7oVd98h0b0ash=KK5##_}#zsFDq`Pe-(vNFebgP$(2GiNqI^)4r>UsLSFg& --ascTBc3ZrO9NupR{q4)m{6wV*Xx4^(xEL_N3mQ{N;98gr#Bb>d(!mf`d5%rzh6$HWmHf9`jsYMoIqfrC=+kEUApVO-pw%GSARv+>x*~upTlsYB3akHK{Zl(C0=MD0VG!wb5mS}+75+W?hu?G|#A_E{KM+E!iKWaeEqVgLse;n|R -d$n$C+29dN-KSl(y2a2-KTdy=2%~-`UQyJbx`9o;$X#@sO4*^Z@k;L|?B?F(&E -fr79W|}`H6S;4SGSX2vTieRy6C&8S*O^!X^=tJgk0|E-ocCNf39?@^Tj4=>d#T_{EMMNajSE+s>EM}s -8WBP9`pH#BDEd8`~mb2(KfKd8pqc1L-2dW4M9H+*#bS+_&zM}Q`IuI>G|iB&E_&JVYR%ELrOSLo51&a -Tn8;bM6VS$2z}pes`9h&O%5X(7=DNjxBW8k6Ed!WmLK9bifiApX89*?SskhG{CO2RN{v;@Yz>;QC=Q} -^FovKSVG&{2pv1|hi{cok6A*FYrh5fp=er~F6>8UcdPo-v9bs0kL35U#(pWF0u9D{g9?xPoNuQNfV15 -0bXAdxj0x?MvofdY;jx#aMQ$&{hp0p8CY3$Lzw+|FdUVZo7xBqlQHo9qX94%)8^}3!tqar%`)&cVol=9!Wy&*M2kWyXrD@vWTlNIO8^wh|*P==n(qXUfC#KqHd~AwU1+vBbH` -#4yp;s1K0890q0nohkWWQL?TwHr@%>r&LmATm^D1%Y{C3a*Z5oDZ>fJt9nBh>F+a&^!r9sRS=45MFaJ -^})j&#Ya)yB~r^{uGF^H`g-h)>HRT9{|i>P_%YlKl!gkeY;JyG2v -Dy@32V+^4coX>H-{4w;7NKl4F@?Vm@bigyIyDv#ST9ZCKfXKr`SR*w_^H~>0MX~E0uI)(B-g3qg&M47q2pwyswXIFs$6y -BZDpP+)bOmuNUmw-n93SSG*S#H<40RzTbwRFyv-;X(H>O@9+IiNq-vSdSTD+bP$_P!KSQrt&&rx2!hKs?aonAIYUo3g|#+Y-BA{u5 -Q1?l*HFWv#lE0@-F@L;11VFfhNpU6zig2c}E#cWpVSY`*hUzkOcu=2RU;2+O&#go%g)Tv&7yfQJqvfb -w6mnLf6sm7l$PT(|Lo^?3s9qnDTMB%k*w+zXi{k~hd4hi9^NbtuK|#Q&t6nKz}j$@wG=2}L!^kuA#A~B{Q2TE3_H(Scv?yVa -O>9gCpKWSUMzmT`de7$y=p^$H6kyS3}oN7FAbXz+LnU?L$Ao6wsl~?Z~LxD$;{%GmLY)VHGq1D6Vx_h -DrRcKR6*1(nT{xSs8Z)&V9{xxA^yVr<##;x_Sq<<#f`rI?y$C`1SV?mpBBqJZSbA{{yVOV*01sCsO{I -7_FrSU0c!&y|N0`(1j6aEv={=^5@8IWoHtb$y85Y-*E+e%{J)g!w44~}|3a)%ymmHZ(Uyf7?0gK|j^l -yJ`Pud4>~wK?KKTgSaq+TPiWMWKEmRWvWa0!izRxeH&Jw4}I6$ooI1H5T^Uw(uF8YB8U?E9pGDvvDW5 -iWjuCp=?v;+}LZs%{`fFxj3KBh^o*!Ck{`E|L8vi8`uc`YoK=3~ywpsEnVYT7Nilhz$oh&ZWdorXSjl -NJ>O$|#4-cvI(AvB7{!$uvbAXp&&J3{Z@)fF=~*BH?_Krd_o8jP3H5n1#VJd*v}RAl%kjx5{8iNHZwj -T`luPEtBPat@UQgR%<}I}vWcOA1cBKAVFAZNrBUD)E7nN?3J8s5DB9_av4tdY?hX3#>b?(Mm!>Zx$R -G~UioEB}Sdp*}m*2jXNW+ -Wwad<<+3o3v`c0z}E6E|1(Mw_e9;q8LOq&N8rI8I -ajM^U<xUj13X7NvkpF29T#k9!A#YFh%Ml%z`dj -dpsE;=D)FVT0Vzx~T9dYX{wS1^NpRK6htAj`F@hth!4cPR7<&K>0v5Wh`ZB -qw;$DLUYG7oH0*0E9I4ELxv&8a<6}O39vP}Gsw@LFsFAug|6S$W((1hiMDnf&*iAjU1!9Ji*s_BR(i? -|9Mv=6i}va&K-WQZ`E2*lN(CfbYps9XoGMYuLijB=ozqY&U@mQ3G@kp4_SIS&6mbb-)sw5p6KS(I>R! -kPd_^cQ%|cwh0P=`6lp7GAQl*{hUi#Z)!W7v?T(zKwA`1(*@4U2Y?{Vm@Ni}upGn4edysTu^9041#U( -4aKtR`xuy5m%KMG`sq39%R_FVAlLnqtFt(%y)(8PGl7zaaFD>xhm;DfXeYC(QDFh>Cz2Cu4V{PP+r-) -rbMCO*A<-Ms4@LAD|13tqSMl)-?gV2eKoVZ`$i(|$|i8DG%2AiHfhoDDBHWyJ7xASmgsw7*P?S3OSnW -Mp!QldulC)A)OQz}L4q&1sUN$8`d@)yPsU1PFEI-qz*+>m48+Tz>q531*j)5Z0--y@cm7HANhAniV4O -3TpcGK5CheSM9REBMz;$ahGqdNo%-V>Gss;&$1c#uQ}34vPtTp5+J~eyg3iGD1k*UmEM4xpj;0d -d9{HrkPaNfrsoJHkf3C#+oh$Rv0EBDt4?pCCV$t2p4)K;7g~0rg+Ub+nyn#Z0!*)|_EWE)7a~HTcHcE -wx($3k91{vFj4Ih6sqhJ{(~HR66m!zDGQmDf#5vVBWSg5x;R+>0!5pHSe^>cb_Cn%u}?q8hzoKsdKjC -l6vLpOV_Jqq_kf+C_a=ylr-mq58Tu8bb7LurK|OGQJLJ^gl7I -7Q6a4b)q^7EoPzXR__MSZ`MH1B8ql~NHf^qeVjjLDezGa0k+p5ioaK9=m-_H8&qKg7Qb}$Jt0;qtY7` -h|KF7q%U9YaQOR|R6OOj?6WlmbSQkY$iCiDyB}IB-l!Yxzb50fCyXc#CX>rY|O{j^YQm$eQb}6{_62D -)0-wGHFoF<`7^3X -_jP@ntpXP!S1P5!fM11x4E4+TXTAmX+pOIj@Im5!N6R4!>=o-@=S(w2sKH+qjh;+}6jl}0v4;16w3kg -%pbQ86L9vLjc-0{`TdTaXQ!$oBSP`WHwlVoTiEpc>3tY`!>7)h=355d`<=$|YG+MiuSVA{Z`8M07fm8 -hzNRSRB%&I8H3K*mj=<{|uD036K#4*H_aHf9$$(B&7Z(d^!{1cDCza`FFN=46~G7xI*=An*gR@Dw|YC -sBgBIb65R#I7A!&=@>dlVow=eOt)sct->W8A{X{UazBCuJ`GnTbx@~}xW^6jz$F5 -if{>S_~_qgA#BCepa%nPmn@G9v>NdQfPCVzuhJ160~|tD-}VjNs%v>LRe@RI-(Us(D0#3{8xE^Vg7vq -n^v5u+?{yHV;{_A#_VizbFTl$MiJr&h(B(2M2yRajSEmsI6}PNOp!>Dr*%^bXaVytdrO -;noMNXXakQYaRJ*NLEBz*x!B3KJ0j3%XRAN=UKRJA0(bbXAFRlPB=IBA35B}BlkI8QQO+yg>E^l3J{{ -1QRcfPvr4_b_NGje5U2mZlm_^!%P8rOSEO})xYpv2PgJulWwD%PEboQQ!F=Y>YEY|M*J(C)M*&E(0+O+;7!bAdk7uaKNR7wEd;RXOQHalq -K8(vY{@Ij7No;e`_R>lqPM9rtWa4WtVOh-2LvGRQ~L4({*+7CsD8eAntE}5ci#1+M})KO@W2^JUE*ewV!vREP5AQ(ROn9{_c+I -xEt-ocEPQSdhQ*6$aiUheYV}u-|*I@#R#k~+U$6bHMDoO&^O-MtIde>#EtNr_sck^>s3Q*6T9V{ZR%^d@j+4PbOUWnB`*&o;mJ&F5}Qs2z{BwVCs7rlVMOSeD_f7i<8 -Uq4>#@t;$;$CyW(49q_8+xTZ*8n)ui)`F_8sbhi;H&YuFyWT;t{_G4!vlK7y}Kci0^C8Qe)H=cC#8c0S6qhx_->!TY-?=if~^|4!vBaSb~AyLaExW -f|&j$QnRj-drM*$u(ZBVVc`&23IU1Vk}nmWO|~VhgS_*JR2`CX``*`F`%uYapecB?Qv3C^(C^6Lv$N# -pXh42jxM>F8hdrz!R)dE)>Bo|+~UMl?am@mWoUz?n95!Tj>EEw41O+Q(I*pEH+U;cnYXfZS%rE?#L2Q -2KoBr;&G-m#_TXbZq#jxmUsa*LGUcc2^7ed^S8MD(8f#Gdl&0|}>de}wgWbfyW9T+os*WhsXvm({Cqa -Pb0PW`ZpC*xlphNFa&}eXXg1t2%^IfjU3lo00ezTZIp?kykMcPv9BuPLM5%+xL{N8tW_ru~U(EIzn9# -H-jBmluMC}SI-G69EyqGQ~t{&0%!RPUp;oz~yezK`~x>J~@M%tDv2vF(Ehf*^_1j@R1m{b~!osEJXw5 -n_nTm_$H0+Hz`*%)XDF!wFAigPELg-6amj$P>jP1yAwry+g|P_KfnqdqnwJ7h@LS*(3}%bV26L_WnTZ -d7**GNSz;Ns46O)k4_6Tvbwsrhp9!Zv2Hby>rBYl*TLR)iDd^G6DM^xRmK*WXLK_s?qIw_?^Tl=4# -f5djrpvmI827dMjqusQ8ZZ^+Vz-Y-wiab`<<7WKgxzoH~)GS -Wk@8Q7upFclLKYVyH!efsV<>=|WD2C!hmDx2n{)*1*MsVOr`

xhmm07){Oc#C9(bF{pt&d8y-^>JMF6kQy*NgTtX}seq1}XXaY) -le{9UVfT3qT^l%=NhQlPv_po(MpY(3TSE&KOPbx~*%E`^13I=>oGjENG;JpH2yZUAZ)*Wvk31XQ5~aE -N4}G3R2N|#3YYC%)CMMQcO~L25?qkwe!!@_KI_?-KfFRaAFC57w3jP$x0Jc>Z|loPT{tT$|P!%nVKy2d8!w&oaL8?! -6En`4c=81SUkB-0iqK!#d;`OSff%iY&P~G=8F@{w%FCf;rEbhA;2>P;owDl4-c-{04B1C+Q$8$87hb% -B9MfM{p3T}dYG7uQTtHLhaTqHKlTLKOF;i#?yE)M61y`VA=?XSdSPiSglleb6}4>@>>_I5P05HGOzko -$hmgA$BqJQu&oPIvxMr(q6j;WLZ;t(W) -452!=9*JQAwfAjKgGwJO`>So=8sWTMq-H_|x#^N0iRU`O0yef5ewaXXH5NfNq7RhzA?3E9UtWw58ppUuNf%Ao2rLHURd -q|R~5k*iX?ftGcE0&>K6y-{N87lx$QixzE%-*?`j-o8oV;|~l#A(#I5kxp3sW>7iaMa*I$)2u5J=TfO -FbPkzG(rMr76C`S;+o)>+i=}y>Ie+Gw++zx^Lok=o9`b-v*vPL-V -(*tB==!o^S1`v)mtGL8L^v&YH6-3B9q}g3YckZzo!kQD;Tg%$9~Tn9w59Q78@o7maC)QLU@M1_sL-nQ -@Q#r3&9(AWjL^DnY8jhhHgM_XZ|QxUIhP>1MMk`Y!thimm&#GAATtQt=n5Jg>D46qIk -12teC<6mCC3B@iZnmLc=A`UnpA(9J!X`fDZ6R$LZNx!^_E3ex1i8`feO{FcoS> -fGBNSaJ9+)#L->X4PIE*_fU7DzFsDg=_Wot5oXo;6EukcLEsOT=+Or2Zs}b|ogM^ -qDn;PP*ZLn2vZ%BSPYW{|nU;L(e2Euj#R>ZRD3>)o$DyuXZZb-rP<+z&eMQB|;mJ<4TO!zMdp5aNQPx -o&1)BC0CN0(uP^MxGX&5x2X$OgK%{l!HXIu4vfv@7Nee(oX#iqs4}<$6vfpNErIBa(dz -}WqAVrEBzt<_h9Kd`XV&6W&`|Gld9;~ierjoDbGvNAiwHNHuYW6hFRktBd-yT-3t=8##uJKkhrM -zvj4!7CqyxA39UJ!20fval)|d&IB5j!_{o0xNR%ihzk#8b`Z~rVzQ?639|Eem*w5#+>Dbso{fsGS-wxKTC3Y`?xYtcm;vRE -7ckmYstY2KuDQ^mnk3){~0yrQT+)sTUmT?iHe>l=VFe{a-czmGz%|FYl;WuwF-xX&7XU>Nbx35LZLc4 -=PO@5f`vl;aO;V4gN{8hTZhQwcRldiCIQ|DY;pO2MVu}6v>IzzC&%dcsA0Hglm@ -o(_+9sJ}N%)jFo4^n92J0e_Xh$btmQyZ_-P?IwB+XphB7m=E>pFiJo>2*Ip4g9dn(XEyOnBH7}Ncs1E -_Q6LeBeUQqrWe2BLET~}4(b-e6O`BcMd;H*cT`G(9^T&ippp*)*%m@?IDW=bhmp745e7$=J1E9Q{;VY -riw$cVqu_3oi~c{h^kFrT9TRcQ^2eTccK>7ngr!E7K-@Strjy5DL8D_PqqZorK6L}#cQotN9>dng-Nn -dMbG)iQV|~PGv>SWMgEbOgftyedMV5OmMaYd;UYS00I?d^zYz-4OWoptxoB5BbR{Pq -(#~UU*5uAq)`lNglKvO9xz8+%=X|5LP{lrXl*Q-nUB?a*PJS>E=}%&UB(GR6e~)=DoCekO5Ox6{n7hP -`gHi^1So_^Pk6sGAmrqltHgD!2XZ;g#eN#UnSdgsZf%`Lfy;btp0 -n2{Mw;83dI&62T2UVgY3MzWL8hRy0+hsZ43o8eND|Xv|cUJ;;rH0>(OOWKLg@1vbhugO@JDmY7+ad!| -LMfiAmC@XmdM?z&a5f?hS-*|O}sdUSkr->5I!VdnJCy0I2lbC1dGoB0)));o)GrAlz$8q4~@$jphe3U -x&vdY_@RMn*wIMS3tXx#<_zA46Xq<4Dd(K(4)EVZ|~n@-F6q0}y-noDst8i+apn<1@ZB@-yRqVcb?R{ -H%N+yNtk&-m&9g;n_LqfZ-U`gCK>NZD%*|2D(E4Cz}yXL$73iPFK93UBJNY>sDV5izsoCdqHYHtGAXK -Y94xO-g)_~;y-w5-#bcEh}rkv@$I3S^5Ff4IM@ds?Am-dCl`2CEPdedo=%<-!JNHYU$N^P??c>0q1SK -OJpzzIMSvXJnBX`@OG3@{BYkyux38fcU0lKuuqqKY`yv2niE}jIL$SV04qmVLaQ$v_sRoG6DvHy|MY_ -t=M?`;7ucC6@)9I?JSkI(09rUyF;-uD;+sA}nSznn28J!*=#9~b4-&hX}hNweV+MyBEu)JQ?c4ghtgi -uEgLR!8_)`9Ir?hljX-FfOyNzJ1Dl0pE&?vACQF4PR0!qw= -s9;_0?>x?{GIT1YQUXZ1$NWpX1Z)E$>!$11q32TU4eKO_AQYf=$Q;kfa*PMsb_ZQ#BAjhoS%hvoJBh# -$zln5PV?E+=MM^rF>4DKfs|eJXKvp#;UOf1+R&if}qL`{igvVT7HA7tH4ced;tNpeJF~{nv|0ilNhAu -3Gf>NZZlCEp4UPl+ls3m)Y-R-!T?IL^eu6vAR9WG-{T6G-NT}pMQOPNRacmk>EqIqg%~e#mRe6o60 -hehFO#y>GcY+cu4?X*D56H}kGBDO3;S0KW{Dnx2UR+@`=RR+e71|V`_Yo;!+^z>H(xwm=zA`95)Bvi> -Lf?P+g=JAfv%%@T2wHqjAPcV7ab`}WP_C=a`oIYrPocC_T;&rbxk?*SuB(>)3g@m}C6wy?n^ETNzTF( -ugVP|d-7ntzE5DOf)l7K!r?VcLoc4juj*Nko0Ay%>r}t69ha-@s9S0`vNe7JKdQZgkd*0V|sQ(I5eXkPE2tYWQ`t(Y -`(q;j5#~2h(K~haS%x(QCqapoXtHYke$3u8zh85yd>M4tocDmBw~J>b-MP$yH^h=Atk;_4GJS0r8yRG -3mc8nt%fz=3x8Rwk2WLyniAB7ewwchUB$7U;Vq#b<{Pz8T>$qN0Tp3mY>YadiL}AkMMhG{Bi+tvWz}~ -4dE{zZhu_NPtV`r{5SGOD_n-Lwj|zYQK+$$ul-i{xsA?maNQE?vs>C4?Uq!P%yyr;Xn%f5M4YGkp)T$ -~irw4Qd&j+9y&t-_`{_)Z)&?%0k`*op8Hh(_0)bFx=3+nHHX^xJiis_H7_e~`^%LN6X&(KOe7p-h6ZN -&LQ>3EzZgww@>a^@u$$8nW -uDFWbpp}gtmB(@L7Fa@^Iymc4(OAzEh7QcV)~TJDvRHqr5KT_MmRmoaG@Aqgo?AhfURUMch`szgK>Hb -ADbGbrkA}uz}lIZ__;5&2HXJP#9oKeH$c&r%lOCxGDX$liT_ABKVRT*9Zzl4WzuN=0pUrQ)ud9hFk`Y -wD0yXTrw#E87L!>)8>KewINqlib$Ap2kTbQeg4Q7`mNJEaL>4onwBa>i%qg}az1%qwWRA>yF%moY5bu -)V1@4bj-t)y1H8Ka6U0Cp+cCTgA1(P4tT)9nO_Iwza?psGSMk`(HMU%;HURhKpy -euopjf4LzV6^fty=A5qe#U=+Y+cfDK0oIwCx!BeH#@`5i%2ZxY?M$S!;BD16ap;%^Q$rbnKI`>qWz+; -%OJXr+xB_{b?gIDsoI_+<46zI`jSRsh-|gsW6M?@X9Y67%+z7ng9Cw7_mhWq8Xidi)RY2eVh6XSEsH3 -Hdf*o7EiP6!Vx_wAT~Rd7F41ip2tn(Vx9H=w5k6iU*T-wqx(Ej!4{XwfSqADGVPmhV -j+ta>-+=Xnj^cN_wN>q&R>v3GnmU7*Ka|yL@(r-yxD|mLrKicUY2!iAk{b=A24YIX?os7cDlHB)hwT2AZUFH8S5FO)@gyat(v -s>=}0i!cWFUFA0yS#l-z>GLN8bd9MRE0%0VvK+oqB9AdP>@VKRQt(I=XTlKCh9rBw#w!kIgta3MJ -f!BjM&g--oXjd-n&XEW}TYxZQMWKdgXy~*!y~R3+8c_*0!0oTe9h?I_3~K>u?XAG^-3uef;%ozbPP8f -|0Bth_(gXuhz-Aps`C<2u841W6D9T)fs2Io+V255f-0Yo>y9()MSQ)LIjFRN!_u?JqtV -lE;hfk5aym0BJ-^9noaJU^IYV8Q=EmDhK$dQ9O3~rZI@9O^J#aQl3Ao8$^$=-NtAD4FVP6$u*Xn5@Ub -Cy?T{hS@^BZ)&S~O>2mmlgwU0dlDP4`aCu-{fq5o&gaH}&jA<9`7>^O+B0 -PDqz5asGIaj~G@h`bw6j`?k#BNPm07gm!XZAYY7bh}kLCPw4fx0zm4G2+sm|Dp-Y9~mKk$3|1X&HrDm -C||zNf9gt2zWVoO{zRgg8Q`=QyU~pDidw!4dckuI~SoIoz>s|;^kk}d%ZCZ0fIECo+Y_$#Oz!SQOPj+)SgH5!A=PibwfHPT{ -v4L{1j9=xHzpQ&!kS@U1iS?Gd)TjQ?uk_0ryD+&<=X`7f -bA(scMS=NpO*ZLcVndK|R4Nk>CkQTwgGxapd}D~PN+%nJd6wMO!Fj4Npvl(;%8< -s?MREXBaP2j`{;VU2_T>V(uYSzSAxeBywY9X=Fi%Eq?v;jL=+@4?Fy#3(6d`I2!XeQHLI=JSsm0i;_* -F3h)HII5VCvc`G{Bmk30PMtBQX7!jhi>My9p3P{K*Hn>tb}c<6Etv-h-KH6I(zFjhXxBwow%%F(bs8n -Ughe`6gpXGwMdL2Mp>B$DD5Y)j^x^y*8xU)Mqds};&83%PuVK)W8%1AFmj+KP^6g%QH>%?K!%!F^AWw -pFPHBKZ7slXaZv92V+uwy``#bb+${Li#0E~?!;bkDBmvyxOxrC#5t>78T|W|@2&;8>IuCtaTiPF1GDe -LqvM(poHs_nbbP^yMtpwcQKYz_?_$M1W~hfHwH0+*Ua=*9i?_VRLvAR9XxB-BB&QEO2pPZ9kI06 -+0B@dtciEfk2|-fC7ly%8hQNEle;v!!|(7BUu`7~`KNY>XlbhaR4#ohkzfOm2%j1?=~P_AYXc(dMir( -BY`<`a7%Z%4$%z)76j9t%hz9Y*nM#4Kv+q=w`{i{6rFumi1rCm6HwAK}6wqHep$Up1Y08=Npb3f)AjD)fQ4*dR&Z9GZ4~X;e3MCB3Ttkt^wK4nny=%P4EKaF_my`j|ay{TA>dbw{R9QI -ACDxr)FP7(!v8&9Tm0%6v~+i7({N8T+U=)^Qzlw^3j6_Tnt?O);qxvnN850BLqXIGV8it+l&N6Fjz~M -IDd<6eKBo8T1}AMKN-gB>7(Zng8z4huvvW8~}IXI!sHOn$;I#n528pE&W{{xZl*}P_g+8wwg?sz=*cl -R!P-`wiW5)4h3<%gY;Jvf(8T47UGcM8Cs`&dlncoAGze?t)2=$)ZXe| -Um}shJjx!y)*Nyc}7i_Hqt4SaNP)Lq{Ehu)-VFBOjpym>v_JIGGXT|~fIN_OttxtKufd_Gg(=$qHc3+x8-OML=a$Il8);kjj`QZd)*+ACB5sQa -6gv$ERF81$0yRQw=^3*+aCg(r4L+Q4Rcv9D2Nw&Na$Ijl(02KZl#8_hp8Lcs-k>_l`k2x|izFe?{*tm -HuopI27z>q7)jE2$#jqUN*-Hyxozmg0$$@S6SJUOJ3uPwAd0pG+}f}R4$N9bl+;9j-t{_bAMToij)_WPR7MX7T4W -5G?#Fk56-?%Z#kNxI?ksrwfZ3~3@tutzp#M4ymo=Dod_GllMH)(g;)`3$Z>j^$mGP -5lVT$$!Ipql1HZNyZ})P|{os9oYUWv$ntI(^Bd9?(4*@}p^;=|?owE|U^p2024b6709e -@yc#&OYyc4$8xh(zeWTUjaYT*Ww5b9B>y`*9orWt&A)*zFY);Z05^LuDZYhfW-NrJ -3EJtt00_vBGY!&L2NTt+y8WE%Q6R=Qk5wh8bTKhbu>aA|mVrf=ProW`iQyWxB5ttf0MQnKVL_W7noQs -++FE0YW0}2=&C@ZOn5(7Ns5|#*Bl#Lo&1-{WwCapmsN`W9rATme?7m3H9)h~CU2E$L)QwQe3zf?`0Os -du7m#8sT>yx_=VAV-!c!R}vi114jYQp){fJx>r4VrKQgG$E%&idDHzX{8E_w6^POEN#ICxW1Qjrer0V -abXE1|wZx9Xb!u{U6OmbiXF&BPu+clKlFUwlWEBbY!^*VgQ47DynFY_yd1)_+gW4jMfB6XqtX=BAiVf -PU`g7z_o=?bItpxTn8>m555>6{IxYx(N&iirYS=~Mk}@^*;K{Q)>LKiWwF`#F_@(&#G58`h0iYmpQYO -Ip;XX2mB+Yz4ZPEi*GI4dJ=)4s;|fbpow>C397P}4dHz~8f#aE-N@-x>R{<(Q+6 -8%G3!$FzfsJT!1;>z}c~CQI^FgDjM{MO(^w<;EQr;6+{chmY98cpI3D68EQcZ-Y-$s@N(*|~7Xmo~PX -JibX9%~hK)uaNm@GAPZs5sgt@3+%yX_U8*xHr<1mk27n&3Ouglg<|>Iwkjfdr3#O8?=$4Tf~ZTq1e1# -oGkn;_#6{D12LuHa&V17096_2AfDB4!B1)r&qo2?yhFfpEdV(nTOzUv?O$mcXx>g!eJx?oJ^?XZHf-r -dEH%4CrU0rpS)j!hy3Yg=!~&9Wd{dl%g|72`f|a{};kx}Nu}|>H-6r_tEZRqPk_Q2BLWOdAv-oW>(U& -C@Y1d@&BuU$BT~2a&6G>FIdpzHo@E%cA3Pb4s_m}?@6aWAK2ms(pnpQHWl7<8;002bM001Qb00 -3}la4%nWWo~3|axZXsXKiI}baO9kWq4(Bb1!gtbZBpGE^vA6eQSH$HnQ;d{0i3It|(hpY-cZLy-BpWI -A?PufvFt?YZ$C4G3qca3B*#v>`&Lh40wgd12AIJBm>KNs?A){97hlg7EX>k= -z^+)5_T%ep9)D%Z0`>U7FPQQJ7N)_=~=J)}WxdU -yx=P%+Y$)HLybiuBdQR3aZH%+3275j02e91yDO8R9SSRy?&v1fh9X6#CY{m>0^kM*F!vn0ynv}fh1AI -^H#kSgf0sgnm;&%%P>qZ=(Ie#pF@j_bLTJu=<9L+kFxsjU}#zJFN~H%RANk8=jU1_&(Hgo^) -kbBDGaf|axQ^%oJqj2Cm@@I<^(>xka-`-%&J`!2w})Tj|s$f=v|%!_-dYI@yY%B%jHsVmVT7XcnSi|Q -tE2{4bdB4eZYrVUU8MHT_q~%n8Db@cJ98jeA@w$}Y -EmThb%qy!Wz(HC{;p!Em&smbYS?#Tx_;FT-b#Way$;JJ*nUi3^vhx%;EO5-H&IcCstf#qq(If8r#sSj -m>g7&81bPuqzkl|Ra{T41=d~C82?Ew%|M2>|f4qJ3GsLGQ#2EI&80T|>oad_MEq=cl*kvQ -O;xbPP&gZ|+Cp8;FCe|1m{1E&D0z1K-pKrZEc(3BO24j-1GKNiDv=j`irg#Y(;tgivBq2Isqy>SYN2F -@s>ZWLyIn6vIZ$>E`q!1y@d8Yg+cQai(z2x`Y)!l3z~HaI!PkQ}4HgCTeggx2{w?O?(Ee!pu8HVD%gF -!T(AHYdzWAQKOY1kUlGTY_gNov-boJzVY&yWPRr!S128Kiad;4iEk^+FzaRjk*JS*w^FTL8pwt&e=S8 -H5#0q9{l&e+=H1PC8?8NeLd>P384Qn%vcgfLAPgUOURb8EgwI1`n>WD?WtCM__0!#q+?@Sy70G;&y_t -qJ9|GIjrNC7^F63L7CZGBAP{@7mV5ZsS(-Q_N@)D;0>2Ff>#XNKvHOFwhmRi(-;WTR`_^c%J2(Usdi& -i$4^c@W!qwzp7Dg!`YEVNdwCs}+eHHxS#FN6@0dsfH`YDfK&Lkq%MnLM%!qi&iX=Y8B6*~zMeiQtiIu7iL+GoIACG#+pSlWW1tbg=l -y;zv3DiHd7zzu-%dDL+*nxsTa4a&73Tm6)gwmd*X}-YfW^+PT=TisgIvlia5TVFsO>p|RoGEmWXrGnF -%=KY}CH)Gxw~iNFbE(Z*Fegko+$94+FYII}c`_IBUx%4<#oN{g#tido)=4X{77<{8%Rj)ctt{d_3u7} -$G$10%iv@&bQ3cK%Waxn8Xg}mkg6HhlD9t<`tEoQLQvow&S8;LxlB@5r1JM(m+IYFkvHbDV=Z)o?4Lp -*WaccTl%wb6sWu24CP(#e&gjGnr^(wx%hv{C|K1;sKzn?rEeMCC3L3pwUC;inh?CuR9(yh*Ja*1IVpj -8JwnNIyH6?-1J-CC(T#!@?-PEjgEx;wX9YG?Rl_pAQ??>cIY(f>P)3tXwx)9&{7^n`B#YG6Pg3)Gewm6zd -89+H`d`->wn|gZ&LXiSKUzaf)1OgF#jG_R<}cj1}aRA1C*C}D`aS(LPMEFJ8!?0YZ`g`O*FNz=x3tDT -I)e7y`@ej_#5;wm3S*%TrIJwhj|-sy@l-!y!GbE)*04lZ^iPgO$HC?_`oDwfAwhf=+Wxo!`0)*tCL5o -vxA@a@9%y6=;7nvzhCunQ6~>53=6-}$4@7AxA)gGOsAbpn1tAH<)A#NtT;4n?_V%V~bFXbH&$QnGZQPBc*xa1*lzTl)6z|+sXLlP;s&`CU7a8?pHQ45V#Wr(UNw0X&dEci#PMwy8YovY -@z$94&fJQvf>%_h3iv??|xab|Gmg9_5XwW37fKng)X~~z*vgCoA&3~A}F_kim>f+$73Cw^g48LWYdwz -((yA4uplLdF5df7{2MrniRTzjS31|Y+m1;nVBt;ywAo5?oJ<}8{w7tV%5&r@u0=gN?~{a1qS4)56!iB7>1}rY}MgOl(H+A#RO&QhcJY$H9XIPXyO -E$U_6HEVT#1@Iam;(g2?5W`DQoC8wr75&i#O?{%Pz%-f`4o$^|^{*VT>XJ-9l-oRgNrdCxj`fppGkO? -N&%w=kd7>qu*C_x+hQ%tm|N%6ZT(?m17`3^)k#@Mub8ZtYuf1Z0Ls;C|?_FeBbkW4~0B6;=a<2pwpVU -uv3E^A5h^HL?dMdYw>C#t9YK4jt|G`~7O(vyTf@HhoeuU6@l0%?mu@D$IVb12hk$2!A~gg -u!0|3_-WY5s!&&*{*RF#+9Ff`Vj1{p)&;=8+lG@a%B|Jkt`$2O6c<{Ait5o`A$W3C6E%=3yNq(ea -qbbV76rOoSdG(K<-x^oSyQixRq%B+j*o>WPoV(6gCLN&wwCaUP&BOMx*$`YzFu9tqXkFjFLuA<3@!Y!PyOnS{j&f1*Ul2oMbPkOBg&sYGiXW{L`Slm^Bk&yD9 -}zFUlzly^v)FZd(o7|QZEU?z}wD2EAXVFS+(J_=$M$TWPOum=yn8upPU+omHtTWg6Z -ls2>dvO<=(eZ_7aCP9xgF&Z_Seg=1xF{?~=9~Ht0zz)cT4yfL(tA>jCkm4h -99lQ<4{auI};_+RhRM;VDw=4^Dy;6vm%Jw=%BMqTbe_p1yveAe@GmeiDV)_Trsh;tM1`0Q3gAL}Nu?< -fzA^)r6G(aM65v#YLuml^hnZ`6? -Lyd|vw1%XF(0M}{87TR};Qt#G*y>liiC2G^D$oJs{*~}~CjM_^dH5{Ka{M(2%k?J(mQWbA2@pr)LQdB -Zt2Tp6@_duXp^q)?U7jXai&D%y$TBaXBCXAM;%J#o3iJtqHep(FPT7FVKu!J;VF-d(XiR0Fr(>KptA5 -ioSpEG@kP(t3fTqnR~G8rEv_GJW#gM-`Y71xH!!t%(kkg`cK6UlF*g@P~ImOHtm)vOvN_)#jA?kyP+V -dG~>V$bbr;;BrzUMPNUXm)Ba4bnoU#+ra4%Ex-tn1F$+B!tW*%sG0y8q;74KavRYV#8oc0LeTS65cz0 -Q#DJryh%devp@jtql$BHj7wIxWdhjxglVuY$m(1mofyPBnwG -Dod&i$!^=|h7Sc~C^7W>9)M6dH<1fj=qfyL0AVG(rls^f1L2u}ERc2Web|6IEv;I9O1qq#6bIS&}oo= -~o5#pb`DB@+cC8vur+|YxON-FHoTZjV74H8^f7OTnteSry(msvnEKu7mHK{sTK{3qqGPvo4^1si=9Lj -m}sLZ(bz#!rYBtMG(nW>ACl6H(Gda)XklA@)w%2JV*#wJO*~L5vs~ -!)cqVy$mEY0ogFp(q`iP?|MT4eo0@X_o?>UcOgM!gI9~YZj4pfw}7o#pOl>3H4>#_%mZjZ&&j{@mg%{TK?3+Q! -p!Xad~IK!Vxfs1|ZfBo#t6reBqCYc7U(K0A)Of>x30pA<8dkDdAXrDyW-0L9H-z)0SpaTQ=;}jmCOK? -bc))@lm%cIi++4?0(X9HfpI#ecoE4qWMbA8g>605|vJKG*u{53y1dEaOg~?VUk_$3_GLMFkD?}Ec)Z| -rxi^IACGzu$Uv&xPGg~K@jA4>9e(WZ4Thgqxn9^GKCQmjl!+L(R1kNKFq?QXhkgm5sBSl*@{ -Y9;vxCWvnT|b!r9HZ7&-Ot(DoBw_Yx4F&ogn)2S%zwQvmht%k#$l`vnabOA98j(Lw*1$i)N(uq}lR7G -UN=rPuQr?XSh|7)!Mj;MWyYQJ;qwHMuKu085D{u*(=A?i()|K(A?5$3a|VZXB}@|y>0y_3Q!%!W!ejp -oj#NNpZ}t(6iSr3q8!LApJrZWB@Fv9~>#hYOepsrK5R@&hjtP0sPL2)_579w~?zzHxqh1%PadVd+$GGDVUmu%XdyKeh)Y8fv^k5T_NPMmLpk<@a6w2A+PlC!Yd4)LcjJ~i}hbk -T2fdhvP{WsjH|A8;;exMQ3Z^qwW)cCvI9OQ1S!?!R4xsf6H&CEwCrY#%WwX8K;|IHx%OBtkp8IvAl!< -p}17_2*ict@)=l(n^Kw`tkRZ8`z&FJQgOOa0RJtD>!6(t=eq^vl?=H -rn2mKh_N#Z_P?&y-iBp2Bi)Uq-8R7+1xfo+M?8936*5cNaYtbOu2j2dt5tk9eiB9aNEkB(8#X?R2urE -(@UX3S6|o0heGh&l)?th{5oWJ5%Yn-5?AT#S5@~nQPnq$50mOX4w|We&xF3Oj7znCrN&=}xs5WvQF*@ -(vZlHU2u#x>|n_@gAj2j%^qchdo#j}yEn!~n8kOl22Ds)*{o5$|E5-gg#G5 -MmOU3>=#60xHXwJDNE(WFc|CMSnw*#nUzdO4CJS=N84j?F0>g-I@F7}(4R&zq*;6J2FliDyEekBs$s8DyN-)sW1lr>WN)g0Z3J1<$gXN&M}^k3N%h(U^k&M|nsT) -XXc&bbSfK&eV5wUb#-ea+@iI*Cbl**Hd3}Wg05)mZ>?-?0-9E+JJoW2p7O -O2wPosGg)a6+iq~z5)<*u{u6W&|Xl*1;=)O|T3cc$VJ!`2qZS3MEJ?dKGFQHexk7wq4EBMd7mlw*>{7 -|tw*g&rtGFGx}qzsKJZ>5yYO3gPXe-)XInjo!SQK=qn-eHm(_BD)m&ii|V^ -N!knd@53It7d&RT=seM)@WD*Hab-= -r@m3Z^OnhES>c+LrvWo -ukZ7D32U&xR)#crBaCTfac=sDEhqYSdK4-?!0H&L*T~T9l#penk~jj)0UqtTZW -oLXytf8^8|4z|r+H?^$Qbik-DefDTgg82#ZE{zp}Co)v%4$lvdX8*T&QZR@urVtMk*!4^Z(sKDn!;6PkPYdgLl`FoH5a#GlB -%zsIGdD{W)s?JgqMffyHXVCf_NK}tGHIPKZR_#|5xRS_#^6m#Pjq?iNr3q*5_^^`*a;#ikb;_2RRJaK -CgZ114(r%Wf@S8sYxGJ$ ->rLzC#JH%4zziB!!cl_^|nn_Z)$^;0$xU}N)u?1`rBj-1iY-tUa|<$ONGJ+Wbkip3c38YmWjM74F#T% -y_Z6|*sATmHAouqOIuU%+n6VVH#E&rGL95tWXS4B|D(#FfrzqV7hj)`)i#7G-Tu;k-)K -fpRH>s!d2&NXKmDdw8{PcVbjiOcO)%JTdH^5EMy&DnpNy25U -zy2=sYQ)P+ -r)h9yQglmFH)37n+Y}R>hyUPSzEZZL3`_-%(X>jw{puxXW=9l<|}#L+rn)=ZVB~KeR9)Mg{fAhJ#=fc -wii@&ZqJK+e=>shoovufISy&xrLhy6_hg~4^1%!gJJ_N?Qz6C?E>T?fTYu^k|2Rh%uz&jFpRI@T9+0x -l?0t`2-j7+F;-7;m)3*M6D`du!Hp5i_tt8&mHI%0Yi -UTAOFz%)V0rkem~k`SZdaJ{corqEo}Z~=Zc>Si|_L6*|23&wE@3@{87jrjbg=N|IfE;B5sxpEUPgANh -)h>##^NeG2~q={4BtQN4s3-toEO(k6o#qVJkjo2n!c{Z7iC=d#VaffmHBOc|976>IY@nGKW>}a -KYM29<^9{u>BHq6Pv{2T^P)O?*03Qb%;9^3d%XIz*woZbW$gZ+wAz#UD_q#@XabEK{#M8SvX?mjZg(2Z(rohfW_1ZXQ~FEVTM^FnDj+9@u&p4Q00rx8Z -N04N4dly%Q@2aatZ(-Ec^>=#B*QPgR -*HvwL&9|aAmadn*ZP9wc#&YRy?Q#RR_TxY>%B|emD+8~`Mzv_G#70&4b$U!_xz}?-X4kqW1sCN7WGuZ -K-1Nyq10HO0us~PoU|{A4Ca_fp3<5_OEPOG95#=r}2yMI8uz}l#I<$5-4x74dsKae>YSHF35` -2X0WL)C*r{Y@j#FX`i<>eHbPZhIdO6`u}uklXlp(0w}8A^m6gcxdU&FXqQ#txe}(jZtT3t#u~k>#Q@( -yi-OSbH&x3sw~W%JPb_mf -Vktd>Rrp3u4uc?PdyQ_9M?(f29qiTj<}j_NOHbNiXM6m4lkYyXsYM{69K8KW{^dd073M+LW5AiayzkBZSeHcg|jSq|VdVI+(j{2O$JE7 -Q&1>aMv8WZ|A#Rd1Y@X?Iv#71*i(7ZQZi#^LWsBAXhDGt227NqUT5a`;a0}5H#OmHtn~J_ySG;9 -O-y$i>Rm6PY4bQ}DtrSQ-Mc8fICpnQ`h(@-QSt<&YG*o+*v4e}2<)bpNMPedNi#XE>LKcjhyA^}%@HPG9NsR)^|o>!I|(co{%lrt-UolTG -}|P|ApVsadlWqNG>I>0#1YyAZvyLDh>0snH}Sqx$!c)qc$s6fAoPG7XuYbR{K -RoE)KY4iYx8d;p>gT`qXpm~fZMdbWjzG)@AC*%L?c_ooPq^8zV?1s!9xjN}0JV`1Pt0z07POal=`-4T -Z+5h7^rc*ElyhLkHo3{eaUG~(R~!Qz7;TW74Mf|vg6zRpAYToau-MyX$NO_m!HVN9-d)1OxIBvzCs1| -JO^(DXCr=)rUOv^qqIMir2V5La&7C}z&cxN}lTYBLQQ!qf10F>2l0vDm_qT8<&d*yaXHw=(?&7R!1CQ -c7-4UC1fLCfOcO^ECyPduEf=rvgm1Y${OD8g`+ -NsE@wA;VhsjQlJip_hy_4Rs~DngqKU7Kq-tb|s>3TSfWPgk7zpiCR)3@R^bu1-e_F>M{SZc?UDQv_tyRAZH?4r!Q0! -*_{?2}&tKnv{vy43r48$uH`jczts6R)SKCjdl@oVelQ1`$h5iTZmv2#2@nKSyNu)ATixt<=p@LpoJX2 -k2TJLDl2Le%iO~!on)m%x#{ -W3|e?Pqb?)lsDvRulLlQar)F3~uyn=kS}$TxrmE@X1aL<*ZhfZlv{fe+uIyJG$s$k>axTAq-293k>J< -ov9st8KB8P{I|t#tymNcCP$Xq=I*dD|p2hCXN#Qoy2vcv)QMJg%V@mLxMex^mU;+w#N1}+867IjFg!Ld8Pn4%c -WtDTZs!jMJP%{AuSFClMq`(+NUFeETgrkLDM)$3HW>s=0=w#P)Q`p2PT+^9R(iD -`4R|XVhO@;gy12rNK>kn=Q~7H_?!k#Cd0U&%EMEx-RsZ%%>Tdv`6*w$`j@^}hQ@o}Q-tOz9D7nb&dd2 -K8lTh%hGpMc?D=Y -9?Bb3;%cGU7=0PBPk8Q5-gbY#dip~VqWF3X!4_oOr^^9EO9(M7vN#$WM!O*S7SBKX1MK3p*cT7;K5L; -Kh6C#qvHh~ih9X8vx;&NV6JFmu4rR^9dp9*4|PC3Y61FugU%Nt(_e6U<=2OZ@qn)ST+SL{M2bgL0)>X -#{DV~V$16mfv_LVb6~`)+GB-Q&$}rSx=s}+FQamKgRNDYk5$XsHPFl>HzMKwuMAkkH<(rVr)Jq^z3hS -Vt$GG-Cg+!P8+BAw`$$E-ysBswzy!J|ov^*JG$fw+S#Z3dD#O_~}KwaQ6p31#QIIRVq=%j#6v$0|&ft -W$?S&TP878i;NhynB%Dk#urq56!^R0gsup~yWGkE25wh(+MI1TdPR;4UX_85I+^jB-vSV^=CF>Y{;5V -M&4?#ROgmGjfj(gwF+^i$riNv0Fe{pg12}H+Pg#1c;EF@YH5gU+BSiCOY(G;vf^GX&6K(q_-L}I2O1F6C1GD66fQf!A -{ox$Tvkb|Pc;{#5caG)=XF$FYnTny((q7ByUx-|mD)kGWRVs?mGvdA-~4;%Z;WlLcq6ASW>FJ^pT7Qo -2sBz=p3oJ8J;qZpq@o(zeF5e7v&DCn2u9eg$AOcR4*-xh<=cQOc6D}!RMJdTzEWD=FDR|raRMnocZt> -Lk7QsT)89S-1KKI*>K(2Evh;i|ZVJMk%X7UIkUUQET40|SAaswCMJKF9uaTwDI3geF%85cbjjM`kH(A -Qlb|8L?{}Ge_)W!`dgQKm($RMW$4UZxG5NfW`?vL9hJy5Isg&o1zTXk#lWBoyliVKF-1&`fcK~Vw*#R{P`RZ>P -;k}}dl$|%86(gubDXC{jW&Ng9*f(blTgn1WfFy??eST0Qc8UGHnFYx8hLiwC+TR%z|)_Qv{=sj{^w)l(Qlv-xBi}i#ehIn1@mVzjP!sxa7ohDQNo=NF_?d2#^QD -ml4cRX_@(7s&2hhG`nQ}BaKdoPxY?Yo4&h) -}9(L%oJm9}KTWn0IgI=T7JqRw)W1uq3P=0Vv{%E@*#8odK@PkR$RCz7rhI-QNaa -$cJq;LL^i4t1+78Ph26)otQF)uImL)9#1N`cng2b0f=U{paaEtGq{nL~ibt3%LX&Uf-yg)Tuv170^~x~7;T&cRaF2O#&I(evvvsDFaj{ka4%*Xv0;-A$?b2Ep_`nHU8K|UHZ_)N -wOHT>XiQ+ci_`({N?5wd_0Y}PGV`4ShWOzv>;JPzic=PexfLY#qQvD(uQrD!b}`}Q%cCk)e`m6B+TYO -`0{k99!CPwg+Nif-vr-@6CW1W^vcTZzuEf5ZEnaR;_;6;3U&aUuo|0^^191$*XUX;t7#Hha;Z5szGk5 -TWA$n9hcdb;~-^iiGD-_>*(_vAjOV(8wD_!TdbIm4HUD~UgZe!u-Ppl^J`%jk4#*(CN*0nDiCjNB#y?nb9Fw^)SX>OVUp)Wo)bxVe$rxaKG|)rYhMLYvwPq$3e@tMdH86aEweXcrFyuH@I -ViGUKTVD{V%wIUpKoa>DgM#SVrE6f!{j@HU)9c+Ros%LvZU3j?^%m0V{N6JPK74v@oPkv?2t#*c2sb{ -FFy>$82O>8un|=(Uaelkj)uC9HDFy&#yd6gbd2&L`VW|Y`TYf#`5ME`-sY^g4NTt<#1KO`)PHw?|I -rD%t>mkp5z28oVvgn-Z;ztw_l+`Mz=`*g-D)Gy`N#Z&C#Gj>|`7k{!h_NiVVp#wIOXaL2k|z{MiU893 -&cLJF*?0n90*BWzCv1G&1}U4CiQ+&qF*3^}nBjs3qjx-%v{f1QY-O00;o!N}5)o{l98x4FCYsBLDy)0 -001RX>c!Jc4cm4Z*nhid2nHJb7^j8FJE72ZfSI1UoLQYtyyhz+cpyZ&R>BjGiR%zRZluM*Ym`gQ*7GS -RF+&xuA9sBXo!R)CM3avq-|ZV|NWi?_%8P4X3q7b!~)n|?8~zY_%(~9pNE1a`-H1Bh_|C;Z@so&vkRH -*Rj}PP8A;p(p-9c*uen`~)kf*mIEWWS%i4(o6*&aj~(;3v=J-Q7#CBC@7>518t9#*ybtDLAu&xz+glF7y58Xz -7B(QXM>9$5c_qWft(WA6EW?>X}*?qASJ -PRsl(yv*>S4I3GT@)<{j*w_!~Ta%O#sH*yQ$ZI&m&-Hkn;a?=L5_YxV&<1MS8irj8Ld`$(BM9Zzm;b~(NsUpso=9DEjfVWHu}jiX7BIL7bAYBHaZ -Z7$}s)dEAZ&1$|_Rhu6sOUGv8#bil_xmwI2fDDU0bIk@jXO7`RMkmd|qw)?G(OK@7POZA24nH|d9*2*u0Sd+vD^Lz}XO&9AGUe6wn-W=XRBB@)(|-Sr)_3Mxjz9K{9fmMC?m7s>2$Q2`nayqCoR7+4 -0oud0nPl=`7fmSC-aG^Z=Pmn~%-jA$!9H_5lBOiLVBR?~YtZ>EHIHo=b4j?09D;1}E=<^jgM9yWcgIF -!RG)#PS*E6?8&#ZKO{Pe+<`WV0ii{?Rk^@#^R&!`Fl(a*nK7wHQTwl_o)y{+z?`SjK(6 -4pFa7S%qUL&QaMnCvZr}V{-c5qz8+6B+{a^gIkf_r6(zT5Do7e5qR{Uqj$HInOA{IGtAVB|8?|kt`Jz -w&^-Ff(K`nK(u}u}Iaawu$LB(%d6=bGW%>gpGIS4!D~cDZwX_Ol?TMv!#3S@D{Ttj;#tujm1-Wq?hfap?k<&)D7^sJ!{ku`Hk2OOJ_$T@9ee9ZywL9For -u}93N$!m;w3XcqEa0gCrB0`u*N-VX!HiSGfg;}8lBRn7b=77IY39l!&Daf=-?^>xrk%C7&B%w6L5?XR -b<|1sAc|~OR`Uq)<%tJEqrR4JQ*20v8-#6X|0zT*SUUTopgV!AA&T{h+5%puhZJm(RMw0LI9%XvF530 -19&9Uj7iL?+9OuEB8WkUcnX#gyH5=hRQD3FsK|&HPNh#bdOP_Hab)?EMm-1(aGA=}Dmxmr4)BdCE397 -9FQ7E|r`3F+URwy=IJk!u>>03hvQ-kG-;`wvK-S0*T?9yy9uqsVlQ}~P-arSSq3!|>nU#$GDU_V6Td9 -O**L1}^7R5|cZNh^?FkpWk4D7C)K0q*4Ia(9M7yU`|3;<$DY$9k!>oEVqWNb97u3!erOe&+=E0bP6U8 -pF$j3t`xYJ*8CvLX;?;Pa?iYb>c64!Y#=jN6o$2oC^m1yUMpdV`t-8jvB5C}O_B4HS-KgG+0DPTX8j{ -Z2fp9AWUKw!1I%l~4Fnz}SJ`V2AnUv0|=m1g{Zq%3$zqo3a&HRVKM+t>&)nsA0#18#Tu|{t43RGEHXk -S2>&kgfPVftpJH}gLos4>-piC2B(OBmgGUMRGXf}0g}-oRGpjV=AAmzdQMT7 -3bP3FLOD)`Es(FQQ!;{>_jw^zO%wK*T>EFSKS~Z^OT_dfm&CEAxT75&!VT;3?4#$Ek{a5ikSfCfF0Sh -*UZ}YsLPJd$O=t{f+nmTGV2X^oNzKy@L(irb>!SImOl{ox#AWLhAkmKRtr)urcYWM+8`%NFfJ`BHKvx -bdamm<$~3rjZ~X*ax@1+=Cmh#I5clLY4;|MKgw-x-zE78Ri`48u|X0xGVf&oYRQA>jO%SE@e8SMk$O7 -o7Ns^6lS2VnWK@1S0fPbG%{0>Nt#5ACQtqUrJlq^o`9r#Wf)Q8SeFxJp#LehRb}wwG}zim7gHYa}oCfqn5=Fhnz%HSoLMK@+sRSWuZlSC3+~Nt$lGFh-#-6U -}`lquDmywh-~voo>y&FV9@*h7(?+X8{@SqtpU44i1hrpm#n>t8FOPXn&83j6Xd8d3F3YBcstD^C?bvU -L2vrg>3c5JhWxcE5llc0mR;%_u2?mr9U_*_rg#o-Y3)ZH*&Xt?LjwTYkHZtHKk0Jnqm^E9HZr{KC>x2 -rf&f?$y~r%#Ih0oPVA}2?UIZBxFVw=PG>Tk#1+N#g5~fM*S7MTTF2@;O0s=9xY8GG;eTjQ6vb6Jyp}6 -@A;UbX#9UMBT@EI(FX&GLA42JUDT$o}(CMAHHEf-`bFiuO=uZRX@J>~a}7*oOrX^Z-DK!lpE1SGhC^M* -sr1S0b(ka?=>$Zt%AZTvE?XRQr!j@sjkb-r~?PgYOVX2g}WVQ~GBN)M9Ne3HjrGx!qyzS(cQ-Uv`4l2 -5`!M_Ln;5SLb$9ss(uo?xWEvqDR^>78`@8zGk}>a?nno@=_XptKyBDUxhni`%xUTDg`C(%Y?GAFE*ND -@#%ZTe=0f^o;1@s!?;^HftK1`{2bzlfs+gLsOQVhFi64eTT2mgutLxi!uT*H{wa{woXfRKref??zu$+ -H;TXcx;*W*Rj1=J)Yl9ldvfR8eOok*!8$Dy8= -d>F2Ix%(>{1{I_Ppq;4*H-fPUht2JIflU`OA9f9|og0gmtcaO2Ri#l%AkPf}Qa+J=lim!{ozAw6stG( -hN%X50r4%L8;6|4-ns0ybRL(4etk_UEABqKO1L?{Dk0uTplL_9#z(71Zw~<)0%l@sssmP)h>@6aWAK2 -ms(pnpQ7Jo2fMmPVPkY@Z*FrgaCz-mTW{Mq7Jm1y -;3&XU&N^z-_F>_v0|adbGr%I#MLR7PK_JsIWpkoiNh*nv$$#JP97?j}IBojShXqzZVu?IFJeTiW$O9o -0r^~`d)n+tGO__^G-6pEyL80@iG)}yi#;UV+xFM^Z&RT+`%toV8l1XdDA4RtLqe#?rB=7`5z`vi3tSV -(hS{hLiyLRJ=aHUX%t&I|Htu{j9r34R=$ShM!yeBH^c=5|pr6P`Xpujij+NI*+B%ZZqo0h($z8?+tKHMK -MF2ggSytYVn+1?kCR#f1?!$q=uuy&1iyYpI2Hd{xh7n1UOP8!;f>A7840wjccnHYfR7QC8?qyhF9UxV -#hWLcEl2rXtYoLhv5{-1sMG9M~M5j8T7^w3?=z{grMFk5vb?f$E_gWd9Zdfeq%nD{NlY#=_$_`;d6n> -8A#^R@$D0Z;2*O5J@0gDU+fx9Xgc+$1P-rWZgR0j#{(>St0%vQ$6q()VlOjLZM-8!U?7~6c)s7aaUaO -)nET0|tG+;7(yGt*8PnTcze)hZI=jI9d?Z$xcXT4&;B4JGit6eI^Pn{wWn&Yh8kC2dGB_~;E=#hhg-S -A~mqr%&c097kT~vs(#a)O5PVR#E4`)aTMHL%iB?1Zc;sM(ouHGnp@zlD#&Czgw0g;EMO-c+D?p -bH!Cz4jD24ruDv8bI252aZFW`~C~6 -fbr12-;w_#3)o2tz7Jgh0pI6X{JrKtb?r+u(FWh&Bu2qa}t= -|-~IjxA5A2^MP}V6WFrQWrzXZ}PmV%T{g;K0PnOC?;sY1K4SPM)*3p_&XXO2Esokz^)gCk4$5dki*udNE*U~)jP2)WNs8CfzWzg8%PQ<3H(Z@j?N;Tvus}PXhkyIB^Z%=pq -+_pTNI4#D`?;*I8>||EAFg6T}k8T6so^7~gYl4UwRdiI@g?@B;{-5~M>A(IwgRIggG2e5e4{nSY!NMY^t>v}1KJDJ~7DK^Dgx9^lXG|m55U=5$hH0lX^ -bFYRn&>-5YA~LUXZa8D;YwE@%aFwTTQsVT!(dS^H^Fu>;g%V!m0SYih}4cB5-7J;uYXyfV}e -_SQ$leqbqt9@f_h#eg@M58Pt&Ez3=iomSE;kwiE-cPJeg5R778_gzMOEFOAhWs_~K+U@f_mZiz9VOx$ -*wd;0u->f`m`?1-@(!QZ?WE(<*ZUUz-YB;w0lU3+UPNNr7-@+&q;XM>>gA(C5liSei-p*cxR}*nPW;@ -UuS%Bv*w+F;ZwjDJc+WLpWw8{AANShOW`@|vCG8x)SryVh${OEAX9EW7|eCs?*tOz(Mco}BsLF}v+|$oQy9e~cyN> -@t(_bCo8(=K6P))jALo%zIgOsP)h>@6aWAK2ms(pnpTPBWq#)l004+G0018V003}la4%nWWo~3|a -xZXsaA9(DX>MmPV{dJ3Z*DGddCeMWciT4dyMG0i-qd6)Qlfk$);f06CV9zw&Bm{Bw{I&cGDJcaH@r$h -ven4_?K=Zr07=Pq+C7+95(mIsm>J9rxl5cV2%^x6S39#L3W()I2_s$*M+qlSbJ(2uF-y_{>@wdAJkH# -S@1?v$XtjC(CHe2|F-Np$^Q!ffrVgk?$uZb -Vsu*7s|%829BG$kR0WiaG0a>ED(rV~bef0fVYb1x+n{)>reOdYn9EsR$&O>oX66Me8l;L6$)UGLxnhRAdij(L%p+SJGdTzE}&@O+U -T@~yyeiJ3133Xl60+U#N|ML6OfI5?WsL9*Ai{;^|7cUQ`De~Yk4jxy71-I`$et3S|v&*SyHo#mOA#{R -wXIEfuZjD@FUCK-Zl)@A`t)7fA?PK+)|$pD|c%oOmD_;j5S_X -zX53xi{;8{W{>lvJdT}69sl`_4=%TpkijG-B%zWg0V&7*`Fiw40r$kRmM5Ho#b(9o18E$mo42Y$(uKi -QgD*F);7w;oEqJ(Dy4bQJ$wx1z`F(Se}Ld(;wB~@$C7;ylljSt!E7_*IBKPgi^%j+Fr{;J<@Yq!#UMs -R!?*{-7Ks)5g75yp;nDH4=O+Fz)nCQf2C=}&L!QcEReByc#d+Ok3OKwYExZ{V!y0iyaDM{i9=PffPbu{-uLWS -d;umV}Yz{8~z?-w*9NABw|0%GrkK>-ye9*6bPMB1z6@=NZO?M@1MUFNlaFlK?^qz>IPMe#@y4X1oQ0G -Dmhvk@x}{aek>Qh2x+1X#(Jbp8TwdbzcNOBk#(iq5o!S!Dw|#6HeXf_qs;MySgiFQERtOlPv -S^8F(~ZuLYP?wjNDk-M)|Cy^wDs+{_q2dV!7n^5p~~cKXqKe*IvZ@Kp -*2NkYI507T)GHy6^RsJqxb0N18|^`HFBS>@pIp3cP1&3c&I1I26b;_5R*l`jWBh|C}GjwW;0oQ$h#Kz -$p)W8_Ig~z3S-?AxjyCmekEjk*3wP+FKS0In?fgbezxjxmq3ZnXyAKc*$k7I2PAVTjW}GMicpQboP4eRyv-c{pR*Y>tG)5 -MDKGoHYZ{PRXA2<95=j2r~Q8w3#d_q8+IZ*9nqtnP;iF+l>DA!d136$eGK-Gy{CL`91SVR4IPLa923B -;pW&i{$h9fcZNQ)? -w@3QIk?jr!5KS;Ma!{}T80t*>I&)-{0EU25`IhiySg%R8788?2;0g_3BX=}I5lT4%{R!x;hk2?lqPC| -F_|rVeEN0jKJEHf0|DM^NFh&gUUa(O4)D4!!Ill9f2&N1$r-&JDN;E(q77x~RkdiKZ{(@XxRT4o2tcbL<>4ka -#*91>w&_%=HVW6U8gtXkT3KDmE}F&m?q1MI$RYh$Fta8M>%wI=F>K#)c{_yLDL1$v>#SV6 -T$|%m;FWC2Ju-Juow&*4JW^e<a80htS -5AiE7S@5bq=2WFm{h7`r7<-T_$$Q(H2cKV@t{6?uMlKwASbCZWg019pfQ{S|c6b_&0cQ+<_H>rpul0jebK2C%)v$np6`3*9ahhX@wX^sWv -%@;2w!L#Dajx5BZ8}|z019;D@-}yCxM^2!m;(fp`Lhtrq -$+351Aii(?Z=|Hl;6vd+hJ?<9UWTCXEb0@s;A<-00$Zn(JmI+Kl-jvbx#9I8WFHb_T5lX1zyE;c1@(2UQ`;H5_ -HjI9uR~XF8x-9gp;S~UL>)M-{DsRVqPg>814^vRf1U$bT_Ynd_UiXHdFST4m0l7AKSm5Hit0{oYSkNZ -8MKT&LR;@ZRhr!0YJ1%Ybg91mr*LUu -f>}HkfCO4q{6yX_Hd9n$+P+_00GAUE5OkJ|qpC*|_fw*!kl%9}PtqX1~&?q52tJtgsx;&T5LnK1P5`v -T}%Eil7kD@K!i+mhyv7|!0*bs^{B@_DLiA()u`wc;rOB(%dYLYeSltwWHD%?ENk2c0qM;+(SJ1b>Ssa<$)>CK>UZa# -hJ5!oe37t*E1d)1LJ(u9d!+rhegVg0oE1dJDPgV%LSje@sOjwIHe2Br#|8Xioxh3CPUvs&Lg4B^00Z7 -@-vmvyNj{~A|eG^x1tPhi3#90u!Y$5&ELsP6~uo5vUYE6_n%?HiRsuEyK^A&52Mb6n0tIOvie7dYx|@ ->vh3sMwPpR5W%e_eiff0**vRdV-1PzEHuiY?T17xN;^=|pV%6$a?1n>a%@OlajRZ5LT+o*6OC9A%bXb6i_eBUYG8Omzyy`5znGvu -cY}74YATrSnPw2vuDAX|1ngb59ehFd%9$@0?+?4G$+D7hUVyIwCMGyZH^Y$ksW{Ob&e12hM!=<$TDgI -HY8R7Lu&p8S+$Dr{wWhvP^~Mp?x(HTM^o70YCB(%o2 -KyugGseu#4-9IcFGH>$~;WW?>0uQl32&CtO$@c#uAr7q2g#V+H`yc~htt`6{#jJpWPO(1sJS`96s{^G -*I%QvIQ!I_p)|La4Rjnsf3hzNK9!<|>)J$QG0WP0D62i-bZ+Zj_{>oKnj|c6N3q(}m|lDJ&XIIAthSE -=7}XiBD^mkaILD55rnwQw9r8Z$>;AfpjKxn7-^}HDdDGXSkQf&UokFP)h>@6aWAK2ms(pnpW>0dyG)M -003Y?0{|TW003}la4%nWWo~3|axZXsaA9(DX>MmPV{dY0E^vA5y=y}oN46;XonO(B&pDE8A%mS{5@I| -}pA1J9qDWqsbVlyJ}U{s;X71*7M%ly=a&hNq=^;c5f -}6&hny)@=|@PZf0qAxi&8HseF&*O=m5F&x?4Pj85jWNz$X=KV@m2@z>pWGKnwLi=FI-zx9w;xb7#pQ=K8@Li1yO5(WW* -D#0C%lGTJ$l#U6K#}M=Hzfld=95V>tYD;N-|EDE1p|WtYurI+l8bow#zJNyAo3X_LDfyGWO|uY0D<3+ -=h?8z^GT@+To>_7>Q+}p5|6B@I6BCo5qdX^tE)+Rq29cLpKJW4Kd;h>J9&fW={VnwhgUKIgP*dCe4dS -xk^OKm%(HQNIT%mk%Tk^p2B1I5fblq}@<9=2mx+3xl*4$I42tA3dB<-C!>hPZuP@3;Twci!fD7Z6MRR -cU(_u2rqqvL)@?9+~>6(7+Jkg7ypS&9;GnyMU*!%J(9tIy5NjaZXr9oLyCP)0N7Y*#6Kd05z%kj8ODu -vQ49pa*y8nnir;%tzu!NDf*p9C@rI_q)0AqqDz>B -DjD^nagiiZK8|oYE}_i|keS^?upCRMkY7}BipwA1#I!B2Y;^^I%6weG-bkSM2=HI#!!!nn(I_9zr%6` -Dh}>wLPLeX}R9DcKsC6uLT3u>rl*F(CGk}*w>Q!_NNX_TC&u}f#6!oCca55ipKU9H9I!&b&1VH#G5$w -E#abRD2(KH{WWBi-Y;AZoSNs0^YUNlM({KdS2$0a@Y=#&aMcDm5^AENJ}=8Kmn(ZT-V{t19Rc}YzQu>C!#_Z)y6?j7y^2oH9?-#^$t`DZVBzJKxpp*{z&JJGA1qm% -vJpAL48qE|m1y?S}P2VHmufM4vtczy)!>>cjCIDrvC%kVVX`v?4tj(^-aIH2Zseu6O^Q6G0-zWV3U{t -rK%L_fYfc(w-*zu$x2?R2TI?!MLS3P$B3BcM=zlPL@d;KNnoJni#>*eNXMQ73_Uwg2*>i%@t*0=v%Q@I -fOd@4?Wx4cU0X}XM2+6UI))W6NV9PsJq5z^xEFoX-6DD$K81#OE{q1V0?)7NW-XbN$<`WG7y?Nz{Q?X -NKci#}M+wlDYB1=)ZX5Rqde@Y|55DLR@CDF8{Ili(fHP9pPcvN0zz{_FHSiSMFY+w$;1x*)fKtjcHmhCJj`H#l-E4&s5)IA9_(%W16bq{fublEkHKbifxDi==^m^!*JCsHzae+jueu07QF%dbq6tkvb{na -@+&0Efdq^FwUScV55++p>}3P3cZs?O6saRlu`0FndCD(69^*FEFkXCk3LW5dUSp+Jk$W_(_kkX0SEC0 -2=e(kyhQ9_r?^o#Qr=N3`(-&#qI+LIW<0=S=wDJ4FzflegcB~G6R*lM1w>69>^Q$AQ0fGblto)KZCmH -i=y{a9n?WgcR%Xyk7$hDzsZ;i4agNke{XC4T;nnlBD68}Dq`4^^n|O3W^%_RtEQjMuO$7|>{QP+g8wU -oP<*SFGq|+ht?nUANMx}@jbo)_?D -R4)o8a5pD|IkAV!O9M92%MAAr^45z=>JbYo4s2bCb#PmZ!!>aE!oqv?SWz)uegljTEBRYU -o056%m#(@u*8|pJ-){MFM2irnX3YEjo?U0`(FsG6jn15_Dj2t+nY6X_a06iG~Cymy1-b>$(?SU-?vn9 -g+)RAp41XhPlIOBtNT+K_N|5u|^=xQ)gqR1ALHO!Q~syEgT|{C%2mJ+#-T^$Novb6rPFYfott_8W*Nt -zUBEc~QWgm;i4I6hqjeNVSIovE4VtvXC%nPP8}VEcXC1=!U2nn(M}2(RSAy*^Z=4rc%%BIXr9)pMwNPAsc>A(i+|pI -Le6qQ;}gAvc4z4+a6G*}2>BE*rPzTQ*nYSsty-uRLCfSNZZ*e9Bk1+v(L`B}Owy=v%l -hz(kTR@hF9da1YC9g*wx1^Rg}x=KfhRv57C0(w93q}?*4L3x$WC$Op*oCd}Btm$X~+npc7`eZ?#C`ZxuHu->uS>%lr~YRcTJM3TgBSR}V_n -W4N6pU8~%q8#r9Z_@&Ld6`t5)~kQM+BrfA;@%6CS?(Mh{JeAY0%d@$?poJgOria7F;6F>Xp)u{@*X%2 -+?d5By{J-bkoZ$M?dB+S0)C4QiAWSHYXh!_qcLV -e0%N60gmLhfX(}M6@w?vIhqblArP4B<+{_U1q_t;hnH55 -s+su!(Lj&wcEh0nN`yGli{prc42mi07PCe(VcU}ImUv~>1)oK7@aL$zBD_XZngPwDIc79JC4YtQgJKg -L~mJ4oCU2grOl1oBY_LxZzmg#o(iKnwhuz}J1hIH7iuE=_30Fz(8i3eN&1nT;!vh)hg+dYjEb1v~Oec(c>?_`uZ>5eA`;PO5Vw1`U6MB&iA{| -_MXQVLpVcQJS-_8LwrC**JcIEPA?`RLG1sUr&;H8$bwX)t}O6`wv0x;4@+zK=6H^m#~WysCR7f4Q?-MdfF2T+0VyB19~&XdD1i$SaiVZ5!78jQA<4eFtPm -4Rx-|l)6m1o1UMt0{2*F<%Z~w4@P1VO4;_nxjU}lu10j7{w7R*9lPVEvnq9x@$sOQG=;&5o6S#bE -~c#k2tw^#2pQ)i%xaXD#CeaPJWd4S85Ob&5ze%t?H*}S8*$g}!BHj37r3bASsNGLa9%Kg8JwyUz#qKk -x>Y(&R5!;{n1Fmdrk@A=@z4B$58Xoy71sb#IvT#*#<35mODtbz8=#&6$opoy^-HqmOoZgy8-J<=N?O7t^SoVqna14aAO6q;N2 -Q}A=IE4kM%aTYNR{9NGr$$6DhdGMB$pUF!2w4*4Tn!@99nS8VU4)Gl7a2N|xgK6;-bHFs0#t#>NpyWAC9~8` -{nbPt3A2VT!IAw}fk+~0@G$hkT>lWTcbP|_IR;HGuZeGpimDKFOwE&3X95u(vWS~zLYdyS63=^iFc#T -6%ED93!X^FBUQZ~zd7M_z32c{ZM$+)TtIfh$GQxDuz?G4@F;Z;}b^BJ6sKtGl3O251UqkO2}tDkH3T} -_G#pP;RF25~9EGCnkTfsV7S$YtGokz8Z9NO;OjM=u)3RXo`uCQu*2Bm=OnC$8A!xk6nB$CI4}n{Y6xb};lDi|UKPIkp0=&LS -lfOQ%zqT$tO*jj}t)q3z-tAvFOt@YbAFG%YV-y{Q2~-}Kj#P6}L|M98Do7%p@$He`_2mHI``2SbB#6V -(HdfuYb*f=?Kr+b`KJP}5<(Gda!wMs$RJ<4@drv$!M7t#z`Ckcq@(<4hOu4T1eoK9j~c*T#ozJVP5pYnB%*b{MVB4*SSEyVPWK^m9D35Y -_a8`~8omF3oGEk+zIEPz=)M2YeVs+{ga7?ks}Iy2ZYuS2)#*&He#pZJ>rbJfz(ZIvS>C~S8e`phu^~* -|vN8y2X`vSU?>?MLHF&TKH@))atmkjt+SIcEVd>T{gXsST| -~cz+Q$W0_V;94|*xMGtV*{sECiz@vv)2v!_;Ga3UhVgZ>hzxOUiwrp$5<;L$dRwacs{q99iPIkV3N{m#NT$4P=hVe5nFddepbx$|hd!W -yZC~vk-3!PJ-q1V~vRT};JX42|n(=fu*HoR*0qBgw6Kky#^K#}&D-&5#T#w^dTzy!fHCxP=sI)r>0Su -%`)=gi!TYh6X(h<{idRjd1XMrVXd_B^_s3#?mMQr=YFi{`TtGS=3Vk^G0aU|ZvCnW&JtE$fMl{0lf%E -KUMFk>ZiY+B5x1$5gD3_p)bU0SWd^O(h;yCTj7ob%G|F4`GsMz>+vY$dDw(Q=J8TN2n2HX@G` -p#nBfj3Xo`1Twxsg%V9!q}p)q8b$vW+eIKqlgxmZ(E&eov6oc|8rE*}QbI|yyTWiT<#>>?oz_hf7qE; -TMD2%d_*Xxl!kzjm^kNj>w7P3SxZY~r{Px>#A8tN+_;}M=r}z*T>O=fz^O64gcoX+w<3>CdO21&gg=b -Y&{I81%MgomLwA|c522Kdvx0BL#Ngyo^-=oWp@mI7i27KhAgs*nI_krg(u$QubU>HIm;l-5|97sgpN1Az`Y2K6Q-z=(RYCeXx3< -=##_!WXiq9%7S^T2qqpd3BL``kjgogYRP5u^JrM!d=Mk7PmSeEc>~M=+$(JR8Nxe= -AiZP<5JHZ*{`!S1?dQYzS{y;2B*GPKt&#rfwD5Vq_qT$uhvgg>-7sDZh@;D`n=+p0BBR=OB&(0Kyy=wgp)(jF@54mh&8R>Di8Ev%Xj~cDl9qHRN=xLG_nfQg;0l9{DrASg|@Y!+Yig -7AT9YVm0cXGAqvVYmIDea?BsT)lx611IKduzH4=@c5U1?Om`op-r1;Q&z?brNX)RVnSZ2;H0P^N>|y* -S@m-FC;^Xsv6#Y~tt#<81HN)o+wJ9Iz!j<0ra_me3bt|hac -u;fI`nx%UY;F2tlv%R`fJn0@2kH<3mehbUvB(8di2%Tht7&7z@Up@XB{yzHpn -=c=K_2pMzTUXw_-{$Gtc!J9Zg*P#D@d!x>U;>|WpOJNvE80jd+n -dUU#V=9ISB236X6WS2%a;zlOOb7KO)AH!@3nE^1?DFa(cPInTnbsS38qZ41r<>A00vq$3BlhP9#M)$e -M&SY{JD!@{@m1)^C)*5M7vmzmiG(-|Z9bi9D^2Y>*Bvy{6sM4em1salA3~8Gdra&@iivqongQDlNI~c -El%=6h^^Cq9m(ZWwr5mvG*4SGhK;b2UNyF3{M?^w(OKe$)XC@P{uIMbWsb*2)60{+tspe5AC05?xSa1R)NA4&K8&KA!a96s9 -TOvoFy0@f|Z`JxdjO6;P4Y_2_=N%%=qCbjVvO;9DOwV*1-P>^N!7< -dl~K>}P36xH4?Y#;AZ(LFk0qsMOqo%Ef2Ui86-ox275PBLY3ugu=U$wtKF)eSrZ8 -Zo*Ml@y#7Bn08hnCOsF)7|(21O2cdnU1X2GWC3doSz9Mn>Z(-2r-}OHkAwsPpudgI>DOb9b<@SQkrZ@&q1`413~*zf+!+4Txy -;Hnx^g8Wubd0Cxc-PYu+<2hJFys|mAnu}IU8dlvzLxyqqoP8XwjemI<-!?IxMOAkV4M%a6CzNMIu3Bo -|(r$g2FUGSZA}P_hMk49AmWe^Kr(ULrfheuL0J3F{`w({@56Q_0*tZLy8arnFrw-$J-e)JUxCKdS-q? -pXGiCkNMFxMq#r!5nzGf-))z{6dl<`qGxBs9*?k*6L>tyue%lmwCG_7XwY1Vq78rRDW+&&g)JOer*5M -MhW7Q+H8f&-(E9LAe92da*yViX*inqH8PkbBKXmz+p|qD)i=ICal>)k@mhqwRs@V -JWvbsSpH4;ztXhGp$WS3|8OsoUdj^I`2$aSQ*gb3LO<#+7b$J{ja6Yeq65XNXE<{68iF|cXDz|GNQu_ -w*-cmYo_mK)xv$T?YG-;m)Ye-MMN+HlRbk-Jr1Irl3?cmU4Sglu41q=bnJcQoAyFn-V^LAyd{yIrPl@ -vxRf!O%0ZIE2ORtOmo~^Rl3UQ-u-@&hbzx5W2aca5=Qmnod>3E2ndGd$LK45mFdZ)9qtiE&QF)73(@C -q_8(5-m9;jD>Gt{;t&$;#3Ax+)X=7qtxa+6CGH<7ZP4Z+v998BCFbIx{n1Aodx|z@UrJ!Y$*d9s`0>V -w*^or&m5qTO8yDbhET5NvJ6Km*0^kZYEe^_#c~Ria6Zn7NqD&W-n!qxdpi3E>4WVKbuS=q_+ctbw7nL -<^Y@CkW&CRZ?ooxn;OBJEBc7E-ZLs2zc+Ci -M<;Og{a|)omILHY$v#h(Z!-g`W~7wgBrxf}|BlJ7eo?W#Ek+S1TC}nt28+$ks6_3(iBoL8nZ% -iGvo!7dc|Gk0vEXJYWlc&uO_Mt7FMX*c6ZFQ^Vr&r5%Rn{G6<*V3U=+u}i#B)QwJ?9ivUk8G}BgYg!&cNdIqr5@r_yF#5fXDM@v0&j& -#+hv>ede0lxKbD-AuQQDb==rMiUGpyLMxDi~)rtFD00jgd0an6|baoz)5loyMr2*fk$i{rV-oU;n_vX -0O?uh_!>RRlPs(7Tn7<&iG{aRWf(5nDXUE{%?Ppf%&VZ+Sg&9(?$*GWtj~cRMbEarXomKV_5jO(Oa@r{cM}_p0ipB}+IzcYO%Y;ikuL1dVEZLVO<*O%%>e -SG)bKNV&*uf2?C5gJYMt?Vw{|$ct`~KVZ-k&|0YhpF8eE{idgoN5_x3-?1q>%h1eyL@q_*VS?uw3H1O -H%Noc+&Gxub*GMba1b+Sq8yaM|kb$V#w**VMeyU+}ji=j~jbTH(_HMUc;)N59sE~t1P$iY%O91N2Ta7 -%G?%u7KDv@k#-@@8jFN3XUX?LRzMt!=9i)bU@Xm{sNhXS%}V%~%62V;d2{5{z?Ad=JdgBhJ@2)Dzsy}u>ild*23KIlvqUMM`S1ra7zx+;+bqJDA+Q>K -)GS&3He>G_bPrPu3B!aQv5g)es&%tTYt$%Pmn>&FWZ1F-Ipe6r4+MrRCC@cMgzTjGS1oEVMj)6;j6*~uZG4H(~eRe(95E?(^wM7A^eB1iful>QuGWLfxs`K -d-NkJl-NB1fpj!m+7;HCu06I@;(+#6)J{8@q4&7>%c^Ch#PYy=w-#v4a0L)>}x#$AKyI(T?DORPIdaC -yPM8kCDYvPc{ZwMnAm5#pDekftqqVnE~mRe(?7-5D+q3uYa&2!H~(EJiKjbsyNF5N>_D0t?p$R?jiVp -XFuMI9EMZ@F1IC2c=)B7%_jF6*=a3GJBIc`-0Pm`4*VBHHe_ -^ClU3Zn*Qrjp-btwaks&_ab{14aK&+T=HO`i;HFrAhLd!Z$5e}w#--Zr6emqKq$w()9a_u)-e$Ft7w4^(8`fwJVYYZ7LhpJ3&P08hd)`ExoX(m;OZGz$Nv^yhD -CxZm4Y~vU2`{x~y0Ze!`S`8gxXnM|7GH6Df6A>L#`Q;xNyGB0YYryFyV&&#v}ROwZPuX^nDk!F*SH6C -1HBu!JtyNHyNzzw>~8~?X|-Bxp)`dy*W=V&gL6Ue)^?0$Gj6eb7#x;+YqQp69+MHx4C*fdTUYCkr}Sv`qP%ZRIPw|L5?%9^Eu>9t$PcLhi9~DClP1G{WU#pq88ndEX%HFlL&&>=agM5B9gqq5Zv1VpF%oi0a;D`iy-?IqGcr -wbb=DKTIV@*edbgyz64fF22ygmt4AZRku6wq3zxQk5DtCiS3L7dZGK?*bjrL#y|qbpd;wkbeUs2UA7Z -g-H5|D+ck?jIkE==(OJaWuf6&v4NM`)T( -pD03j}I~w19eKB|;AY_>?sO6Mr7mIDKNBV5;bnT$j;R(1Tus@Um5r5PP^P)b}`aDI9o`u8gH}a^euhy -xfR3fXoOZp(~lj!@{BEH17HV9J{6}1EDSZZN*;vpYfTJ4g7Aqa|*S!%TRpwYe#wBNZ8zsTTh)ms9MsZ -k1CZ>>W(rQ9Fckhd^Nx(Ygh~pi)Q4Rx6w%~yz{K4u&{VF9f6qjf{QLe+H$tJc -}D?kjoIS53Cq?o7%6td4v91o4j_W+ZuqheWRf6$GXyp~rzP -E!a!^AmF^P`m{CNNbqx~6~5rgqC00#) -wPac4lh2wIHw?)zXC>9kez@2d|tsM}DyLCLST=!35h9K@qGG#X!INS;brh4L)S%5y3Mi*O5|4jy3Av8 -LMYFwoxG0t1Ow^7GXaDM>(h>rB_L~)7YESeUP)r@U`Ww>1OxxLPdHci_u3wWpLuXBHV!3A|3slotfAAI#26R)EuqryeH1g0hr_OBFcb7|e6?lGRdv1u()}A -Nu&E``sLFVi5x9(MUPi#Za;ng`g&f~YJ{h%EMpIC4D{l3?mCr`HF-v?A?ol5_X|At~O?)iq|4<0>u?8 -KZh1gHeM09_={4VpBjaY-qYUUCR9wN&i20xNME-xw-$g+%2|I)jywAn&0=SGbNvfh&Jsk-QrY1hZzwl -f!bFN)$8~4sR0*K9F;=&>>RsQ9|G;*YPM>7iV%eQbIgMw{YJt-rf7~NIS-#pW~KBxA=91A2jxYQ%-D| -r$AY)i3s9L#;sy_e1|850vvTLUu;LLt(&7@d3CVXz`hrnQa{1?L@Hre7={lc%u-uGa!P -=)@Z$qm;Qp&?PgVtT&M4h3=T3^A~WeZsa+5JkdOpTTo)}IN -c|MK;^A3+@%(q*1Nq}mZ@vAFM%#$*b+p$@{a4AdTk%&)|cQ6-~#bG>D@hK?M@(A4y4)vJPk$~JxO*B4 -YXxNEag{!34K7tl4)%r-X4HOBcmdQ5kjyThPS6Z+L2h3ZbgLY^#aP9sh+Bg2*i_o -Sf1n2A0n;4(kGW&_bzyBs8r@J}5A%wP#}3W2Rp`Fv7DQ+sCuBE_bH^FB+N6$a<&xDvUrQ7xDiGmLPo6 -d~VhN-`#>YS$2W0NyJv>KI+hYO{C#Jc0FMLqx6=dc!c;o9g9MxnIQ-cyIB%o$pN(2jk*nKm_a?e*y>C -sfjHu9=;XgL*M3`>7iJg4Kw2H*bg2QNGsBC$9Z0XRqc$>K*Dii480g5v7=v5i6oWmHkM@{iyb&-X*N` -yPcr+X0urtXn*}o{a}++7*r@39Dr>yN|C6;Q@xw|tbhsPbu7(3E -bT^09QkanW7gY2-v|>139mE9@Y(@O#m2L=Q$>LNiGB$+-)}kY6g2$*($;nXmve9{`Yx71JK!T6f0)so -MXkFQSdI2n@>81oEJC_iUDF4VjrK^Jnb_XUl1Y@Mx0yHPw4>>ZHQRf@=4LboVH| --CfdeDk56y+$Aa0vdx*|(gp=plGzs~UyBgl~o;Zgwu*VZi@B?7Jul+%xRVL#}bahUE=C>gv~z%>MSU} -JnW2Yna7$>t=l$uyTe&QbJ9mUj-LKcQ?>YNBw~2aFb+BIFVEP(@1aSJ89ZDQkh~3^+^tqSJ&EbQ^b8V -110f3r%#&9_p!7v{)St#gFn|LxF~5ZD6~pHl}tjt%-3qJGqqu%am4=8y&3=Su=^)M?H5@z8E=mrq#Z1 -eSf1CX^%5I0Mn=hg~;Z-{JT~E>C>l3Q&fnLcHHi|lF4?Ap9}cE6`2Zau^h8VEP?7N7q+vQs=&0V9k=j -pTwtc3iyOf-?9Y@hrgTM68Hi$)0+$orMz83+;CWJK@$f30j0)=-!(#UdMIyx|L}8OuR3n>UR*@VxxF7 -6X>6#WYCA3Z%?VY;(bh#6PE#AhnA~;djB2kAVnlQ#hGLUipG{el;VrlO-Vx6gb?~tQGi>i!7237K|Lg -@I=Rk!B`4EZ`7Fhp?%C~?;qRN*+`xfcg_iQYKlgRsz0s%Fw(yUhhsQP=vg -s?P(OU*T?KTE4C={G~s1k4H|R$C}oZGjv;ODIGtFdczi4;oczFJ|9PFV|LtZfsIDDzFBsOrp3W~k0aS -L_aFUu8ox6cl~_tTINbSVu>a!36vCuIlX&K5YFDrCo3CX3(NqrFI$YEgU9NseGUUhd;*`xNU3*7CZ%=?tJKYQP#273#v$k>#tVht(qXx+0XUhTdK?DVixZ2qP(4BUD6{oq21_h#E=pz%_x -#+N28RJ4jea_#38o;pB#VmLS=%{{iR5Aon6U*@W=-xmK&dG%xr8T{mou%Yq6|dpo`npwBXWG9<6Sa)h -{N^=%Uw~G@n*(pIG6L3D@6=$h!kv=yF?5o6eqy#Q?PBMq|3!~B`{BvU$#|FM!$|XA3dIwqhEi0Gk*N# -SMcP`uj6n2^6li!ujP33?KgjEIdz$ZVF)hmqtM>=N+BaBJW%Y^=zV+h3Yd`dGq%!>+V>gx52E(J+V?v -EZ=D_lj4A6?xHE3>-f*(LRnXv6_!oZaAZne`WxdksBMk=M`4E;A;vO$4bUTpx!$=5{9Yf_{Jx$ZBV;= -Nua{K==n{qck1-_VgDq&`2Y1kfSHa2XjFzxu~na_i`Y@vBCS$x#n04wMVEvI@$OuIF%%8C%Q?S=?a)t -}gBSZ%E|T1sM|b{e!9>M9YT&`apR;q>a28MNny&=BtA7O|srcPZRaz;wFV4xH@asN>O7a%XDXQwpm=+ -iVLQGZhQBCeym5yZ8M{`@6;XZf!-{!|#9`{8o#e*dlTZwPkKrs|1uBs;DVnTIa*U63rIOHyEbcWQmd0 -Bh4<`wJ1Teu#VgIV6C#V{K8-hba~Qu!G!N&4~wFR~I@L(N2 -m6h8NRq00$fIpBSR)d%JyDkaXP4v}owwR2+7DdUfomJ6jI%!TS)KtjNYfwoQQF090`gflmR0_)7@q+j -(%d4AqAA&iwg6sAMNj;ji9H1(7WWbZ&$ZPdHc%}+~RCAVuM0ouoefGk6-A-l_B*%&zO;xaMf@{|?!8C -_kNi5Diw^pF;hNmitDSRn!>uQ!@+4}n{@jB3c3CbAQ57>EjO4INcsGkL^#rzE(l=q)mLT#uA6PS|+w? -UD$`5`DN|rPUDL9{5X0T1Asb`i?mQ1m-WOH>P>KyMn4lIU`h7i|7LpHA6jl;ol1oJ=)u -^5RW@g{<2zpuPQ)B(OhodoRb)OK9(zY3~r*`$4sL%%tE(gd+?k@u2VI&yXfe(kQb=0R-=1VH6z@^H(~}>c -g}v~ILY_~Su59bO9W4?R{z%=u8+7aIwdDSAWaXZI>r3m9jM+t`=201{jBT(8@_)=>F6gFe=fHz*^&Hx -$#UkTOyTGP-b86I*|tEPqr#Ms?9k99Tg7i#57<$>KbcUIW@edGbA=>YXw5oHt9Sxbe-u&n2fBlmD&t` -^hYeZ`QSmoPkgw>8@)?T5!T9f_$aQuUd}wMbjQbI-Gc2o{nvEhs0sJ=|JK?oTD#1U@7N#d+Ul` -OPA90dP4hqRPMIX!J-JMFVxblS#t_#3vs-w?LEIM^)8&{pP58%zvCe1vEn?lVVELVMi=-^f23#GJwz*R%4Qfvr%t;l -Sk9RNjCU1_Pj+2q3QUfnNwr2AT+{foc0JarCJS}KFp`n&*Jc){w?weGJyx!s -{F4)Du8%6=N7PbXHW=ICzn#Y)t)jZl%s5k&l=e`xUZB+vqt4%5ThLM5vQ|5;uHwt;gUbZ&#UqI`hSPeUfwvov-o|klPZz1+Cj;z-W#$LYS4=LKNw*8qJfCBi0NBBO^bHS(pTQ|^9S165zw}-g -&~S}+{s4geM}aYTKQLr9|-zcm^>n4|434asm+ZZq&uj}py+VstO0xqqsZC(tq_dOUHsr&PAidKj7PyUAg0|pa{Q|D4ZCe3Yx~8{VOW|?D0;toXq#v_nbid -VI(2Qq7z*U&0l8v#*AL(dlE0Ap-ziqJW$`A2ylH6Bl7f3efz~{oUq9$}wUGk}8JLsOuv^=-Oo|ZjwtP -|!@wmYk%jUFm|BZFb=P2gfvre%#zXxz;W_1P$})1xlgCQJL%jp%&)JsD~KSi86vB7_29q?+*qz*@Ho?;F7eOK*c(z7Rfy8+7z|; -oFtVZ0HS9RKce`ioE&u-1-;X9l3hp($=`&f&b}ld|6E+3VsSBYZ1nQ7D(4rUa#gKctEv|~r^U*NVjyG -6uBMgr=d^!{X-A~MtOMfv1M2xPpq$KJ39v(8KI2mObOh$lW%22#!Fr7v00;6Zm%x388c4VxR0`8uN;Y -^udW>eCS;WfJ+%^NH0uLhV4|-ss?Y;^{OI#?qU;!&C>{H5;(Kvdvu5y-Y)S+E&PdgWrW7qp>n$ace12 -VM=L_zFVkzCHPpcVYKFHw69)1|v0_bU@IB}O0yTkA5U`<;x%7^HwM?5ABec{NO}JF(PZDx3jA{xd1^m -jw#_I`|Cgx}`e>#zTNkv@q*ef_JzqQmeZ(b8voc`TCkpvbZIyb;;^QXM+ngwY!03Z{McEO`zEYV>VDW -7lL@1B_4zTqaQ$mc6#AW@43yG<)8(_EL|!&x`E>6wMBOlPrp+Ese0a`54W3StU!)&wWibg)DkUWEe#| -e4(A0&s_u(xBuYG#`;keTDHhe&1yIMvF2G9rzdU7kWcm~(#?|6`2?QxRZBy2z(v#Dz&9i7504Vsq23p -^NCiK~My18`*-+3I}?&;Q}vn70GTBGkk8-(hWJrvWaA1M9eIvcAECfr|o*U1To>OfRuBw;cK?=V_d_s -DXFt{6Of5AmSw;%c@q#A2g=y**)qN>3pi7%2t#r10-%-ZmFBV)q2*cB5VbKXP7K+rA8@c=Mn&WH}XRh -603vHEY^!uIj#N@xkH_23LlQuiD$qv(S3P&$2aHpH8dH`nFx)>t$%vOF10;v?RiY9G^EXJHz>>-hb$d -Cazq}-w?o_m=F-N1Jr41cpcgf_^4q=sL!Hg*iCVv7IAXR#|X^aN+Y}z2WOKmYYL+${?_4<`~!tV68d9 -t&w*FUl1p}YA<>c>`NLj4%iF4>txPZtI+HpPT`A}K%Oati0O$qq+ni&&a0ni&bj!m-0~%n{JA0u6o`y+*iHCc3z2ntCN#cljgfr0(`6aoV?dy7QWpK(F`DM0!!wH_Ebzt;pv?>_Ak_}5~Z^0N4I -nm_9_zbqDQ_s==mfA07HQVW5R^RL=|hl%-=OW^-3-tQRb;LnNvtP_nWUZ{osj1&Inp8qek6c{=Gr?%% -)vYC=q@Nv`se;4of7kRal-GrxEI>|-s8}L0Hz!ka*6FL~6TmhYci*$sh@t5)NMronSA~FpaFfB*IT2- -a!uj%k9*1(RQZs^#U<`mb~3w{3JJ!)65n5R|&DuRz|ZVU~1z$`#SSRBCzhA_d0(bMS -BZ4ab8o7_a3xP>1{fK8LWRE!oAlIg$y&|Q2GK@U#1zB=ngEi~mkegEN1mscI^dcFOMRbQ=E4Pc{8{2s -ey!Aw2UX-DjnLP;?1i^`39_2_Jw*bQy|HRZ-blsqGZ%CCO%9V6Wy&e`2X`@1C=#+!^o>3lxt{FoTy6! -ri{57buQV(RaPyM?WTwTJ+)FN35$La$#5o7ukKh5{JIFdkN7KAHtuI6qerv~&v`>>uf!j(r^oR%&mkimX!giGaNHa4k0zTz5+^0L5yYZ>cnE&FNp-jE8{^WQPK -9_Dd%r84XK#5#^r{hv&zm>#@rfU7m0ObX{y5>- -8pKYW^(e;qKn7MeB{^7W3B8p2VCh6Pw~#~qxa(%1A_Qy~!4UgVbqHkFErcU_#;yNsmv=_G7^_}%@LQ6 -2g9wEL&0u3Jdk)uqeoj$JFle|HDPFdiTGt%xroO4;rD_smk~ -6AAThjhT0v!2!*JOw~L1aP&Flk&~4qqfV5-DCGODsKCtX -|OUwLx6lU0m8!Ix}T-}Uex9?4c?-h9*MKEew-#+b2+x^z7d!z-K||s86F8PmxbEIk6%K?i1B2hbq2Jl -qB{=ZO}n+rSN*KujNFn6qRDHWocpBE7Hlu5a*U5St+!QfP69r!BtP`aYO#e|S_cuZ%dfumcYzG%6yFI -B7IPg9z4*#b<6YJ@>##4V4yb5q4WY6XTZ*%^PM%D;w(-%)`-he$s# -ae7Dh${3O#Vb)Tv;~TO8`zG`8gmuC2`Ie1bayDjJkCQ@0rw5Fa(qnDgT1lMIY;><=#+)gIMHd>|v{ZV -WhX&6X1vV>vqf#kd$D7BE4@r+#!eg`VS$S_wnwD-FLP!mp(PAs#~gyOvGk=NnAnIq366WdUnk(d5 -Dz8FTEj~++wZvGv8^X*1!sq_9JN0d=0!2GKib9JM$+1u>aOQIxCmla-S*gjhYNfB&^rEwy)ou6M*v -T%K%^rW92F@l0E#_kg=i<|kWLhqC8Y3B*z=4tN -W&>dc(jdEP*o@$Do#AV9qqcBBgfmaCFN9FI$s~gP@s9w;?ro -}!^Q0R0l$^HE45y`B=CVH>l8cUzD|l_TH>Z^>GoO@{-W=cPEpZ2O5@A -HKxL`stqgk_3yubs_xB=76y6d|TX(^hy~ipB(#Xy!882!g*OexM6^P>~ehb$-X0B0}K(duSHkT7yq$+GHF=vo=n|{3_nJuq~p@m)LpOqwLxd^=UQq -}||_#QPR+pfkr#xAff#%ljq%*0N;j-1s7bZW;>11@CvMrY?1LPWbu0H8CIMJdbq1(e>!TKGogTd@kCk -~1{>9_eas{vFkMPk@;8Yu#~Mv!>u}JV{5ez@*3OC#7%P))*6Y0SUfe%kZrW-1o}XGJfAGEc4zw7`^bPwIFVJW<|@yQ6e9#Mr-9+7-M2RcxkCSr?UgfB#!?xfbNn2x`RRTn`Z!DW -43AelA16y7tS%$5HzAeF=WrCm~N>WdTD!^a~m31Xs^z#yhY_aA7tCx{L9k-NkP80SQxsB%PVz$*Uq_g -_qW2FQ+H8QBNOhgbLhKb)H%hB-+`E8!!@_=T=nj}`~=i^J%KcgQ4zE$e&=!aZ -tQnY%DrOYOzZcT?pjups47!FP6Kx5G=#x@^`0n`N3&RXfUq}k$ -of@E71Kqg+vb1LUGsLV|8+At#EgPH<8icp7XX6pmIQHY+^s?rNeXRbTns+_zBuK`n_nsw?t{(S03}H4 -A)~_*%k-W-L&pmObhDU2BZ0O*3byav6bOvLm5<90b@6iVTGBWSzbzhqOE8b28CCkQ^jx@UPo+(gl%^@ -w)#kgNvoBn!vJ^lfMYGK64*RQi(EuKTY{&fRnT;@3`?)>gd`%EoWU4D%aY;;1b|nCtHadG`V2mIV>8j -GrbyYH!XmSnf%YoDMv9We7UjYsJp*i{Bki&ySz$MX2*X^x|3MUWXq6K||cqtQ@@&JYP(@1f+6Bj0vILMCd>wC}aK74NJ`vr#&vfb=G*u`+8?J|5VLMF -_bk-*G=l%3!pG+DHd>Fk1~fz0>q(0UGeNUMIlD(p=c-RP1QY)W;0^$0o@*9kvP`*ec#~Z2w81r8I(dr -^u##js0UyA5XOCa?sYU8o>{Ds5Y6bfm4YA6#j7_V==8~ZiEc%l~fF4?f|@6QflhACbhLz*o~-bau=Ya -p9D_C5NR6>*-tX|@06)RY{#BLlLPCdRR^uq>7EPY&%S{=l>?hT#GETT*Q-fT=OPTY|MC%Fsr5PyY1&93Ufz^_o=MM}t9HOpKSR@5k~G_*0(`L~GC|kld@`SA5);s3yp9 --gTY$Na%u7$rM^}Z!WQr-Tt(8MML<}a*D@XKYiBWoYP#i$y6^CD6o4|t7g`}smU8p@KW}OyEoRH8SqZ -#^yzFn$mUB*xH@CU+H>PsM*1m;cjm)VX^_yHyl{I-40w#=Nankj4-=a1en!8H63uPsoHwD- -guJ7lA*I4rYJEPr$g-}TC4DNf8$Z|=y3p$lD)4CYBO2id{lc1NC~C;Xo*=}3)ckW6~pAQTi0`1Enl=g -1^Q97bYm=jL)ib%K(%RFl4M|##B})@rI%@?1WWCHy`}Yjcs{BeRoU51u+roH=9m4=uf7dot>^N(-lhH -Sm<(HsELo@i*iPZWnGa#%lC3S*)AbOHTP)wu(mkbz4<0?P0lw98t}o?NdgMVB%==9(T5_S~_Alqb^PT -+zO9hr>Bj)YiRYnc=*jIynSxb&~s|8$NybJsEzDVFOl+dzG2#tP^>|(!1?(+JuSgGfYrg0ZF?x5QvHD -rdgc)BqXhJD`Zu!VeAVJBgP*hlI2O+Jq>XRDFIXg&px&~g@Iv}!TH*KN>=*Aue}C0-&H1cf&tS&2mwi -&iDBNL=ytYb!x)X}61S9&=+hvFO-|O%$XezSdb}IUYuj21lb;A+GTpS8ES000mqC`eBg_31|CCs3yko -=2#~F{|@pSb%{nHxcZ7E^(`QHpQhyG)=z?M^X9=THnw5^6plv|@A{n^+tJ@q@1Xf;TU2c4h($P!Vqan -paZYf!6xoBycl-3rDOyQ~PfZ9!VFg>E -)L{WR%MhsN38(OjkBfuwQEhMA~*lqb7p0#8q9h$QM@mt**x*b-Pr3uaY# -nUiBwTL7;vhhOK7p>q7Qwxm10jB61c`7mnj9#v`QFdA@V9bI@&h1ZYzYz)lW~26He7G;Ii)`bMXxb<8!-;w%Zx&tm;>2s -`V0zwGY4I@y2uVk>(80spT$6mMZGxP>+U(HLt&eS&mEe -P*)(2ko|48r-!!kZ|O6)df{`X%DPQ_CA&RuF4`1Psjh*`&D4{ktYmoS^Lu*uet#`?QCgb0qo^)Etrhh -h5ZfgxaI~LfFrBCt(fNpy|=0_97F5<2ayEUw)0Y)>ZN7vccuXj1y~5Dc?7qKOnwJs*>ug9YSCe8DfH@ -`1M##S!+8KSKN-5=RaHCI4(!@2Fq?-cA+M=tRLXqSB!kx?o;K-~S=c(bs-_dgQL~0r8MRS323;KajdU -1KREFrsme=i7e(i+YY1CL!$;%?2&zhC2_upK{#bs$JDi_!is!KJ-Ln`uk6v?2q_ri*n78Wuh-15o-&e -j!lb-AcQGY*dRr0s33=~SKg@#OHpYDA$B&E*JMbp=?v!rbx*i8oT^WC@KYWY>g3xl-4k+*oZ{mUmZqk -^UPc?&uY()gYGl(t2R3;2})}sSmHO67nNg0}vllQcF<$%D7UNn)YzTmebL!`Hk|d2V0X@CU^B!dU-X0 -|5qyGYMe#$Y!Y82sDmiy1yrE;@Br+cZU}P&i<(FJziy%QO>)EDS~|!XdOoSVVk%qqch+V}^s4GV6MT? -LwIR4%-OP~0A_|o%W5;k!F(qAhzP`ZBZ1EO`3%^9I&voybB#Hbo|R -|pu&EZZGKliGROw~u;PIu__1v?!wv{g$*tU%U&&k&zPxw&_ep`LLM(b)V(-bBUzy*YdqVP9TSJb%~*kSwD*-CONc77^_@s%%AZJ1zAaBxh~IKB*UD}; -%9^xbFB4Vjdsw`0?R6H8FrF=1wDz%$uOsS;IQ2kboq0+}`3wbUZ2+$fOgoLk -_*b!(Ny?B9w@ooGmJ;>kzmB4F%wTqtm@Sc7Q$ZwxsvUAKqGOo0>Jl(~)hy6>v;#q`q60*DLr`dhS! -IwFlAObXH+lp1vTV)1oIWj@;UEOyF;sik$O%Q$!<9{4IgWjSC^Q;A8@~&rx^mp%h)}T_=<_%>Xfni6Ees} -#vkP*90}clN5l5T~uDE#FRq7Eqm`beEINc_*L{(X&+uGHZ)O?)_ky%r{uiwIu{CkQTZ4shJP6Cooh5xp{b4iqk!q!C684(RVr7GY2dH2;N{Vz3u -auH&1MhxjqW^62?AzF`wQ>Q2zl6pHL)lx@DvsXzc~7%y^)OA#IjkARiR<21O@+P2H_MjPT4ru^+jOWN!?ud>w*{$X~G(&L8Ee8Nb^c$lz#CN~nlB(~ffRm@8&A2 -3c-;M*6I_^R#s%F9C?X^?)N-J0C9uAa%=kioXMSMu -C_VJ%y6Q&xRHt<$aQZeTv;vlIcu+*wiy>)-Xarw>pdw^}t1P&-(ePPLMk4JMve$^#`DD!T2{n?U-G)d -mwq1v5nFg5(4~jXDlZ}k^`j2tWPR3*tF7Sn(1_!j8a(a0Lu39iQzVwt*i4#Z_0iY?dDUM9VQqg0Z`|M -I=|#NN52gZ<%1CaRfb9GQ;Wl+sBsPEU5S(aUUdvyZR(8m7XI0~4;U-{G+62e}&6TCpK>Tl_t -Gx4j9!dz^|19&~QDw;y%eD!}N@5a+v$s_WeHxEUmr-WhR{}U6}KD&xD=w^`)DG$e>g(O74wEkC1_h~3x046TNTQXRh4qbc2)BWvJr`oVenlg+f*OhMIM+06GJYW8TZl%Z$1&}Db!mDy0Ih+5~Qs^PEpy3yO9j%xKPG@t!Bi`SahnE6p -FOVFLdnAXBPxSI&))3cg-KCRicUm`!W?eL8{)>#m%9`6-xg*eJHg)YsRIr9({_EJZ-qm4+yZ|WA-qfG ->{YHrwMu07Ub}JEidhTZzK42OPfr)AATkK<|mGYLb~IiA;~JMvwtVo`+&NB$Y|Qg?^@6j`&`ggW8I>i$q0*Q9yL$NrJ+ys}^6pJgJrCykY -40+k92`huqpdeAenVPFz8L$x(~q`?l0?#)T5@yD^X8*))gs($3l#3PbCV{nU?o`RFd5M-_$MpIM$BR1^io_RuK -|lM`u5jxJr=5+`F^Hxx!Dab`z7Q$7r66HQi?h(dXhp<^%f!tJ)zm3IR*vP5Eh=`04@n-~uYilo!|RE6 -Nk$1x8gC8$$nf9-9<;V3f5$w;gvEQrkZ~CPaW^c*fCK!ebt_gcXyyBAQ -U<2I)mtjfJM1XVb5{6R7{y84_r|5QsK<#gCZ-esyk2~2jyaR27+1-W -oCo}lI-gmgT!A``np*3$YQk9M1>{MrnTQ%J14vF-w!)GCqMkKW6|1ru1iz&7b?o+xO3Wep103>(fhU; -MtdtdJ^l6!p0*XL@KM`ow|(|uY0JO(Er+a3Jg`xRHv4>rbFpbn?UIBQ)`>&7^+Mh*!p%toZcdtTvkGd -g{t$^%Y_!@IJitfR09T)KU*5A6o!ORa;U=9&~5Utm-wYe&8RU~j3guWqe_y+BuV4L`N@0tLpZN{ -|L!idkK&s~KAFKWrfqR#57=daaMXVUY09S2$qZiPofPd7Zr+S#-j+A5gKT-VwyHs`F%9gLf||-cqYUY -b?w?af66W?X~EICh?bQV9_|`#~ypim!82C1p)~v_c5tRO~mx?bk?!&Zd;6iGxw^zR6<)8L#lxt9ZW+4 -+y%O!5RhWnN5%_wJv~xC)`FmmVe|!U`!HOCX65|tAu23OM5!}sXstu@sYf9jWst_XO?|?GMt6Ps>*YZ -}q+aNdOLjtug}N6k>|Z`Lj28#I~m4RDNewQ#;Rf6aFWR;5!)FWc0qwX=gf2t -42U9{=uszq5<3s@1Tsyrn5B>_tAh(cMAD7+tHi6j5`=9D|M$5~~g?D45A7o`kMS4(#=2J0pR_IW2jl4 -$|4iIM&yjT9YPdF=xXeGb-%+ylDaHkcF_q|}7ngEh2zEa*p7=T*v2`nwOwUl+x#u|pQ$kq{Xw!la -zhemgO>r@V4FiGrXM(|;^z9+Ur4l_$SM-unDg+A!D%P>pKDpjo)9bI@DTV?tNlNLyr^Lv7OY>HUtPf0 -?#_|VQ{m9B`Ffm!i`77i*STuMq#+c-s;g2_l>?^5D5k1hcp;V?U2n3l#bUVAw9eXxA?`HFoaD*9U5oe -bPZ6oQAvQrg-Xjj(w%m+VJJ$uyz$Nh`wvPax)H;!qc5-e^teeeC*uoKWfv$DQ}2N+(`k6 -}Deg1aUMXg2;4nv{R5XAmxs|VaGFCGIHM^CCH46q{CX;?H!bnj_{uX|4G^$t*u?Q`_YNUlsH<`))ZW6 -JlPo55;sev>Pda=bV;=5%IGSYpue1wyy3dh>1q(EMuekaa+2jMq5tA4dDmFJ{N^I9&Lhq -RevwqLLM)uYs@OT+-QSlbyZPvw^+#WQC7WuUwsb~>xq>m^-}!VB&*=%CS6#2g**qIcduT7bN}JM_v`k -5riz3N}H*gr-OfT{Y$}#aaSPqMHhJh(ZX$)T}d_~#N4NXmO;IM|UGsf%MbVjJextfG?%(+geJmD%CMez;>(Gx`U -L-uxTOnjA0N~)cgQX77#E2pQWB|Sm_>-JO`c|&Zx=GwiqrMBw(4?PPhL -yEnHR~l9|@HSi=dN1TO?U(VSCTqdDA@g7L+qV-A&7qAAXL-2d1{d|%iv7qlUe@ibyR+n$8e8kTHduQN -VQcy~r!@+|bcgt|NJ-i%G5pHB0KUS)j4P&V=m>$-@4_HW$GQvZ)<$6#bvOh4l2+}3EN#_V4>kGqu{In -c@pbex+HeJ!z=S-BHgCN(WE1ek0bRV*r5TuqOE_c!COZNE_36+7)1`pSc=oSL86pK37$zzB3g2ql0X& -*CV@C-1;tOGMTmdY@8>te%TQ(!Q?BHxqJuoYz{=+aCO&buUghf(r{&i -)5CNRJiq^ZX-$AS*8BwvihOwP4=Ir*8BHxUcCSCVTEX{*7AV6Ys+#>ekVrKYB5^L-}z+_W*}lRTR~~N -uh!}N4`<5)#SVt~WD?J`8goEV0)gS@^t5Jntc22aT-4urVa6vSGWTFMOwBFk{r+7iZo{27Y;Qf(J!EohL4(S#gbScL8Z!6$ff -pK^tj|2E(+dIWwFc&dJ#%%q()xmqz`wtD45BRb1>g}%Dy8y3^pGBOv(-qT==2l&i%V?yyTO}`dQ=RG4 -oB6$`!2Vz?66-+!!W`&fPDrte+jg}eW%i0U@-j4kIPlX)TlGkKi>R!wiR%TK8jH|ctp^VE1|FtydD)H -hU}dh>(1P{q0Bq`b&+exsd@~?ELkN~26CJvJ-CpCZ>W7S9$UMMyxm#)tgWGGUFPZj!(?x0qGa>d=7Xq -Yr_(xB-ZkoHk!Z@mAOQWjTVQCn7fH>VP7iW5W`e}7lLAHj9$`xARVxu9!++-&pqdN-GC>^ -l!eBlz2JCTaJtRtYGZJHW+YYXf$Pc6}#@QDD!XTjJC1A=@M+U@Bt*5 -NRfYgdCqB>X4hdNwGI>-)kaHNyYX_QNX)aQgWabREhbgQj;qUnZ`+&Q^K)j1$*SK3%@idq+6JI@B&B?jMn_JWk6kktU(tLk4F@gbr1DH?Kf99QGb#c8cwxP ->Vg;dko_nSf+xlD2X=*ztD)!{!{=H8#1FK)|oE_Idbwf9-_aERk~=BlaPqNqP~zx~ -Z<9baal6CHZI$`}fIJRn5w+hYv^juGEcDIPJB< -D{cB@oaem)aI|Ro?wZmz=Q&o=_;3~M0w?0B%G?Rc#DU;0_Ozx6%$LPpx+FsaIou_S>v7@h1$YH&&knopS{S%V{ -Nk>iEMrFp1uB`r4FAz-@VY(9lm%ImRcojzDU`|In`gV+7nPQ>whP%Rerrb%GY5i>$GgwF;3e$Y3tTWd%iBp_;MWwwjQs`qFgtN(sWeR?W&uH?>Bm1e( -3BT{=WO{_h)~FUyna@JHPDy{>#Dd2Y>xVe((SC`~E+E|HohV`M0Z{=XC+B;AF(1++-b^xc7L1+H1(qh -daXLFS<`{T$wjXTs(a}djI8z?mGUS!lJ%{2d_tegOI4i-W?YyxJTwn&mWCzco!qrni57p;ZJfQUvawnH3g%Up1Bz4bM!F^1uIo(& -~O-FjN~qvIs8$d0alR}!l#jmg5!Vh3iEI1|rPrgOZ&$e>TfF6VTOIHqt6h6T!e3+=?6m|x7Fm^t>Rfr -|4tE^4`B(xP^AAaYk5lPwF!trlio0vj6D|3M36Nm^>hB4mt!{uF;%+x~!}Qc2h`j0FegwW)h$rL(X0l0_&7^S}-*B`~AkR7^r^!sBE)Iov -K=SdqSabaubi56l!7t`*fSRb%CT5}OQQ?)hy$3siCJoHPdZdP>@D9zU{2Qe}8VzPe4&lB7GC#P+`Sn*?A2gG!=(`yPv?<@V|+`#`geo$7a -4&!z345nxubqsCDXDKkmo@cPTwGF_O?NcR0XEOA~XMEXT?T#*(hWSW9LwB+yA+kS&oo$ejzx(Jx=mC3 -M1ykOSceUbDT`A^bMXb#X8L?&<-MW5}1S2A`$1U65E-ywj&?Iami6*C)TYQ$SC#}FQMF96=$V;3oiT~ -Lm_#GZZvQK#}Ar!aUxxFzwNxfe$d_O^zZ+*yVdGahlI{&=aZ$TGa60rmZ)ex26U=GK& -Am82E)pyk;t-eU-5)OvEY`P3AA@(_NSnXqSNDSP5Gb;=$Q*=Zb4m#2_NY(e48&~mLq9bO4JT%0q!x8N -}{>E5a3SOal;LX9l#MIhtaEbdU+o=`e=m6?g&pKhG>VSUAvPaC@L^Tv09tXKeADzs{KTY+rYG!Q?R*e -o{6f&ZB2zymX{UlUW(mu0d_ybq7ywlYmC79#!zApL+u1j&(Cy3uihA&C$Wi>*E9R`Dk!rxnW~Nvj`Bl -pF$~x@Wqsn@Gx`X~5_wfUIca4~9`vPIgW*9bLr3HzlA?G4a}KF{*pAVhaR;$AIG5cq08Oli%hEA31xeva?*;7UrQU0|Kp&If{Ip)^Av|6z;L<>U}AHn -}qt&!fvQtz1?orF~Aj9#RAjAR!eQ!R!g>+g`PDHytL=z^t4?A*FHOIdM{&LP{Qtz?vHdwRZ|DUHHz;r -8*2x6me&>Cc5j8U|F{Ll1R+Pu@bMp}hqu9oNyog`h>O*-mIxM5aW3CbXD-XBHhM0`U!| -OVM*HK2;@$&fYQ4o0LN2`CjH0l(m`P+ogo`@Y|DQ -+T@8@6p*kFN6!6CxFF&}ig3zFE*5{pcfQoz=YztsNG)FWCA33$Sq|L^|lW6S|iJXI6q)YrJU;Oj%v@x -nSyR!?cF#Y@p>5&X&{6YD18U8IUwyNkxD^Z@N*-hb%)b;}mlLQ6f%J4OMjIX_Z=ey_D!Ux>| -(_7}BE)78|d`_#me~74QH@!k(tJcLalQ)cN -ZdFgpwE^wq~7sWpbvt@NzHr)62qbgQXmIPw~W^g;162c>90={lxk+~`H?0r#LFqPo6P&;Au&i-u#XuN -I}SgpnWqba1kNu>WE&`W=5hdwH^RaIn()J^k1F5AQ#mEtncy)U}6lst(97gH7Bd=|Ua*8zJO(njz@rZ -T4b4P-m;<0bS}KthHy_cS22b2gVgBLkhs4d1FicJLgi)x966v|vwrEt|vE -8f!RY%>C?k1>vOg=C-_oMpj9(E#_@Iz*3QOfU&x9t27$ -lD0Qz0y^@T=J5wYjC(x|7>}w+GmWb|jh+WC|$wG+tACTX(el7^rYxmh7q`$~NiI&;z!-8yF^={xtXX0 -9>_`?q@6UXA{zmi(ecpUgE&l3W;3Xgj<=NJKQED|Pvfl&+9Y5jJw6|ILj{xi1$*P5(AbM}VC%-s>Qgk -}M&0~(DMh|__7>Zxp$PBd~$*X1OIj$M~@3swGTEL&TcNsN)BZ7Cc$foQw+;Tbu1Xm~ci+~}6b=YdlCh -Pm(_THjwj*?ig}UGYj?3oHk(TY=k6Gj5zp0qW4;ZA6-F%Za9Z@&C5>t=nx|NxJ|26bRL;N!k>TB-^>D -t<1=dlK8Z3d1QOi)3Ta^NKisV5^R99tiCAd6HANeZ>Yq%5pkA6Ru^81or(>yQ+58SJ~p}>_!l -_)}6v#*sXWj5ZQ!xLY&GD*#Zj!p|$uht-AiO%8`AKW|l;DsT{fj&$D+aUj2|m2HE^$@eE@p0cN^E?*S -@8?DH9xZ4!;rqJ+O&FjQMSGm*0ebB1{f!Ca+O|BF0O2&9o5cKaN7L&XbY;IlCW>1NQ^l;?dr>KG&&PW -1>L3d=@kc=u0E=rKw}K1@`Af`Db~T?OWfx0N7yOp};;Nb%PgAXc@LGK+ID&^JPkLwAcBkUtHGig2GXk -S4s&gjw0-c2lT}>%|3MBvDM4h;iwvVBoCP21)$u1%2a0Hnts|(GQ(Hx||ffNin+oaoj7mccS|bdjI~} -MsH{Peyiq6p^e!PcawACH_nXTAV2Ut8YYBi-Wk%;0lof}FXX46z -P@K*N@my&uOPW>ujs~=&H)MF3O{!`;Ym61ML2oYs1zA{i0olHlg(>b`MRTOm#d^{B8c-32*(;k76-?Ym2Pk -;(QcYL*xIssSzo{Jz*?b9E0f)_x9aR16~{j2-!|5`5KM67-O?3I|@Xzt9oIva*fQ~5py?1beunOrN!X -2XXS63UFsoD696c^<>DpBH_B$L0z!HS=;KDF_C=$fgc!$F2>_Tp)4_D4)PgW{bYEm$KafMcB4jG-QB+ -aI)Y^?&k6yj}+Ts(?$N-qp3&oH-?~q8divzZeLAM6-+F16TU+~E^ybB5ztZ -LQ=U?)>!|%S|e?EBia{tKz95_dR_S1d2bwKH!AHMkR@Y&P-7lZ#i{Ndo);MKv){iFTYhh9^bJ6l^^@W -G40f4tfMru=%FUq7#Sy`yqdo67I+tLzo;AMkj7e{^uL`SRdsvpVHN9=5|bM-2%-=ZSmzmxgp-aDh+1d -vkP9mF7!I^YYD$C$Hb^zkYgH+0U<}A5SY&>{E*G_n#hBrFcv!{(5k9IQZe|H?P01NVoGXFO$GJ+1Yx? -FP}dzy}Pfb`sp_ZhugHUg| -%cc{J6j1P$h42@1h?{T!ncHnnRjh=RTn9Z+M7-v4f&3oHvnM#=?@w>!oT)AH%m8z3uwTQc>#Q#o=?Yf -RWGR-t?W^#{#k#OhTn%qx};$&*N75+ny*s84A%@CMYWZ9}jKfi3+Yo#2Pnyg^ -VT5`YwB&J;^4^>8#_l(AWH-Y3=A;EN0wR0GA -9dTe`x=8XBnvspYHh_lp-B$yM0e*w#*Q<_>gePh(DLc -&EV<%2wSvWC12$Dt?BR&^ocY-0%qRYc@nctK{|p3?S4eMy8yFp2o}2il9Ij@eLoQRKHV$}vmYk=vnRp -7sHb)IqvY5xts!vJ15*!14M7JRI;vg^VknOuicLM -u$mNLa(E>zFY^BdIo&)BykNg*u*Geh -(&(=L@S7JKt5QEY(Tqfp7%$vj$@1%gC_7E0}Ui>P9QA;HW6m2y%K%P#WJ7D=Q*rU9In<)$UAMy62i1a -lGLN1&Q8&2>0e*hTSKJj8gYSXWrE36T@wVXc9$x@hbW2Acv1tDvaQ}kDXSYAg0SoF`V4H~%qYX -g+T4>BVD=+paN-s|n2oA9n$_r`xIj6SQ0saeN+`vC{El65Ypt-6dY(+_K|5FNF6pzsw{E@&m=AGSqY} -DJ$)qH_y3JC-rOSRdPNE8c-j9=tIA#EojGAuvjkDHr6+q05S2x?3RUi2`JMs1TPG#Ko%C4j2C^6jLYW -u82+I0XD7=|?0p&>a$`bCnH%KOJtyqu|HbB$Yiz-TDL2-9e9 -q+|Tr{=9b3%Ps{^O{U8U!WpXL`t8aov;*FAEnJ%= -fR3ffIcFqz(0w^#nDWZFo2agJ2#-mw9VunR&&h5yGcR9h6@Ox{`=~So<*F{p?Ci7;`34M&VgT6CHiDSuHm{;F%iV63@<{yWurfEC?N>WKa51mODL3qW%`Lk-o>#Kj^^ -Ap4zw5(0o=RGI*9Ueyt3xVwz3gioiqL+C=hA}mj`xqwhJ6kxsUR&{{LkItt5}`|seoQ=w?zY*w75!2n -NXCKtw6MeHEG8U=mwLU-w^GP^3+D^IOtav{{9)%gLinv@{BXW)H!K;e3h0>&%_{Cwg`}!#pXQEhFF2# -Oo9Z|yloOvv@3u6rx+g{R`sz{^$GMfewUPydh57amBT-zx$R?C%y<~m#xeQ7LD&CUwFx8HB@-HPA~!MakIP0BhPXk# -AF+4}n#_txL2a13?423dnhOB0`o%0CZ*R;gx&{Z^~Ty6exNT`>{gvQGwns7<;-r6d8*w7P*@5uvoP93 -BbsThnM|4aNAYgD*+q$>e38un1bR2?eoXsr0-Ay7x+^-`jIx5KyY`c=yDV7tiPD^TQ+~LnNj;C_ht3U -ovtQH-XZ-z2KFiyG -HgdttnRBCv{u5%WNA4J!v#N*OF7;XW)}?S}5bCH*AN8G`uGt#qy&HrqkRY(3Yg<=4m8>-SbaPoM|2Hw -2z_86E48j>Hdmz%E;Xm*z3A0)PJ>uhd{Y89KwF)KfIHSc;aO`)>|yEnH6L$o*IKSOw_~koX{b -LqE$bL?{rpS7z+T7Ygl}l^HW<*++c6EcLA&5h5>HWBGsjN#5@6XzXYtUBOZ~Bj)T*fK-dooWXHt=IBT -~)~(JUbcIwhU&gFxFZl*mfBvZwg4qyELc=nP|E!oN|Mkrz1uzJTZa*s2LH>j}-Cbp?4srrxv6L9!*MA -;E*fIm63(YJoHlDrgs0p`A&3nOvdpf@7c>f0$$2k-DiTq^I~6osi*8$+N?n)Ie-t-i3QMf3S7pZ`FV_ -SK8?A!U`MG;AW@f?8L_MXfP$Gvc^iGFg27rO3s$&O#-1qZ#kdhjG}uY9q@zglX48tMjppW=$WW}P!+n -*EAv{mYj#%i_)gPo0y+7gG@Uk|3tfl#bSL;xH+vj8*>aAM|Rr{jE@FE#r9x=O;%{s>?*11G%Qqzef79n!NFlS}IT$k?(nT -ZUFWN~EHwv09&tUVGH_a_rkCGYv#mC|k;3`S{u4kz16KYF(i!>rCFKo=+vgi7V -3rk&bXeT56q_k4gn=7iQK(%Q=%n6WT#4@qk{^2EC<0s!OE3d=HL+<*WvY)K5N}|Tx>2bZ9raNes3p}< -U&y$j`j}u+q?5Fy7|aG32ZT*A5&z15zPcprQ#witfmf02Au*>Jfs6`Vc?<)fMb2pA4yjFnx**=-hEuK -0;4Fyhq%}xs6b)~Zyh|o~_p4CRN>o?rNIgOjA_0<{Ietg~Uy{=(A<3*xI$w&_Drsa;J+-uF32~JCeVL -LYA_%&C-Q)yQG#O7L%&kQ) -4*DW7mWdI0waDfjVrDEl7Pw}(8|UYE4R`nQ3cvZvaR2haPhQr81nhR*`d1Kst*zPGY{sr&Me+a|bc6d -6?Q+s}=OcU<;wX=?Mn_y@UIdS<10dP+g4~Ovz)8wX+HqMOl=h6eo -gJ$xYvs)tSf3biT-VJe}?%W2vI=-Q#{8r)1XKt&mo{PAj$ZE2!ah)-e@zJFNj*{9>fjFvAeGkW?SOB{ -Ua=^+%xKZ)kFan_N(K)P0O#n!!u}Rj59m%WbW0r!@jNT>j;Qh_HK@uB2SiYhPWIm9FtL@=|%dg=C*SJ -VZK)|2V(}22qWDG&-ew=&^@?m7Le?n(8E1rP{{9!PKt7u$vd(3AOp5rkL_fhVS{^!rj;Ij0P9ND#inq -zNU@-a^Cfm3rM(zCeTv8p{2{&8q{+dypo!k)D2C -l3Pqw_`s@`_Avhql4r7tqA7ty(*)l8)RSIA9a=n37pSl6I)7)&J@l!D#__0btKWFRLJ$q{SjHy1a{FJ -pSAfqq{EdxDGNY$6O1pOBILbTr8_WS=D@vD;X$^AU^iH*!Y4;aA6{MWN=#8%JV)JBEnRO -Z4NvL5icD@-58giB@q4Gz-kGR63wqe47iCxBmTNK8x^?TfN`n2aV6V`30k_<}>N9aHVQsYyalEDvju5 -Sd+@+C1TfD(#W>n07{s9KG4_!_+eLq{W$>*_Ltra*e|v74;+qQgf9ylRXCj6RzS(U`xwo-N|{TKuSRZ -$ufTwwTAUW#mXJse)ISLwg6P2}w{TG8j}HdAizQGy4M!@iIuX)HF{jyJ;>tYC0FJrG{rQV{Kcm2JAUk -AaY@L`=e)Cq-@D9C%9N~Uc|*^a$OO?SMTh5dsZHw#Cc@EQFh?rGjPl|8mu)ctS6mo#gHwZX9eLzrnC* -kkOq)C%xaT;rQ_fCa55TgkuXrF;#jAiLFy-%OQN&;iEnxj22K+qUigtJHx0}iZ`{!RgCsox<&bRGIL) -sXnMH)y1jeI;Q@h`&&i-3l%tVYzn|=l%hK)AqFqdMW0G-t&1J*Qdd( -KbGAbv|X(n+XgdX%b -(l~4>#Q@=h;v&lziWzbnLb=ouM%bGj=vUW6y605BMj%f%6AWyCo~u?9kPwWLVknnrWN<*(ER0Z}jTHw -6>4s?ZA1@X$Mb8jZTd$gFdVaA$e_QB|jyVn#=OVj`rWk7-9$d?Kh*>ZJ`t_Z1R8I>Si4F*EdvHQb&l3 -!R(%I^w7)E+jp)(-~K~wM0oXoOlyv(U-zzU91Z8Pi|5yM7Xit?2O -%8AB4W*omE^uGOoI$|DQ7o8ga5Ww=4A1cnCFU!(^d42}PL!0+g2Y-HrXAdfm!xvQ&VHPNshRRqj(-u- -PHnBcC+C^piM}TI!5T{iqeGFgu2>zTbTn(LEd%36Bm@4QC9ojFgQIXxb`a>KVfo?5EPSgqJ_%8YKHG~ -rYJUWEN8v>WC4|m(IRyDtAQ&osgiX4xap2vP2E7UicigB -EWqz-DwE@%(+3|Mql-hk3Qia2;nT)IYVNzpbE2Qwl0w%_p<*rXaTSNn%;hvPG?)z*TI#*DmE|Hr}gQW -$e#JVM~mUZ?@I+m8`HE#rHB5TERm5cC52o#7fBGjA)UT-YEvY~i|<#)Z+_eWcNi<;Xw>V0B$HyI2 -Q+e!{PW+560Pp<|{p#luD)*GKt?b?2tvNdbFKe)!*l(j+AZH7c?yg!6A-Wy^?Ld{dcpsmnX2b|6k(vg -4oq&jkFWb|#EPCi3*tD_j_KPBzB)jPzFr%4lW?wvDhG*RWAt=1Xnb-;>!?Vdd*F}KvU-*x_OS^o+;|6 -BCZUUi6XL%aXUr>QJq{$_3p8dgE&#QjPa3i{>EwD{8OBxtjwKDyae>XPsaW8)M!*6m;a{HuVndC%Ia` -<3-EE9zo?SFwjx?7!;?ev4`Xi@&}_b-{<<)djz+3&Q=w&+qDja+$xY3*_@r>VkuKc(H<_U|nDC9-$RU -U?cSPV0Z4dT)8Q4lRDs!tEmHq*@Qx~!I3%0#+}yD!8g(2(f*6?4x;}$c=qh@hv>VbgM$~*<7aOUqL*) -uUOqd3@B2^w9R2Y9)7S9*=;0qX`-8vie|P -vII(+gP|5`=WI)ZaO=$V1mne=Oy&{=f-9e!#RIM0fi&VoNE2W^awcFlfIp4#nR+xFMK206S#S*+q{=y -ZAXiwdM~9e!YsO!|}6VED1yva7%+Eyp7Xv7vDlMjf75HJK62ZI?pf4T=B5GE-Ppi4Y%IQ&veG8VRE6* -ax~a&3Ofnda?xYCANWHs_?}Acw^{2Wc#^v{EkP3cOz@zMSA5$?$V3gwR -ddwoU%J(vqK#)!>5XJ$7jcM^FergsN}!^c{%+7+9?gtgTMf(MwNz0vVRJFrl)QBP5J5H+<&~JSSu&N{ -voeHr(O{*#ny!VR&1Mpol(416`qd0>I`|HO>o+7Ph)hQ8>PblZ;sBf>|Txfl%Nb;cJ70N*OlwsUsxvt -uaRNd%0-^|rJx1yajD4xQ`-jNPDZRW$ziQ;2inq$j(~M~-;4g5U& -bPsH;|!Sw?mnR&T_;y}%%s)0Zf)g))zy#dQ8m1@E;Vg2*{ix;j<5jj0Jqpc^WMUb%J>YMBP=bXT~O4k -z`HZhFZRLBF_6k~yt3lt(<;IgZl_Per{u13SIhC6(Zn4g}>v_4=Ob+&$@nlYuMl4<|{Sd%o{t&lY^87 -Kf^D4F_aBMPb(me%<8#fS(&&d*El~s}Gg9`TD~etvYWAPDbOcu#i@?e62D#Y$~hL&eSZ@z7P6TBQLUsJAISa3dnWh{tXfJB@)YZkYe|I4{Pr8A+R=!Lsy$RmJww_Ca(5?vTCp#B?WC>125ji -mR(g#od>gcB8(TJAQa>fk62${pec!ZEg2buE=tQSHUFOx!De1(phdv&lrWlq!rKQepHI;$2LOqgO~)J ->-7e+kQ2uP9ZcX-mnGt{0ht)`TE%+X0=FuO&S-72>4+sGGAtu5okbgw^6TaWK1}(OxICmZJh!c}_oJj -IG`1%?w7|mG|ko^OmA(l_N$~UZzq~H5#3&E7e|P$2qh=;^0$x7aIT_oVazGiQV-K|g#0+2JEBW2RapxjD6!%abSLRols!-!u4YCs0Ar(~}{G46~Aq;C|^RO<5<+5tP!m{p -$bLc1K)E?d-H`aO<5ME5I6qv+?0>iYQTlf7p4wz-aK%6+bq7d}`?I~*Nm!BWYtLYR7!8+Bcr&fuS*m_ -|jX{f`rr2{Lgk+`*>Ubh`F%LdBw0|Kl*6;6@Ag?L#j#iIIWkJJC8P*kgrPiTxjL0qbvPuNX@RDB9PeZ -#@bhfS!Ea2Tz1!KS1sxJdj|Av$`bmiBiHbZJPcpIZY|Sv<=&3#)oh~OFIEc%ZnCa41%;>s3XJM{x|5WBvwc%RYL|^5!pzwAoZq5#>)wV)iRW2 -v;h7M(HL^VzFZDr;AoAcz(A#JbYvGs@zA1|*NY4IQDn<}h{i{wr0Yp)632kMyGjs)JQ-uul3g@~X^LP -F;FC?1rbI<);%4KhK)K5)8u;mjAhiVwLcBhW{Lpa$VRsFbE2^n|%_2LuoiDSjIrKj+r4H`=X^!q? -s)G(~vuf)P;c_%feGOmZ)h;5M~k9)ef)M(Fnx?i&?M*9KD!Ix=2l3ltuxeaVPq$xh4Jwj5-@fG7*GOH -HnpPtZ)_J(JN(Bi)4*^38qkpbA5x?b`s=jYsd0=m@&WJS%9zk<`qx*`}diNCw#a3|5eYkFbg%V2o>^W -PkM(JX=fpk9<{*ZYC`dX9R-=U_Tt_)zt{@xy2Mw$`3=M)*7F=`gw#*bTqCVG*)$6GFwrrSN1v9i7VQ5mYl=X -&=n42V;R*PH_f&#bt|_Vk-2}imvPIc<7}rI9n*`G^~=Mwewjp43s0lvGK=f0^_w^V@BH;NoYvjwM=A{ -Qi27_V+PZ-bj}ZPSt{cp-0NWNgzOAy%EL}7WtwHkA>+czysZFadcb8v0TXhA-bYv4JBwh@9O-g4feGL -{2vD9w2-a)2|=vtfU(SE@pBaPKgHF`Ui3-q<`wzqt}MA+DJBFTo -#98e9`sX^|4DH@6OKsi%J9VV=A^6wN39V%USc*>3>`H-Zd7TW`Uds&}=RimrqYk`KPB)KkT-<(4V`SF;}~aZblV*?(I54NsLraQi+28F3Hnz -sz6K#rV!*qd^EDoj_U2Mm}OOK-)}DEk0)30wem`XywPk4Y&5&8p#X+(C}bjFyWACw*Js%PNNCH69!1k -G#7RLnx4X!o-$iLcxxleRF&t7*N#?$>^g7TJbfz(VFe()wXYpAw(edNc1p~TpN|b)$sJ&}^J4W#$9)J -KairfH{Isq5AXC=I6uO%qUq(z??#f!5W66e0B)#a2P85hl_>2h&bXY)Ze+oMcf;tri?H|?lR763LFsI -F2)%=8ZOM)wqAETc&>hJDtbGqI~fD5nA~*A+r5p>mDy3O&Q(@sX)uRX~&5BYF)mA2%1bwG_=fFmdw&E -J|n9Bv~lmJ#^nBn;an{dePekEVRX}@~_yUk~SQ9YU*vrSVD=}c52I6yTR-^UF4vrqIa))-?lQws_QhFDefIJh5@Q -8?xo14Ij+vBw!Dfm(;pr$o8mJ0Q%g<=Doh8I0Rns>TYHl&H8#uP82x_&FiaQ}?IK1yq(oa(K$R1-M5>!%8bBGJj`cw#S*^~cIMiz1m6ekixS -XBo3hoZ=((fQ&#;lvIncwRDpAXkLZte(5vAFB5v$Oi>0LGN!$1j+9bT+ -4%LNLsVK_rKng{gG}>uW-ru5rdI^CqHdVg08=>U2tyEQe#9MLy^H9ywnvr`&1z2T|9rezEUqU>^e)a* -^ym`qfd+}3i(zWU>3d6c2+LytsnO8S5R%pgdGpS%WoHkD*>nnfD@CCnJ8pCaXw_BD|A)r>H78V14PIl -gCbOg6*_5^d<5xRj5!XD`e1n3JJ;zE1p`XOD#Bwo{q%vH>{;M@?>ePDO)8UUp7a>xM(?qe2^QuusX}w -6cX}7XMu@QrX`Yf4!T%|t{w`MkcS8P|ghWAiDN`+pfceet@XLGM4dIWJ{fhU^ecZCfkWA?_$Dn@ -y5TMtxI-glR6@3wa{)*hll!@}g}Bva2+YMZ!#n@&WK~tQN2{5HEa@Op#}tq%aP+j|9HC+g*{n+uK^nf -DA^cY&)L~qesp_1wgn~kaw-I^mYMCz3ecAzOz4Ix4Ep(q%)h5p#B!^TML>SMXnUg&YOl**k?S -EI@lhq3$_~V`mVheFK_5Qn2%bW2m^Z)eH2z8|~s#*P0(rUS01E#~RPFY&-^83;F0ABLQ?klA5Noj>)K -o=w7tlrT^COEfQU9rwu8fJs=TrbvwpaRP$L%QN7DeDSlct~Xdny_Z -lqa^hKqsg^y3kf>a0rN2-)d}=r?Z$({CqulZg*~nzHf=S0W$uPscP!M-6Qk?+&AY+pPw@w>StmGw%J> -^x*YN5n8TNV*k>NRQ$FOmt$&+%x)c(Sa@@Uf2!Cx3bhMb8FQF9;c%=8lwYLzI7q#SN1_xN!4BQ&-FlD -NSDT3ZabHR-m5CSOY3KP7sfQyNq)(Vo9wKA#BAWh(`q!_~`Zi{(D>uf1<*L8G-q4+R}2VO`A -{S`zZf-^E$#An56C7*g#sRSBlDtraZmRcZJBVT*mn*3Od#@jphCzr+O#~=CI<&QsZ@9gZff@m(rADgSw@`il=n;2q>1p@~ZX^S`yL};#eV|V-iP36b&TXt0*!$3XhU@Gh -DEXgs;MVK2OuKW7A%f>c#5dA04dY1J?2Z>**?(ZJ+X -@#aI#}pj1AM*vLYXQ&D!SV63mBVZIzCDwlmsZBp2+<$Rvyq|kuO7fAsJ>^b}GD=#)Kiw6?(T|oPh#$W -g7&LN$R)As}DwhND_nkk%&)9QOsNB0&RZoljvqt4#$g#d^t$of2SE-zaB7CqyW6_)sTlEn*0Yf{2kgD -U@l!fFRHcYi$v{08g@T4gwFL>tRW3Oorg7LYo{=Xo}d&oO-2f*oTDtGJ3XRuVJU)`l1v_glJ=T+XnKi -ofe=N!QpK->%1VSGCf{nKJIW#U0+fv^A7_R1q;L^aW_Bbj4faB|s-VEHlRV-~y^NbeO18MW>5Ms{B?lfxqj -hKJ`k^qC6JDLN8bLGx`Lr1gbqy8UMjw&{B)P_>PDU{>H81NMUL^C`bB$$TJBnK->wV>U9+U2er`(j%3{Xx5t~`b{AmucgwLsb?EgmG@H$~+uFS7mdQ%#%ebVU8UqM91#N*3wWu+inDZuVOZ0m%d1+iBc5{V_Rt+Vi -n2e1}H73h*VETSIjAx!R(N}N8=!gN?E0guE?PYBw{EbPbVrkH5*;1!7!zn%Da_{l;4iw;EI-lq*>S4> -dGR}Hv)7_1Y6|>hRqDIY-2r$j2p*p!!Xc-<=jS{C$^dRWPA>b4MkfSD2|2ZSr>9^yzp+MPmtxKvC?Uk -=)oa0^>+aSL?}i&cE@+V%vc3#iYC0o3q-_Fx2KoA -3*sFj>0al+;Dj1B#jfKHt0|I6%mZm=e)2o{>r@dbl}C&(lTpQ#uEEezGh~Ef3_? --kHRXiFQ6NBTk4BqUULJOP2v9OhcDE^>&F<$OGcg#bb@L)yJQt&sJ!|K8R> -rZYG2oR=vm5QtkWhyzUG;2GFczMLLs_41bRGeuKk;6tR{bY!-96RFU*(X|x;eX{)kjc;p7kS<_SQX|W -Pk?mWWY*;=%fbX=VlO+$2#}G3J7YXOkXPvLiDJG4P2Z?oP-rtVwDoC?8Gb$E@KUat!|RniaX8OO;(e- -Rsp)g;m_Czd;Wc^dc8qn-5jkIp{fy_Ofeyn5TL>@Z6m#~zMV}SXLuL&b+k?DJoBNI3{wog$a6{pi5v^IJoruLK{6sV{D1`DHGeTQYUpY@oG#7k)d`<`)qhIZCOJ8a$;OU -({@L#Z<;LaT4=_+Sp12A-pMB7EE#8Vg%_Mb4v;8iVk#vv@`^uIq&4Q=R4LJMoaJfJQKPh; -g76sywA8}gPyV3s!rgH~4mODO?+CWT`1dYSsX#5a;lN3XsAEXng|9ps|Z_rljaPIkRY~ttMrv6x88$W -hhx23>wL6uLSnYf_f>(d!&1yCyk2hw%1NT$&+kBf^?OV#Idulrv;z(TVEwtG6nk(ehFgigVb)MyNk2C -nA_ozR|S=O1S6ZlKWZ2VS9Hdod7kVB -VQf7gcn9T_n~c{4X7>T^+pC@i0!2`BDe&u7bK4@=N8E%tt6Ccm9i;-f!>}r)|+tz^%^T>sSL5j94YN5eWs-&Yc-!`BMZxljr)m4@2NuvdfAh%?Qu& -7J}i}$udL3b>IY~=2+6pWmaqj2>@v~j{U#tzzT&{bmXfCfqtmgTK)LqE9?i6FVds0O1vme; -un>jfmh|(SiSIyPC;W!o#LjuBJwKwR{}P!6M-!XOe}$i>}XyS3DIv|C9JS0x24F%;!u%WnR{iut%vK( -1xI`83#>J1x+`28dmarWyNdMfCu#Dwl_4iFlY|ZWS))3rbIau}Roc^0VY>g7R&|`BF({)qkZzNWW$g< -E+QRH4Qrb^pR!c4)WdkJ24&t6TBbV_Q*R|8*&JKq0jMn4}zHjYR4Nu=msBC{_=<3Z8y*8TlI8X+8;fh -T{ZMkQnTAD@ORJl3dVKPeN%2KwxdbFpKp9%$Kj@Etjfqol^U5qZEl>mvT?Qgu)ATf52 -5jI=!1c4g`F#`r6r=3a#WfM(lk{0p3+M-M^#NN4?wW2O83s{sslq7Y-+W|A2-O}+kz-ury#UiySkDPK -N|=NOG~JyCkV$5?b#R!uVQfTA&9S2eNZ>Hp}BSxsKvv9Tp-HIIdANOj@$8!bY7kk#&(4w1FdYiFc(iw -&A1($LT~6vV97CO%XBhAaZ2=H941UB;HAjJW{4QJiK(S_1Xo0R*KzvBl&s_Q^`)we079vKjt2D8(^#q -9S1|%^UV2s=@1cX$!d7G$MW{(;LDc0}alVS@v804!5ps&7Qs$#RvLa5Y1t$a?&Kd@d;%v~YmHrAEwnV -=-)W4l4XRsiK?DG^UpC{Ik{h&Z=T$Rt|EW6UML(nInH^zYxQRk@L0y(F_U>rxbM~?!YY%f4G-L?GAh; -!!hnRm7eS6*qT97O~Jk-G?{0{1i;y-D$fl>dtT0!eR&UVR|ULpc}hrkP#A$XWRbeOz0CyYjSo?;R$d6&PWwHjBu~BbrT4vIJEHurX9^l --X%ppik=D{6l)++#Yfr;RhCe4XN`hy*jXr7^5m4sicYri;=ldtu!D@(#|9WVSaC?Ysa<>i#84Sj+5dd9WMriv?*vrRu|>1(@EF-9JUAAgG -qvx-F)BM9f9LYeXI~wRMW$f3Wpb}kx@LM&ft;kao&14%&_?3Aar5*&dC*uLdU{dV+1-=PIU-6%SEs@4 -qcODq;=684nlX6yXinYIg`l=Dp#`-8yEiOPU*hQb)0%S9lzY@emI>j*n8g9qtZW>nqgIG#+qt+}jPi^w&(4xzj7^3ksJ+)l!(?J#D1vu}v7K -_;GMYMu8Ymo+>h)u&n?!>u&39>qnQ8}%Y#_(nO3Nge^ETGQK=B=cg<)7-=3@zlhVjCkJ6{Es!F;Y>PG -%4TtK)dnnUqIh?9fcx|OM3COcxmL#J>)CUsJJ0VPdTgFzQ=3(Weg3@!1=blw884+WFK! -(KX1Py_;@S7*&L}B?(fi#ea`Wnrm$tG-q5HB(8S-Z##q>kBWl0L#KJ#fw(Rs)Ay42Y;;s|xHD?DTYa+2Ru{ -l>wp4e0yAhZ73|A0A4#^Weg(zeqj#<0ovRp*6pqV8Xj8B9m)$_2fDnoMEE;CAVuTHLXsfYthr98( -E13J6@9EeqxUk{RO;CMXKxX@Tcfc-~OIK!#|oXXqSfHVVwkOTnZ%F!V)&lNPOB^gJ0QX`aDcqK#GMs^ -Fy%Gq_hOSbMyquGm0}cF$Hv|0T^iey#k7ES!ziO76ub`3o#67ZAy}5dnnoWlzFz=J$ -<|aj^vlBDBUkFJQjmBm`BPdX?3e_#oVpy#sq!hn(J$>hy*6klhNySO=`~|Uf`Cgv4e7*KP%ho16|z^E -0bjc}EWule4aLYS>@l+P32ZYO7r~e!h$vLSZKmZ*99)nbZ;HNYMK(6*SnJj;dVW$W!qt>m#q=Vru&=n -lV%@%#rIbp}n_x3TL96AG<h0Ekx~{WOt@rjaQ8V&u6PRYi_AbHH&wCX@ -MGVBu5kZJixltJ5^XE1lmf_I^6~Tk{?GqaWcmUv2I)@4Q91gb01d#tHB$ifAxf~;pam9lF#m=zIgdsu ->juy+_>BCOch#m1-grvaq12{Aw4ofP!2LpgI0qp7ry>*jpc&32& -EYDx7-BBDlpiB0&(Z3s5@kBb3J;Vc2hIiJdJ|?)^CIqq}j@@)hwduCVO|qwK8S&{lIdVi$W;*PBA2_vMTzg;FpqNo|cXMQRA>BU)W;7RIDC-pQ^4t#CD;s1?lnb_SV+cD$a{e!>}6DG8j?RS%npJ>>5gD2!nyfl|sM2U9xD^<(m -1V18;>ry+ZFjHKBKu29dv!{)w?sxAgAOqrI{e5WEO$0IwUshz+JUgRi3@#0zs&j;?npv0B!f-AMQ|5? -+fdAhO*K8e5BWh-juX%WjCj)~X+~mYUE2aN4S3B7W*Y&~5^NX0I;E&j+@1#+J@-N=Uqglg{Thv{4>8- -HO!`w5ZuOZ~v^IOBv|G85aSx(6Lc63d7SL2_Zvc6y?UsXtq6S#4zwIfSSOFk+PdibwC9InIgla&^g@U -GDD*uQLv6|h9NX&2=t9UZrVCkyvGr}3zeYf6Lq}sKs>%yF6})d6!55_JTMbAjRLU34UwKNQ3YHPD&S9 -SQzq~v7`@<3^vta1yH+}))6;f5`VrQ}Oa>Bd)xs@Lym39Tj6;T!e1U+Sr{+GeXzGL -0lP1A6x5=x&!TM#p3DN`BbwY;Et{2ezdSOW)ZyE8<-tESxlD7uP2;A=c%iT7Qnv5p@{!uQ@f+-dXuztXqX#et^N33pHbEb}5D=Nk&xsMX8L29Fk`jI*c4vLy5n|y1^;XY_h%c{f3OEv?8 -@l)04mF1zPkOC?z^jdvgN3f$L6=UZn@g8f`t*Hj$a*|h%dA-M%P&M(VWRTsx98eU@`J#U> -P9L-o!e_nFTaHM7^FfnwNAS638c(GN*JQW<<@Mqsw?qk3!0KB>KS@Y1Pl%`G+O*l*9OA>lpdmKTcaj=W|V-RdwJEYQaVuOUgnHGULTQ)Iy@I=HW$rAZX -2Br_S(6;mey>T~y|NM~>{8pBBb5l_ADgp;U2yFfHdXFbux>6>)8Sc^8r8nE=8<7i|>Pg4dFR17^IrKG -=)^XqKNA{vnC5jykOQMAYa`i>r3#oxOXV^Bw+-F?)531viUlqI5~vgbaPPz>{!SQ*8WO7 -x3iHd#(*O5z|#ENV3dw54(@$RhUY7Re$O_i<$LR`9Paa=8vT^@ISE&Iq~^GA;>uV3|+ic>uAR3<^FGg -tJBB80|yjQPXhGC#VAD0An8cTnSK{aYLMHtT{7{C*sxXMj6w}^qRprud2O0N;@j$|^TL8GM!OFU1Lf~4hvRnUt-B{uqq><>Ge^_I7jU77V#cAjdU^+svb{c%)%F$Kdz9wyU{UyPsMl%3>>5*28T6>|JLC2B@1i;RMJS)E-wI@VRyY9*cn7t -yc6bI=yulNvvY=Md{}c;#AuhtlE)1Dq!$7mkT^pZ1`aoMynW)aQXkV4RbaU} -L7dGh`vY7s3h5Mz6sZ~Mts@Snl>xjP44WVoF5T;SLPmcz7YiIs0EbQ76qvM&JMlQrrk=LDCgO}bwQQ` -9Wnn-QzvIX;wtyKfEo|4owvpI1YL;<@bw(Cg2tB&E$V2=#t{a`G8+``r6VI^52t_)Nx1wn2>6b=vP%5 -u3uGLEG&uT$vanyswu2%yLp1aOVf)P%3gIr+_^^>5!g`}83>a}E-6-qWZu8O&A7IBCuqXJEd9_n;rR- -AW52^K!Ug%{Z}CzWH1CGTNxWY&FkJo76S?YH6m74qesb`Lf4S0jl>tI{zOrBb`h9#`$MbYx79xY?{gu -%pkCigc6~2k@S?lo8>(;F$~NhMvBIfc=dY!=ryc~N%D>?_p#K27vG@qaY{gV_{7XJ`MeA -elb1Z>C605aMa8tN1wR`FQbEC18g$4QAa0}$sfm{z1k7dCa}Nao_}>)jD~MD{!Qrds!%08X(@G-xHq_ -rnHdk%wl7{7%)O~#H4kSK-J}XUFN4t0^cG6XUoz~v-ta%Ar$va{kQZXrjVRfmJ2(g2g3HfH=TI;;XIE -t>NWvgI6tv1J_k>}Koin*54;+E4U>wwZ`4?U+PVGXukIRZ1vwc#3aAs8x2u;~mpTCN$a&J@eDe{yFw* -Y6BB+V9NG?nmgPvcfeh3e#v+MA+LBK@#2tSOFv>m%)(WSFtDJ{eOdXUp?*ZN{MdjO6&z -kUqV`NRnY -1K9TDV2{8C|x1~T{!Yw4%tYm@O2nN`#Zs4OwP?i(0oey`xA{X|GAZf0J-_~(lO7#*`S`%fZe7x&d|6Z -O^qqs{DCV!f}O9rDQ`tf`W~d8GRky_pD}3*^+(hq{1Syj|Pz{y{Z1X0AYWW+D!oT=3?1lK(dF)$L9Geq%=VFEJ%on9djc|<-M{zTQ%XH)nTh}Tm#C8%o06X^S`A6Mt_0 -@V+Ba1}>!^BA;I&n}Z`k>hnXS@7k+eU-v9ZBMYqOLP(Z~b}IIMz>0XWZ8NFp24G7+#OLPqMaVx7o$i{ -1beiqkb<5AMC_8T@#K-<_l;iAs;qhn)IgHY%ru*N{?R!ByFOt6whNPG)j(4V=fX!z6+9cLqr@j6o21$ -$No_^Wdz2ZEykO-gDee&dviBhz_vQxKDpD?6@8z)N7N^% ->nJ%--glsmw_E>q{QfT|$6K3U#hc^(&2LZcwN|ZQc!8nBVX@%;ov`)|irjkNf(^9&IV>Af_2F<)t{Q6 -n;)eAdZ|?%h{F3Wn<3A~%^EzYuA@WDSJW&n%5D_5Oi)`_9hOIl%1HMglAk{sJXXhw-@dbxnt#w({+9V -Kp>n-HYlgH!=x)2;_Zsaq@BkQz|MW*8W{np=PNJP$;#WPFJf&A-~aszLI_?i}eaB2^gg_4#o3FFOlg} -EzoETL17O&KwA@Rw;;4rj^t$z;x#u1Q>Av`7gUqRjd+GjD71ZJuc{2^TlxIBEk(R8>TevpmnP;0V2*E -#mjAP|Is8uQpR-Cl%cCpFJ_VKAFBoAcpsy2G{sm!_eLUSQAeSKo}Rwl6gb -Za8C&>$f?-2Tgf^spUQAV@l&7TluRBB8X! -@gqQtVxjV_O~CTX_3wsLcE`8zx_yFFcUyQB{@-ENbU02fRyQ2@)O^9^<2S6rCD)!ts@q56$rV&zg4n@ -7NodxgPsYSn-HnMit`L+BnHBmPyTaZXnr5@{YfP3|3xV*BMN_Eoc34FmzWO9Zcl4B(S3J^zA+cowWq} -$Hih46-Hq^r9y~ -QDMScPsYdsWaebO4shSOH6@2HT&z0(8_N5+Gr#CJ4VyaM=9PI^J9xSs$d!0lbxd7JetIW#2$&OQqF>D -c#zNwzs35ohXi@Z@-PU;%I9WZO2X;6E+k-bn_mt)@h39L;0-6>2h@6s#`g|jxb2v2+n^FX?>C9p2x7; -$dW>%sdbBVF-f}iwMO-jYpb1_7SFOPbsS%j^8i6bFLU$^Aq1uwBB_sHhfK1ZpoNO%bPCBx(Uam&BE#2 -Nep%7avTCAfGLN@lfqc=6?mxi4@MGuULo~63fA`_X=hi)B!-yZZpZ^!?C;t5O#dqHvKF6=$9vJReYy~@fpVzzcV_ -U44hzQmOm2Z7J;?h>ipa8@!wi+XK(YjZ%;nJuU4yzf8M^OH}6kAytn1(Znt}vE)3hP_MNg8z+u2g*%E -zIs2v6B28#35TGeV(-EFH?Ks_2-MFMK8-D+x;F#o1ipMIRMpbxj-Ic~W4)bN2Xog-8iZ}6A16eDAo`` -KEeKGGQlF`2O|lk7^+6V!1m_zoXcU!J7|Cd{mC-Z}=cWVp2n|BpV$|GvbpWBfYiuVWB2@63S`gmT8)n -C5JZIlsWvUtsDxD!K;wG{El0UyDu0$)2}3kQlVAGgi*z0fl7x3^+J(p=7BM3MItBZIz|G;`Bx{d53O;+yM(*5dD8pO9KQH000080N_fRR>?LXbj=C?06!xD03!eZ0B~t=FJ -E?LZe(wAFK~HqVRCb6Zf7rLcw=R7bZKvHb1ras?OAP)+r|<8u3xdG5gcht?5SzpShfze4L3-UI!5duA -I=wQMXn^~$R)A6ytCl?zjtPqTrMT*d`=6r1$rNJ~6I`> -pZYGmST5zq|t4`3LE0z6Z*MzVj{+^p$&Zo>hKlh$r*ynGR5ZCtcPpZ0ei$oxIbdS)yMgC{`gb$k2r{&8s31G#0 -##4lc1NSJyH+^Ygo{mmf5Wv;LeMJwTfn{ktQ#_bsBa~h{OZ-MkrWca+wNdz$9|JV7CG+EkPGeY8Yn^i -^@D?)rOg!&|rF9v1=h}c+GW7#VtqHn&}exbD6OX*M=-yX`QbNLF+TIVM&t9+$2dzBlxF9v6;HJ8t5$; -{PaUbl`dE=4XF0KA1yUVY+W|~fsV(EOW1b>%U)ODs&1tyM7ivTS}k_0V;~P(;MWc38>G&1O@#X8ZVS# -XNz~&x9EC~HbkAR(CIY`FX$%jEv=nAnWzJ -CILtXG(_KqIH(-fv^vs=y|ds+;=pnQ#Yf5_qdn(SR>@-T5vTn -;FHn8CtQ*rNl#;7!0Zxg`d$n6Yc9iw5x|O||eiWurpgqn?&_O;!O5GL|0{@eL`GKL4#qR;AhDU6*)JJ -P4!mY?Tr34q8N0`%o2?k=h4Ie)(*vC&nOgYDdfZHTj6 -ekH_FjN}58Ffv|-mw|YnArwzBXw -+jMITG&+6=e0`RB+!@j@jwB80!A0DOh@*ddjl~UQ8Z*t58sd{`<@dba5}&y~nxTp?$7n2eV)`TeA6B< -f2_HUX1cwE5WZPK5{~SW5IhF#J^U#3}K)v)~MD$sMQioI9{ce78;r%aiT_Z<<^EemOU$7(WW6?fkW+C -3Ib6Y1z#dpq4H%=<_xnPhZF9g1eq~@Q{|avJAQ-vyLul;ZzYFgQID~K1`QK(S-}$Btm#lfkBZwW1I`q -JZ`leK9;k?g|4_%$|3MMlDXUf$_=VX!O<`IKEh^0}uw)olku5N&hM?L4OHW82>=uqF4(iJ)g|w`&w!A -}n$Jfg3s{A_zl~pe)811v7&S%&cW>)0BB>dMUZw0xp>`)W@Ho@CsqWX7gz7ysPga;Y^SLC-XHM~PdJ? -_>3K5o+xe7YHIfG?l}7WUMZ{76w#H8N|P+o^qnswnGD7z{Ry!~6qQV+T<|@h?d!mC6`2Ktd^~wXhO0! -;Zw`oB#-?SPh@NdWmU8e}<_$-e@u9Q~hk_w8vfgo8qminmRl`CVo1{b!423m(Bu<-WZSA{OT_Chfe=r -sepZDpQBg_=-8n&RKffAmfZf+Epa2TIw;UV$#@cXi583x^kh`Hzyxrwc0hN4@5~gZjqmF+h~g!d)=v?`zC%nSAX*-lFvBl{{a3-07rLD+ePEl -N0tCbsr2nwctAS;e(DKYMTM8c*FO!zo5o{en5g`}BR^0h>7-06>3Kc{L0QLOEOTRj`nDlu->cA)(84c -R(@88zdqAgB3v^qj6hcd0CJ+ho1BFntz+Oe8XoX!V!`YSiQ_yS}71P(VNJ5ivEQQHAnf!AW5l%_Q!-D -^u*MdaE7Nv9R|>U4S -cjBu|0`?*--7JVp35vw-0Q`Pg=e!fhMhWxMh|b4vm9Z>!ZAUGJ1GGqYQR4lWB$gYv=Hj=M-_i0+w -@!Ljp2adPKuL7jb_()+t+7B@|;#(-PAYAYKR6ibz>-|t`J=*Xh&p_lA=7$a>x0VlByD2g%mc+))R42y -M4%-mQ=*uK%KuC8uT+Q6qBS;IVr*ZanSAshdx8vD8)?BQ5HQ~eHTfYT860#-oJ$Uiqhj@SfU5m4ad+v -Md(Y3KBO*KG?arV*VpHNE!1QY-O00;o!N}5(0jRz_OEC2x6m;eAE0001RX>c!Jc4cm4Z*nhid2nHJb7 -^j8FKA_KaAk6HE^vA6ef@XaIFjJ+`YSNZ>k(F6FiS5|>GSE#v7;QdYf -Q?@8~8xXy}6l4*RQXeQ@kCbM*r)^ZkSX;p_k0U!BgS&qand0ONbRb39mI{+ffvrH~vRF?y)L=Csp5@Q -hz0Jci!>i8iVWW_YXFvH7b&-YQ{=i<^5p@wcKBbCWyM`wmr0sI{a7LDcO -8knV;|uWwGD#cXQGd&3mD=Yuoj6Wl0YJfVooHIRRxGtVo%gJ($pyxb>_(`t1AT4AM}UfbgjzxUa+7=pCdi@ev&>;E;_e12RLf*42h;`#O8^F9vI54sNvW-vNNQeumSvgFW)e!)VwnKG -0ORUPO~?4WT*<2|=zuVq!dU8ZHLZ(sC|=D8f~kwuDpAQA2XuACEqNr1q@La&;JUb#K#rv3-b-1p${c8 -xK$*aQ0iKq3DNNa>z8d}L3E~RO5MA9=t0m2#oDF+a>D3&@)x| -pA&~e~|N^WOyk*tM;$-r)y0c}SL_}Q0avCQOX#6QjYu?z37ML7$TYvlL`KvPWzWzq29iRgC@L;RrlQUN!OKu#hXVp|k=wxN1_m!dpg@ -gM?gqrg(;zZUvC`gH9GHHSFI)R{o{>bt`bT3D>-V7pHM`Imh@uqoZ!1t$u;2iYiygEv*!jF3E6$>SyM -pNlUx<$`0L%beUmAjTYKaZ&h+*%J1?ZmU#I$CT<&k*7j>Xx?t!BUL^vR -ykHo$}(BIn%rA#%#EN_Vt&}vsx2+v(y!3=>@iIrr)$+Hx-_j4rst^U*osljQ1CC&3Ic+m><7t=%hVOO -s70@#0nMcO1A>FA+<}^rEYf8%Lk*)F)H2JUyW$SmCtus9TKmrnWTc_OOsOcqUuh_w#)?4G#ON^@6=t* -+*%1Us<3O}fIy2p*v-DIdJ++k6be_uDK%}*(Zi-bl!xaVuTBDRluoiuS0*kH|%d(iQrbx-$4E-~%*3B -Bs=eI2itbZtyiI~oWocAMPbQo)|S^v_4e8R>EjDrA_gU%@-yl}AB>1U)2m^W#jl5r+@IY4^L+4G^ -xp8z(F2zQ??tF*+bZyh72esTPOkAj|GjZ|MZ~GtCk0rOp)coELluuiKs`2T3BB^y&Qe24)408 -(lVOckuKP#GA9hB!B_3S!Kj4K?DP7&N5ai#zLEMBIgBjz5|EY5robH3`?XjuPBBIoI{2!3LrLI;o%yL -pDc4AV5d+M4cD2bv@z637QAOTBcE6?8d32=*2yfX6Cl5y^IhSRFAUJEa1;anRCI<$o9M30AVd0&E&(( -R+=0y_2Cz;i4U6d+Z!gf8;y<*_a9}J;o$Ahw)%gL@MeCt&-7?Gw*d$hu$vt$7dN?Ab)9QQCE8z_D6_Fq1F` -0X)~Xbp+o7P^W>mMo16FAOt?A#j4U4e%N7=Jjy=E9qq+JJ*`O2mvUNXYgKP1&|{*so7AdSt7ec#iO`r -i@CF(n>CUVuZc)9f6(IVhT!NL_M+M&5d?;{fKtW4W&eO80J!UbFDhVt)gJ&D)MNM4;7;CA8$Y6o)Bbo -_Den13R}CVNSu+$b3$X*ucCb2c=9kIzwnVFiEgD`_c{0h+G;&27%-JT1w -Oq%<7w|Xcsg-4iyaF*$`&$_(0rn4pZ^z^2u1oiMbmR-N_NuqyN;&X^vh=D}l^ScnFtn>LtcOX(8+^yu -Xmo#)&%)P=iE6+V7+KUc>0$(9+qKbB5VT-5JBcnC(?vy=FfU2KoHyjl(v>1O(G4-;$swrTElsfM{}&| ->6eUEg|28=?S-aaMB|~^Qw}go8M5#7Mh&-o??#>I1c!>smg8M}p#6TOQx%N8)yP}|}3IY}ICP|mGFu? -~brd&Z|J%YJK%NxaK%{Ol_ -KzS9!4{2+Ig<|RR{9u5Ib>d;)CU&DW0_0x!m2ZyX;R4ymQU9~46r<(9GQpY>t=~n#kX>O2O_7d<&FXH -eq;Op+1>m>^7?P9bb4##F`gwz@(d*zI(%Sz4;xf%Kq!rOC6w!*U6QvFohP`>1?gXaIL@zSRqwIftKlo -3t*}$SB-a8uqVjo`PL;z9NCOKSiKjhGX}$zG2!p~YMvJh<27q;zy{g_+B;EH4S{t57Y-b#cOnnntJG)(p -8{Bs1C5k(30lw>MAmz4Er#?K>oRV?n4Sgw@?7O$;*vl_ -cC|Jrcb$mI9FGO5y$!j3wOGjOjD!)5~_t3Nv?`b1|_(n21OX4C5T-!L=l<8gikG_DmGhxOE{UZC*+`Ly)qYlgxHf&(<0Cw-)*}H#comi)n6lULe(vYo*{u6ArC_ZbGXTGXe1PU} -a=*rD5!o@N!a2=1e&RJ*NQZ;82K@lkwp*ae6d9If3uT2Zw>yzwFO(NpW$}KSj^X82=m`_CYY?iJ -B=oe8xpo>4=KpsZ;A%H}ucl%ya`z_B)CK!+@T6hHB<3vWHo?#_M5KvU8xPmy>g-XT3B4Mu#s9!T!l(p -xXlYGX-`~M2nO1x5hF -wnxNeOOP_?VBocd;e+y#pJg^av`?JlAFWayqVeI?SSbHb0_tHTlHqCz{1(!#aiV`XmR)sQHQShKLqMa -fD>O$#1IY0%l1ar1lul0p&VWk%95@8YY -lz8)$oRX`FSISy69xo<1uO&Jz_n})C7+9QMiWT(0op~SSuC{qscwoAP -YnRmN`VehD-=0cWNiO8`asZ#>L)yWP+=b!h6F~k)TF|h&e!Ng453*B`rv@H5&S^?qCmM`7$EmkD=uzQ -0Gf&;p&(Fg(0&bX%yfk!Up>D_eRmA@_i3OGOrTQdE#+vH>VER9t0x?Bk2U`NPWuO0*K`ppyI`dbP -_TMhM$Tw4>v~Z@mM;B(Xp?+e?Bx~-&D6iZti$qNpadchY7<-0;ccKwR&NEe%^X%Eq-~In5x@!E!x?6bIa<(;D|duuhthIUJqvTU^?(2}?mAQ%EQte!AWg>= -5H~$~F38nN`=C)%aW<3(1Y5#9PIu1@H{8B&Zw;BE&iQQpkKzR=ipJSY7XKUqYX-xz<1bU6#e$5)Jt)^ -3YO4{qU!(((4@7_7tN*5QSQPsTD><6yENs;3F3&?~Iu|&~zlwB9nIv-3GwXKOB6qITi=8LNQ< -6BzVaG;eY*d^8QRLiz*)p+AhGD=6D>Q!2$)t_4=k36O5w4hOm1?;W!F*WKq7VnEbtq*qtL%VL%<;B5342Q!@Kgt48joQHz)QSu&n_RSm<(2QX(+*uJ2M2;t)frFyis>+hcHM`z~jtDk=8v$nO>)PlEnx)2BzE`C5rAN<~!e?FLvtQD-D -9?VDy(t&Q}=&gXOBiHdTn53R1(#v01+^8+oiePS;vt5gjzHAVtr0zj#Tioj*JGeaR~uktidJ -SF+b5>_+DZS3SSsHxGxmF!$Js>+SoyK*taa4J705Y-&DzQeN=jXjto>d>4IX&Wga8^%m}nLR1`qZ%562yfmjzS4za`oDWCL|C8KDJctKSrNy3gF9UKV -=7nSq?s~A-i>?{fN2MyUc?A_V*T>2fJ{0I8+H`^CgIYskA2l3#UnK+spg8;~8;wU{vN*?W}$Kq%oN^? -|q8PAusD9EOyH7LSh0tS4L293Qr7=1Z8Q!=1RNudn4GRAzm7+O{#{P8!vYU|h*YzzramfLiBUW5!0^} -hP%gCTu}z#6W87a{*J~TIRXIU}*3t6^MPX*>|3^>G1T`{F?9 -sF0$$$aL5FyGzK1h>u*?Ur|?Vk0HuasD;+- -K6g2@Wqc&Fi?C@opK;^1Vr@ZBkSNSy>1ae0E)R~HHh|@f_C&gZvfdQ_J1_j_Zhg+@kSz(h8`jysug21 -Xn?UUR)<7BBNDY~DWe1d(>QhAs2J&9|e8G=LjQxwRHB1a`IRUE}e{|7Kq&Fh=Sijm2+oSi*Byo~;bFV -EhgBlG<1B^ZuMwoVJ!%c(>Rj*yb#HTNS(Au;vc__S%EPRC8iJS$03NMNk6QKKaV@SNVx6aJ*T)IQo%l -I`>vAWNmvWiX2cA$mH_iA4a=IdeXpXX~C+=8RU+j_#dESQ3@r9#DN?Yp7}4l1Ahpg&Xq3t*kYqch6M$ -l#e#hK1|&x4bntL$6s9?ou8Z@13=f?t5r0nb80nBn>Wt{GC7OX{a;~1&XY-XwNY{2%{HBBqdMdWIG8J -!@$P1k(n259d2{xun#~UmpJlhz?9(UycKhkm!QtUyQ-iW5Be+|(V^48!g+O7O@h4{sb#d{}_=LNGX9x -bn1AYo!!?VL@jgx2^L-8O5g(4SaE^4UElRmtAF?}kSKmx;lPQ(Cfm@pvz@XA#?o$-kd9r;&dtA~*SXf -=?Q06ADTASDSdJzzuPo<#RhC%ThuaZlyQWW`f%!lP2~SQEq@vI(mFZB-!d%5;hRq&=fT9?>^e;nfuo(L}5Oja0A-r)`tMh&n>0w1nVUA`zi`GizIICmr+@ -qqt!-)O+-t9B>rjzCCA-qNixGsZTwkNA?*#zE9>E4k@zIa?S_F3*NIR+3(IrNAJi~ZrqT=TAkqWF==Z -%n;kRR>PSmZkI7oyp6OmW`R{Ri9M$Kef|Xv)8v)=dHDOs6pVOJ@MO}-46gQ|0OnjE2uLFa6pC(J{4po -PB4>)lq3LMqN^8dU0S@J(GRJNnihGsgEs7)?bO_cG1>q_wtMv|&Y*>V*G`kygU#fg%mzzjSgrvMB-xf4~hPSz{Y^Ut@W6<#?YZ8BUgyR`m731W=gf-&tVC+zfb$SECUGCKaef{p -_{Xo2jzqIdPhT3620R0*Tj>jD>>UdJjFxAu5*Zr^PHT@2MoMkZ%eRlgMrZL4_#){wEvxI3p$1@{b%VW -{NxRrD2f7E!w01f9YwQ!hfDjJt{0I{NhxVVfk$M3qL9W;_-BPc_MFu=con|W*oqBf6VbJUJ+r&yI!d@ -w`4>G%6yhbc+lxR}i_D^Pri#Mc%=I&JXF4~Nln@9Fnm3m8xp;{b2umyj6x2LE@cGr+x9qK -XPRZ9_{~2zpIUl4c&c0!1p+Z8+iVCtHpPYGuaO6;OTA?+DSLGUiUATswf$7c2GGv^VD!W*-7cN@Pi*h -WV8rOryoL!a;qX-Zq-QqfSgoCRUm$#e$ccv4ZV#3νS>c$rrefWjz=!<){VkfOx8%cuIi8jsPR1A| -c`W^E_T>I6cVXJsG8qLQoOO>b2R?&Sb=N~js2D#~~eGN&MIm7VjE+wt>@FdtSY`XV@?Sgi0uop(CJ(? -yMkveh%YYD^7Xhj7LB-iNa0;?PK3jI>a -CXOX;m1xBd%$>u`#>802HO3eBij%$_3ksE~ -6oa_zPXgN4+@AlrF3^kkxQ{@Htq58o+JVx6q^iMOJ$(*(FIL3I!d9F@3KcLI-%OV??xU~57`PkqQ90i -f{=qLBlG1&jcP4_CN+(>=fC;77V{f?a;96Xry^0YaqKcNS-rRluqPovyny#T13ukGVX<^lh-c^?LdN! -deI0wQ$Jrw?_Azu2OMf|I%~)m?$kUe?*iVwQWnH?n3NbTe`>LkRz>BF1KuEcPr;bAe!UVY9o5D?2WJB -s9z{?j=3$cjneB-&KQxt!8rF*hB7eoR7n<%+l_t9gYpgw10F*6h%#lxCssRgMs#mj4$Yz7k8j!T?8FN -Z3&>}!7Pe4G)Vz)hbXa~J6ybV1ve(;w@e7EYGQ}>J_<8zDirY)a>)VsV^~TJjQ&oO*`lR0yPZ0vLz22 -5hZpWuJ}SU_vsPpF*ve4ddaqR)ZRLZ1P$ndy&GW5|8f|0*NBf!{BuY#W5!Im48JsjiW -D)eyEO7J19ZMopGW89d8{0RD5vk2L+|MpNEhackG-s=ll9bHkE!=O1vi;{j{~H?+QVI@|A~F>rmW~z~ -Pl)90T%rxDdyU%uGIx!||Ks5*pJG`p)o}Ef`^xkAN8j0GY&v${BZ{#A-M4#FD*5eErplu*Xxo-_$Gj; -7-PV*KBC|)P#U~+6rw+@Q|)oS2XBwV-;{mY>Y=He7hi(vCzlXt6Y8e4n#Ib#P^T -t*)gRMr}?}PDggf|5jUlrkAs`KURI<1{cGrDH361f>>Ho9^X)FZO@m|e`)EHo7FY&r@>(A4Ll@S)_oO -j{CcLxjV9#b+G!ID`lrstHWax0O#z{7H5|BK2j@=HH3r-xZlco8s4(Cs7SR6IQ({Ox@BqPB_rOus0IB -QUW0u?lzhQE@6)BU~66L)IWndH&QF|kURrMFT9I0*qBaoptsBS9jQmf--wlTnUDPeEHF6}qqQ!w)-05 -y_z$(m?e0FnOLzvB!;p5q5@PEj@xYJfEjp-kw<>(~8xK!7lSJ|In-a-yXQgITtv0a)D{F@7tB$Sf*~q -guVLBW!|d?l2qNv(@XL-UgwZw<3@l3JtG;r>7j0jfyqwQ_KG58wrng$fva3FGMY_4z>uJv;X5JLf8ku -d+hNHLfZ%x$jl^dn`RxF{04cp!NDT4UpN4e6A4cDMeAdQzQJuBPhYbE0{`uVz7ao(6)QO)y0(4zt^gL -*0umud8L+2Sx(9+&`&U2xjK2<{#jAXtetA>W6pQwDiP_&pc~V}V^ARd9Lu%DnY|MMK47pPK` -Q<=te015n?Cu*+yZw&26CpflX)gr-Z~6Q%zB&V2*aOT|ekf{Jqmi&<|1a-u7+ -X`sw2IwVz>KWrqP!aM^e+#ZEx_cdXlBBjblG>U@9hDjOmi_-SGOcslzteUS9StK(F!c*r~7HVXig2ib -hd|}{J&SVa2>L!I6poZ5&B(|=NA&e6Mgh`(asMJ?vQ*zNB7L=Hjw3p!gq;!eaP_emMx|JK3q%E~X-ED -4A^X_M-_zHVzk&*=F)=;&Ur^Pkq`jEQ7fLNdb-o}^H-D`A5g?e#`w7u9Nv%U{2DfRV;fF5WX9UTT-0S -bmwF5EY`$fbpboTSn>fKmv`xsZ!JLsf`;7={?(T@JhNChDjK@toTeQ1mG~m-$2gAs~Qlw0r>xAFE*i2E@-XvUf~OJwOL -6i@3<$7Gex9C$wS%z~s=D(IqrR0AgD^CY96dNU(ugtKRhO>3dxD4f}S-aCM~=)R3$K6Mm{o(QvrB8an8^j -O4IN7l&vo#-hnGnLv|C5bMWtEJIvRzp -)Z|<*`L|UHn{8<$;@x{HuC7|nxt%$#F;gS#mXOV6PDm(f@2(J3Lod={j?SO~n+!*hsJ=;wQ+}gffcix -Ul~v`~SwuHfgrcZXws*Lm*<^WfmJ5lZ)j0?YA -|7BC?yzTQ>*NNHPgcDm-nfLS5c4f};B{OLLr9hmNAcqz9w?wsQvPeTjPapvKUji9}Pz5lK -JC?Ht1+ucC;-UZAn7vtA|phPf&1CMSU*g-Zw*6Yo$3$Hr*>$3R_+4URv>kjmPfTl1jf=#Ox42Ht-oDA --79Z+ZCl5wSV-w0YX<}YD0M<1F~dZ(k|b*R8MUl9Q=wU!XD7#Un~3lHE4Er834!OQLBcvD?-YGilU3r -|FChX&0tH0xFMF3AB%^)eUPh0Za;)3o+&vuDL|N5Ou%-wBGAlm|+8lbuWIr>7;`~V}td0v -iM^U@jW%NDk#6FEpkcmTSJ-6JAAjQAQ5jGn>Y&%De7=+|dcecxN?D!QgleH>nDA0)Y_j%^P5WF4H)PU -pNnCH!15Xx+Ppz|oe`q?MBG7U7=ZiR|}u!BYojhGhWo~vSYDOsQ1IdM(@QAl -SWmUMYIzXew^lEyS*MxXYj&+ebUPJ~)yJ8)1jg@;aIThMf|fej0NAXqPIaw{X# -8hjKdKf$X;?e(~?-|H<0?uPN=2D<;GiyJp6g15`&*{J>)m4s0+O{KGGX1Lx^-L9e6zon~TNb~5wby>9 -$eB81!?f)y5)o(*qw|WGIf5-KxvGEp;E_~Q}d>}ASmn@UkDs$GtGHDt_TZY_@_}W<}P5O1s?iL6x05d -3htDvRyH!EKdz?%(<)3J*^vg%-CPxiF}enG)Yd_CnU>~L6J9siiSzd6B4|u<+{xRm;*YJ|D)i -S25Ppk38r9FM6|NaFec)0S)?M!X-a86`0^X?t#O6YGUE;A;4aR;HT?rG7U9=^+JrS9WbXD?I{L)&Wgu -6wYS-mRf(t`ZL^jd9ysP}&q~dc7>hYryXdB~I)5_Bt}bS>#J;yt3w!6s8g5YWj6%!5(=`Rrd2_O|DQ5 -tym;^axFdj&Be#OBJ~;jPHw5;#VcQ6!}Q!Io*Ed-FHT>xgl7^oPD))?qqpD)1~9}DfH+>@KyN^LONYN!EW -(dUp#PX@&@|qc^%*>pn3(Hw*XcZ#UiQTc;7|BXEhk|AyVd;G}reGWZf?w9B%e9s`uBrPApvfC*iN2;5 -%_$RrFqwr%#=dpP=N#z1`UV@yz@<^?Ery4U@rSF!j1RJ$3uyYA0bs3{NJ>L9^hnSzx<;VZOce5CGA!2 -)_*0O(9QrZ(Uzk4JxP)dX!BmQqFyUw_$9&mCL!(zN#0#=f}1&{?m>50M2zht9<%WPVqX+FqmOj+O7*g ->&PGsn%UbJkr3Ld5y#e0AYCvD{2p{@sILQX2%gk$qBS>J^ajmc3(tMOnZE7TcZ6w3FYrysO7~RZN9$aCPrY7aC(kLv`v;vF-|~@y!L~cI%L0QOs7ExhDWY80*Z`Apv -k+N~D-mpD%Y(w=dCKq1!EnOO7?%cIhp!QQviX_fNc^7yS@3r+>viQUB7bIr3{>^iK}x3S93kLQkLeFS -+n1Q+RU7W%PyqKZ61nI6~+-NVKp#J?%m>p<8$9wc`&$7{rajm^whPC*yttf?}v^EMM@?`XR$G*rU|4=>OUp1IjLiukX0`OtxXNT*@4;QZQ@%Vx&((IK~bQSE}raX1_l9 -V;!g$dk2@!+azz~^!A;UC7T!B@3hVEQU!W*M$JyFirTkAs`e!?a(kLuo>tx-eYAp7qf@TnoX@o;**8hnQeKI&P5s?Lx{=1H10QV8)4Zv%m+z9U~ ->apN}G^c_U;q{@=&25&*qYtKuGa=K;K^mpbc<9bhEbJnl$jVI)yy_Pk<{MTF`#!U^(Cbmay+uNIe)NaEy^D|4#}Ah~f8N_W_L2`M%3k-gu^WUy9 -YJ&I39r&EspghBBonvR@wPnQC0NZWmA2>oH|G|hDf+WY%JvX37>=HD*<<70k_1akoG@86F$ -)Ip>}eDe+Pwdyva5lolMjk89x@Sv%KO+{-6Jr~UvySt6a^s!Z0Z-lT8fNQXmcTHWZHyq0+V8zy8S_A9 -_AMo517}<2xtb)Ln7~W^j)JWlA;H4{q5Y`E -7-#qwa{<%=9!+pxg2jI|B){5ZQZ5c<0~#yC(ea?J(QU!XfP+Ml`Tb2|IL4>^W8A*>aEUyh3_wHzVDWV -ES30#J)Y^br*PvskV)jCp_dIcX4(%~C@>!og5Nh`jtH~oN%;e}m^jdh5??Ne81lU#i}f6Y?W6|yK -PKj6Bz4cmeT)^oG#mJmQ$(WulGA4&)`>UBwm-v0(rO9KQH000080N_fRRuNvU=m8l30R3VB03ZMW0B~ -t=FJE?LZe(wAFK~HqVRCb6Zf7rYWpj0GbaO6ndF4IPlG`?t@ADN{xl$r+jyxLsC8|v7oZakQZoN(_&e -lF?RTL#cGaON*mLN6OP3GUPy8(~@2x{awS9N>GR7Mg3G#ZWWMx(m{zhD&?OLWtc<-auh93Z|cju#iAu3{+VGx>Io-y=4eOcv~h1yCBX)v@LxyohgkAyJ?PP>dfz5VK8Lv6y8 -A3&JqGxVTv7i4ZLQDX9eiS<>O}S$+58W+Qk#yI}CdvB=9>#4&)GkLqSWT3k>;3b@B{R%CS?2ZHCDi0! -BF|8*!E;)Aaz&;~J7g=XVhUS~Dmwe2&bX~pZNDq0BhY~i#Nby9QHbhw?_NZ5@c_A;q%g&$oknO`kh8k -r=L4MwBU$GU3P&>c_N9?LZ^MXWB_zA6t{%GnOyWH4cD$CE;^5@vk8<^ZxT2~K^-W$TosNuA6j#+S$!3 -ClB4vtYT*c@Ze!;c^+ODyyTckQFKagw<3PKs?g8%%_XxGGe@5PmE?sU02zvskzZ=@{Rfu7s-x)yIew5 -!8w}|1!hYkLG^vkcf6=4K+M>zzf?2({ikFHqn)X7-~-&xZ+Qh&{d-xZLDB3)*cPTZA;7)JBC28!b}%~ -fq#A|n6&t@Ew@uCG6&r56D~tN>H@8lc<0$O#eZfG`vqJ(iQlmWWW=4@`Fax;1@b^E2>|k|;ol%i^36V -fOBBcR2$z)(wuI@p_88U;f0cnl@!~_zIreA;k_3P>N>o?Pp(G?06=$kqKe%}-~72j8eEa5|nFBm;OvC -D7Scvs)uSlm)DqbI^? -=n4Lh2jkUtHJ&j2GN0IRYgaU-#dX+$rSWj4QcV(L7)|p4H>}a{dYgV`{Q3C_A`CL4D6D9u-{KUHhV+^`WVekQ -O1YMB?u}*#XpzTLjtRcT?NewDql~Os`NpKi3&Fg2~ev5FXef*gXSp}2C63NV~L`T{tK3*dht)B(TF2g -WME{{S(+CLZAy0LCRu610-ut781Jd7M5uOjEI!KS0qo7bCd4lF1OQOW&`U)so4_bysq^J10=w7n!aD) -qd~+iy{i_AdTX|A7MT~k<1mkgk6`o#Q_1?{|qc_ppMgKh%u<2r;Fu=mlUl!hrig*8~;WQ)ENq*U(&Vm1ehx><%V?7ZLkL%HtRsjK6g#>Kkf+!+aC5w~MYVlDFS@h#rA1c@|9YH& -hBJDpdhG?T9v_7TQX;dl7Yzn0(1I(Rh3oXH4D*l*}-yI7Dy3}NC-0d0gVUP -Cn*Cx8u?ojR)*OFw3x)ST*R^Brxww$E$MToGu=wsNp1}?TRSU*_-g67k*go}p}xL+xqWapKtM@@imGK -~X)uSD3K><^+DXAoNjuZV(yTI}F+)Yf$SIMlt-q{YcA*$7_Q0SJ3_&5|XC?_iS0QH7MWFfp;}7JAv#$ -=r(~$c-HCKi6*`lwT&Y(SM^ge%Zu)(B3san}p!V9zFGt^LD7Z<%6Xsh5B0X~ey*4S>#Ie5W-;uSGG41 -?880cOFBJs83RQu7iFu9s*vz~)x~D~ghBIp4$2OeiRA^|C_qL+oJASyH5IlK`gh2Gq64RyprGBP`rc2 -tXp|%u}aFR9D9{huR_PC)%eq-`6bo3qR6|A9ag=#C| -{r8ht;(2=>Z?{Ez()*B`=gu)*nh)!=MO8rtuaH`Nw_EF$+5=-oV9_ax8splU8f_v5?Sd>8*f68 -h&_NOA9E5RK9%$!zwOLMM6}VuF(|0uS}D{k?Q~5?X#LVl5OwvVh2ukRdW5HsnRK!%YJZ3=B@JGDa;aXT -NC)cQ9d>ENH)f%kKTFH9n^{3l`fd&1y=K+RTbhv62&bRhEV|sAgI_o{f)5Zvl*Cc<(>&E@%aw%afmtCk!ju;6U(T0-kczsurZ|RQb`%RN00;}UbfemD -F+d^EIDVMJByezkZaK+#({{#d_fuz`NaYRhX6Q$kfWavyx#g4EFDh;BAM-Mq2lUC_qnAr3>jj#~F}fxzVu;S&X%GDx;wINg_fvJ^qh2-gD3V*-8Vb6h3?|-a}0`EwPdhX)pY{ES8RIyhP}C-j=;8iAtQTNGNSi -}qIuUC&T|%vjaoG0O;$08?pe_IHlNp+$;C8PB+?gBi -1J7L6;uNpw2=Wnrx!OS(B|vHnhQ$ReK~KDqH<;KIcz -$PHRK}Q%Y{q1{Yd(yU7t{;AD7JzQq%?%qVkEb$BQiEXEz-CR!i5M8L|RU9)KglTWEE|GIP{@~vrGK4hRAER;hj^pg~R;$V3}f -N_&8}-(~L-QR2WRXaLk&WC4qZyWpMLjq$^2(tQ&E&EedHxSlR-}zP>~4fUDhYc7VMVK?V9{~KG50A6VUAQ7az6h+ek*8hPT0UPs&Hk*MA|8+u3sniDOT^KY!2RM=J4u#YIUhC`y*}Q%G -K_cGeq?#0=w_p$ywTj$ng1F|cJu@+YC<6QwvFFSJMYpR6`z_8i290jM$QFcNJ!JE7kF^!oNcUNxnBPFjPWwGCQZ39d#sT?#m!=Fi?>TS97q}OiB5N+~jI(7cz^bbF7Zb -{Lx!X5n!gE+`caHR_^+rUrPsMb!jEF(5iz4kwr6h3-fS$F|^=v>@Ov@v`w`vofDV$wzU$#$kNf)uVZ{ -MCHooWokOC6u_Pqocwg8%artEs~sCKLU>45v1e=4P|qJ)XrRa-1~l%D1Tbge*E>6iHrrIAND;C6F9s6 -83n!$0k@K?#iF#6-80)*9_*$M=9NCt;!RNaB#yn9#8Jetk7MZvGa3~JahAxi*0((M4E5!H!R-@!w8}x -S%L+r*yfx2ZJvtzbSv_)mqDCBjAW+MF)8BEIK%P8y2aUPI-1mNyOyihIT(emAJ#SE)c}E)=#@A8&-X0fgPhcv*xWf#+U=+ur!Sug(`V@ -@Zx%Lxk6dpRcQ4U7VnjA=p8zS;lkIeZVS#EG0EM1rTqn$d1(KiBd;q-_bMx)E@^ZEojP^ETGYyyDHKYgK#qEMFWRA1BR#Ms!A|5>`AF=hoeJVXjx^jP#N>%|x+Z+nVh=mtVX5 -KNa5kY=$)kP4$%{2h|h(MlX&N#HOVX!#PNMFm7+rZLvc~yp?j_prMF{QxLLMljU_*3@IB|MEjcfg$gM -pN2NoO&h>@o&B$Cx%En0^CX6r~=OWcxqOd8lHNf<2zna!$h4Nl{r(qHv^4R1jsN5g1R~)rD%^o9Ho=uUb3H8ZeWzy;+A1y5 -FjL;bORx|+ISkZX!i+t1Dd0_CVJxxSA(~2iGrZ($CO+6`;xafmc%7xg%I6ahD<;R-8>_N$MEGLKHV?D -*Wa~IPNF-O**Y(PcXvw=#Wa@;i*Nfwrs -+P}=FVZ%_J}I>2`1O$7|5dW@r2ud)3Vy_BbC=`De}4i`_}5y$EfMJET&aSFd2Q09m=Q -2ELkExv=XY1G@Zw+d%9VvQ`K`s7NuskNLl<3gv6U^h~2$%_o|_{NUc*^aYg*~o;2f=i`*mmJVUqWmt4 -^W^;&_o6I3W5?GNloigreownUVDDLHbx}IG{P^Ps5WOl(^6bA7eLCbB=!SWu`gv5`JY%CbQ?zl -Ahv5fO6n~No;P30vlO?gnei^gHFPwnbVrv#eRt&$ts0r=EiLg5)~PnlQ#^Thg$*^r_KX|poL2ll&A(>&$mcr -sG~SUV_ZQ)SoGr+V7-{*(TITVBh%Dcp>^p*6$w@2Ir4OsEh9|3v4kL8d0SzTulX%I829*eus5Ph$6;rp~lZp^HWfb{*mH;m+c??&oRP4jlr4% -&{n+C&GotRVEkfiCF`I?3ASLrZ-7z7cry#8M$lQlqCcji7#V%SWL -H$E?_tfMbiV-+$aLy=@!Ew7tG&)9Li``ug$>JnY5w_4GRjKXb1m;q^6%)U~wnX!#Y^u<>jx9qxFb=(& -U&7%7{v>uZ-6;H81$;G9$2>33eu0IIW-wiD-HEMcT$7pA;B*PSGlqYnbd3P9=IWJL;e*EK}58dmoO|1 -=P28&3b;4wkrXFTmimJI-xJ;-J|*qmFgQ8Kpt^=O9r8P*e(R}B^gF#3E-Nkz(DypU8kr=QmyM9?L1xT?=E6O1*`*E-tmPB --ZjA;WC2^Nz=)sQh?Ol9f^IOkUb&Yai}Q&l{ZRl!jN -~PWL?N}MtU_ubkfOL{l=xct=fseO14zeoQltSW6pmzV*tdIkoE|M!A?y2?4{G|lI1v3!nUzY< -@G`By12EPnk;_^&w9&sQh*Bl`J2&B&xH4_`2wuES@f!m2Q5=9xih)_u;g!JhzNeY~WGV8Nntw9|IGi) -JGgDhI>3ZN8LUvTyF{dM{?LU#I07?@Gq2;U;Bu`})o6JX=*sb$l&rPVVYm{_QfxTWFe`cYe9nv`^DaS -@t?L6uzQC)ExyOr1WVzK-ooS@|&=FVKqh^&#?Sc>E$z`g@c|Vcr(01*fhl&O8wUr!pvY(+1alINc(-p -0qzl~HEbBdu?H$$!>5d4+2}{LcM6=_46&d7fqS*ZKv<41Xj3FCiB?gtDOPM9rP1}(RTxdLu0}o>im<^ -$mVz35dv(T!13DNxLNg!tUa|42_i7G=ft?8;1|ReB8h@nt2T;TS4v=cm12e@ke@xKg4QD^mmoTraCyp0jRGYDfB_T6fJtWG>}tx{BwCyp0-_q=7OryGUnI?rN^<{0gr2-rbToB9`9b& -ya$id^NwjV+LdkTJEIOZ_n?U^0(9Td+wCqxIwr62_J!$P-gF90+r#N4WSZt?5+TQvpXs|IYR5xW6A*( -VusVG`|A1&3>dJ_xKFa@At{LzDc!m2KNXPpB$Ce?f6p7GC!}V -g=J|F}?oUoORgsan$ZK|2r+iI#Ru)y=KFMfKx2!tRPwRaN>-3^UTvV)`ADj@l{zfaos>_sREU)MNqsz -OPl{GJN_3T@=zb&dn-9%Bs={AbmyST_oTH}3qa&i)9YCg-)(Uvxy|54E;pg4I#aOkZ$M4>WC<=y{zH(CVgw6?&pEvM!oD0Y(*z8yG8c&zyv9Xp`0;46j=Y?Px{gnpI-qnRuhN#h7JG -N`Xj4QzGgLWu{GCoPppUm|`#OXH0K*m4HFf3gV<2yu71XnX=`we}va9uXke`5QIx>E?!ThO_fQta6(x -hHUidxpiNv8O12fvGFlM|XhpFzTJxBu>7IzDEP*4eaj08JUhq8SIeV?SyhG7~@AcyF#90i}GO{8+fH4 -D_mOCm!^0T_ln+#SA7i_DdDPhH5@NaM$oRX)K$kk%8cn`l%!&48NCj?PmX&cl#Moxq9)Yv|$a$eNn0C -CzNUceJ@9-3Dg>W1aQp(|LrSt!!d3@`KK)sDqCueqoLDe9ce0=kaL#k1##o^UoNSEumcbWTp;8UBICr -|$fIe19}y?VJ(ru8_2K6z!;fd-?YtzI*e -frhAC6v+FZ${789tBt3d&O>;Gh^rG+OnpZLi98?K*bzKMsj3B<%mETtGq{D=Dyo^{**C|UpR3km*Qq8 -a^^3C*QHv}DHR%zN+u$aa>P>KJ;zk4IaVxw_pt2s -O5;BWKxRRJ5r`3V-iNg7w3aY*|g~x(d2#L_QB?HG#h{a<*fO2(m{c>kfmH@P7L)Qroq|igL53i3_N5@uct*1J$ -nPXAmQctaM)(PXvzcvre`Cag(wL88P>62WmfqMSws4TtX -D&4@m*I0&&kKM+6rGe+vb7LY=_^%L%G*)n1Hw;Udo<8_}k%^B;$8ncY;{5(*??aLj(&43!yFq301Zo^auxLoOCaM}!sGT?Cblc9 -KpI%hR2{E(ZI^FoDH~Bh9X6h1DfL-io8n%RV*MkqR?RQXNg+>3z#P}tmY~ua<;L!(N*u*L!9G<*~bh?Quug_KxZEU>JnMj(t!GdXC`HgxyCgynUhcQ|RXG -6;`Jg4VJQjiDP8N5hLhmUuvL6wbaxU_KIO3f#YOoJqwG;Ov+%^(dUZ{0+lQrY8>u#$fiQ$uXO1s@|;F -dd2_y#j&N1af9-K5B{7>AOG6itm-DmE=Rx}vgDq6@^wf_wuS5t)ICjl}?;oyjawH)RSb51_Q -=0Bc}4gp#EYpbko*M!u)OiSk?&iVjSuKXLE{`)o*NQUz!AB1Cah)feR5^&U92G9zv9idM^nG(zEjY^R -3+|BB~$K0Vh~6a4{i@d3N4)LnHt3f~6D=^&tWinJ|yY#^Sz#vnljjJVIPx_f+S2SsYFTAJ%k37t$JeMzrl&^vl -d;%<~+(|?al%mXj6X*VfM?|;Hoy86dH9DdRPL6xDnVj#@6no --O)d)f~YuWIqk=~0(X@-78;3bpKBW!0na&Nv#CvGnp=#8}ehH~gZ4_bD>Yvn#t$+H6(7#seK8)IBTt) -OB1){T23Pp`(SLcO$C`0?j0Y8;iNqaOk$UXSq@Bs%Fbc#R{;ZXbVb;gIP6Asil+4>|=)-Vjg0166L}{ -|EMRx`I3m0|lLf^QJnT;}?7C*Mo~aUNgOD0vD5z#_I{WrIk!!JBDe8?$_+klPgq}Kg$avwMZo0e^fop -78^X=s?9bebl!<4*z`bff@ld~z!Nk){Srk6|ADFahR3RgZmW?PGTpi@MP=3&HKTU4HgJKJpo;{zUecW -eB2@nA!=*YlpW!y(8Ivyb?E1@4>x;q1L+x{;F_BT#{xm3PyWTj$JhB>mIMnqX1BVz1*e#j9L2`F~&sn -P9AAW)Fw0NwJB~Mymk#>YHK%%_K*35iYB$k-hdnCg8s+Mz?`YWl$ce;wX0)(`$Tl)npPaZY>uB3RzP1 -nE~>vWib8*9ucz(;6xBL#!e+0V0n5CjF-1YX=t72)8wvDFy46KEB;7;CAq+!Dl1&+STIkYt@MY7N!vu$srb5yje?oY -RRcqY8C)T_i9u`6ehH1@?6C^o?jlf2#1e|t&An0$ofV{?kVx)!wCdDO6lwLo8y`!9kewQ}}S!g!8@1{ -_Ugo`qzd$c0_jTwrfD0qo?j^a?)Uok-}&Cldkv>!gfbn{a!d|{$k?TR!R>vF8CTm2`Me4H-`N3Sz7Yj -PeJ37f%hNF=E=qA8Ysd+<(8BVwPeixf5j(!~xBS7!hH&%bBVAK=%&+|OA&Jh2Z$e5A&Qi0#gIQuu5mB -~iyZ6CL1yn@n6SEW+NkA+PDpWq5LV#*HtQmg-2O-A41IQwIUavjayHZcqTU(!`7nW-L_AN#|^K*2cG& -3pI?R#;Zll$_CQLyP4s{)vDiY7aH{%GYP1;$mk6NugXWN#`}0l8ufAQ9DcON6Exql;CxP=KZlZ7-`zd -?^c)`HUw9locc;`3t*8sb-l>YKbb!GuvLrXJJU5k}Ht={UL$XPD- -XJzWfDY+`ZJX%dE5zOXe6f12Z!7@35Zo_zk{)q3nMC0+rHx@ch9w`J@)(mRHNPLkA%L+!WZdL!U0u3@ -)0D@fEqSoJeOw|GI8;MO4Of3NIMRcpkL3b27|~7HgcE(YxScZafFbx66(4V(5S$jqZ<-OO>@CBJo<@2 -H};#`ixwVWyhvJ)N?K0Q@fHYpQ^|#(X0%Ww|oLQGR5b;sScu3Q}=#-V7`~fS$PrN@&v-AHhx`oW;W~# -=2XQs%s~r-b#b#pOTA#pBYR(Uy&CtYz)@w1*}AC!gTjIZ$!eyH7yQf8@g!t^MVKr?-OEoVnH+SSB2bV_GB}sQFBy6@UfvE}lLA^!I=G?2j+bCBjB{4Jm4G@Y -(8OAcV7a)nj$+oVX>*)k%mj1c!2gZ>XtO9KQH000080 -N_fRR(kcccpeJ?03#{@03ZMW0B~t=FJE?LZe(wAFK~HqVRCb6Zf7rbZfRq0WMwXJd9_;Wj}zAw|L(uy -YWWabcrDNPjfB)0+Y`zor4;&Ft;~2l-W?c^-I-a~O;rg94Gm2nX$v$hOxU#*2@-9;+aXS9`(d~121H -WYjtfI=(+zAfBV6e@-aeLflteBlSaewoU -qYI2DaNyleU)=}qtWVGjRvPg592dDvttjYh^NHRx(oJT*>3Y#npkcyw7An|1H=i)D -_zeXjI$3T>}K}cN#INk^LX8mESiBChJF&JrO6B!2!8WsQl#q>(_2Z7i^|9uY%NfVvj$7xC+@N#328Dn -pBmwAgUG>D;&?({qvLlQjX7o4e1CQ-WNkeU5y%-(2OA#dVBa}m@0KsfW -!z$D)emwXTB0W=*Ea6M#t3pRrrh+&sGjU$@rf -b7kMy@}k8iN9$)bZ>VX|52HxXfHo&S$psK!=NVT-AiYKX(Ce36q%%o#s+#!@3P202U>Ogec4ONYf_LC -|GYP0He4dbv9%!3^;I!BA(I!IBSuZ!LD72e&D272*}(>^pn};Y*x*t3A>i;R60&ICAHl~s7f}Q9vhw) -t4i%n-zKiz4rjSveP>}YoOL|Q1tU(_8E~r9n)xodoK7*vhQ4ivV5k|eA+nsxBt|2^k-+={wXVyY6NQ4 -ihIE$P&|xwiZ_)Oh(DW=WzY8Jphh>boNW`MLcVDu)2*LtzSK`%nQ1lp3f(GDKN=lB_Jjg#GDH>q7x2&`Xl~bB_2=(hZ^^_`d -K`)>pD~PBwmpYJD7HK&PPWXa4av3k`#z~4sM6T`BdNN%^bO5dFfr;N*6Q^Z+AvXb2Wzy{Rd -w8+QF|M`o`fS-~86Mzw=$QX@TDs7M)|q-HzAoea{cVr4uKYS6+Q^{lT3F_hu%Eq^IaBl-qCPk&6`q(7lQr9Y!Tr*F|;&|lJD(F^n<{WX1?{)YaRUZ%gJ@6g}VKhQtYEA&rvm0qRq()Z{!` -aZo*KcF}0P5Nj07kZ0+NI#-~rMKxF`Zu~p@6vnpKK+<}LO-RSO;oB8r;Pe!@H7Rixx<^?)(Q%!nZa7m -i7h627+`&Q9B8a_;fWcL>}&;HcUv*XAT>yzNgmEBYA#)i}JqE=w+bok1OP2Ym5#T3 -N^QhQ3@HYv&Y;k)lJy;exm4@7slS5l`YP{=Z&9&UNI5)F^_dBfBvAUg3*Xy^w!+U&?8SPDWkaj2B1$| -IEdKO*NP|MmE(}xD{lD2Mb`bPHqNjRovI_9#}N4AJ^9~XA$X5d%{SgYnbY+3gpERVT@TXAHl^J5-h80 -8Ykun59s4Dd0X(j$szmksy~^|T{O?>9roQ>Imt&z@EK$AD_zt%pXpp6AjN8umKYuxpaKg%#SfS)pyW7 -3}E1^i)cl>#0ARp8B@ySr&S#`H6bI?A!M7Y1QPDCn*^`ua>#I%C&?NiC`jE5;o*YC6ua3s)13Fp -{#liujk~fd?79?*02^Nf2FjI_zjt|%HVM8oYLKP@W1@t^d)rHfHDoU+NYAuIRYY|mPsWm~ZV}UmeRZt -CdT|-JXkea9}D&{n`q*NFaT#@)|da;1{F015)d!RC4-peW)4mMTdsixwfC~1leiZ&ehkxElt@g3K7tZ -9o)G=IB`VqO;Sf{KNzDgjh2mr+NcP_329Sd40QE=#Rp)j%tXSZKwPicw2>L9HOXMqTAK3a%3iyL=Ngw -YSCeZFaU=7w%N+l?vjZdPNsh1If6YQsulkrH)Z$81pq9L1exzs1-CHwUVI16)96jMNkc`h~$W&l_a%> -SfmsoBpg3*gH{n$kp&788>i8<9T(-RRxrwAhX2PXce6oi&=`)UnU>jyY+v$MMYt(=)|8^L=J$9)~A+o|qEs^W! -gIx$Fr_ql$Bety6AGO=1VRkrdF!Q$WthNv!0cUBO?34@`^v^(@v!JYSN5xoln$>Q}~*-k(vah#A^A7W -*@dSPv*khEa;`g_5M`*{m{=rpO)$ZpJe_nq#OFzk6Vx2u%W%&ju(7$pk*qE^KNW=jC`zT<38@wlww}Ss5rg@L~|fUvZqnAljEr5Cd5&u4SOr$PFu&sY?74U -*lhD&tjJTV68Afgn`kNEicyuE$Tg*m^r$)69_CbK92J~el++TkqroV4?9nQMNvo6)ky=$OSSxABCR;1 -%l3GQ!Kp52p)j-rS3{AdB(Gf!pqpAvO6>A)fswSye&t}vlZw=+GN#5G9y%J0U5D-*>kdZbI|I$xP+zf -1DOSD@A;pTgySThL=Y=XogO%5-blQzHD;%x4A_w{v=ui1JIJM7nUhM*So)VOlbrSORBdXO}HaekrxbZu<7gsml?cz1=1jDk4k;EQPX#nmnA#Zgu(1N6pi -iQdk$A7#b9AIL;iB{TRPhxnFblc~Hfju`mlotsUM8qMiBqCTn5k-}8h4;%z-k#Y3(e0-hZy$e0uR5$|H+B!u0Uo!?n*(JzRTuAO6-pfBo -StT!4HVgGgAvuznx@{=WXn`rY+=>o-t-{^}TEestv@w;#Rr=o`ngRzKZXy|l4>Roc0?JkNsfn||14~N5NhC_ZNYNztJItH -q!v~l82no^Z}+rGPF1>H-k^BhvAblEj22gYfg+hAvOA$E0{@~de2b5kd&Ob_7u5f0JY&hM0UYw@~7z_ -s`mk>oaqAV{`0m-ZkoM0zmczdnhAAV{&riX=&Oxl{XOm&?7~1Oh*+)#}?4bxWBGFSXM~WUx~-5wy9eq -*Gg!D|ZyK%&==)@AuTlD5xJWP$Kg@DP;k6!WPB|yGPGO#JOt-PVNk>svsgwNT& -0^C7o+<;b!#DWXc+^$7N*lTes^BN*QIr^xb?-8oR3EFsMNGC;~cJX5R5stdpQxA{v!=u1|W$Bxok;<~ -vPHaKwTQEjt8I-FSJy=LLN1zXzz@sP0dQrm9BJznFjg{BSrGpxv9FEMCR~+T*g8Fsw;%pt9y`xY{LoI((*#P21EPOVmoS&bHj{$wA> -oZTpUC5_du3`u-~~|j&mepwaYkfB@Oc-uVIl9WdJ7llpL`kx#8*rLVXo5+dJuyb7i+(v??{|oQd1X{{ -CvsYw<4{Lfs!*wU6kTZxdSeMBt<0b8r$pAQAn0>m#Y%2kXFzST!>0y5NTs$MtpSuu~Wu&SjgqFF1BFA -dF=i7gLXJMhk|IYtaB$2!V>xx4)RuEdO#(o1>9E@15R!&@qsi{S=FvFi@~;lONM4RY1lv#YT+uQQ?ND -`;wJ!>-mt?rH$S2Tn6GmvaMm%&!%vKP!`Z1oNS0TnCj{mQf&VSAA0OSOODBCEySe%7)fZo0-rNXWKC; -?k5(DeNXA-~0JgWjVNDJMI`W6!vdHzcdQFskFQFw1x+A7`v+BKZv#Ulb(Bq -4Dm=wnfwQxv`spV3hC4P|H}Kc_2dIuqxZRxyXZDOVh2!nfMkU{cRQYF~>NYij-@wvzp&eimV;T;-`Z) -cPQV!z=b67+&glF&lF8*Gu{_7CMNRw91oLz5NAi+pyV#TMG~*OxEI8I7X -Ab-us~&Hbjy22y=pj`)txc&1<}F23OckH6;s-0n!|#36mwQ*!K-a98_YT;1b4$KRM_-@SbOJrsJJfWN@4sL<*yrP4xHmESL=qh-YWYsF0} -E1BZK@dllf18rX9J{xp9I{^r1WcsUZv|1UlJyK>@M#z+QU7?9>|HiE|g(0v9Bs__mY>VNmGMtGeYf{` -5^P{M315Wh-7Wt_}$gI!wr^2TlY#KsI+rdotKPM6rL*;goYJCsQ+#H{bsDVAW>STCl(l~USIWET0&<2 -iy{_u65LgmDN;m9Yg>EW$6FfQ<5n>d{S?qxLU>2bV*A7@~?otr)n)zOd`Wj^pJ^G1svUC8r(H00U4IE -wWt{07+V_|fycRbhNQaj5Mx%y5noZS7+c&2!GwDYMjbO8A6#d;*%(0;8F?DQeMzE`K#Sp{qJ5GlUs(H -hRbWAoF~Z7+UpbuPA#z;Oa2}jOYpy1ADknj4bz%qz9~5L%UE#ek8m&B?_#sSa2hLK5K5HsBBN^lwekG -sBty$81W@GP~|ekbh#Goh1-)zKI>l}xt+m2xD5E@2Vx*@cX)cYs%`;71Rt8W=QqM_x9(CAaUz3yntao3O+U%Rxs%cX -P3+C1NgT#@H6Wzvt$JOBt+5iSZ36P&WR*ExxGYpB*9Wmc`lNLccBH=v51yeaQjNR2iPd<4G(P)h>@6a -WAK2ms(pnpV*1Q%n^a004zt001cf003}la4%nWWo~3|axZXsaA9(DX>MmPWNBe%a$#*RUtei%X>?y-E -^v9pJZp2?NOIrxD<)K38Qi0}cDC|GF5P19#*ThYCF;9Ro$w*JXy4ACDzq?I=`1qsajF-fc0*jx4LR>Pt1dEx5jTYp8vK(vl9WIca`o -Y^w;}*CCkgrx|aO?XW7WMD)`IgZY}>kZ~4nlRbl4*nAdfFV`qGn=JDH3w)}X^EB{tCzvcgESH6_1b)9 -#T-&M*!|Jb#F-`fj|d)4T*EV`4E6P`cs%*44?o3@Z*CPt&tf1kYgho3Hfy!_7(uf(!j)h|z8*nebRz9 -fXc{7F;`(Wp+~Gx4Xd^b|iYbhoP|l19!(o&4N=UuZpg>E7dKYRUc-XCn!}MDOvlP)+xAk*}(HcP3V}YZ+qoiMlao{NUUl+JRHcODuoK;~(qg -MNbt!J7$VHiVIc;DfZZ@6R$|tQ9db36uM`8M~>z1k!KTQAW&q6DBFN(Z*(uq-4gz`@GXy+%9lu9RxH`*as;G2Av%dyd9g$kGKbgCD3;?h-Ym=|<+ITp -=nn_Gf*GPyqEMhd;5_9#{HdVH@VM#nsv+cza6AQmKL1k4iIl5)u36Ku40;EwaR(V$}W$89Vf53n_PX*0(b^h+%wRus>g_zF)yKX+uw5% -5s@f~hg8&%$ktIO-&j?W8_xw^VTb+XtrMWiEmB@kLk6{HEJ8sGB95@v>qG=KH2~(Cfcd^4=EZcOV&-Wf`n; -BzR{B8-}Rr -Gr1xY4Yr^?p>pLoo2qcMK5D?MpH0NeoEJ$YXA$1wU^WVy8AlPv#Vf4W0y}x-_Zhe8)n7W7%Yx88T!bi -O;rz7oc%lW;EcmAzkQ}%r$|LpV4WXiq~KfazlyPe|>nk^EdKqSm!0iUnfwqAzcNJq|ZF$0Y%MR2mrok?sWP|pknR3sl~I3xaAq)DEMc4P^W9P&ieBMQiZ(7b+i7t1Z|G|w~BAxsX2O*nRU0%D8{-9J -+$lIv4(RN>-(Q82Zd)* -WAMbCoO7Y)*C`TqUHw6!F3Ni9@QTsfLapL(PFC&q)N_As@7Lf|me7%NfBKtC;ful2?FcB0@!q*Xa&m# -<2AVN?m&UpT1HvVda%pQ9~=4lJiz|*iqoUxG{h?~@^zL#^OKr-|1S<*y=>d12NS6OUY4RQun*#JXrP$ -)3KY$!nP3=BL^APrj(EqM<fF_4$e|67eLPngi?2T15T%NPU&wk7)_D4cR^Y0?*yk}FfX^uU=GpbbfO{T?0sI9t=-FT^20FZ(L`zJ`fd?@%OKCX(Xhs@|0lj2( -RA%N-FmvXUMpNLAmhCHk!C|D4!?{%!{m>Eja*ZJ=9A=&Y64F831F{HG18;ud$9k!@b2e;xj)xF{-GCn -pBVL1u$zT)(QG?ec#Y0`%3kp?(>w_e_UD=Hq_Yo!8YgT*Arp_X={e>WMg$J=j-?QDV748LQ+5ncc6-F -B5Qn9nO&3Q~-6jC#wU#&Y#Yv0HPx=-Lt!8!$Fik`G04Ib!b&zqZEyRg$np=;t2K*P-$gjOb&H1qph^C -}+oyH)Lmgy3`q&Rz({voceL;TS(6EuI1iSFjVXHrr)YEJd?f-2hgAV_t)U&;V&rr2s=Y6Jn(kIovqNp -ndRsV6qElE>&Co9RqQA9^x^S9ax{F19oDBFoI+Jx`$ -nwt_HGWkVh%2ZjfKq1i5WaWvrx#{WxJ7M8=Joe&z&4VPBJbaCe}*{b2zDJb&lY~djlc@dZR))c9}e5> -z(4VDKBRX(B4v5#du7e1|`1+EYjFg4s%X4V=P{Z=bk2~e7I0pv~T-9(^2Q(UnI(l;xIn;qXl!m*&UWnv -J@sju%xVZ5|FbpVCczh@*G>`Ea#Wb=Rg2boOyeu;wJRS^)C}bVhGIWc`=fD#)@NUe%?1k8H6)76RwEj --$gq(8l2%`(MVNY?BzhU+hw^rI%Ca<^oPQ!N%-Y?jKZXzVcKGh-s#0M0J5KF^1q3zMNk)1*#oLOKKbh -T!6zPc%M8hu9p(eIDPPr)_cOt4NDKDYR>ZFM_*&QO-Jp5tyXlA|SZp}vNI^Kr# ->N=*bEjOLPZJ&4z%!5V8wOwoAbDH+ok~2^bBHf1*v*`Fm(hR6aL8xz58RxmzuoVX7iD -WL@v85<=L(i!(s_=}4}

RbN-$c;`BnS>KrZl+n5|mwrNyI3%=Z(*C9+?A)F8W1qgId|&{3R4hp -TA(|Id*OAZd;mt`|s3xk)oc#?xmVN>WJdq#OVMb6N-K2n@rQ5JNgs}cht- -QPp7;{%c$4hmO$yC7vb2~=f7Zge@!ZoD1u2{n(81JL9em@K!OGNc7g7R#zG0Xx%Fc-m)$3x#=mWifYQ9p+p?Biqa>G>urU%d6&DTA1D3`7`-18v41n^ufuo~*l))ST*}j7%dVYSAaiK(G!5 -#1o3jrS`2Sfd|D0-Y;4fnm(;X{UYPQ?SH1~&n4NE8E)5HqpRU;yRLLJPAuy6S`4GpPq%AAn*V4Bpnia -Mj+HIaxX4(KI?VV0@`0g_0|oH&)%33SHQp?50>fU4fr#osn%0FA#!N8Ns5Qj|aa#G&?|HttO$4CZ9UD ->HoSyPqP-XD<&qux#2=^AX`-za++lqaL6K!L`QhO1?#Y!`?*<2-tjmlB1yNEwK*Pbn@`B-6#L3|te^T -mp~5g!tCc-3WIERp+zZ{IuIaX@XG7n%gvV3*w$DfQ5OMtr_}eHM0waDW< -9%)eFL96@Wb$km1&>PytJmDJ&Natf!g!#vbcTsCSE22|11RmaS3ik>GGx2wu31E&3RhZC)M9&Tp~B+l -0i}+q~tv8H}LhSC=ZuZ+9t@xu_kQ}I@|ieoC*mf93Eh0zzI1O6^MJ3pE--9so(anM;NaF2rfnt!o_a) -EJnfXFzUlkSWkUuxp0|M*6C$DSQzp+n5N%LKLpg^3U6FNc@KCG*&eL95oO;G0I<`p)z4-MHqCJoeWQI -&+Qvz_>FC*3TDn8j_n8KUKRQrY#eAORL^Le18G8QhTj7j3ATW#|1{fc}w1;8R*!2D4JudCPY3tB}ot6 -+DZZIS2Q;(gxvkq<4HG{?lEV=cB9lRxF)-**P5HHs`*68cndCJBM#E_aGo90N&!d4B|1;OI_3<9;WAs -yv5(A>sBHOM8mwN|TMM97;isx)r#3T( -eXMKnJAt)!YMzChpNb-Zy6s-}p%|vfdpkncg-A;ZV{U|5{^IwU>q+`@(|!hs?-k&+LN -r^bElm1(*w8tP@e9{^mC*ZsLdVL!DxoV3ea%dCJg4M+^oB!h$U}!s9H!s!*BiY#e03`<*B8+t}%kGwSmtx-`kO`f+_LZe+T -5g-$IVu|s=4i#iXn1-Xe;&7cnNDH=cP7v@6(CA7^@KN3yi#}8HJdlX1&t5cHPUD%k9=Pnd@(iEoF5E` -pQ3y5i&4Qr-nDOyF-BHcib2ic)&k(`;zcjaX%M&FI1mXIJflZz1*<phoFrSQ1riIvfS)OjoMR>t -7AE=tco7KD0y!Jg&h6niN@lzWy)+NcMI^3c&%OVc)ECXv}xk8dj|)>WD|wN{y;*RAbc?IE}Xq1UByX* -8^bYzhX5!Newd=_Y$4!)PVD*oX%ghtpW|C*0$>;*x!}chwd-R5Tarw4EsseOa@s>OasVJF!4dqLI}qr -xoy*Qf%g9|hl~}IeqXQ8accZ=D*OobyN~)LEII(#4KkPolwQDx|?utxU(KdA -jODW89X--91uec49q3G0Wu4ZsgeI-IUG^_v&m+$l#vMxi#;wsZ^B$f#jYE^^?sai1$JS#;ca*)2f`ma2ATBj2A$QJ8JU1P -pFfyx65F?NMh+@RCduO9@2f_okc#&Xrc-rUT)8i>6H7S0(n9@V!vHMWbMDiv>`+G3YX}PNnYcdNi`Ss -Po(KcA;%TMDYTH6t+C}&8v|P%sQbOI5tZI;{u4IhSWKM!@D$uF>W8vMg!DgZp_rNZ2ux+W_ -Xzq^O(##u24y^$=xH@P;gv^P6y?*)Xg0~yIx0Aq9P1!yrj<#AyzMUuYi+6q`pO=e49r-( -9jM|3*Iz3zv7)}b468rU4Nz|LMw9vu5xwGdI4!$E$?J4KBZ@sJ?s?iI3twrYzfd@=}nmvjP*!VSusT= -I6YE!6>$X0G>=I8$N!nX`K?k{vH{n)xgHi!D9a^EpE>8;8?qhO2dw)vrQjX#)Ew;8HI&F_kp#88& -l4?&z#XKj`D9>|Ra*O<;Om#RvuIKpt% -x{gr<9rjXy2j59JoA4ML=NJ+foIZU*8}Z$HK+$E3p4$4C=8fdRFL<~r)f#{VD`c2`A%s~Wgf|N&CW+* -HtLR#>v$%tb7BZFWVK5pyqp=(h0X>6`0{L+-4KSvg?#~}rE88!+jtnMqgSSqZ5;O3|>E}PfM8Qy6Nk0 -tw+I{H5v%j&l2l0M!$C#neg{$`ckK`~F+-2!FxH2uYX=c$Dm>(d#4iJI{qlfbRi*#E#?G^%2yM -@J;R&Z{9mU++`@HC~s{xcBuNe_E?-R*4-lz^=8K;NFPrmXRy9$*@3k?dfoq$t@`$b{p{a=5FRBB$?^< -0@*h#3IbNZ!*4=JQPSK%!&nexQbe(7;nmUTTSieoD`3VW{j>I=Z{}|&RL4VfY%$}OwW7UK6vY7ln2#Y -n3ZSFb_wvRq68&2@skgeCcI1X!dK}9ts+0l-U3Gs)(Op2y*?ZtdcVBI?ZKRih1n -6&4x3xhDay@kaZ>_ox4vx!`WkI8%;gD%cu0ifz^jNH3j6?d}%!IK?q{<-T|n}X5+E@jn(yWxFa!Tea@ -!TjGa-)C4HvE7qDncO>&)H7mnsAu6|M($uHE^2A`h!+)HWXyLi_!si%0tf%zMdAl03`2;3ds`TyKF56 -wOEHc58S#&p3-xg#z&mrvyJ1ep$)CMt(kbj-GB?BUT$*kpO4X^N*sQT(>1K!7H`O@Zb!Z#dEmS)6Jam -tcgq(Nx<5|~h~;aTu&pRECsf{~CUV^tWyxA;xour*#go{C>Ux5i1~T#J#tfrPHNw3q+QP0K;^;6o|sS -dqJnP2nZD;dG{BG}9{G;Tv~-v$y7hm!O>VI+L9~`~TmG%oBrz&0zj7P)h>@6aWAK2ms(pnpS`3UzqCv -008R&001Wd003}la4%nWWo~3|axZXsaB^>IWn*+-Xm4+8b1z?CX>MtBUtcb8d3BJ@PQx$|gztWel`jF -QMCAdvzy%J7Q^f%xYZGt5tz#SiMB?q)G%+e7^=*Ho%^x@j#aWx~&n -6|~K4!3Usf6hx(l4AGv+-_LH0`n2tWxQ?Lr*EGSe&a)U&YX>crAodBQJrSl!7~GZrg3UZJ2V96L~v1H -2(`Un?K4@x6-rl6|Kdu+QkC(!G#LHAy)Uu>bv*>P)h>@6aWAK2ms(pnpWLwau{U*004>r001Tc003}l -a4%nWWo~3|axZXsaB^>IWn*+-Xm4+8b1z?GZ*6d4bS`jtO^m?`fG`Y0@B514NkInUP0(K{6E`Sy>sUq -b@0}=OE(zo%h>jT%W@wvTA~UT`-x)(OOW8qBtvTFo4_}ldA*CR&)WO)pFm#iFs+WH+jA!*v5sE~}lr0 -`UZBqUufzxkt0Z>Z=1QY-O00;o!N}5)N7S+gb3IG6*E&u=|0001RX>c!Jc4cm4Z*nhid2n)XYGq?|Uu -bV{YjZDOX>D+9E^vA6T5XTpHWL2sU%^X1SPmTFu0YYks1KJkxogmC8Z?{hhs8psC2E&hnN&$?9izy9z -ZsH}NJ;i)yV*Mgh=Il0;&3=G&%971-_=qX@=i-JAspO92QW*B$RD4VPxPP*v -f?hJ^sH9G7YOY!my4Cn|a_pVtf>2Fr{NgBdv#piPnbs}Qo3rP?yggfz{EFq*Sx&2}{Vp3*H)iH0rWqI -6U~2m))4Afc$*dr=S;0!OSKP1+4Uov~yCuP)C3*b#dQa7*UaV#WK6?(b%9@G94bS)UC1E0$1s9j=d1J -~a-^~}OLFp#o2YIGNv#TBBGT`dhR*V*IX=Hn3t=pDS%rr{4)hbDgq(t_4MM3>%G{0t|cq`})XZjr|26zs|Zfd5IMcOfGNn*u9rl4E+ -bDGcw!#Y~Nv%`;I=AXINfPs%Nf)r%uh^>D#Nx&?Wln^e~(%{ay^=1Rqi&K`t=~m=Z`u9Y!V%>Als{7u -l^i}{P2c}4IxBalHf#!962DnYohSxRPK_L&u?7dqrz7O^^rEnVo%h1;7U9X|gICk*_uZMV -}fsq!9&7_i+)pi1nopgti$YsDP?U0L{OvpMqro8jE@)23SzZ9pisb~UiIq>yTtQOFmTL!xD)a+VpzzYC-e5LGg_0UsFp66OfvV<7vxu0+o-_qK~{}n50FO$`8xd;$ABx}@`{^7O5RAaXP%4bK#)^ynb8}`3#{YN9_%#eoYN71j^53$D -C9x|{hedArI?lNT8cyaK~_%^J7jS=G7>(;H3KylJ^3*!bu)T{44oTFnw$rVF9)nI7UVDMP`ZzY0T-GV -EQDwa2;YB2BKAED)+^u0U>(QA#Z(uOPrEb^e#qOTW{X@GYOac-gK4{b!4=DmREHk#;}X}Y)>gG;{KP> -OSjEp>h4qUMhJxLMR$RaD}p6+s6UzwdOUf}CJYBA8}f -^kb1dUIn9oL&0<~AD&JM -UAC|-QmJIy2dR~)U1b0El#=Q|B$Ro@i?$i|fa;Ndm#|5D)TJq`T(Bow=s~VmE3e}$vYp+n4?k&d=&N2YN -SH$xdHCihwUK4yKUngNntJ6XWYo6X}CUv)g;qLiBrz^B3;lQn$1x^Fzd3lNa+K#oZ~y}~y!e#<1-9x` -mMAR54#5Xk{sE=I|SfEZ&{Hyf+0q0nvmB;68?@d!|S2qaDe5qF%kSp0#_!ID60RAa8dW#K!d7N}HTyY -|SfPvcaNfFL)V+NqmO02APBCBjXwty``0+?#~O>up5pd1zljLOba&|dj~EXUAb4hrZbX@id@# -5#q1zBCv4Y6UT=N~E|o@+;X0WeChFZ}&>pGR40< -Db0`-6$6>M?+Dqni5`}9_=75@kARR@bN9oCl)%YUXjtQILpo2)oQqK4~%o2=vU@;UWcr$X_8TdiT@{` -{M+AzD9a-_e+F&X@v#1^J288G;$hn`yTpTbUsI^LW0zxv{8TN@* -tGWhZ7K6eHgq>!K6MgwTu&vzyIA$45eLc#0Wui5M}UOp4+I6t%TIXrL8p4e-IricZ$M&qJxjJ1k09N58q`4E?u{^DdmZRxIXCI*Vj+&)Q>V!l}7{VXQT`s+npHow -Ayn*KT=-UAKJlHwInr>U!)P8s)Le4648dD?T6@v+vB{>TYOG9tv!x#PF&;cZmnBv~vX6q@2F{$NvhC!G}D^<0nh$Fygon-!z9Fg?fLJYA3VV0eMWX+439qh_#J^>;^)+aSD+ -+RydVvJUU_1%Z}e;&!OzUAL5M;G4R1;Jx*SrBwU=qX`PPGv#y3{ -s?vP6s%10!y=vi33V)7Gq9z;D$#A&SMXvu7DH3DeC%&EJA*)0u1hhsX_+V^C!(0n7Gd)O4W9176ZPL; -oQSSmqCH1$VofXG>tJ^aqW%dyM)3yRXdByUKpdP91Ya7_qsDx6@y;^qr$UlBA*psQsT5h@8GrQP!m6P -PY`&jp~=%oTGsC#&wG3;AyHJj?B%}Q#y2(1X}%F%0oGpkW9@6aWAK2ms(pnpWiWG{hnc006Hl001@s003}la4%nWWo~3|axZXsaB^>IWn*+-Xm4 -+8b1z?MZeMV6Z)0V1b1z?MZeMV6Z)0V1b1ras-CBEZ+sG0BU!P*3!+}&PGnW*_6>e3)N#w>z;smaPL# -w#FmAJAtrnoGZl&lN#-EU@JTvC)Q$8Jzm2x2~FXJ%)9^VnVX`~AxWmjwT1D{;dT_)92})if`}j7dpKL -1r{fNx5KTTJba?Q#!k0Swa><+{mccJ1Ysh&DpG!$Gs!+QY@Dg-ljZbgcjHGSP{kk~(J<4g -hkR+5Wrv)uxW@}z9h>($b!SVqp;HmSJXL(gdpQXr9gCp{#f3rsY`^V%<6h&XZ_IejgR;iw*KT=es9co -4vtgMPGUeOdr#eWet$w*|9Ta#58$b$1&#qAci)p)-2(LM+L3DyGD|!fX9hKS -;TIrT@fBkyI(uG)AN>-|6!MCLqYh?AmHF99R7g6HLsptFB9L)Qh(b5_V-kunn{`HkmCl -Fq^NQjj$RW;~mvRlesjVPx?Nwv&1+Z6WgJ5&q%bcBn?bD>zKPrmGV-w1((W -t+Q1fKJW}YG@wcwaNIxQj7&}-J#$UFvp%$3vTHKdexTuLzYepRT-KB&b~lPj#PF*PxTPayABTx1QED?n>Fh#bA695kopp2Ni4wLux?6$+^{0VW~FoX(q&W+1_eVpGrYlF3rf(1vCzW --ie|2;+RN`HE%r=*Z5?as~}d^hcQ}mNP0@Xdlq2#J^69fu4qAcF5RTZ#~%H-;&LsScohy*qq;nlaA?L -4ajIz-x?#usu0BnVqtBQQx48m)dym0yJXqf|3FR>taL|Z!D^&hDV(XQr{Dn92~zVM)2`N7jW;7=l{J+ -Wn66~eH7moQqZ$Qz`rs~qY>gdu3lXQDL4sRKVCvIFGEaFK`nAge$|yED{^<%vwfOWD9m^X^PJ*t|8eA -z_s0*=9W$}v2 -wC^*X<6IX?5#F2Is#R)BnBQq6ttAl9sx|!vMlO~sTeflar)VY7GyE>4j5?8D7<9Si?0h!j-ioqsUkzD -)C)z8~aRkL1Z>TxRms|+uZ?E>!cxh$-l -4=TOYOI=^~|Ff*fRTHv$56dJD3@&G~^8yFCm>Iw4_@=cFY`wtJ`Yf=QD-!0-csv$F||x@{04wU2?TIp -r)h@7m}D+EK|%tica6NP7&0-pJFB&7W)b|gL(yq@cm -z6??jMQwh&uawSnS$g=R_WuV|%?{UXRCb)mrW{es^;5W_$rAwM)E{w-@7+SN}Ax6=`5Q{RH}NSOv|6S -^-IAq~Cb%MSKE5%jdd_kC6Nb$zdUqCai!UQ~BH0)qnB)6!^F;hDNjPucVBe2%UjzfY9r*moTJY5iIj& -i?9eL|9<-E)72l2%->J75>JEnf(?Ra*@A1`t=FU+ck<+x#j#mew+iBJODXK1i;k(!MU^FbE->}J&Bk} -2(8;{BFl_nR`DBdC(3#%rvjg=y()htFvrcVJM9agAtYZT|5lq!dFSjbHV0#*Yf@CvaDyiT|z5S%OAPo -pwd!u%{2RD>EVZDvv0q)yQ{RM4~`+iXWFGU53eMyTObOg6m25qV|sduGziu3J1sC6~UhnAJvyu}IDO1 -PN8D$x!gB(3p?cM;R>0%s@)j=Hp2vgH&Smyu)F=rP>W$xl~yq5m`(z?}sh_$`5wf&0@NRdmXo?M#iMm -kVaVVdK|uP#A%pxGL6(Bq%#w47_7C%>zctrRYz?}V -YTyWy7apVR0I%g9Jc(dLFlZ>|czEaqbAsniRpQVF*M`QG-V+nFosFq#@ZCeh+q!3n4%z*rjJli2 -_S*0b12F&C97wDhx@Qlwn?$WRYU2#zr5eZsFE%=3}sXqSm+T>`5W~M(M-vZ#%4S`3sOdrus?Ha>=6Rx -4QuSMO4g})WwT-f7TBvrfB?VS>nD9`3D0&sV(83lS5y{C=3e=X)Z+aU}wUFKSuPvjfIVKD+Af{axzC{ -`QS`=XL2ar^O-p`&}b_~7QMY -xX{*+#=|4QRNmv9lJx1hbzbSaiR5qbMf|s-{+`J9$W{OTEs(ooPg7zy@c+AGtfu#0 --pbVH$MLIbx!lxke#aT|xxiD@Ye0^uplN0+h%k+248nSU3e92J{#}$GGj{;;K4%b_JJ_EJTtStrKqpm -_=_cLUR0)!#i`ioy?bnG?BTM~%&^lyKiB(K=D*P6x82>d>&VlOr*s;f6?rq+8kiU{YdT55n>=xEQ{d2|=x%UGzb0p_~ZDF}ip6SftQTuP7*C&K-u=>s>BeiS0l=_(6WMZw8& -oTK?_Q{Vmi&`DCw4kXB2NU=Hs#oi)K1Ne}A?~9iwf^uF20+)JtOfQ!9B*Qw#(oK^8n(f)-Wr8b^~Y)O -5L=wD+d*jAOnmAq^Sw&=L3f$y1zPTJqz-X%}@%X|T~PoN=*9Vm_9Iu4+0dEYGIXz!yu%VBV=Y6Laf~1Q1aXWxA&vt*8J!?{zXMQ90|XQR000O8;7XcS4!*n-cn1IgIurl^AO -HXWaA|NaUv_0~WN&gWa%FLKWpi|MFJE72ZfSI1UoLQYwOIde+cp;eU4I3q{$LqUmDnkIgV6-&+H~z*m -llb)VkioYmKd9>ENUc`%o}=t`#z*dN_OO354a1GSbBW#@x9Oc!bd+Mgyebjh>(*!pW@m6lJ0*_@)Prc -|&8&Rj^R!FjGw_sf{UawUaeMc29$oH2^(ki-UiztFA7Z(?VZyO;sk!}Z1mgGFpvNhAmWTSPX7AG -h7_xD+2_sN7@Po_a4Q<~~l<%KAjAv3;3r`2Zm@(jK-Ua|&)tS)vRI;BxmY^YRB=QW~2EB*(QP%agukqcL%Mt -W(vTUg8w_s@(lZ1&saUNp}MRm81&V$|71-dN^KDTVCR9`J>IqmtcXkrkg&F53p-S@DYNUE=)p0_mZKj -xg@kwA=GQ1@=6kWU9elNu0$ti{X!AJ=8(&n{)CpF4j}WAQS()W9JKhYxz22n -g8xP!S^1W!G{}g$+MxywL^^j9HMf?i}kuv%;$0%o+;;y1b=ufCnl{zlI92fH#&yJxfPo-NPR+2*afI484gKFek)d1fD<4kK -b!8OLXPRHM{L&PT}50v&q@JWQBlVDQ_+bn5{hcldyPkXauWXP^Fq@K>VM`EpoE@c%43&E^1(JjKIl;B -|N;XDLB5nokWT$%qA5Ajwn9blUC2Du=*$eSHlWrlU-QcugGuU4#G09M^;XZqZ=6m30&FX&D`SQNjj%FqqPz7CT7`DKb -s*^z>_fL&GMz7+R$7H4MMpgIW(kNF%JriXj0%seFSEj@mknn?ME(jAG2cImk|Q)4|P1Y_)^J8b3I;E4 -UNj=iY!%ta`9Zj&5z8>Vy+GM7F3t_L$>-;*uggLF0TCnFhc`AWg;Nw~GOO9xX~+-r7*els4i|B3$=gD -_qmk7Mf4LNK4>*02R)S`b##RmHp|69g0WxuS@*iR#VO8}Apykm9Iuf)cJv*y!&e0SU)xr63Gm2u+l#C -V{mZ9_SqgLbLB6Q66DF(ikU~8_cSeSmVypNQRLN(?Z)It4mWbd*y+O`M@!<-DA>#Z9X}jI^X!v*kBV% -%glHO6Cc_DlQpffR+|a6OH)7ieRy;A^4*6UU){9`q{DtV82*wNiiy{&768YNOP$Ii=DTTZuY)-Wpf~J -755`RM1D-Hm4vfX!jcP3uET<%X{ro0JVB(a#f?aIdi$55EeOj6;ndB>PO0yG4DPvF&4Wx|Mzp_FbKt= -B4lWETwCXyilhgob5+2c4ef{!)2pyjJil%u12gVWNKNnaEXib)Z*5iMHx3iZG-wHB<*9$aMtk`FI0Bb -S!YofLQ~cFQXyQ4;et3ZEfvW1Sh(Hu@9}QrcG9l+D^y$p!^lp--W{>7C%{NLL~dZ$(>|ao-F5jm!ymP -Iygj?Fu)_*PXn-kAEC-l@+%d4_~E$C-9c=K1(o>Veb -NNzFiiSCZt6ExS=;1%KNU-}jtO`R9GPJ8Q1Rx!;|Q&cJ0;MSZH(M8lvPWTWCYfX!P?tXpr>e^xPLf}e -W^as|ExWolYK$WGvLWcbyO19U@&DR10xqsfgyL!pYH!uU@H4NR;Zm -_nzcsQTl|4RN>{bP*-s6HtvF`Q=BZYZT4ZLSgOfjW~Xxwz~=IaCd;Mw{wl>)1Mi6WPt=Ig1qctn}xc} -=$n?KGoh=~6Wrq-`>_)pCHOB5Q%80cQiV=asLd>{v0nb<;%;VnVum=(+jwY8w3oP)h>@6aWAK2ms(pn -pSJ~Kr;gY006TA001KZ003}la4%nWWo~3|axZdaadl;LbaO9XUv_13b7^mGUtcb8d1a4JYr`-M#qaqP -B0X%EsGfId84NadDeO{4cPk{Gqc)~VocYgKM?U=QI$asXJS4sML&7t_0xtsmKNpzIV7vtwiy$1~^g>^ -SG_;wHSRh^jEvq+rLIWo7AZ5pqMHo~*NZuxql?sKF`Sr*M6AjqYK!*{orw4Xk`8dW(_urcF -%a++ZK(^YbD!Bx=`Ct))e!Bl|_h{_W(*m&l|2;Z<9oO!mzmdP -h%(M41SoHv0&+N>Xp9FFp@KHUu15jHDipM(rDy!k6<1SJ$LCOdGbIFZdF+?~Jj#-Ti_=a`NmKP)h>@6 -aWAK2ms(pnpRgp^#^$Z004Cb001Wd003}la4%nWWo~3|axZdaadl;LbaO9XX>N37a&BR4Uv+e8Y;!Jf -d5u)dZrd;ryz?s-LJx9b=+L8p9Nb!M4K!_FI|Yg)R%mG*v6V=bkGMh~-`*u9IgiFcd5}bMXLdNdR1`% -_<9CO~nj{y}qL#eQofWlVe;y3R&a}D}B^vPC!gjE8vamu)1GeH8xJD>w<{B(vB8{%zRZYL}v!J=uEwxE%*omLGb{U!|STPJEOWNxfxEdMF(04x15eJ9J;8u<^^F)(kD$@T4+23M)veEkyV7l;#&fz&d@E!G2n1IUjV5roOQOMGQNUqf?oG#r -rK94g{@Nc19zz$NI!*p4vz|^KJ%n+1>N15IPNFGIgH01JOm6DuC?p6;g14a3+KJuETA&2l};Z+-f}7z -`wLJ@0|XQR000O8;7XcSfa#$6aufgn!&3kNAOHXWaA|NaUv_0~WN&gWa%FLKWpi|MFJWY1aCBvIb1ra -s?L2F9+q$ve^(%1Y50TEutdr9Z9nDc@9LMLzQ^!tir=4khr{` -8Pi6wHeSS*Pxz)1MLGCq`!g8atYpd7c~Yl>E%L15GAmiN609nCR&Mg5VrDp8<` -uirSXo^PxRkR*EM+DJJWJRbMk5Bql!-+p^Q?>pL!f0K*MuuCqYbZC=4Y8N?nK4d0n74#@G1NG_eW0$g -JqGg*+y=n_+Dg5UPN_~rgHvcBt9<0hOjb?;3UmUk-W+C^t34QV!}?;%r|l^^17mnkHPoq=H?9zV!ULr -{q-0WXW2bZW%5e!L?|@gmB*kO4H$gR^99Gtf97c|)H3P%YyR;{RK+AD|8uOzc!3Jbw%`<)rn_*T2mtLz&6Sl$i#5g>LA^ms?O|L -5{W)1zL>Pn_&gkC?=t-oILda>u=4KGTun?eK!GC?95uEP(lPZ6)HmAMhmc_|k$UW&^~b1z!tYfw%D10 -bO1h0Jaz45lCgEMR^oh20VH5sby6iuL8V%HzLtgS1bogL3L?ue#=Gk9Ubg@$J>Qckz0$5^L^VvLKD@s -^5-OnhU-@8S%0z6M?A|sUy~|07Ss9dQsIy!sqWm0N^PW(;pVc)7I^|2sBW!@gL>4a5E~GmxI}h|ST5sCh(sjnZYfg -OhM06iT>-pc=nH;}Qz1JBz^N(S>J>=zCxx6xXyqIAy*&BjHEo1e!GV$xc1HJ!-O~Xfh6%giqaS#2TTa -*yKiqBc+gK5SpMp!!Pfrd;!`HGbfdzmJ*9#m$!Civ+Ak3_+H#luHgcS|U2E4hvJb!Tx_t}j7%v0E3_s -;d%Ur*u2(<6KJ>h$L7?DQHg9(j=Q&DrbI%eOah<01ziIT$QbUY6_yNX4=8s)~AWkvHIT@jAP)j#q<_| -1|uFW0}b+jz_RXOK0t{4&co=viHZ$7!bc?)Ih?(3Dd#Bgn`TozMj!CC#+K1Fhg=D>|PXd`7paFYWT4b -g}IJ$0c@mSgx4VisJ({yN>DZdHbW#jU|{+D?;ukV>R4TXH88qkZVW7nDU9Q5L*kSnYo^4x>4!GfpIR5 -5e_(Tg`wfc*oGp}Uu~Rn6$t3Y~%>J?x5bhKh$*8*&{ph(VBnlzYeDW~8%C{`dVQN6N<+36vLu92W?)4 -178HI9sMUhYdnc$EJl?PCtxvTxF)8c({Q0#M~LPpY*p9I8xP{R5)v>9y -X#`0?mWd5LkPqN(Q`zo=V~v5Dt!1@NB{$Zam`59>kz>Qgo)MeZGOZ3_yAaygFwzC%7Y4=|BbQOqZ$%~wo*t^Lg?Wo5UkDmw(+v -nlN{S+YWt6BaR1C(rRw?{(jdPT2P7#n=1F96VxMNnEi6TZ>kXqwbrm6CHWzAFABG~Z-s1`5-@m7v4x> -h8ypY#{dG=&4iPLS#oqD2n!UFuaESpm(7oh(TixvXB#VPL*Ata1`58lqOu!L>ylY-|3pl)ngt34X|Ry ->>7Wila>jvlpj7&p!& -hc8?s~rUo0-l)FG3vz$J7gWu5|er;X=RRJn3ywvQl5550_@FupAz9Ggy!+kXE1xgpf>-?>vl2xRLKT3 -sMSX#ltjU@8ugYj7N)oc-tyEg>kcvugBYRaKkm?|%0L{O8zMBt>2vgCG`V9K$T{8UyK|95%jm2y0!+T -lY%b*4OS$t$y7b#6x}geIStY12g-pJ>#q$g0?{Q{5!y02DT#C7A_)r)`^BE?O0DPU8HO_V=cT5s99j- -4NwW!=x9R0iwZ)=b_^t1Vm}NKB{*QvT`3uRoQ>43!iZ0w{Tr$RU}^+(|BGR@9o&%&K+wJv8lkt#K|HpT0LvvvP8rWh9#ugbJX@X^FNW?Lqc{lXz%^630^@w3 -G6Aa4c}f+HG?wS%2J6ZyYK52-0twixdQR?EN0d$YufsvdS+SpX`m*OAy4mix2ZIi>?-2_+=ybsFf-Dj -7B7?B45W)}4AlBmd5Fq&q<3=88ho|fmt6A($JZ$pW~LwJiXB?@21i*`rp5SdGw-EwH)t;r+kx;wt -Lnt2DWOWq{@ScfB-u6IM^Un>}gciDdgGm$gR8wi6R`o0X?R5Ol{)-pb`?|0`KKRu$J(!x4I~IQx{rWX -xfgtOcfP?&a1vQx3MZTwMlvq$W=M11;e^|PfVsQku`$fg?vZ9-aApB!5pRemZC3klSNf-Wwja&shB)$ -IZG6SjIXgY30p{9nsp1~Bf>gEj2V)B57q?~H$ZxA(Sqv(LO=|C!uxN9meTPKi(yRjf*|qb5kBqdimTS2cd$fd859faz --0LZe3*Xs2A#GSvT9ftIq*fw)SYMKG8qUr4I?q190(5?Fl4P6G;sOOpWu-d>$|z)TVSw^TXDRR;>>iq ->$HCMlK;nsuz*fLSNu(A*k$l#%>`X4tbd_vQgRP5~=fibGxEhONLcEYyzG -ppW&HWnOfpmvTAo#2kbN512ov*7OHZ{151iH{QGe`IctyHu#k{^d1Q^Sd?@Kg;2XRpF(CO#u0+Wrd+U -i5JL(yU|KMCT!S)OsYdz60j-zWN7=`g>S7Dbul7v&?s~k!;{l1tS9~H?b+4o%VCf+h7+<(WU-483OkP -xgo1tz>H&5gSbJy;(}YHMNA@h|;_~8j7yxW2vq!5t=J)kLDjPoyF-VqJ4CdKF5O*d{b4M?iaGs@1g1Bw1f3@(a3MxlvwU#5h7HfdM^I8F|US -nu2X3~B=$4~@M2$R?}RE=yy0{&NS{P^Pq!eZ6OIDgwV(0G1x>G=oazbW*v>6Q~4DL@^(JT|Q~(TZ2m` -&FWrP%p%z`yfnqs7_Zap--AM3%WCu8$T>6+6@|ZgiaMZ8xVB*7R}7Ie7IHg1MIL#=X`O8w4#QioMYr8 -o}g!@8fjg|YB!MM+Z8MZkJAdlOV_X4wK+pn9!Ql`ybY?UZVq*|+9l*QzZ1-)DHtpr%BFQIFin%u1lqh -tt!Xtd%=_u{*qioRRLpd01!gg~bVeKO=^C|Z8h7y&d`o9+&gNb~z -OI6)=BRwH)|_K|$bVQ?58zFm{+xViyLQNmVxIxBr_-m?u9`Jntytj=+Cx<|n|VE!BX=*yp2n$qVz-_` -wU2NQ=SUZ3DXAKcyJKUeRJNx$RDRKsqlJ%Fd0F+v60L^Za7;0L11T>61GQl6)gnmp&M-h_Yo3DetbyC -%=xL}LKd3E1u(h;e#gMY-OTkn7$gW#dqRMuF6DU`<(xhP>EpCcW@Nbt%J7AZnDQdTDhlOC24wJv}3C7 -*QI;Ls9_VMG#*~TQgMSV|4LE76V5dGx0Z4m-~xzFsSEK&VSR2-f?sMadbGJU|=U_GgeLS$9?pnHJ`VQ -CL}Oi3KK8u5VHM(gWVUYo*~E@~(Y2#pIAZgWr>E<<#=0fJdLoTHPY{@Qk=4w%{}wyI`ra9N&dn?WpY_ -1+qV_jq|Zr$=Zi6^ZE*jIyU|erIGJf^uN5wMQ1g8O2U)ElO<9LA`3)Vc|}Z*S9Nh3Dh~K%><#V)0FJ! -isO->MF--E1~6im7?Euy_6TpS@RH?6>gePU@&JbYKU7CkWKb>4BKxMG+jtgd`+s#0^DA^9TTgV{@;Ay -Xlvvy`Uy%!F+vt$i+RL)*eee;Eke~-$jgcAO0dc&!Qt`x3MkKVuFROP~hiI1LeFXr -=E(X>VwDr$3i9=3{_n}PiQpQVskrezfyhw-xwM!*TWu~{R>3C<_H-PcMp(l&V=kS4=9YrVYf*grdHVe -^E;;@pf3yY%^k&UmTX!D{sCb$Dud?J5ennEl$TXo46C^-)d`Ksan}4+E)W&u;_5)0qu&z`*q+iPG&zJ -JiwdJL@{6hwSo_0*>$X^)q5tQsszDJ*d<<=J*+ev#7Z;}|H;tzyfB7FQi%tUrnj^he%2+ll)EVTioCr -5OC`e7+#Oa%R+!4NObInNKlKn(WV-@|Iwak-z2W*u&@_BmV{-y4tU<-T0*9p?lb8lI>Q-Zgr9o<(cTpQi^~b+utYuIgwei%1`+I<_Mx3(2*x1O39FVKmth -97&>tJIzYJZ7BE(A=AoJ4e|}!1C9sjazDi#M(RXmDMblFBNq_kqu{ZRv5*vBcj4dQFrT_3$SthVcU|p -19C9@AUC`a?7ZL)o;3tYMC1m0O1q;A8|4!LY>7kb=urCaCw!dBQBXe*3U*Swpn3_pNpW?v=H{-8$8T=fWpneMula)f~)%#aw8>u4zm18hf2hC3T$U1S&RrVt<^N -vxxcU7+evY9C1R^i=yXq%ibO6NaBw>kFO)>XY`4Yr;>slLDk;#Y;MARJMJnGBd1iw%cUQM>{H#m# -flc#m?83&zs~I(!h2C~B?jj1BHvE)#azlHGtue3QZ^)bmM;h9qO@w30J?(Ub4aZb$(iNf-EfJZ2hEUjdv4wZ_0o`Qlg> -_~wi8FMdup+c)d+Jg&H5e&B}bSiUIjoM-bC^L^WA|Ae|YMwIts-!SByZ7o8E-a8VRU;32%_IK>V5awL -O!-AogffiQ`3uG^Tuw@!gg0F207&PGL<;%+{sL(nm4T7*7jLwhIQFJr~)e-FA*&m) -h4f)7c7i2SY_mycqmega5CUkf5wQIrN>(6?7^cr4%{Y=gq+j{3|K)zuf^Rle)#^GMg3mAhB*SfC*VfR -m?XV0kmnL@r_bcJ8hXwZL|!X5$MLwsAW6YNdDzXrFn550KZeduBsSr$*6cN31ktY+V`IpFo_2}!|=RG -P9lZQ0lClMCKXy~L#Rn!p{3VFABp9{-h$y|Z{wd(0Dx&szpr7m_K1X!XI`(u!(9`xj740|XQR000O8; -7XcSC!YGyTLu6C=@e1 -O8cY<%n)!3Edxw!rVmXgI!kN&f}~ULPPk5|{oA{HcajkhAZ^+vnfSpL(%tTN`+fUEbi3V-#$PKm){I0 -cJAYpLbUL$@G?1&b$`E8;W|(7P4cHaJ%diXf&yPo)PL!x}qvdjCBj_gs*m?H#4$L?3BNheP6)l(c?Wh -xFGQq-N1pB2(R=6_+g9sOkeaOlI?XbE^2(c(qGE$^;1yPa-W1=`52cCzEy_gQgTcc8Fk%PA$gdcKf+8Ehp-kMR-V7m=6acjVTM^TS0n9g+F069la+dfb3+I*m=nYU%WwC6a+=S8cp9(7 -;>3!&ZyD%(dhEFqji46jOwi;LsXs*(Yv+xj(H%1jL9Q*LY^z4+3X(=-KR?JE7=Nn?W_@}N`C{on#iaD -D&n$6DP$S-T$tR>~lgT@o3E+yVJ&OtkH&wdd4<_R8Wnqz(+>NxHdBFA2|W#_4PWa5~%v3P%PEpfd55y -u0cS=y|`#E1Z*|b3zCPoIBs#yJQHxL=~1w*=xHgu -}53B%F^WF+xOZ&grqW7<*x(R4#9ebnhn%TpSq=V49Qi;Cr#s&%9t!T1WZfV0KB1=*iv3$;rzSe6~}Fl -WL7{*{5T$J!r74Uc14;>&tomf#y81=o;LZ*K3YN$m0h)SrDFZK_|RU84JXSBVPrBsluHuQ_`rel!sgX -2dsgPCD%&!7q}Gs&f{FsEv}f5gg(|P!_pp#qms6*z^ep^%jmfId8QCt$w?!e1t5|MOku4X_-}t%GeK+! -JQ}Qk}Ygn^b$>Sv1yr{P{Bc_VeSt<V9!F6lg`R=g$rKXQRxV^B -EC#B5X5HZ;CsF$PQ3|_io23+hgMFA+Me0>u8N4^X{;cE+Mcz8ALY -sqK1%X8%Wi<;NpjAyS~%$ZknHl1M(?cLYNGaOtNKO?u$f!RAN3D!SMoSEYBhId;FAYRqqlvy#Z~PI{4 -CPD^2}y+YbWb=k?WIJxzoSEUyTfxv^g62c`=nmKa5y5aPYPy?St~H(Yx{w_tZ`sh;I}ln;z`Wo>Dq@t -A+-vKT47952!K25l4JuLdvtyz}hYFMIXq=b?NBFE&JMU1odS2YbXJF_1f6NE=i~OhsQ_Xl~5pf}Lc_V -9I<}BvB0J#FdgMkfL4TF)F!45{oKvD?J((XeM4d^%FQ%=>&fg+SO!Is8M-sjAcsG4p;Y#IybmNE@<4O -ad^W{E_s9E>?F5t~BZcMtpkxqGS#yftHMiu5# -0)kI%SYI}_SWJlLmPhN%NMsOA&kY1Km{YFI1AdbVCsUKT$iRObRSWD1>)SApLvD6K(KY=IzbDK{eL({ -+ORp}ay1%#ILfw}wyVi_XTz4344&l&Ey47~IJ>6Z$T)>71eb@!T1TAHPCAT -nBlS`@jc!X3^%+TV4!-xN`!ACKE{HI~`;kn(){{m1;0|XQR000O8;7XcSICo~^5kd7D*P@Ls1B{McZ -s-Q6;H3*&z4ZZ-x(vlI=LX#bFPJbAUt^=f!z*m?(-ml6^0k(kiB+r4oj*tm -1050RI#IH#I22wp0Ru)Qr5Anal&)WWKOfB)I3ujPKzW5fv;Jjv_w7@dLkAD)fF)yZI}B5{`N^Jvw}*+ -Drj-VSw)lGXh|nJajz5L@r_Cc+u&}9Bq;~rIqZ|kPUrQNrGlXU35 -!@>RPZqNU79P$h0@?5cq%z&zUYI*qxGJ5Q!WE60sVJjfD|zheW4fqg;~`JVcP9)POMNvw_HV!FLu5a2 -EouqD4W(lyEdR)ecwDTV=k(FYvfAo6~D9N=e{LS}w+94CI!KCF3Ms}JTc|jS(VeNT^wjG&AR%7ZOvu~O8wP%2qv!8dXEk82dh -%2tV!}x1bv9VX2gskZj;Hd!YaM-C)XM7pIU9L0&PEkg7kh&NImuH{6~q_K;A>^OwNV8m0)qwi_m8p7u -H7gD!SaKsw~k)z2Tgi`tp0HWJcaX)`&b=sZq5HRaLG#j)qbEP4K+CE^+sIF`^b-s~*Qpnk?>l -LK&E3fMAk2FlSY^|HZhISu+Wlf_EYkRxvOzWN~9G$jeNElmrW1RRv6GNhW}kBwfX_X`h6uk(2}RGoep -CEtZ~0DP%V?MP&{(6#9))VLm5FhJsVYs4pk(+sn&OMpp>m^}^S+>R4+!flO`ygL)P8D&WEB)H4viiZ1 -8yacd(y=epX+#uAAi1c}#pQWIc}YlQ6B_llVS5gVFw*2}VHO8L_GwnmZ>nK7^!1dSotCy`%^`e2E?oj -ljbx=O;Yttas{2;g9MIoq~7Otc7qEDgxxoGP~6l=@uSrw=H@pnF&mlFnKb -6AO}9kWqbJiOrjC;O=HKK-HrdPG)bxK6apLDJ-f^4rS0d&G;WsvA!E5T!^ -g3fQgRM~q;wnM+x+ZJ^*6I?0VpP_v?K;06*7MrDo+_P2pg=0>Y`_uBvqp#Tmu&sGV_Me=O_z=TtUQyF -Po@+^e|89J^zk~#NVFbJyD9Q^_XM!}Yc68oDW*8awN5KlB)V860{qhBHe5Y@@j>vbc70SFMj!%1o*cn -mqa8v#gEhd9lk<>Gq&fLIo-0t}EvK_Pm#VOppF4UheB2%o-eXy3VTEfDxVt~Q-D2?dTmym?-$pJnPH; -OaSsRvN6@3t}##i*ZWfIIC0%>BE}e4LOuK0NV39gdnvIH6B?rcFnR-_K=^G4*TcT*Mp0bi;HO3X-JFi -w@9BG&2(>CLFzaJz2;53$qYX?u;H7k#RQ6jmw^HN$K`i7hKYeW@P%S>V-?_&*E+j-K?CitD&XSn@w!c -_IsNN43Cs^3y-P3Ywp|VmpC4`5DXjdZn+5(qvRyCk)*U}TINY#fSouqL4E%p&$6nkT=pD}4Y)T-iPts -wH(w#V9~a-bX!59J%;ThbJ$d9yD@T&0%d0b0RlW-wyfw`LmrX)CVDQ%XDptT*HRiRjx?P3=vxzKa -}iZiK+v($(JCoZ-q+&s&0LrSBHX>7hjii`H5P -yy9C@RPUA-5ZoABQlMCzH7qW2c`1(fFQ_Sqpt(Sn+gek8|~bE&HVV#;@N5qfXFT+{MJye4SIag3)T*s -YlpptU0pd|Tkq;VXlr*B_CTPBg9j?u)()yh&L`J2Gu7CuZ6n@r|K&}fGv!7o4?}8VI`bgRh4@SmerjeT%+#$*PU=(28Es-qcl1;Q9g7nE -xKjHn$Of`>W=S(q8nkPMz#F)gZA5TWb;qeW&CS$HDCfhS{>m+%wA}_3N6SaE2q*qJ@lM(M!1V|Ar@p{ -qPWq|7Ko9x3FxPM&h(Vsx83*2)@Wc_(`hn!ApKF}awI(v2lU0Ev3v$_ARp)VLCbFB+C+}oRhUzKCLC* -3R5bkB3#<8XvxYVYZb7l-Xc`D}lmyc&U$akf#a1cR5nBG32t{|!}#2=$yQ;J9H(;C8v%mFD*Fnc!>7*hc@HC?{HG;* -{-_AaspS(W4IO%QU=LSS8_vl^V6svOFjexM-ZQrJV(Lt|uAlMx*OZAo35>#=nN%4Z8KlsJkx+`ike8HklHjchMf^MNV+YQc+PR2d -mGcDKxnxF;0-u3GIZ7@oJ2m@-fT`<&4jgOyboEr8Ucq>X)_@X>OfPJ_0#5X=moid3Hh8}Lx};;#Q#Dt -l^NpYiWkOTLHaEzb&x7&v|C`eGP3gY?P)h>@6a -WAK2ms(pnpT|tzyVnS002J%0012T003}la4%nWWo~3|axZdaadl;LbaO9bWpZ?LE^v8mkikyFFbsz8c -?wf5n>2NIBo5QyfP`QgyCD>1t-D&ZPH_@o7sNyGgggmpnh7D{Q)<;u;wmauD45XdRZ-4QG -!e1Co=#Q1K+_UR*!!eFXrbHGxmn+A?HfQi#nllTDJY`Xv~59IC(Drfz2V5JRm@ -CcxkvVk1g#81)fzrvS{@@1(=^w>+h{zSgSRh -5ZFdw+MW*Vo%!0c<@`T;s|tb)g_uy2C(2sb7(6E9L1P8Je6Fb`Gciqw&deYK)a_f7y@!OFSh(t=aUbH -C$dsS=}3At&52^2(h2#1#|TSP)h>@6aWAK2ms(pnpObGiWpl0000IB0015U003}la4%nWWo~3|axZda -adl;LbaO9bZ*6d4bS`jtWmHXX+b|5h>sJujVGWQOLvt$-?6B_8ZEXj1zz)M;$TpKGl_gcA()hC9KKe8 -9Dg+20`S`>SC5y#EMSMv}Oj+scpjrK$AEkco4MFXzWD!Edqw$Gs1AFZ%ixrqU_{h*_o5EPb4HzO3RR! -`ZqJtj|@4bU-kem^$Gq_`jSZm`5wmw3k%jZ`eD^hc@^UKJ1UMU*~()#=9b&SFL_38297E52@ml%C)%ln2H;8BJdvAQ)S&o?$-f7UCO-dZeK21cXsg}@t -5ri*gqeb(0M!r}_QfYfcxw{b2vXh|7`G}BWN0cHN}~i^}eZ;dmjmHA2)vVK5-QFyT^-Ha(* -n|ai_}$?m8;HWpr98TDdn1I<~9nRj*XLlb0kbUY*T6*hD=}?jksV%W$+6Zlm5!5M8^S2_C$06X>p<5C -vJugpwPg%UQLO9KQH000080N_fR -RxePjlf4rF0DwpU03QGV0B~t=FJE?LZe(wAFLGsZb!BsOb1!3WZ)<5~b1ras-8^lN+s2vS_g7457%Qb -R)Aqhxw-96sgXTD+`A2x8L(N!x@s&uA3A%R6x8EXXcsb{cVOxlH|hZe{| -ZmHqD#nzSQ>Oe+Qq7i*K6UK5NU{vMSr7%9}!~wo$iQWw#Z5?W|U7USE~B={NN4zcaH|hqAp>ev6BKx2 -`QKtIFNJF|Ab_)9lopHhQ5fLC!OyH(kZ+WmbBT0KOOe3uaWhE;8ePH~XXe-j+LkaX~=SRav*%)LFF(w -*;(LHPG~+SGF}}y_MNHk?JPBYK+y@LcQu*B=uFc-^0{}@}w?QXR3V$v*=q_)Ax&u)*P=c6nxxncSdIg -Zlgcsdf%#-^!$&;G$xu@bi3Vg<)^F625T=a@+z|y(8}-MFe7;}@Z|@S?XAkx+H+WDtWiL_a#!X!3P=L -lzwv`05(IF4r&+FLeL|4>!(QhtVp9SSk)@j~r}>R3w82gC#u%7W9SP(vtFx^ZR;hhcl{skFLY1jb7pl -+zVOQ2#9qx1sk_Y5uYM#}o0amvQwFLpyu%{-FMYGGw+Nx%QkDOYmtS;y`uMa3{Ot~#V@_uG>`yLQfKm -oG!MN?PDlxeR@UCV&oH?=KMvp0x# -@Eb$ePcn%(c@q5l=5a4ydRhVkH_L=$~)Wv~d{UcS;msY)f^PMVLE5R2Ub(az_{)*E0!(Jq0V-Cya=D7 -J0A!aoakUE@Du|J9&SQzE99Oe)xZy$pH7UAZPfu3D^1n1Kg!M|JEOkM#Jyyts^MIWYo{&L8UL6R4wb`2~cxVy(Q4B0Ip$|V-Sm8{neP-i6n~XV~LPP2~7$hFM6hb7Z(FA=k -;2lnK^Pnum}C(JKWStC~ZthP8(z-0>PQ62&_IA0%Y2Ex`gOMoEum;Ip%~H8Tfcp^}x$@K^3(GM5a8f2 -QLZBRSL0XT-trZ1DFQTy$yKa=@VXU~i#*4p8SH4vYY03+l9)%gAN7J!F}{Hc1ZyHK!O5Xf=_u?=bJd5 -R4-`0DC3dSicQpF*`$fy0cr}A5{XKfzBWzKK{*JeTTtVuDBdZ~9;J0)vECwL -UBwDj4%j$m3Qk`QRtZ1`hRrC8JN=`OWIj=8x!$z{Sl>>dfvQIXAfWuGpv9KUJmO;zUH2AaL;YV2Flk6wAMu`8xB_ -^&-Q-siWF6F` -)F#L9=~yk_giLur0?u&*}*5YcH*O-&rD#y+g!ha>5V|Xo2g5VKXpQUsYAl4eAd{$#Q7SJ%PdyChfS}=0 -gk%G6)C-4`o66Xxj{!M9sVPx^FCk*VpNm6=}Wx?uXaG5D8$t{!>}$;HmK9ZC#a=Z5qApDv)QO7gWTtL -c*7Qncss&g1-5r8ggJ$gXUdb5$Ax#nK=ghW&=a3s~fW;Qof)4dQMUWBZwVtm>Hg|ejf=F0_zWe%nPCm -Va)}N%6i2B{_P3f>Xfy5aNcS`|C;JSBT^WDv7=eCPE+dGS$v9qw)Ykkk36Iu5K%&5>w;5|yGN|_{BuE -RK{|?@ODD5)-zImTDD%crdsR29qJv~B2Sc^9FyJy1``(ds*8fKzgSPqrut=mAnH`9XD&U3s;*0wO^7E -8*?Eh=&OtJczcP)X1GX)*zC(a9jHw42ew>9=L&|EW)!o->=Tc9T>YaAc)dn$Drb-*HPVf$dlb3Vq8lD -XJRID`*^{vv+n6B54&@ddt$8=8rn`G9B8U(F$B+R*@(WlRDu2$Zd|!^{X)aXfKLrZpxt5-q29iLU03lB3|T&-HD$A<}1nfzGlP^*tpdi^&D&*0TD^K3ndSjdbE0n -N%W-V#d#-A9}n_pxeuHMDk||G$!{m#pzHR2$TUmCQsS!QPX_EZncG|_tVAcF#cIhb8$krPvXM_4&SzT6DruN774$>CRy2;~6aNB34u}{#Y^L(CECg -DY(OE|ugC_cf)w=E~^d^&*?6W@?(DgmT(Af+END#XDJ`+mUF6`*enNLGVc9sCiH@#J7HS9eE?M^R2D5 -7%oR|~E&I9N`PVKM%V3xWyHTLzw>mf*;R}D6=m;NrtS4_It}lE3tk={1hBF3b(^{1Nppy|qLzx3K3hrnvk1I1nBC!`tvV4$;(f!>0BGahnftbT+%u -2=#u`ZDz1xx^f9Nsj2jH!maX9%0{LA-hc9$!>j3>#Yc=6W-3=kZ#ktKK^WzAQj7x`0p>wCvOlR`7b>pv-pVr!p~%APJ@8{xyJQ%gSQmclqjt@p!u -^Ycm&^bEtoPUN3rc&J#CGN1(i6 -5?YvNq@RlBDC%2R}8avi=DRY#XkgAy%S>{M%Y4vfPmx6zHcH;OE(SNd=YYKC_muC%8)sX92S-n7S=-b -{T#)!PSWoLcR`JDCbv_vk>PeN1x$Ef94C$$WBjo3mC547F -;1`TuCXHd1W^c9M&_VlX3w@0mV&pwIW?GOb}-H{?9Y@gT4fhR_Lt4FwCzE)IGu=nGv^#`_Ub>-k7Fg0 -^@4%&v{U5xlJydD3GY7>dT+^?t-ukx?76$ERK}X%|kc+@tP_SGPP!j^G`W;_gBp1j=EsNcPwhW1nTe3 -Q4WOfC%UxkYkxm%A%_eloz|^!E6D_DzcmK}etS_~C-L3n%S!^rm&)*FMU4@|9R1sgvsUh@;YBjM3TP> -@1dKA3P}#^xCxgqLMq9kPwp1T`)ds+Li6psFzv`Q7doZ9s>`TCU0(fcj%oH$yEzMvcZ+6(R9xqPAlf*hZS6jTySNk{d?)CA|n8KeKS -fGNA4`rYEr_t*`jF9t<;cXKhc}D_Wc|A|C>x~CJvv54QiPx~W&#e-Lm|lnPjFefmDw>v74i|-;tt3qb -_<~ZM#TS+C#*-hElzoe5_Qe-YQtT{7H+y#B9U!`ciZ36v^d1Y2__v0`w<^L?2yGlw?fWku$Tg(?QlRL -0STmFkgLla;`|u*$>g49kkwFguwx6L>Nbw&~m|xP95v=*>5aDlV)>CH(0|nhUAfRdj_EMf)-h6@_8eG -&ZUoG8gBccLM_XIh!4haHeS5PwVE6(VW=h;F%FJ3&qeewK9_59nb=dZ4w|5g3@)pc?)rrEvYPc(0LOh -443d*Z=p+eN%x95P~q3;IjsKb8)db2K-L;S_W+OVYp5+<8A)JlJyJ@+7%-E1mi;hD0yrZ$Cg;IjN%uEgs@MK`5=BiWCO(#hxQ<_NNn=ByI6ID#j1oW -XRZEH{R$&BpT0_ph2Izb1nJ@6)yM;umP?Evy;Z;QXR3WZ!!2d>wO?`{yg%oQUzrMayi$MYFNu69cagv -`KyHLigPcU44Ud7)+gCwn<*WWVg26XV!!NA_;BhVha+1b_h!kDO-KJ<5xU_)%otc|(ktd@N4p@$FrU`((;mu(-YG!7cTr@uK_H#l -`aG$lgrV0-Nd%qB4AX+IpvWw5yLKuy=#2{!II=!(L=(4hrp+K+eoEW_4^T@31QY-O00;o!N}5*PKr%| -_1ONc<4gdfm0001RX>c!Jc4cm4Z*nhkWpQ<7b98erWq4y{aCB*JZgVbhd8JoNbK5o$zUx=)s0Yg#4KK -ZAriVmvCho*Z##Y;-4G}95F$u5$Xjwhvw|95>5~eaLktPNrdUSfY?%Bw{7 -fdx%mgT$u5yIb*{F;S5Ho~;5!@Q?8=x!bk&?-jRII%#pfqLj_<~kDpHx22&Fa@Zm0*g}`3Rqu%WpT{I -}a+rdlj%dnA9*y>WWguR{r;guU|f3>NIw@79ucuF_}!#T!qkDdDCj1-F_8;>$el251G5n&?9UKNm)?E -%4{lEh2AOhne@9ft-MDK+ssfvGG%pc>;`tO@`BXFHECfd@}O}IkB`Qh`1m*rn6KyXM)^&kuQ$(IergP -9ZrzfkQMvgC4=jhRi5WaKdY;Hy&A&oP;lw9!tM8anT3K}q*uI6|pjMWYuAEKVz)@BvFNKb3 -i`OlsP3b(DZ<)#3bfEr<#~5oH~>^e7Aj71yb5v#WM4W!ZfXyLlcMSn_#Jx!p~TdzO#hbHf$w9LEOid%;o}~L -m^u8Z@@m}WIZAAA;7bTIOg0H*F_u6n;O}tFz7#d|KwZ;!{*OA!`-{;OBF;LscjTsD2a(iQmS!h!U!!t -t6cf%*YVFkV(iL2RncKDsk7@Ws{KCUtc3Md$7nlYW{|sbQbGzYphnQ9N#;A5 -w`1_oEK_W$hlJOAl>pV)c4^Un)=R)kQ*0%fxncuBoM}bRYLP()_nI$Ia?GKIhBC5HwIz(NWR@s(ps1i ->>NHIZ9g>h$e{xj?`X-(>)5*zEmPap>n8mZq*a{R*ZHoI{4R`0(a)8!%I_dYyNTH-Q}qqfOs$_nwmV_ -mU>m6a@)5Z1u7P$Kcqc4mX3M_!O6wp?QP~9EWxTSRdTjg)P)h>@6aWAK2ms(pnpTJMS}u+R001Ws000 -~S003}la4%nWWo~3|axZdaadl;LbaO9gWo&RRaCx;?OK;;g5WeeIOxc5Nz!lo&79f{hq>BXI#7K5~DH -Z~4(J>R5R7om{YWTnJP$VTvvRxNNjl_@PJid8wW<&`2Ec2>hu#&=1F1UDtW%UG#l~Nhlu%cvYs%I%7B -uV(Tp+0LV!uPVEW-Zk={MNc?zt%cQ)=F-n=a`9>BN(y7dn7$R{vMN7sxFOuQncLEfzAreoR;8E#1zxLz9dOIHefak7PZ+(0evx`A_t#^G-)&}lzinmgQfI>f^J#EXMcEJkn7`0ovW2nNGNJhm9W*B!f -%)}_D(JD98l_`m%d1U`8mA+Zow7>R)@vkDA`S{@yR7jJnv)<6A!^so#bTip?}$M4eLs*8rR;WdeN}NL -W_-AM;7&>z636yq{{GBRZumz=1V1)bXmBl=aOkLF^w9)ivqV!0e-ttQaE+!RE206Dtkpk{K-XCZ)8>E -XdAWo)EntE$;vd5TS<%$=0|U6$wD|+5(95-p>ECEE2`6w+fWa23a?tev}{0)O2b8muSb$sKzv+?E1$9 -Ya7PcA@h7O?im~Fb0UPXdw3FRFZT?7VjZiafW$X)k651{6wv%wNmg$y0OEo`-k&AN~S4wt_vkv(Bh=g -JVqZ;2{Sph$wBWo^b5xIQYZIV7qF8a>e*Pn+)=4YVz)>C#mJ-7co{Qy70M`^_jgHPDm^+}7}?fHMKhI -V>7>|e!;kZ*#xyWx5c?1=3*W42jV41M?vM@w`H4)s26`?f+=cPL$^h3t=kJuqhXzfi``Bp`wEUX= -|#l5UQ!8Gfni(3(+0>C=#Tn(`m4$~mje&G43QwxF%X}?7MQr3L9Yn8dR65o$_Ip9514j8SD!A8YTv!EW=CLv9e^`?O$lzqQ3cFu%e5H*y>WK -=HwJ3H=~1NIIGvJM=H*eZ=%WY(6IwcoDYkpm-%@%8F1h!q?Nm9;Od*uV&j>oQ%x88UeNouxwz2T>j97 -qM7WjaFb-&2bj6#%%0EO-4uI0Su3i-pb)aT6B@xDs4vI7N0(&k+;B-G4)TS;=*mZcF@J+4<7(;AMfwl -sn>8$?W1X$SKCrg-3-M=2WMmU!fJi>MOFC7z(tNFboJ{D7up01ILqv`#z#uKRb-jPf%nJ(aiEg#P)h> -@6aWAK2ms(pnpUlWM;K=T007+r0012T003}la4%nWWo~3|axZdaadl;LbaO9gZ*OaJE^v8mk-=(%KoE -xS`xJw{m=JsbA%{W^g+hfkw-9uqV_af(?e3ZqLi+3-SB**A0bTvq`R3o>AP9t^&z7vSQKj|4itmRKVq -HlKM_sfvL1Xku7G%Ly1UWXileKh`g;Ee~mk2d65qu@d(QZ9zg)*JS3AQgDrl>tw% -PF6`g*^vENwW`m2qj83`4Z6JYL&5`{7yYsNB`wh50_O9>7n;2tEU@j>(8hV8|B^wulUkwa=q&CfTY^S -X&NF!qgQD)d9iUHiIjn5|a{a4EdvcwjnctG-7&i>nDQM9-6Aq4pG|jQD(=?b(pWSme{$YFD>yq>4Ik; -c+uF_isgQxJnOdeX;)Lj=xuC#+Uj{A{3ni}C#&;381#2-*g0|XQR000O8;7XcSWkA^Jx+VYs*ogoD9s -mFUaA|NaUv_0~WN&gWa%FLKWpi|MFKusRWo&aUaCz-L`*YhkdcXUxK;@Z+N@XUS?Cz!7^Y(Ii+`6~B$ -;3`?rfEi^MabrvB6TEX$IYaFd%qVzJV@E;-Ao@-%_NpU-~;gC!}kU_nM@8E{g<6?yEfg_xh~s-|L{Kt -2WOW>tKi|T)M`~%T~<`B>Mpg~HpM1uZdHB$XT9pMEbG*^zR`_(XMi3|po@cIv#py>1tKyMRlR7`evrOT4mRDkt=9W7OSFD(z1k>P0G!@2RB7`Sya$YwrjQexvsBv+gD9fH|p -k6SE}u@D$kl+mBo33!-iQw%S`?2$=ew~Zg;Col~LKN&AHBVovXLE-DO>+>QrlW*>&4?{^-#K^td}uSM -}!6wp~9m=zCPOEqr#j-DF)+R -|i~aTWr(CwXX8INq0>N6L^~HPbeXS^z>)>H60($y3l2Aha$`W8VmQeDfPB)?OGDH^kTCsyJDL)-C|ug8=#qN9K^0GO4EFc6I{R(!CJZ -~DxjJwD;HSJ4z8;g6=39AFWRnw#hIyHRZ!1GyU5yAQAqo2*Ik-MKb@Vu{e9LJtLIQC&w&KCS?8nwMOK -#Cd8rw7|9tx9*Jwe0$+lbUmVTUPt(IZ%?_B}2uW)Ewu(|}A)t&qRq6VB6=XNcELHxO`D8#4qf0)e&0#>bOSE&y(spD~lZ0ATE9X?<d@yLROLzEhp7CagS@e42n7~kpYQg5=+ -T4r;(J(#lbMjddw4IrZ3Z2)mj-All`t(NO`2775ig;D{yV7F@*IDA`=e%R;DZq@CY{^<*#(37gwRa@Y -uc?oMQb-i7c2({|fl`Q*$5M6Y)jCdpq+)+#_KxJ2cO6|jU`Y`$%37=4TE0Y;e@4bXOa@b1;ilXtIPoGnhzo}ZnlV}nTq3Nrax= -Q9)>PeEez(6#_Tc2~)jR*$ci%iYI5=39S!>DO?EhbiPenD -SVf_v;27~Hu=@*bQEIJSn&`#3oay{i*_yH~B_rN)G)=Qw0f(?%91gHWjsUW5%G=}~^eC$iM@Y^s!f{W -5+>O4nq$7-A67h77aL6&#)upfp~ee%ffGzG2?vMa&I4se({s3HiRzPaG3z=!R?nf%jaI`)iOI-N8cc6 -0?uO8;CJRnkxIcSym-YNJ8T$t{u>B8Xv!Wt%oZ3GAbqmJ0C<&o%5zQKYtoUTNGM*dpz_|5H(xs9quQu -XnH+MAEweNJZNMIe^v$tT0n3OBC`&g*yQ4W_ZCU`6N7Ztr2~jhZpy*cTx1DaMQ-Aqn9Z01yWgyMh>N0Dyu4@Fs1a;Z -Tf3fXiL7Z|Cw{JlfFzLJHpkt}4nYyMm4ESES^uyD>ZfA}fGsQ*2ongj>k4HykKF~dk?7ICJJ;m`|2!#utTLD|hGr_STm6^gvu3BK4zaa*oFwnTPEf|T3H?7)F;nUJ_j#S)(z<8L+5(Tz7C554Ef&{(7 -z}mxHN533Im_RWub^%r;LwOY*FD=xtad~b0&{yhQ%}dA&d5v$Iexo!)(__U?fu%o_gxFRizrv^)aQQA -{BX|^jswET3Lw&d$;ut;$jRh2EyM=E;>aOImrQX>?8UaN^vyz -SRgV?gvLP0TxcmHN>Qu(r#C5q`D)+UafWQNn%}Qit+?hY2V7F)Gex{1g_i|P23R!Aa#{8c7X;uz$_Io -hXL-n$*9)RJH;l6|6!1yW_c{JR1jvc(ceF|E;!a5fum^)YBTkmfrEQUuD&@PIy>nYQ1wABxlc&(_a{v_Tx!(V*TL-hlx$ -}hbfDvjoo5bK%|>kaiPX#iaUF{tBX^<cN+lid!Xb4`5j7~lp2bu>@C^gpi`MvAXu?h8d^dGf%$l)$c -`q*(;aeq{lIa23ygNFR|QNNm?rx74P;m)HTg_GzDyoW$ILM7b!Hv00crN*`apm_niZmn4_j6Ya8%mHA -oZt?KoU>9M0DWeaG1^*WiGfjK!0DeIxn@eEZat37xk`n77K7ni)GuqBf@DFD)%@dRJdt$`V%$)l)uhU -YOqKiv3tAFF%jdS(dfGh(CSbw_TQtMT$~PB3>q3Vu#mo!h|UE;FyQCt{%MX@z<`jr=G1V$losl@^5w^ -+gs{Yn;T9yIuD*x=k41b~h&qUZt?%a#;K;X3mnBA1%?mKz4~x-J7G$m -ET|rcTyk_LzWNgd&_vK9J>$U6NfSI;rV|rCeR5#R~W|v4p-$RunyGnaI4J7OrCPzULy$w`E=8$ -7gYSuS%V`s;i3SgWJQa~?vgGEhky>zqBzf1SNxP_r%V(Nc1Cug?H+~i^SNP3KmPcm2}GEHtn&nlK*HK -Ux8WQQ{_yJT!Aw0ckzM?IUQ}t_Ts*qa-GiwQA{BmMRhe-2s}BJ1^gJCTM^$u-MQ>&hSGT`-^B< -!o)EC0O4@!)7;+GPQ24$q+_(e>fK_QYtP$Y{Oc8$vsl;K`-il*~kK7fJ9u_vWB+wPVYxuwM<*9(s&^@ -dC4xa(y>$ZWuPK2KwNb7lVJ)uy5lXVBpD7i?gDdrhP;z?E$yKfNYg=HsXDgrjg?7Zii@);~3kyf~esD -Er12c^Ifl3VO%}Dh}x(zVbk_7&Tt}b?h3-R9S@1v2r|i_8|vKFr4lW+9EW>8a+14_0GU=-AM*yAff>f(jRgk3_*(Pkw8+@@EG_Uq1fm>}JCT;t&)@WGQ~yewEI -^0;$QWc7rivjNpT~Xhcyfy43Z$p`8~%a7bornUqHw!eE>!`91;UHD=NMCx+*^Ywy=!{?jkM|CBh9U4H -)=F%U}u{xe}$4jK5*iE~*x@ShnL=2Am2D`IE;ChVV1Lz>uHg)_wZP~37Bn_ay+iY{JuPj7Y|MS;J9Mp -z{?X&{t^g#sTn3jHYqrb<>lN1;&*Ko97s26`e!2)m^(bcOjwp!8B)Kf7B|o*{)2r1rAjmAP@bvT@TD1 -ZbX($!^JjreQxhL+YA`T!tm7Kt`5MkTnJ(KY8*inZV@!^<%bV~0w7D -PPcG38qWQ4(Mq}cq0=TF0t|l`Vj9mv@wnm#+mUCe_*yf9T;r*Wm{wJ4#<@n%?@qcu;+4@NWQ)K -_4vMbmE*@={^>MR85BMq~c@PBNBeLXwQ4g#S#3>tLn}ie#DVNG-u)V#0O9wFC``{2i%4TcP1i-CSYNDHDk*z2pPY -VPq|^?|*rJdZsSwfH7dtDH+4kf8Ah07s|9O&&Aa_f_B=1^#Am0RLn?v-u;CsLFh -YSrVl5M##3JAfUHk3#oJ%qqLlyroH9mRy>+>NWFa-|YbJ8ZKyap?Z-NlP)k_CxHSw?!VWkpY&yQUyxp -RZ`3-ie3H>{?5zfx^A7QSBy1=IB1q_D}jjgK95vJYZqxWl`njEl1HM8}$*u0ghIYuF$%zvzA?Hr1ccl -s@&zQ6!l?ulYNSAgYyRuJmmnk#g+~;sHf>CZ&-JoYuEyRee~qX(`PREI&lm_>rkxTIuP7t_f|a$=LvJ -_nk1Ab?M9envAaUwK4uYV%WoIodKTDo9a^chPhFW`B`*B*xdLrP7az4XQ -|E~Em2i7ehZHiZ_CIgM%>gF=rw(7RtflL5P+3r3B_2r-ZHu1O-k$22_e1ycI&G;tXo;az*2>@I9Mys1 -l{03mGAUp0)X>qi$?I;#2(L-TA=4hA$7I)I~(-$Wvbc!Wgkw(ng81TIMrlt5C2MpX~c|0pXpjUN+Y3M -Wv2kyBBo?FzrCRMM25+v!!b&KE*QeoFLw@R~FnU!sgwsWz*bs!hW8FY&rf;JUv_8D^Be1(U{l7~~^b{ -aN^<~bOw>?#qe7C&jYdf_pnQ1ap@+DZ5k*~(hY9wF{El%3;B%ouV+J`<#xOUzHKfa5SBmD#y2qg*}g( -d9hJFb1fCd_{Wf4^Nu>!?BwDZW025 -Qc^1%7|6!PAgm|z&-nby#GS|Q(aFXvlpJnIU3QDM5t-cYNP#be#YMU=`P@3wBR$d>m;L%ytA(x3ROcT -F2+dK<{;+MLyvBip4EQleAJ&u4^!3Z%f9`>N@mb+;=8u8UHw({sIER6f{&-vR!N@0GIwO_H^bcjz$7x -{w_JTB0HjO3D3a7Eh@1<-Sdn -9;3at@yU61PO0YRLJ=1jp|WOUW~}6L5`mLtqs|wbg0E!9pF$nVH1Z$F -W$^J(`(pdAwaz@_B{6eUzZuLqctC+_Uw)8rcHLu@JvJOxS1aRx -M}_KhV$%T#C~f?Qx{(c1+denf#-mcBasAyzZSP7=il#KBnQNC^BWIh@9J# -?c|R~IB5?Ga8swKTMN$r%t2p9NOWVWtI8q4_;@{C)uMwmW}&IZM(XhjC^EN*ke;7j@FX~&XgB~uA_wNsYFJ@#Y49@~ -OCYjEBqXs|khOYqI-;^VQ_73=S|dg<;3$?h%W$ij^HhOPI2N}L3FZ%$J?QOA9?+66o8VJJFfUT@Ew)V -F*jG%JokdB!;Rn*`@xu%RI6vNXp-}~qGv33e6efHc93}uA7h<1t8V2f}n_WjySj20&Yk||Iv1J;Mjp; -ldoF|Vbau)ySXR19xN$gx;kT8%i^Lt2>^TD2BE(EOXk%_Gn^i=OPTvkTy5qbQT0i$VSL%L-G>D;kt{)6vb%%@O4++Ea&lA -i9I76$4{ZqSXnA^-w*}bJOV&b&8k)(>)_Q-keFHAd#Fq3yHxSGVY&b;sTubS?!Tp?~Od#94K^%fc-Rm -uaP6pV=Xqo0qe7bi6QM(`J2+H>_{0o>X9a9DRBjyEy4;;_R)YwCDVY=<&_EWI>tpv4;CPlcMcl~FIFh -JRK39~3~qo0lDlRtf${+mz?36KF;~JQViEOMaW3+BBr%x^5`{dH$sb;wp%dh%SI=JtN5l}%USJJWf+Q -Tq)Fch|ic!elP61893Iie@la@RZW4B1~~O>rtSAZ}o%&!DhF_a8C@(hnpB8~A_IcAoDg6EHEkqw`+U4WnC3o -Esy&<>u^m3AxFfB4N+g9_j{y!JdpqQG^{hNv0RuoTP^@~SM%885-fc(8L+T*n -x}-{G5|78@QGnwX-L2Jy4&-ek9=T+|@;OxRw|Fra5f*D&>r#uOkH8OtWLZg94lNexjzA=hEr~ioHF~o -JeLvVe_ZB^tPfv$9H0M?@ft$$oy=a>&hgW8hdTZiGtRksXf7`$U23^BOx{qqg~J`0Sp2SKN4; -Dkm8zFJibUEHu;ei*?*fcr^7Q*Y8L}WG)34Ee)*y@9tVH$V*79?VZ?JRRnM&`h$SQWy11!$Sf}bmG&t -?F>rK?2T$$WLTWU8K5w;-d=TYOOQf#u#q0W)7NgCzu9(lm*40&fA<0f?96M7${sls;a=2_wIkn#RY5# -~tY29UY~ -9HBy({b6QV5LrTT?8)QDL6WG0@S#31UU5|P0SoogOM;SCRrU1rwj!AHZgB@M`x7yyUk3*^39E*}`#Z|sE!(Abh9_c5BUJRE)T#%vR6c@qTbKs}n -FvxF|V$*+<1=bZ98^$_sBrC~3ZO?E@06h}NM_sbUDchX}ga?KB?7KBj>N4ldd-}D(;6H%IH -H#LONmRz=Uu%bJ4k$wHh56Q9yL|F15W{OsUz$+l{LLRH;j%NFLF{@bL0_1Ypf*XK&!V6uAHdwNl6V*C -$PJ9y2FA!oWQz@EpAx@?EzsR)yyq8CZjv$tUoM19oVZ!j6nICDEM~ti>24;3oa?g7rtu~+mlB$Tz?`x -I>TbI;ss;@VkKb0|utJ(5GnAq{{YY4=WjAhBw3n2^pEa#bz!7$-PP~~F)OW+tfL)c5%8H1&RV*WVtjJ -uAfMK0`kZWRn!)$=hTLI0;1u}b8)~!ywba2p_QB3NA6Ff?;a7B%+xy6gDFMe=%9A`lB5@jY_MV7Xo8 -sBKIDrVN4BgvWEnJkZTOomm60aa0|L>G^I#sST3TuVGV9cG_!RExwL{I+gWtH*tDvD5n4nbDo9Zdjf& -GM!9;qT(vU2@I__9;cm`ShOuxS7dPtv(Ia}Tnkhblx+vY;3g5mCNt$!zR7MInw&dU8$qmvZJARIauzueBXtyBxVi)Z9&NEXGL -~XYC_ruD1ay`4^|}!BKp#`Mt4)9zY>|3k9>rTRPf729>15{B7pshZvnZ;QL9Gx8ZFEBX_skTBH00eM5 -UVOctIqwBC7gDjBVs?*6s}w7Sgj8U(xZ0h<_E9OH%LpBfuqw#D9IPR6hwS~s-iq@F#eFtY(bw0=lAzQ -n}eZo#>h#lQ2VNAhwFc_j>(p+n=8N-6v^q+`_L>4)A==(zPf1}`xo3`;Ls==k`XnK(AgD+nar(3{ptC -t)6P8+%NOLPbjbiC=1Cy+C~BnDGHQlb}@+PDyXqX-%$JU}10srl>HSr#I+PSiAR9fxXj@0<2H6;Amb7 -=Oy;1s&<=mO!Te -9n{pc@YR6GS!-#ii+yYX)&InJ{B$=^d(54s0t5Y?J#^UJB&ZbMA38uFDxl3J^;}xlp5-jJJ3NCp+m3p -p?NRJzd$YEr<&4P&Xe@2fSA>4IF4QAI=CIdQVO=4m@~$&3@1W@6_1?I($#mec-z<^4SC0eIL$Vkm1X6 -LYTujYKQ3ZA%qfTQx)%qSv#f3q+}TRNlLtGrS=>YCGY5D)9W(3jJO;n>t?i -KEX6iF?es{gTq~QTf^X(90wmVD=wz9L`;JIyK!=fV^ZwsZ9rn6{@~dt1gvA1xWF{sh-vpyhCVMhr-gb*dV}Tn@0Cliq(u%e -jE%cL>veZWouA?drH@x%2vN<`<1Rp+3InaQhJ`AOEAK}LZSgH4KI=dl`C71NmZk%gkhXDDa6RqiXlfu -ObEO%1H#X&iT|^=N9I1`!b6oZroCq&48Jv%|6zy=5(Ntl3>@D;D#KV4sXYA3CtLkK0%QOHQ|>?tJyoS -7J^c3J=$nu9i>Kk0)3alNia+9x`&FY>>9*cRcd8E!cx<)tS%LG&?u%0*m)~{4TdCoh3Mr4yKOk8vSB$im^F!-{?}KvM#G5D&Y_0bb25`E4~ba> -~_)TJt2(D@&*s5US>PIuAE?T@}ylh*S+AyuVV7-hCLwrXj8bEZ!gW#iZ3eJ>wH#4du^hO6`Gg%S_5`XnXQ%K!k|*DP^S#MLD0PQ -#;l=r)|J$0`l*Q6z7utQ3lD$Rcs;X~bK`*pT6VA|;i$|;o6DR{aXEHMa9=Hrp#x9qQMK53`+u~|Ac=U -_XNclPIBuA&~2>aSbsabdP;R(mL2~PP&PgeiC0d;<$_kJ-_~-UYpAS<_B^5LCOxDPTM -X&W?kdCnEd_i@ubn@qKR*UN}Sg>&w7PF@&P>e-t&yC7 -V8&Du>aq?2t`bX+N-VsrEuTt&!c~ -MJ(pJsCW_X#CwG8NF#T-B=SW(5N+}t9$wu9sSb_fBt|r2?IUyj$*Sj_naerp0EEN90QLci@*K;$#0;Dy^l{h4WdQzkV|;=r!71Tz`Z|vee`Umj)08=F& -;gAlEMZ@b|Sk#a-6|*{J|iH*$rjyH32m1W5qMGC@jzhHoR&{b3>83#McRsD>in!ixda|XXH3!i7-van -3w-zU>}#ElI3o*ahqb)-Dh`3e^&s}pVz6m+067cb+*fxhf6LwaH(=|0Eg;N_`)?dLz_k?0o=UEQPDeR(5Nq -Hywt8G2eu6VAu!>GBjC_;G5l&cOvfKX<-l9I@8vTL+9f*Ov?!I*9PfhBU|YF|AR-dkPZ~)7Lu7F8G2_ -KY9qdf3c?2pmov~pa&KJYeTr!8@g|8&{p~-z)1s)A%J{FAunH8Q%&_j<0JaAu+$XNBJS9b4-KJuHKn^ -xOfXQ;)1PR^3W;PG~D9GriZs_{F>?QJ(+eRAm(>{+2|F_m8FTej`5c -$l#86SBMdB0RJZvlV~*9{|or0ThXOziKb-qr`=QRbd%x5;koj!;15byJ -9e;8%jEAp10fvZ9Iee9Q=VXV|ttTdrR`?;YIc81ag*2ILT-iQ4y>2l2(k38BOsLijRz=^}+Lz8f9t_kXLQp0 -W)6Ylez^%Ike7ZellW;@6#7X6oKdMBY0}XCC6w@6aWAK2ms(pnpP4#-hpcY006fF001BW003}la4%nWWo~3 -|axZdaadl;LbaO9oVPk7yXJvCPaCv1?J#XVM4Bh=Jh~6N(4YYI%5Zv6}+ASyy#bRP2isU2Zr2h9uIc| -|$xCs1skL081G$hU-lT_6&_~=QXOCABgNV32_G3;D-yg2qHa~fQx9R^<@B914JvFmj)m*?%sYo0Qp -Rx>V41EV0H(L>GncSP0HF3rR)``YKy;m5fSQN%eVUxW#IiCPb2)gJ@OqD3*<&qbTfqcT^#mFzgnMep& -jt!ibgxnV0dMjd%iUs^UZ7m{tjSl{d1tUvEyH{)&1ZRO+EM*H4(DOb5AD53Hj|4{T!KV1qdRXB}@eg# -a2KL4)%0Z>Z=1QY-O00;o!N}5(4NPwCTApij6bpQY$0001RX>c!Jc4cm4Z*nhkWpQ<7b98erb7gaLX> -V?GE^vA6J!^B@IFjG}E3nE3ODUOl9=DrSjZ)<}&W`W$I@{U1t*lF;CCKKOA~}56(N1N5`}GST08)-Kd -(XOYO-&>cXaM~}ccU8`3Pp4xjJv4(@+ZBh -Rh_GKoW)mK#o1C7x~!6_R+X;nB)fw4i!!e&JD?ga^86;z)mX(%eLY6NU*PK~+8MySl68@nwaP2=soL0 -&b+Xnwt1@4!MV_WGG|pSe%MayJmwNd+S=8KS8P^(nD5v*Qr**u;@1t3g)w;~$bk@{KY5~>xEQ{;pR?n -)sgcV5Zco`Sa+&261{QTn~KQk?0Ip*!`GOm)v3?CsFX|c%HMO>RU@8Y5W_+!NgNt4U5YRdGdJjv)o5t -o&=Jqc%~>u^WG->IPVh+h74T#o56xBV$DXV`bP1dQ+t{iQDBMLiQ>Gg#?Qrqf!NSK7Q8?~G(z{bivG5 -6?XG(RGvE=;d*?$d|B&J&`}Op&Fa^>^X4SGjnia#wz$^om>-?z`MWsVoa$v#0zI99uVE&3%%xt% -OWz#EoUU6 -w7%KHhW%(9zDu&@>@r_&_(64@Hz_>W6meDgZGmNP^kxQ(G)oi4A -=h8UWPiR*6U~|S>ea1NaGq=N=>I~ -0CRixbTFaO3p37)#!*vJDiNr>6;Q81b+Q8-r0;D_T5M+rkS;fCTfAgaf<>dNWR#y+ -CyAf=xTyKX|^ie=rXBf23X!lOmujuf3(Ip^mO1b*sx{wHcY=u+`AQPGEf?{nWqL*)#n=$h9Rhm+YvHtuo~#Pu7)Ed*sbA+3xa~(00{Q -609%y9{t$XG`~;qIcJsSm2Ydvvr@fFsR_ZbbtHc^#$V&oH5x|J&MwTA@m+1 -w(MI>J8Mch;xG-#_Wcn+u*f7u09UVvGkcPHxe#aEK!mM_$0sbgq)<_@L6EP!o3-9%Q10~wZ0pYg2#)8 -2~+l)`Xe#vP1s9-l9^@;mkEhQ8%(Ffd~0wqDyqq;qn^+fOqXNk`Y81?D&1ko^`BSPkLLlqXR*NsM@L-_)m7%UK#uYj0$EknUB -gB%0n7>Fp(xY>dR&zGdx9e|+Y7ctoGAi}jubqqqCgHlsXk@L=xm&sKEHn}oHAeOa_>$_y39eB`7$FRd -!&1HpC%IbDy7Qztd4_4+VaysJ1q!vw8gVD4`EF(`e6>UE18pZ^dht`qiSIJ@w$^@JolnNCuZ{w^6cPD -Qu2OxA?z)Uo)!p;FUeo{d&QNg2~m3U7vQUf;XTTq`4xVQ%A{B -T~3(uC9nsKs@Rn*#Y^8TnvlLQw$Zq_!qsn%p2fAOHxA -`gH#0g>-_E$jpE#nfZrcNHLNo#1R*HNn|AkA%kee@H9F?FkMT6Eweh$68iKNxu(L@$L-?a=fdt3gw*UO2s^2daY|t9isE$Ib;A_@Z}mc!<6MY#ev^!Pi0H1OoMO3n4 -TgLO+o2zquF^$S7DPnFLF-<1mNATwRrfHZyZ{C8`AoE@xF|@mj0jO&tLC@u -Uy0=Vjwc?O6dU2CiR#|1kk8B?VPUqO|vt{%y4+uafOsvY5fRTY_Wi07Dn9ipT;t_- -yEqwJbm_0EOF5020V3ZBDp#j_hKB!IKP$e{j!V!B7hpV7`;JnKet<^r{u^|!)2ic&o++I7yVr!0ug1N --Wqzib8uc^FhG-|h4>kG?NIYOZONqtxfs4U7!!MrI;|bD1(2&QXs59S{rvf}5ca5-@NZ)9^L8B6{K$K -T_|il?ATLJ6NNJ$bUlOrF1JKl31c6e^&?KZj)6SB8cEm@Wo@TKrUt)1nX`8K#HA-$ceO;dCu0*8mt1??CZsKs1rRxfzcGK&uU8(=CIPyqK4F_1Gg&NZ$ -GzRK-KDaJ*8Qe-#%p@bBfBSeYntN*iJ$z!P8Bmfe=R8!x0}pmdNJ}b;p&&VZO`OywVwZV -t_EvDyBh&2s9DQ$a?hnca8C5G`x{YH(D18J;58YJ>gXj27_%2`W%`fR--=anCxO_{a}uO**061@zolQ -MQ3*a1Vp$yMCPUKc6XhCWWzh3uL=q78Pt*4^>ehyi_LJf<28MxK9PTH=1=VGugvmFXfm)VC;f;wldBB -Pn!sGtWDh&-@NYFZhSh4c6o2W${^~HnU~D~wDSqgH>u}g9BbV3$)|&D82yOZt-NP3}o~Kcl@{2SF3 -Fv^7JCrP>iqn4@R8 -nLlngm<%F3HW_~I*trfw*}z70xN^~1?EAc2$7%96l62Y=#PzJv!8EEvS=E8TJSOE(OtB~G57Cq8sXxo -E8QNJ0K$2~()l0Cb0iUOZI%^x&U=2jlj7zs~n@BW}ut-c=Yr1z4zQchMf4?C&r0b(~~Toi -4lWM*-j?FqqQ>{C+l;Vf<%*eDQm7;0g^L;DzJGA+v=PMtewbk?9&%*hR4Adg5in^kerJg_tKKUZuCe3 -VZt44>z!gJ9T8J+mm!xsV|!ZEC-JC3`1xVlnMz>#yDXA3h>xm;*scnQLXlk`LUl=6@1u#a`57Lh(f}M -b67?=MXSBDdOAIeYK_NWak;T7cD$t}&~P1RK*cRBdsNkfSMu!n9}l{+)KCyu*c(mnf$Vg9Z*_K6UxWU -)PtG@m#_#84oK-7b?wLJu&{c>SpBB#=Fyjx?T|_Szn9xO$7eoHs=Wg|O#WOruOdC5ef9*oI4cFJ4rZC -{+?SYv@z)$9w0KHLjN?xHnibHDSZL$N})A4Qui^81R1~()1%EZ9+E~uq-gK7#?NCTFCUZ5Lp7Sl1=L; -@PwkHOQSLrC(UL1$dYw;CP#4IOwiurDorh0%Xh-;uG%p4gM~U=1IiRNmSCeK1I@<=g0fRUr?)4YkKkA -+~L5Z>Y>rx{L|{1=XX;oEE<3?a-q}wN8O9o;0orJ&vVX0iE -_R*ekL1&K}&Zvd?F*SqL50=uF}Rc-&>O?DxS!%>LYi(vJJ#JK^2w(R&2ev-kJ&fHacZEI7pWz|!CY?}~qY^o$-@g>xL;a}FzhMOXQln}y<74z*(?QuC+R7N~ -#1jM3^?3R#hZmHpWDbn+&qOcm0e>nX>jgl@jzCh;s&cM~xqE4vT=D4@A04!s1GN$`Zvi$tMy34G?LJI5~_AD)74&KTt7ZVQRh`6o~c&%+ -$rAu7lM!T>%wH*z||R7AfY_%nbMV7K?+3-coEX{5j23pXSiQ3jb>Cs)@s8A+0}g{A@uMMLKdXn>hnw& -P%Qm>N!lTr~1uIL!c1S(i;kDQu)XmA65YOD|BIP451%pEZSOEYp9~6)|J6Y?Cr$w|GM4@;n|DqV)h)X -vNVSvYcT5TP0Tw=enSGj2j|sPNi)67M$emk?VdNmkDl!RV1u{`8Oded^&v#z-}?g1mIdY??22wo__fE -zc7aoYiyZKq(0!u-yK*k+!*+64StbH-C=xUH_q}Qy$1`%frlUn3khg}K0%qKu?h|W#5Nw`Xc3vA`FP9>{Ugqi0S>|WPz(u>eN&NU`GTcE@*cEvHJ(>bgopf-C<8J2M|%kr;@4fUm$FGn=RepiQPlJ1qu2z+-5#<1fqn4 -i*SQfv!&SvVY4I=si-vZ`=*Q#8m1$haErB^(xBCtNrVGo$i;b1;+dyRqVj*{XTjgJ$DIcw?Q{XG@VL} -r_y?sQyv1+S0?qlsT%xveE53c)7egW@TcSRfjhz1IcNrO;t^4@{7NnJF%YdPlDa*}ucFA!H+q8!jAKO -ve|GS+;*dN*uQ~}n+n2D)8;nT*1Jgg#pr4m)X{wJO&dzb4lhbL|`V`-cVUAB^wn;6?!8luYNu*jYf%{ -8P&B6k(Gs8p78;&UvAGqZN!(i&k9}b>>$4WU9#91i@#Bsh4T -8J-Wf+D7#9p!Mel;+eURP%FFNMd`YaC^ge-6PNMYd&2IlHx%eaZyYHVa-Xp??LM))ulvwD50n=d?XED -JC0SC>X0#uS9MAvJL>-c~w3oDHA#P4I#(~5f0a?D(Hb#o+lP;JE$;D(Y43G4n4=?B3MSQoU>g#0keSe -S-FXyeylgZJVL_yJsdolz7UrQRzq3>MOO_5U8Zd-aL=W})butfy(5r@II1#tWpb8AkoN872+7kP@q+s -`P@=!Tf+G8(S3jgnpK!sNrLUq}LWCu(<<=h0;tgVAPd3ZYnX3Bot8W)MdFQBGvO*(?z;#&BROtQ6-?%XU?YISQV&qVdM4bmO5*Fq{ -ieP|pq<*9Dcgc$|b{LvSRO#im|@b4Zz2nt~tuJ}tqlNT|rG9Sw76slYW5HfV%U=tmHH+oYI(#I -YV19&Bl#F85$!d+TJ0nGVBuN&Rlb%;_>dH2#pK8%7G6JuPO~X$8z+-H1>xmbx90* -j`hj`)Imf-*i>KIf=M`@cVI*X1=I??DLT42218k*nNT)Vv)x%7O$`$~VIs(fZwFA&eEo^>&-qhroP*B -w#lgcTnk04vT_iAI)Srf`Ij_=XaZ56Wm!IDQtiaKpx&M9r#mqsqH0F}aS+I(&cqa)jKKDWusY4@DRjm -fKNUnTVLm#-twpOXbT8B@l53rz)606ukV&4;6anXrIzI51Z3VC)u(4@cWu_cnG6Kh&dTYxx;4wjwEAd -9A-#GjXgQ<57pxhq2_Qd|@XO#uVb&!XiEa^WqDb<3}~gl_Sk$OiJgM=efnkd -Zz>dso&eo8|S5^!I2G|zApY_VP@|5h3<-{gM0> -4;)#m9I5k%t>JcA_HCFkmD{e--8=Bg7{LOs0MyC2EQSRg`~#3ZqS(k^PrwrBwDcee)ZjYhd5w7ytE7R -i4?`_{D!Me&p1z!1S8nUl4#Fdv2*$UE6oZf(t2FJ39>1-U3kZCdRI75p+kY1)ceN6ifD?gD~yX7mWZX -=$cJ?YKtRVk!l<|2YROz%sVb-uJQJgu_LF*9PM|H2?Rra@c|Lte`F}>KQ-(1pE6VV&j^+NqyDmqFmb@ -IpXe`^V3hjLBwwPpCL>rxwd>J>}FmThdl)p_y`w7K(VVHsA(Zqp_#L?T+a>G2z -xWKjE&s0fsi2fWYzz3XlAn&dfR!HO$FPh|`f5Vkp7Cq%+YrvL)$!FcpJ7t0+~rt)}%y@zBwP{7jHiJ;2wzH_}_$Xj`+4=dc`%jKenMn8deOP?;K1-x --%H!uk|JZoc+3?NKf3es`-2un@HHr5^s+OujX@qD}xDAED3;1;y2~#6=@zXJ7d$H?GBAW%{G*Y_3#p$ -08seJ8;cGG_FpGhJiUL!1?xlugwh#H6rDHRkNKTSb1pr+i$Osc-sfnH!E9$Q23cBRaONtx<<)T(zFNU -5YhrTHNu^#*=0owGRBt*M7U7sTBlUxPszBWk4xBZh&D$=4#=&8zSqH1W^7dAI#<45Z=NNhFMAmqq4us -1*Pdl22cY$rJ^R3`;upLX3YfG@WLrvaTys=F!HGoLgYnXdnV{Q8~zsr#Myp-p_UZ6l_RIOj^nEvPbvry;INz_*``Brs6waI3QcPVQ)7`m@Or(7>|v-AqTRl4JQ3tOjbz8rIvCO=6lLr331zE -pS5H49TfQR@%-e&`?KGu@Lg08tldKiRLS2#2F%R*jRq|Zr1Jh=B2YHlb_x`E<*A}JeB=aDzC{D-fFh7*0=cS({Jqbzlr#t`e@%raP+!Lm|js$ -ra*_S%iWGX*&AAf!P_W1nx|H)3?i(SURJ^M0w7GB0cFIEMq_7>{kFtVq(=AlkHhWy$LA(Nrcxr%uE5Z -;T9ce_xK6-%$VtSC?V`l+ -kx|t+srQSb~c;sY;MgEmhyA~Kl^OkUi4HIS^Bz}r1w-5;Z>Zwl~Zqt#A&E*g6sU^1>O>w)nG7gSO>)> -qS6tGN9s=vUfC93#h9GHz~oxQ1y$-JX)#vlr89J|&mNm0!pq{Q%Kp!oBTD5&!@*zjhBzqC%=7}Tt)f9 -EW1uP83OjR6(28yw4sM2{u%P)t1G!O@uN5``13MZhBBZCwF}~&L*bG$ZL>C+jE4HmnPOo=7?5^ogngz -8Ef ->ytUgK@HX#>qlfO5;iKg#d9gh?`3!ej1A3$7q|WKu&#{c`-&+%AV{Gk7k*b!e1+W%7FJ+z(ZY#1yEmoWWG^ -_n-oOF2{H4=7Qq<2SPCbg5E?4y4kmtR4lTRWLXz&;ki?QJCheHx&n2Ay+F|qc*EoNR+R9@$+B-J_9M0 -Sy1&naWEa~2`oiJh@P;X;t5?5$cHOL2d~-Ja^iN3zYYA~fsbLq8jvhXG=?Xjq>{+tb;oJX*=Aw;}l{w -kweIart7$pQ`cmT)-yY(v?44mbuEAF);LO?s -9Bz2G88X2BM3-Ruiv;7>+#rQKr~^Jk@`1V>F}dC8l)CME?yT4`8j}@=(6Hrk~&NFSxplOLx!eyf`sG* -3fsoUFGaWvS2wH4X7c9oZWDCYpLFIO5k_|_nr*+2Ce;kbgdUR{JSYmVmQ|@VuoWPm&aB4+Wufl^*#0E -z_WZ``GU$`Y_2Pqvm|K9SkBNMllbOYC~Ms$M?rwEaI$>HsqOYmhV2RSd_V_y=D5baCa8PY0?|Lab;{R -!ep+bAcZ&=7srle@k^f5`4ovei9(`9Cas$VDCII0+_7?QM=tVgSc1i0c_y;|a?D%5`ZLT`eegRHk=US -q+=!P;D^3r+Iy?+A#Y-LHm+~!pz^JMy*9{=m74;)XMlh=;|WZ;|ev;FV>fuv`WPo;1jD}j -I%efiiW*8uJHNl9mQF5+Ulz<3dzJNLc_gV>tN#&?3NRgZg<6Pfy68Dv&?Vc^-X{z6RqCl%h(J>Lh2P% -v|<_x2HvBI+hhqlo^yFDLo{!C@Bby-%K$D1zR$@tQ6}MHvbWz-j9fqOSL%kV!TY?gHiYjZ;d*>r6;`m9Qv4 -lq3MJVH1zOA=+LhonEqPgU?f+6&3(Xr-jx{rwjm3TOzU3=7fz4g3x5Urf;iC1|+8Bu5keyCHC1ror>8 -67vbHDS=Nc}(`805&YU7g=`a-sTY_2-4Z>}2e3OAoXW;e}Va12T)39O!QK4n4+f0jz4Dpm5^{p%Q+SO -E3AS+u*xhnk|I?8fqMZ=?-7{!;iUzGYbQJEO!$o0;GTcta>I%{YLUzR+YI1z+Rs~|F-wRhvhXi0l8;j -kM9{^`-S>N5v&6UhM7;x$wWPg4x)qp3x2RN=u+#<>7c3vi*e+4Ex5D%q8dkZ=vOn`!lW&~k`bx*`i^d -=FqdNC<(_6Kf49of{GO`04WUh$!aG;k6^`2)JDxr#Qkfq>!Qa?WtA>7W39~u`5k?OSU=O)M`}P)y{{T -=+0|XQR000O8;7XcSvUJuifCc~nix2<+Bme*aaA|NaUv_0~WN&gWa%FLKWpi|MFLQKZbaiuIV{c?-b1 -raseOJwH8#fTX?^6&P1d&=tk!9I&3?!E}MT-_~(c~5f6tzo9jCaW`$+fKpd5Ru->C^Q|I-KDyDgQ(Vd -pR>4&hIy*Ez7cazmsgWs!T22YQ@a@ldL?ePzz?>RQa_Me) -wGl00QQaV=TfH(r6&6e#ds*KBS4j`dw9?Q>i=<_111;Uv43)`8m)g-rpmiQyGiGSLLFdd7Z$07(kP(U -7f~xmvB#>bIZ63RD+~FZPg9Py)tTD_v*cU`kS+IW#?ZGAlws6qxFn^R};i58H-_|63{Tik8tS1Hn7?L*#N+w=f=$ZGXs>iH%cJR0q#p;myHUQ{L2dEQ8gDAoxJ+abM1X;HqqiC71eNY& -b=4WAec~)|Pj40X#_-03U960`;|KJ(WkD92s~{M{75+oKI8o>;QMbm_;rkNuAO8RM@83xi`czpdysSr -?7UV}L|L%~EUTCAa=>5)E1({ISk}C*fQ2j6`1~?tMBrQC|SZ1+U%ufRck|%v)G9skyXBcE*y%J3>7D- -9)We~)&=2SC5YAEx&BwVX|5-O=X$DlM2tU7dOsIELX3$#nM98e{ZpRhk-A43Rcv6JVcVd0o+XA~67xa -EYh(wb{ob7;L*Xz;MXgd#C!^LaULzh}hXKEjVBzRQ9bFhn$)XTq{0zTx^gYv*xKI@U*id1B?+`{W?=vH1dKB_7&=ANT*c~utEde#rK&CW1 -nayJkziSkj!QNVHEG2PCNnDGX$6gIC!E$hBNm=Z5Y>2+iH5D<^l9m%ntzE0SmO4{ -0W-sQQmCsX2EGdDlgtKcNq#`O)o2KO`e>SM2wihtoeUP-<6y%lkx|dtL6^i+VUrblD>2y)g6%enlK80T0qZM!$Ahs7< -ZTC?C=S9mN}NXw1e5VnLVZ4bDK0YBuxUYXryTXT%sOfmp&_Z`XbrZ-Y*64bdQywIYfN>OTe!eXk=?wO -oz&1(6{^WrqjXG}v9*L!f@#w<1m$#Yq$hdoqQ2W&QOkqYh_obmey+^wR=Ew7z8_-(LMqB@|3`lg3s4MOxNbdahTDNw>Y -;gUY>Ap-yx2A1`NH1gkjbJ33(&8APjTZfq6l}Az|43ijV`Ln^%o-4^-9@_D)*3%I461O3)6sG-=^l$Q -?>>86?7Kch@h>{u2aRO<+uU!74;+}9 -obmIJMTLluk6(21JneyIXCIWTD}%m2_5EzGhEB9fh(5JE-R-r8WdpHW}_;Mwev96GvqrZ3}3_Gy-_tl -bE8@XaC%!wS(61LZ#Ltp!{Tdffj{VWndpMz@#QTJ~Siw8NLYzxj`1Cf)I%(X86HnH#{;Y@fC_9N2q>!Ag4AA!b5y`_`v -NqT+4QoNlEqiqMS|-H9w|(hEKf7bT|b!1t)7$p~}WH -o?9Z#65wVNdG|_SBW^DVtE-P;ESU+n6=H!a0ZIIY(0bhI7;88))CcZCID_ADJ}TJ!U2t<*?u@6aWAK2ms(pnpRN~Ou1VG003YM001HY003}la4%nWWo~3| -axZdaadl;LbaO9rbaHiLbairNb1rasjaE%>+eQ$*^H&VygQ$RJ(W_AxFq{MpkfcT7q6fneSL8_Ac*&) -AmsW)!`R$$A<;O~voahjT+&6E&-pq0~n+1ikt~@#Tp(_)xbBYiyhap%m2Uwz{JKHx=j>jR<+@wFei)q -0^!OVPS`4NPpSK+!CnN?Y<~-xKUPnyVmGuSs|Y(uG>;NtSv!83^!!|h%vAUTbLdEUvyT9%jdI}400e7au(MCz@QZigHK5{hRJn+3X)J(zp;zDjw&=A=BIp<7zyTqo{73 -DjBAQ|}r8l>JfV@IEb>U>KDna^)~vv-3TS;i0H;+4EHnv{}{9{bM^huHuqE!^>MXo& -w`(>WV*n8xYYxw%@kTR4c<+M1!CJL$Im(is~cb|p*wIJwkgd -_wdO1x^KC_)K4%ERNIcogQR~Ph&4M$;CwR(kw_jToI{1&EW8s9e)1s%rXwNBOH}I8mm6F&)SW5FjkSK -Z~byPxCYezxG;R@hL*$~Sopr!3tuXt3PYho+ukA{{0Q{~z-jM!gxc2AMLD%vS<|D_?XSJUF)(18JI`V&;|33Tq6>| -aqBF_iiU~Bqw>9$69n=M^shBm#`VP{$95}k7VvBQZar+3tni?>|nuT%C$i{ -yV$O9KQH000080N_fRR_T=c!Z#@Z0N8;50384T0B~t=FJE?LZe(wAFLGsZb!BsOb1!vtX>4;YaCzN*Y -j@kmwdi;KiYatjfer;d?D#m0nbfi6My+GJdL*ZnePDG)zl;~ -vu9?{e$SrGAP6=}{p(U!brmh^Y*uaj!~5IVIJwL!H80ZTOshp%TxY4S6gJK3J2hSAlR7K%O4XN1t&&o -!Wu;Sflhv15u8sushJBmNssfu#moqgjN~LdWUFOM5O#sMpzCd8nMgY^=$mWZptl>qfCsp$;uc6N@J2y -|V!h9-ht5Ta!RWZ5Jwf$C?%SrR?&UUEvd@;>tw%bio=2?DW-~X2J>uFicVGgsImSxNPH)X0zoxaEbIy -YKmizvRNbol6evfs2os~s -C*LltFaMl;PjO)7vHXrm3&v?JA>qR`vDj?BH#rzDv%KogGIF5c7pWiK#N~YvK=}zj`Wl?MX2utJ-%iM -ViBtYZaZ_8Z1Hw!4PV8NC^=&&50YL8zkJ&Y4`Tc(FsEP6yQzXUA%FMtEeyYRB8>H&|0fA -FaJLVP9?GXwItuy2_7)FHhjO7VM@8b~EqFF_yZjWxhY^yvCn*EPyxKs65(y;RzHO?vh|7Z< -c?DQ>IZJ_z)X~A8;^V(7khu8i#V>D;UJOA%mUG~<-$-279+-s#WQ@27WpRI9>hkXAWVX}?w_zJcK#I= -j!QgE7eedkv0DY85HoynTY+j)Fo82UL@J+G&?M}w_vHS2vQ!(9WGHn_O-yE|jQ49t@57tnNrHv`zuJ( -`wn6;10m|sG7o5Y{6?#ZQ|T&ZiEha!bQvaP<<%J72%q5vv|@4%1~6erpNv-NaVOp@7mTY^DQUeueOA} -4WomEpW --zo3K=*>q%h%x)z)~v|OtSu9)ZsR06+{8;4}e2lblW&Pgfh{4&qL5Zksu$m2Z+`(cozi&-o)xkr3DyF -_jY_h9is=_adMgD7g}A+igQ(=&6-cXVDRr5Mi&HpF54Ial|YCO5yp_#Kg5TJgDx8SP|zjZw#XJqZHzA -46O8Gj2H=pk3wE8TvAQ&}iDBq8YPjM#5>3Tp09r%>UnDi^-?U*3*UCZY)k06QX{OUgL?R(Mloq*@a~Z -ndpbPuO!75XW5z&Ylz}Wr$eSHUN7txE>R18+Fp@}e+nOK~Hu*{V)kS*;{M^GCHFx7IACbf>prIA%$CR -I|`Wtf6|1QTOk1Rpmvn&cNU%1cyI{&fba&$%^O{%)149Heef+39fgj -p20vFcs;#pWwZ5~G$Ek3T$EXb(%YKQL)co4PryOA1bKR+x4>BZxC9m=(W=uHV6rklI4j-axo-_VL||I -ifP@8DFcrzz;`}4{lNJ11Cs_`xb)6+GcppxZ5+Q(9Uzf?G#?Rs419*-ar(J=*`g(u=o5<^iguR9h+S^ -n`)2dGDkY_poi$1Qh-yAi`Q~43BVZa2L&eQ=7=u`s>%wh7x=LkVD;32A<)z+>SoYXL^P?cCS|s$0h_Z7?BA*eGn94+$+!(C2VMu=Mhu-6`Bts2(6qc^?lt@l%S=fpz%YlU1-JLim0*D6zkitpSMRpC`55U+WrvVyslgA@=Clx -Ptas+b;0}958vxx3=)3%qz_&s`f99A5wu<0@!h=o_J?=cPjvGZyAIiT53QMfrFK_Nkp2bxuxSkr6#@) -pCQ5;&l@8?8|nNn;FqE-ek(npw*->f=FZ%P2&^V23S$$-xLJ!>Lb?LW_UVcPof-vj+&t`)QKRSeF0Ck -8gfD;OIRN4jCM63CfVrVY*pnDfO))b*#Y_z`*BdXXktgM$h67w0<5H<;4z}iTk^Ij~}T&^nfzmF2GJ$ -o@2OsXHiXejEv^))z03NM~_!{tQ&1{+N=|Nt11Kx_ISJAZb6eygL4oYS8lN8**Q{yPD&6d?9G-)v8a+ -@vm4!ENt%H7%I)^V%M2!Ag7Ciui!v3bQ^BMxHN?E)1(|mNd|+g?*>9`52`dM+ -$?anq-+1N1|}S81NIxVma1i`cYtSwNb=k5Bk%;VY4fP2qhT^%M2J1L}1Hzm!)v`K2DOz2HLhjI~Ty%J -LLA<6lIrPs6mW7yxTy9iIdP$d#mCwp){24?}w)6{`;;c+L2A7lRB>Fp&?xKcM>{@BA1gKQ4;J6^fjuA -PjJY^L;Y#|29mignBbOz4NY!obp@2lSSMYv%)wl)V4ARDldMK#u)5;I4^lxqaMdxqT>aD&slvCs@4%L -eg*wPD&H(og+%N5Ai9|(eE$<8Z?i#_xPC`4;7*^q7gyS+VKC3p&(9v{9 -6VNKuU~Kg~Tq7ZNTy89A=Etl}s{h$L=&9?yyl0ctFEz3OWY8HZ|8MxDZ1L9%~c4q?}v=s+f&Tyqe9eD -LQ&GA0U@WvA8qXt&)NP!~YX_}%fCbP;cH0@i^zalaov&c?9)V^(Lq2aH`xK -~WzNqia7|9gRRB@>^h6*uqgS(_qWP|T$R#EDC0&LgNOuOr#EB#aqW>if65r>W_NCA5cdJ|b~jhUy4=(A!|noM-I>0~DnL7mY3A_F;OW12&Ky&#%-?iG+Y+@Vdw(hKJmYI}h5bCWCCoDLH_MA_p~ -jljL=yaJgrt=2x&DAfyR)o#6Q$ic32x2~sd<=Gi31h+KPqC^-;b45XdTbjwL_-$XR$&~78HBxLjq2Cg -gWj{u6~k4>&rBp>HVo?L)HL>=SK&gjiXz5GI$N;pmg2tx#2$#ht%}b{d1O7f2Yz5Oqp3ZVwgQoCkzee9?>4yG+kg_qBZsP|ca1neot?5{6{SfcXK0# -eq2!82JD&XleU5B2z3RLOEsVT`8lwfsi*(}Zm^5?>Z7denHmE=_!~%{T8uc}KiWDZLq?H_r7WELp -XwID?b;=f>^gy2J_QC+-&`?mq^y}oZ4Hd9&G-TN@8Z`#~ci(;2vzoJT3%+A+4LsT!IM%TPb4{y$s9S7 -lZ8hyqfY3F?qe4nsDD?!*p9u=?S>mOufDdLrH|Yf`d_lZ_B;?;cq(j_ -xSOH581dD(+P2}aa$DniF~l^tth8@|6sy@o2p95czEQ|CniPGFYT16Ki%>E9qG4E_nk1pe`)yI`hkA^ -W=cKS%V3PV0uSIhO-<6-|6CS+{4qnq1p&)`D3@CjS(W|Ld&aku6T?|3!N39a~aRow0Z+WB#}IK;EI|4 -a_iniLs!0R#(f*?5fzg(dE@|dU>Hjn-lH$^n-|)qmymgW)F%b&`_14BS=(w=K$~gP942`uJ(5yKT*e= -kF543ed93asQY9&OG-&E#^m04vR!HTmLLN$Ovh4t^HBthY^UzSg1OTaMYs;1jah*hN -2Gyf51yHS5MIuf)Ocw}k|?&>zTS8jW@Iq5|ut`LEkXDO&^==oQEgDG&tk8C`sJcTN0K#DcICSqmIEf2 -|V5mRB{2EHYBszY=a;yU840QxH75#vd9rq)ttv1*$hH4gqe)EXCyL&5Hj+|UN2q%t*`;Wk!LI=(Y?fd -LW1dLZF_uV*dAJ+jrQJSsv3RX-W$=EtzfHl7Km`iCO2C^#so5?o_izfku-CQ=)g9m7M^j=um4RULD@+ -63kgtjpfrX;Yl|c+zeI4@^9A7AYh9AdgP5h55g#IuqIC!qGnKkC+nN@|I3N|Qr@B -#Hxmj%7mp+1&O3ML0x(5Id^BT{&uznlSar2iQPM9AwIkjC~HFm2nTmH|I~{udcA7~6Cm?AShwLGWkz; -=P;2X8us0WVw?Q$)1|g)7Z~M48}lqdtTg%S{dHwFDsefKqv#$@>4$p5P+0v1veANS6W -OW3v3TvVzhIW}gL3Xd?is7huiE`++eV|*AyqQQ_y3(beZLYNp-naR{B)p=QSGRS#Z++fg*FMLVv3Blp -4CnOu`)JwaRo$5>%JpsW$Njd}V5y-SV*uw5tk}u;wOyqd>(3DJ{ -}OSOv4!mKS{Q!d_;eLztq}rFW)F*Er6Tb1+pX+lPaq4K7*MVe;UC+?-41i&^_j5diZM5vNDdxWV($JC -Kg=Kx#(yZ5^246Ov57waet~o_x|VtAya2V-}Of4z^55G=Q1U7=(fe+Y<-}N}^6*KbM$2p89o;3wRbLQ -;mrimV9cmaC -J8rAD|b@QAlv|+E4g_DonL=@7PJG@CwiZki4L_Mdze+DY^xO(z&)VwlYK4vj-z*3nDZ3xBZZ%+Yf}SKzW0MN*B53Hg?ZZ~HY(Y^U`qp6!&;*XEE*mT%QA -S>eW(p&P!51+Ad7R1tLG=!^?^_~_<1nHy}Cp()A$4dvf1qHKFc6Q9~jYq4WmN -aA-Rjuo(><4}|j&p&Hikqzu;00)P8lbc9Ms;igP&RdPtOCU!-6*ZU_Xn*E-e@_zAL3Fe0s7-8rvaHN? -JwEN<+~0rvI8q^M-xfTx40C~lPAbGpEkGDXgQkOXPWA%BXMD2jrM*g61En{*!zC($QqzrBJYg!go`Pa -aq6gngi}6|TZtMMnF#78I0e<}MJqQ>~8m`84rG=m^%H(36tOLdf6ky+4;OoKO&SyO^|NH5?@8JzVwYM -s}bM&J(&6YRoj_^Df%oR(kw#`?~de$}K+4Z+DEFz||yrT=s#$@Jyx*TF?4cn3qB0kWy%|K$Fk^9OntM -H?dd!x^q{+voEVH!Ee@`rJRyaa{luNmDJ7ZicOEI;uyTKCc16%QFmMd`WN3rsb$ud?aoD}12D`3r<6;_v>;O~T4uRx= -PDv-RsoepzJ$NNvD;eCtIvch67_9l|=%&beb3bbj{FT~Mqb~vFY{eN&D*~Gf=yuTS_4Mtxt5;p2$}-j -5kd}YHP*wbRa`IO3)pgQ)H``C1eErS#UUSPW0DUyeSljG;tcrXMoK5wNb7oFYUT -#03{3=vxE3@Ii28t*aAHpG}ZY^t`X^!T(<=Cr|wL7Sx>j01m;Q|CiQ?}L -&=XZU&+OS9GrI?A_40aS6^Qd7zytL>nQ^IujUGT22yY0 -^Ev|rkbQMZ55Jg`l%f8u$Ls|uRP1k@R?!k#wVmKPZZ&6f~zAt0Dz|6*==jAsj -pM>+C-i0$Htg=6U9y5}yhc@*kx|xG!ksA#RwoWL}YWVJ61xyg-b -cS7qYGgSSuRHk+U*lNwo1bq!Giu>Xz;4(KygX;9?(2bUbsOcVl^W^bh!STV-&j&B!#VVH^?@UT&rrF3YSDC8znet|kfj1a}yn#vB9l$i(01+%}K%P6aoS-zaN>lE}}Bf?t{lgkoorG%G5wfA_?dws~s(CC2R -EQqE)Q#cLe%c{*8sjW|!pSOb66+c+a1d-vBTz5c&3YP)Su8Iw1Z)^)hv7}`CX^&8GP9{Nh4) -zzD&;5Sqi*D}kHvi-If7l8K555}ijJ_Rz|HrfU|7bPGGf2Nje+Q33H< -g?hvGS>Xf#qo9ro#ya@tr<~cU{Sr7UTqRE6e5%kY*6NOR)9(twCFqQs;1moEp-)#~oaGV!GiLcfr3%b -tVkf3v_?i=`Qn3*IO0h${bt4&eFk<1Bs8AF1678Oaf9HON!kUOS%?pDhvU -89KNN)7&JKO1VsSCV$b0tQ~UuRUyWq06$Mi$B!Z!wy>IrTy~j_Yy=ag1fUdo#yF2@jd^uyl&=KgD!r9 -$rNFEPj;+e;U*#eP+m*l9#U4$k1CRbrFeiaO*z+{vGy(!iAsZq4; -)P1Q>1?3tNft~X&sRrCU@-Z0nPKLe8?IyLh!F`%L7SiC@JD3e;m<{H|#$ ->KC65)A!%4W0WTvotp0_f`o8GofaKn+9j*r5{}PD2Z^yo(;y=X3neC^O3jBv{sfhN%gFELSJC@uULm2 -)I?q>++nJ)N%1$nux=zsO8}X`7T7#|Z&2GZc3k&VfJimS`@{}b!_0~@tFZtRon}x@Zy)_s9AsQB7Tie -s12JD|y`Vg2W8j;rvCC3!F40smh>g?ZBy}uq0?WJsI*>do6WpU^hgbS;(Ba+|{a_nhX!mhM)5N4n69J -(ct}L<*?yQi;{4OpuVeU|19UpFN(w)G9eI>ANG}x;+RknsH*+tA;3ldWSd0FOBoRk<#GG7hXxRYoV95 -HXk4q5{9R4gbu9!dMlHe`}Jn?_hyfU;{kgKXluD!I5S6;LT1-E@)rB3zbhXJ-cosyfCtOVQSnTE2!c{ -ryd_H95(MciYMR7t_FZH%u8IQ_NAWrURu((r2D}HNWucebk3qs<}Xs5&Gch?k2N{DjWv`qm_oBlCfM8 -*GhC`O55UTVZRk1p;KC-jBMeK+m$9++eR_ndJ2k2`yP*`HJhQj2TFT;+wZ8HVVl6lV+(dwA*Vx^=ofT -IWy-wZk=+b$O@I>x(u;55OI0k~ZL+fLi*6kk9)QS2A{YQjsDuuEdwcXPvMbhciQ-{nRg!Ug>1_ogud# -6#6D?q0VW4O9$?5Vr*ys>Tn?QRBr8O%MjA?}facvPLV4AU84OVU12}?lEgJp)rL`^O=;LM3a2KFXAUL -Rfo5PjptLLx0zX>sv294WeYtEd4nyK9{_0&?hyUhh_Pn`-5P9jCz4K`qv}uodRyCNKre43LgVEBbfrm -!)lsfVL?c+6cP!PA`&7_Y_UB@EzM4_M0DfG-ZP!-y(NX4+vlVM#q>+f%I7(CY!#PdPagkX_*_H9Qy2w -OrCMe_HkAr*)P4OeN#R+G%jeR@wX~ObL2-Ys(fwN*3Eg5If6?n3t0Y{OBag;{t4_s!EpJOorXYo8zKY-JuK|!Q?GE4Yck=U+S8UovSqL9~A-6ILR94u5u9~c>G}<#xXNgi`|7~JQt)HjoG&4OXT_{?#wH~qDNulQCP&-N<06eL~kh|d(6I0Em<&)abyPQ -PTva0W$C$n5G_u1OPNd%M)Oqwib4P=>(!_H0z6A|VDXeY#8LllD^ -4I0)l5_dhjh}F^_|64rtoJx4}?4Q7_B -|aXaDnZ#!MqR6L*$v@$2HMjYmt5^M12RbfIUzw-+UaK5G2-Yam#m*Lt5360mJI71^!X0Si~F;owp27X -u;|2n2RTY@IV6q+}=+TP8{d*b9BFc>9h1PW~>{w@==1G<6#H)*C%zazv9KKrFvTPfR40{ItYR&-Oeo9 -m$ebdE)<=%`r@!HMEDdCrPNeSBDjZO7>i3v-X_42J-->%ehix|Worsw5KCtzSu!4FdlF -~)4$cv(+3;vAu1YW(f)ZXo4IZE;WZ18t5MbmmMOwlPw-|;W{gu3Wsb1F2zgVZ2gj -fK~JQf&FrWkvwnE<(~$Kg=_7WEE54CAR=D)D(WCd)1Vd4^!y(9xLMUZAx=%=kBx-@vs*W51ZLO9Ic$y!~K=({nGwx -SCu%cdbr=eDp!E=bqY2?Kn8=9joDI-vuTV%l#+(fq6RCK-!ww%Pn7nPP?(QSJush#PI~WXPEr}MF@0$ -OCu4};urzpK?#tWUW+N?(zhcX+qL*U}jV5%L0KClQ{C<1Z9)8$g5N#qIW|~<4*ZkrX#yf{{1N&F}>9! -#V#pGhniDC@R*7HSc6Zas?tz*@Q$I6}y+2Y%Y6vDRalwYn8cyw%n#~bGGmWmMLwU5-6Kc*jlxu(>o3C -tT?@dQT!Tdaiz02N*m#RisgxPkMepa}zNG2vFrIT(-NulOOVUt1Ld&`yfXlRb2B^fDnQ&s%i;C=-e_xh}OBm8594Bb_7RJ#b@4@^Cq&hH_&b -e@~D&36^MzdAJyerzzNLP~r7UHN&yhU=$K6tsW`BlU^q3?Dy#R&$KMo%j7l)HEn~s;D;*jZ#|=r~Ii| -!e_sykN|IT(v*b3wt`DjFTJzqGlEJq`rhU(^+S>@pMa~Ft%Swf_MWo0!RE*E!;B7qPQ}4B`_|;%cS(BKL(gF~a40%x!E&25q^CYP3&P!Z<_a|6+zc`|I?5UR0|L_g&`iq_b7d -jla$<%trhqBz(h`w4-hCPCy<(f)`971QM-tKx4k@Y8x59?|@NcPCtMBBuEJ}$J{E>nmXSVju7ptY#`h -sB4Tt~p)%#P2C^e$XT>^_#rVY4Ye;SNms{veeJvOl+kS*qakgJ`FciBf0B{IU?EyznZdCMj1CQ|d2mwGsvn10l$`5A=v+#+mbeg&)b!w5}(H%#C9rG!S+w;>ZU?2jW2{aNa`OWn6Z(;-lz*;=J9C7ZPik-`q(kfuv}G(!%s<3kGnL?!f8m%SK=^vyNP~_41yD-^1QY- -O00;o!N}5(;e-97V0000P0ssIa0001RX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQ7`X>MtBUtcb8d2Nu(3c@ -fDMfdrN(3L_d`T;I{E!;_QClbC -&GGTT=nWdJc@X9rc}N$e}^~&=~q704 -Kka;!moEhJODJoxCt@Y8UQ5gY?ZAOA;g`qmRZx!Wohd77#VX&WlW%NQa^rZPKgYet}Q?-x -^7Up+VsRuAJ3Wty9BxX*QoI0AO9KQH000080N_fRR!N*Di0Phw603!eZ0B~t=FJE?LZe(wAFLGs -bZ)|pDY-wUIaB^>UX=G(`b1ras#aPRZ+cp&4=PQWW#4~XG0aFBnL7TL*Xizjkv$SZ5vRTWbN>Xk=)lT8N$!X7W -_x{TofNSK`Ct7oLN=HV!yAdl`F+4tVpAAwl!i9Js#C(hV;}sJU;DYy-Th~@vFH}S@s{{v0 -kC?6%f0Q+3@?L;P+M3OdzO9RP)sRCV2T!7;%DRRog#~Zh-y}aI7&!-1*gueR(;#a+Om_hyQ0TftJQ&G -mdX=BoBNskDclrfZHnJp!v|GoH|Ppv2*#4}p$RgNI|&zVq?~ji!gDpYC~Fs=FcS@1geoNbyP -x$}F>sLMs`{jQ0ns#6%?gSfdM~q~KJoI(!>{BM@yNnqvT;cVi#}@vE1+t)l(k4lhS)X -RUF(uvBe8(RR0!(s8=VTQf)`xb?4RnO#gxR=Ku$?lh)OVcH^5q6*H(t)1EIT&J&`oOko05Wh+js6Kxz -wo!kp&>)gU6dtqCo!Q=sXj+)6Tvb>L&XaaSboAFfyU70B{Mx>OvW`?byZ`_^l?+X`%9K$G)Z#x%Wfb9FVCnrsI6hhVgt(U$O!GT* -#GJxy5rWiRxhLk*3B6hJXXWWyJfByfbLL`yb|MAS}%~OzA*n^AVW?sB1%Y7*J+Y0hYY#BV;j{d2MESb -V(&D0^LGViMNAw|IZ8s8Gi*yNl}4ika2B#2A?S)lcd6?EI5bJ#Nd2CWhtc1W^TzyTsy*+sZPL>EA$}etkb86g5c@3l&gM0a&eVD$du&>v$mv+4l;SMJtM}7tnGIyGY5x|nwv;yL$ujPViBNj|wle#diE*lJ>|M -0LsalM`KsxN#mE;5!8rzH|2fdivW<1jzS%u68x99f4Y&>fHX4kl$^#uTSpE0&&n=CDc)Dtv=->yM~Js -sn4F^PoF&@f?I9o^GV3oddZJ1V{wp3SpcRvzsBipg%tD*wZwU)*}G00mam0 -w`iWjjvH6FMB6ZFcufVBo8n3yqN>UjLs^0dio4l0QO;}o=3h`t0|XQR000O8;7XcSwnxA!H39$tK?VQ --BLDyZaA|NaUv_0~WN&gWa%FRGY<6XAX<{#OWpHnDbY*gLE^v9BRLhRrFbursD~O!3fSV7BH2d|X9(Lq3X^S-sCzi+=ayYWk=skQyPcJlB7szdF_nky|+O2@E^?Lo8H0?1Eh!h(v49 -=dEBp3he9r2<|$;#}Zw+_OAc*R?NBDZCPRf3Y#gAbU(HlB1}C<@Id)S4u8#0YeS7=y9~P=t~9FB!n!2 -mR*kXk>zJKp9ED{>DHk4v;dy_BB_bSk0-gTuXuj<>8H-{m`*qa$93xt05!r*3v}aK<_GvF_#5#A$&i7 -c?FRXRDUa3%mEC%%#jIn3tv4!n+t4bG)}$P5zc5r9Bv*Z^va-CZy2$*?~^%IOej3nN&^Er{=Lh3K9DIWfMDocXL6G)LFHc%PVu2oSjoR*bUfB+yChHqjV+*FKr&#*o5P -?L)AL)eG(*mC@rsOiLZz|O%!w?ZL?-szTh`oJCMCf9TCsc&JmR$iqyRyjq>w9}#Z5gb3bf`_fek7;Uc8rIZWHkLKbb&ii4opIQ+ -*Rjjd#id0Z3;IDBb3Kax!80F>%3JwB3^uT$ip@PM8L55)P)h>@6aWAK2ms(pnpS&Uwg>qX0019Q001K -Z003}la4%nWWo~3|axZdab8l>RWo&6;FLGsbZ)|pDa&sXsl|x_dhEH6!^&{`~IJi0P20QA5=wT&Z{kbo@!;;+$3hH0Vt -`p7ul5Iy(S8H5-{V4cpHv7c?F~Xc9Z-$#@-}c86_sLfNri-RL@@g2nn$KqpuB-g4t0lX=>fIyw`>HE@ -{B<{5%x1G)T}sK!2|j+=@eb$B?XShPf`4`Oj%`cHnVJDBu(GZhH{&GhOCfp1wr4gRgk;CI8f#w6X!=J -t3@|7jy>SYjJhWq75y&lPhq9?^7$ceh7JJv63EXzvZfn3E>u~OH;H=jtFn|Ea(DM@T&PvHjm~mg2gLu -cbh>`ExW?u^=)I7n4#zDpRY`qqZ7}o2#?Ol_i^76&0Ni{SQP}%Pck_GZZ3 -DPW@4{QU=fl`H0W$!C_3GE`>$j^yvBum^A)EkL6hF73nfJWw=lz1n+avnJ%@o9@9zV?&i=_qS`01vBM -Wv7f40#W<6cte7MR+xnE}=NPN{Znes0i6+2qN43{w?Y8gHj!pgU-Hw*MDPG%Oz{tfk}{7xj#=*DBR}q -UrW9BX2QJP{tODosen(g0GBXRsibz#x>icDt+fD-bQ^w-H837LE)p=26#rLq5(OY4To -}I+6)-AW1$vq`@8no!Irk77K7k2dkEBY4^4Y&kp6Fn_U)~!D_t ->=Uc579X0AcSdf+RSY73U0%d&?1;OZy4V5)JEByaoYlsWY3|A!3~>|HF`=1$|dteVwqyv*NlOpkiJ5b;UE$ -C7T#a+uxK$F9NqKJfJ!K*2|cD+c{(dpWph-EOZF(r75-XSZ3y$1OnEMgU<&Cv_t0v++<_K}Vs@(TYq* -%*?82QbQJ;BjKNp3sY;c1jx2+hmI>0ngeZWibe0Pp?@yEVz`$@x#-cx4M&Cw`{c?9W_!5(GEh}sKEfo -3c;&9zfsX=qB7)nMRJkS5$>Wujy(05pH40cFnkxotmi-aY?-eLFVQdI$dw7fz|cCP(yVhg4Ks<_1?gU@QN`^42JN!sXA-*Ui64)gnV~h0U_@9Y?DId8x|eIdq;rlX -By?~K_|THuP{TzP6|-Hr0FZun`P-4&ql2N(b(gdvvyfKWhYh+xl}>X!0u)Jdo~Zj{P=BDp3!M5JK@w$ -*|H(?VW`;&E>;_BVy0t7+s&Ef>VEp@GqoutE@p{-fBn-FdzUooXX0YNYuqJ2Vz1H6^}#dwu8o+Bv={U -_an-%;_(mOl4KAhjwjt5yqb7(l@TwNX87^7XSrL8yGO}_bLNqWel!`1>(>QVlQ}a3D6b#=Gh0gZu_yqO#oFLVbKMl`_vtprPcc8oG{Cfd9Ti*`Z&7EZBel8< -PcfQ6dN)CmCT1C-&bu%3oakQWPJchQFM#T?urGPe0}l0{jT%-_f^x1oJz)mB{K}73p5 -U0|PEJVzc`!-h5bt)EvwIV1y-fDUu;Z;`p}UC$55Q|5`Pw_$8sp??rL52{Lwov(pafK;Xj>1aSlg&VM -=v{V_A>zlOS+Rci4@;mTVK`Q8pGB9I~#o7goYvz&)d+%0};Dvq87b_&&x&2Z;^~ ->l)^iN4w=~@B_H>GQseV9a5=?C+MZF*^R}!N-3+r9VYe@h{9t#40)K1nZ+!TajP6EV8sW1UiyiL#({_ -bj&i;TL0Fc7iFecT;|&e?HC11?$sIaHCVcfTiUK|4xP6CuDGz+l(%oiOHX$eYc7FvnnVbT9Nqm76%!2 -3w8`Y%Af?Fha?^2XquQ;$O=mkCgFWir}%o7_*+-q;q_*r7yiSk0OcVmw{w}xY^b*>!`Oy?3r~vi>lNSO%HTqCjT>& -#SGRWoeq1FYAm5ZXlyGm3DtW4AaN+TD-oZk*fu{?a@U!Qb{=o>;0-tkNobq`n-83P@xYFLN%+MCpax? -N-@Z=SHf8e_ZoozVP=eIz$CMd|2yJ4j4J{DqRp;8*Ea1nvh#RRH7j}1CW4eBy*OhmsMk3d_n77{D_gQ -{S2Rf_P67zWh79P8oiC8SO|d7?bovSAz*2YN(cJi)FKG;!=|!oHV)Qt)8hUVLFeM7qF?*}tK`5b2IZ5 -z35t2CR|jA4kcT=%8tezDx_@6-8KkuWkzaNcm1-Fkgwz*Mu_~q%V+9&{RBms+^8fa%J_-B4)}TfJ3I( -aUfCyzZW*I$|crbMTxmJ5{U?$HHVl$tK0TLDlphVp;N%XARzDrx-KQS$)YKyj$!g+UE9r-jYKbS^3;I -|3@Yh4v*)K&Ua@!R*1M|J&snX8H8`&7eG;D0ZAwZ{zIJo1Q=|wZfd&|C{8RxUitTe{S9;#094_c1gn2kZBR%GJVYRAT>x(W!xU0=u&1urp4$1XxP7n(g`Lr=60D3<8655G&o6xDnM}q!;m! -LVW{b&?R;g|AI7iq?xY+^qBzm%zi2;_)XST7}O?%I7+uZp#TDPhESYHlGvYs4E#%pYJSP?#Us_nv0Wl -4qrO|RKN5Q1gWV9rA%NsNOzhqFF!Xyh7Ji=a_;8bM;Qij;c+Ic9?gw>|u28r-iu=QW$$elb>aPN7zbB -SCIew^w+?9Qmz=3G$QM9Af2lcs$eb94$3K+xQ{*j1|XFqO%jj*o%93p3z$3%*5@&FSo>Jbod;;-Rf&? -nSbhWKPX9kppsZbyHB9VJDPA74{VqGGV_-xXxgh4nediIdqpN^g+t{P^0f_a9}!ZuYuEMY)Br8VoXBU -F0$}T(>D0b;rv45~P*=rF_8cg>Iqpfk4&ZM(@=uoDD{@14_8Hw|edP5Xe&MfV-NP4Pp~`Z9>@wxfzei -(9}~if$6&}c84-<2$=8uviFW023;H8vz?cpKp`XRw2bG+wRjK6BAaaV_Xtvid;FS~I=n8c -o1*u422iX@Nz4rzV-5Y0HQ^Cd_4m{y_Ny`)1)MJYD6_j(lD{FCI?;d`s?RxrfsGnaxA20j2~Sg@$~_G -LhC~ROECgyra_iikuj7CjjOTOI7%J%oGyykqyjvM2rPY66ckJnTfoq%gcd3qrFx&+v@5h+=q -q>$J3dhjGgo?ajp5IIoHy0_AZ!zhGC<=F`|O9Kd?Hr@ul3T%MyatT`Xso+qg%#mhGHq~BgLt)`yBT!M1` -vZiJ@KNE#m@jTaT7sLp<`Dl9o${Or>bv7$iR~~Ups*_qTQH?G9W8E|YQ;y=F$}#WTc8KW|H$Miu$#mi -2WjgWv=GFi0EA$IKKv)|$+2Lh-^1f!&S5hXty^CwX=2uu$p%BhT`7??r`SMau!L#1hm(t|vFDa*7hzf -X-S0O$%KL;el$XS+;rc;-)%MAvTtxAoE9vnS-X``c{xuFD`2TrzVX?0>b2rLD5wNr9M7MWGIr4(qM&m -J(HYNw?iMUUkec7@Zf%v(gJoN|xvQpWt3XsM9Q)LAVs{33#v%{`xIWy?WyBB4gjY5K|o6{)zfafK1|u -~TWl>w%w>d-+zBTumVtJ>X?3BDC}Al6SbslR=2!Z*R*MQv~MKe#9ULy0YTtV1%y+q9eDp|U=6>6 -;sr>fyp2cN}U5JJh+sBQgQxRhPAw0#X`=j*yON_xfqs7p1tvQaUfUNV&&^MV2E#zC?XgT@RnP=OZRL~ -fJ$M&)Sy8DZf{=R2bLFU+M(UYAVm;d@cpV7Oo~IO!v&(Uf+2y%A_a$0Dc3ecO@BuG -t~|X_Gj_P+1RD0GHPhbXT$4)4ZE<>$aW^Jv1+@f@=%7am&kVPcbK+rFwO7?{tR_IuvG9A7+*w;lE4({ -2`eXFF2fE=aZWj#b^ykTTY=llLw6Nykb9 -Sb$}&C&9VEjF477Qmb6-1!c2ojAfP_;7 -;#U`5>(ESx@fO>-VTAC_a%)EaW>s$xp`$=#*dSJ5&*z1Nb3L)6vxhSrIs(p#rO&iprILqNHvWA=0`Yn ->Go8&y8)=+ARCus1kqPxoBXO<-jRyG=q8Q&98Iz2_ThMrqHQl%cx0|WX66tmLy -kQ&70Gn&}4t&cUy^3ygDHLp5Un|zE_n`iv4Qk0`base+5VyC;!NbBQEMFxASHc0O%@#@}#FWH; -Z;ru2%6RKqZ2H|+`GC$PrgC9bv3fQ^q_zoK(aasO_ZBSj~w@*TCq9>>hHNB$$t`&q8{aZP9U5#$O&*} -lfjL-&5aAmEed!-%FG(coYrA_Y>1z{k0XitO$8Dz6m&P071>jE>SO~gSfd%_MS+t|{Dqi-Z?dl1?7gr -xR9=XEU4)a9izT*~T+-Q`5O0@lriVrv8_hRDKG -pGH6&q`$9m87OS&H7Ww)&b#8ec47G#l|2-9v#|Q->4VmBAFuTZ6VNr5fE86Tv8Ue30v5LkDc9@Dhjt9 -!lP6@?5@$UR9)#HN&y(RwrZw4wb12z3n*bE(???ABB)t6gFOU2y|3ec -L=(rwu^<50}Wd@h!)x9DPN?}aZq>=KYBDV`NEIFTc_Ww{z0|XQR000O8;7XcSR`W2XhXnutV-o-XApi -gXaA|NaUv_0~WN&gWa%FRGY<6XAX<{#PbaHiLbaO6nd97GmZ`(E$e)q39^Ijy()v!GVOM$IhhhbPTG( -{I62xM70idjpdMpAaPApd=b6m=mbCqY{yC~ThlcP>0ED{C$kFoi;KUdYud7rcZh>~3h1+5uYZO+eGXEICRL32Pz0Xa?Zsm5t$}GJOX?RKOL}r4X<9q6{;Kaksc?bSSy`ezC7SX|C5+(jpfHIJb}57K(O2Z8^eIgP<6M=6(`X#wOR{Vcd| -m2UM)*~D0v#aUgW`l9E`Z1Kfh9lUIRxGtDuG}fHDhFeU_)ImsfH^(MXEcXI_uis@O@8cG3CJIg=K9!k?D-)3x!ehI&j@viZQ=E -t5hx3$WvMebd{@g(s(9v?CXdA)VzE11-qmYk}8|}G+4`TXBL+A6R>YOI;a!xYDi~cfOj>pzN4Dgq*3I*CIsCp5*ALST}$V^q=9(zMbQR9wBR*8jw|t8{g?b}41Lyk`tkunb2&f!+*kQ)>R?Gxf89bkB --RV0C`Pxb6-W(hIs|{b?B%nMs1@M=$c!44+&gPS^S|)s%`#$rq|}n>!qC@IQzpQC$2*`KG)F-c29bbE -|uHMQ@<&7&efklv&9Iebc3r$;)@V!r2{e`Dwh^Zyvo@Lk#^_pQBT+8SFRWet4YTmICYZxAfYN`QaP!x -PkHCa2*lyWuk(GUhm^wAPopC(K=U0l5@N7X!SbluO3De}N -g9_3 -31{5DCcw_4L=y8=HlJk4GP|IkiA*P4k?cOvASkTpYZgIx>ToK+dwQR$wBceu4>`-XN0U42`V?QjcJ(q ->WZ?4Ni;vzJvzen4||HC2Y9XthXh&giiw^#nU~L|R_f^VF-v#BBmJ+fauNFN@9hsm_mZg#8@O`@d4INm@(yGD2Tf{8a92^HR}U});cZe#^gaI|8vOi`x!m{@6qoJ|3w;pkZu4-b;?=+dlB*tVa$hVbjTV?j=uLp^jsrs>20h2DiLJ -ocvRAgyUf#3X>uImLt!mNwpu3X(sOZTYqrPq7QzLbs)q>x*{Ud48p<~JGZX>QE%jgB$wHaYUMMd309u -Sz0w<+HOt_^<-qfG8^Sg7S!;kN{Pk*heveK}t+b?`QCTN_)Ky}0K95!5It6^&Nn*_rsdc;EEgy&7}3N!oH$Lb3GZjsO2z(bc>vEH43TCYhtTcVV%A2G0KhP)h>@ -6aWAK2ms(pnpOY+0006200000001cf003}la4%nWWo~3|axZdab8l>RWo&6;FJo_QaA9;WUtei%X>?y --E^v7R08mQ<1QY-O00;o!N}5(1*Dhyc0001-0000m0001RX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQKFZE# -_9FJo_PY-M9~X>V?GUtwZnE^v8^k5A0WiH}#XRftydO)MzL%u83&QBVp_Ei6sVOHNga<>D$SsSmtO{h)WF{?|1T$F_i*%sU5@m5l7FCjp$NR9qea|JSFI)EP!v=^Yk(Y<$z2|^^B@in{q@w@M5vm -^m>lCYS)%(ucOsj7@B#XMqjE%1@cZKK_1tz~8DMOLO3sqNa5&qh`APuN*LUi*5+@aNYTaNEV*_|Mtw4 -SQFr4KG)29vCm7wu)Q%DwvyQ)~;>c>ELA^aOR(|fd^Fq(CUMqH@W}q>G8vJa`XGo=u~D^b6c$V -#?W(tZ)`W+XN%=>CcdVkw(L%p;z8Lv)l}K7)=GPzH_(2?3SQR&%FUfgF%T^VW=C5lN?}DdF)P`7mWiA -VRJ&NRw?DCN<$ew@{$~9i#Mio%skG&RZK3jtL7A(W6a64;qbuVVN`E)49j-g8bqi{Dh)R5w0u`xZ;ztKCxj3BB?ML|$BRy)|p^R99DD_T8tmO1~Ox;X^;nIHPaJOa)1`s7szY| -Fvu{Z2`S1i0YuaYeMhV?dE0+nrzLUl#!mr49(3>RMt@Ja5H&aL5<&_!m39PyJ;u*RUGz8Xa5KE)|}2d -wX9bO2$Cti8jhK?Rwecm#&UY-)xVq_8Fl0=qs~>5WHPlbUJbCj=3sCaFBWd(mD+qpunH!3O-9sfW~?U -vWOLt!{d8@ARG~4KqhNFY_yUPfZKw${Wn+pp+bC6{{f?Ig9YuL2cbx25RfUPjoczcf}qSQXWC68OZygi$Em<$+`;TS1sR^bl8iiAModo3+CW1XnVnQCm^* -dxe4V8tGkEXfwZfFopz`8}vr=+w@1&RdMl)G_pfi;NvI*`F=Q{v+J?Fjb|P$aCzM;lo8^Uhet9_(2FN -Q!95A3aTDC-bF`q%RlEr6my*hLcC=HQ*_=)Ju&?(haq$XxbhCw`V!Hmj`1In31a*&hmPm!0q=eEHt-< -Q{>Xc-{3GL*I|m(g%8Gct_I1vSYe$=nSb+J#ixqNPl=!!u7e4DIK$tJGPQHkPIrdP`Gy^9{xJjj)>Q4 -)ieo0cP)28Hl0v(l;+9wsSCi*gO(!u8267J;%8~x!QSs!&8uLV&F$kkgfmbT%}T!bDIbOQW_1Y98NgtW+ohKmqCL|utk5E8N#wOG=n<`?x5nU(7^G)p%E)01AyM1XIY2t8Ah`jwG*Hp%-)TGJn^|5bSa>BPB_ -H^in~;4P=h`=LY%dbJM7WRC>F1dLuBiV(a6_g`iYKQC-#r%)D7b9Ejp!h+`UDUtc-^r(HVBdN2XFU5%po*S8m1R2 -plSfp6VeDOlOxVY3B|{;-~rH-m4ETdSFlP3LunTAs1YA3jX`!KYqErdH!kXTnFW#X?8oV<-bv_$tqW? -GxAZZo|x9qjSh|HN0G9}L-Gc}Z{ecfW}^iPVpNJtCwLwvXnKqk8c`b}ooyP6u(2=*1az%H+BYf6;N^K -xZ=*5h0Ba+*vU17M9raKeZbr!Gfnm!dRBX9No=niNSDSIKTkHAM=+OI!<@kMCGe5g#49KLxdGEj!;%P -e?dBBiEcGYf!itsd-jYA_@WGX5a$Oq1dPQYD>q53bVS}zcMKR3pr{?z!TW5HJQy11Cv0*B7$_OJ;$5+ -N10dE;`jB#)iUW=267WJ3}Oh0w)3*0Su3CZBokVrk&hh7P*ZeF{Wv_MBc{gwF;4R -?!;k6(suZHJp=0;kmHC@daC#W-ag6@H0Hcyfr4lPMCUz0^@gqR(UlQ?~+6!O}{43PPIff| -Kwo_<%l%&xBH%h`VcP)h>@6aWAK2ms(pnpSOn%=rHc0015#000~S003}la4%nWWo~3|axZdeV`wj5Uu -|J&ZeL$6aCxm+>u(#!5&zD=Vsi7cYCJTAV6fLZIHNVn -}>rUPV>b{k-%vRGy$B#?H?01MpD_xztEZ8dy|x$wt{Ki?#|53&f_<;OYVh1B#0fjK@?Bo23KPqGzL-N -5y3r1(z!4SY!=5B&Nb9>$V1b*#(XD;%!u2gjIU!V8SR -D|E+Q6_!Y&&)SVTDS1>MalbiR$aZrzH{rR_XxJ`|W97@Ig56Goz@Nhg#IlgXN*!rgx? -I7(n7IRkqzj$Gw}EnMr{-kI*CfY(TJdTp7dL>20z3O8qW+NSD+XC@7ONS>Zb6a02O?nC8goaCYUKDgB -3)ovCNs1%lrB)Nm@RUQ==uaWR-0rACf1rWlu^qdL-_Ptz>=k$IdUPV0xKH!^^rkbgS5<*IlOJ)g-^eI -2ruXWF9sc2D+|Q*hbjZR%3&sYS+Ykh(7L_4iW+85{q$*8%pxJ}TuA=ZZ!Z!u;mmciVAr*8ZoaM=Dxh^ -KzbpSYGM&5Wce5&~BE@vM&-7-a9)xM~9ukCF8gtqsgkdT7i@<^WP9nd&rnijQ@B!T#sF+80m?c;&ESp -A-F6GL^QxY{zdzJ}8L2L$WM2x6_O?eo*-yMai%2ja14cms7Ms8-MW~$aDyil$;*K6t$Kn343y -Q&`#hfAQZbk`f77V7~Lb7R>5zsTKC6Oiwfvk2D&)2nQ)H+zr53F%SLn+T7SCd%q!KAC%U-^`y%M6@H@Ds)TXN^ah%vu+@_3)8MR#ktx9w|-$op=>dZ!@ -M^KkA7bKPLvI|mU(z-1oyVatcJ*c0ma&L$%8z*}~T3XoFQSQMl8a=vC^(X3GD&CHs$KtMxkk}B4WvYF ->n=5jTO9Kce{oONA7{g|uRgM^k^_wYa1mqE51?)BiK23$~=+dcKQwVV!NA;AnpVCm&giUXpQ@35Zw5+ -mqDh9k8SF*E_|rQdQAB9g$+2Q5IvPEY<1E2dU41ZhO@qH -sm#7E*B>GdBWqD6NdE;h?5wg&LJ@kIlLPRCjcS`?7;SfgJ?u{I>_qjBTnU&2Ia8qJ8vor%aGSOxTX55XnpO(Exjc1%QfY7`Tf~Q ->(z`HGkK`F7u3NB35G*6gqQFL3rLdMAZxvvWLRDdGYU`^~h^Ac$B8MPE6Kvv4^1M=uY$;4a+o|A9fj} -8XO-US*TZS=#NPq};dbl49U_c11iV-DC)I4d_F`-nf?Z69Z#N)u%i?Y}1%ry7KV!OUrucNtL^Rh8p1? -nJQ6qKxx6hT|{Q&zKD;8j_$x~;>=+J}>&*Gv1Z?6aUx`wYo;I3S*lIrX=F7kb_VD#NxPCm}ZOWr*wyT -spL%Kep@<0Dgy%@4oo>+rPha|J^U{-`M-t-Oume{LK&dZrp$WV|e)X?Hk{J^eH^xzgu^HxVN|M7Xq$Q -uoVcH?tePHetWuq6Cd_Jo9=x9V!r+0AK!iUr|D~ZDCyQ6_5A%u@1*m4f0^$8dV2ly>GiLt`)^FIzdgP -F)pY;E>Ha+&?!7V-0@N(Qf1VeFqUTT-iIw-$5Bw8eYCiC5*0w{TPbHl`qY-}5VFE`{X7#~n4o)Oc8MTEtq+O7DLFiVup4uZFE$Yn{Hdf^{lr7^C -%^RpXFj?e^sf1*g0mCHk@YLE3G -qS;Mx#0B3EbxvAa29qJKt;h^E4LZdFJq{R;SwYv -{G&J6QI?Jwy}ERjB)z(8Nex={LyA>oiX5ZX1*__l3>JjM8OW?By2Sgw_8FMj$0hTve1MpQuzA8V}OBK}HK{Fhsx}?}0O^U_`TKsD~NMc0~2GVh}3r0D9{88ghs#DN%5=D2XYE)n!c9R#jfVSgT@Lv8x+|DjB#yxkTNnS`HNySYIi8J_rI0LZ -;Gpo-kV{Ar2~Yb9&=TG;zsU5i#ym4v;y)i!L0pJRXtfpacfK&-{5*o1E8#cyak8XNsmZRWsATCF@=#gBi5La`3CIiVH!O9{ -6sMOv9QqJnSi=PErHW&9yXvxAFZt>Srs`QByO}R_SrGo)jmL{S`o>1qRe6a$LgW{K6iXTB60t0G{cTx -~H5$jsbF$Nj;pr(Fa~nh1qXJFSAxldLWlKv2SyG37czOx#@Dh@{fxSasP6EM@`#g_Dthz1_x=zzHv&2 -5sQJLQILL;|-TJSY;Y-YJYY+& -V6c3;+|r+dj2-fQAVhHVZ<^fL}d}G&tV3`qX2VMY`ZK3y!1Qw=4*7@;GEJ9eU8F`vJW98jCWBRloCev -)k5U4+9Q81`o^)0Z}|$zo?f22K;B^{i(X9n&~R?i&cudm_{D4sXbCi6hlc8 -z+C>(OK+AnHf3(dxta(?Cto(^uIt&uWC)OW#Co-(gII}zvdb3UhRG^&g^^JZGBODg!u+ejgd{P-9 --h~sR>+?{IMfw@E&(5iKG~MZ8?O$WSR>KFV|{-@wkmrWkH=< -L6_bD&54$U3$v%!y2C1#GwOb=;gL$p+?Fz(0Hj2~;oQ^bs*BkU@#nI3t&xyFMs?u -;fMx7{IIQdxF7wWkhw+)71OH|&gHyNs2T)4`1QY-O00;o!N}5*R!+; -hy3IG6bCjbB-0001RX>c!Jc4cm4Z*nhkX=7+FUt?u#Y+rY2WOQhAE^v8WnoY~5IT3~T{VN`DqtHseE4 -6STDk#iO!G%cEGK~&8ql_&w|K2*M?w&U%Lr)dCk~`n2RONYp^7_?(KmY6Xw@=@F`u^kRPhY?O`ortnk -N^1e;q#~Ozy0RBkN^Dezi+<&{P+L-;@>~Kd-v<#e)ZLdKmGnUfBfAaUcY?(`Q0o2`)PUq!oQ!r&t!f7 ->hb^2>yMz>`&XTQGF$uoYnz|n)j6YFUG;>c0gfdlhgCq+lGX`_!bNBbolxqWv!R!(op4n&w7N93#s-9 -ZgEnIhLN0}9$d+`;mJ#ab#?LW?H@FKvr##?5$-Sf@pXicHovmQrTj^8an1DkeS`XP3vgB5{6PiK?bSY -UoTCe@=d~2AH*0iC4Fa>F2uw?y8Utxxi7-&?wTS(K}#Q=q%|?A%;22c>*Hogf -jNoG09W*Qkz(~ln2BSXu1{KYWSS;gp*Ll&g~jfKkqErW#QIf$st`@hG8yUqlFWc@_=0T<AnT+&;UYA -Fj#+9h{p<}es6gzEkka{%B?~DNGD@sY$^+sAg_PC@CuGQ`?L5UPPlztfp^!6A`34tEO3D+W^>vlRZP= -F>fiQBId6O%$^M2{3JH$5OmRZ^?x#e(mZtSkxJCc*|Drtl=A&#RRb1ak0o2a{X$#FG@lsX+JuDjUeNJ -gDun9tP=3%vomzzW+nbbAkO?@?zJh<=9Dl33iKdwx_*UC1dARxac@qS0XCN2?04mr|aPC1u-0(g;l;` -$_o*JDig-28`Q}(AjyP=MqoHH5zgY#H3A^{W%>6FyuK)tH7Xz>;kcxAzdIo3~2&ks8gQM0p%30im6L^ -KyJYN=X_q!9WXoN=9NTs2CAAz)q&y*3)5TCP9_pn>JCd95Y{*KDsk0(R)e06OWEB -X@V7iyAY?j`ewACjx_SG?Q;QHa=#swIRcaC^_-&iaD -ItweHs8X+X(?LZk=rELs}2uSUEpbJE6O2ZtC|q*;0n?a9PB4CPfZCpKb5S%yfn-=-_y=(g4vq;_!Uob -0RghLx@EVk;sIe+6#Yxnq$|yqn-v=!LDSzS)BD4JFZ7q;Ww*iFeqn)9Ewy<$6J-j}kl*j|+QZSB#wiw -G`7QOm*N^Sa*{h8|lu{ZD`#L&Bhg>jo3Xb-HVp)ojvJ8>+XxA>~f?c?OBQID7k$eC3q#)CP$8PT>kLz -ti%=b(if+&)(8g|l?k!SnG -EO8adqvCc_c=UB^Bf_LJrm`$cSF?Q9QdRecYUT*|3rwNNRqk~j$zT@Q05=x#5BaN#O>a=W;#wbH++%o -w_{{RJ(9X+^gV*OL9$mbO)Y=9h~(vN^9|4KI(`KXs91`;L(VO#Dx)8Aex4f!S4zm3aVXr6U -&B(Gy{sQ!7b9BSnKZaPN1|Wjy(w_A%xQngi?o}$2F8Zc*kzXh4ZKr?~D(0IL;TqQ1YI!(s_d#7q-M2& -g`svyM`&=SlYYR?b$(%h2uCD#uXa)Mw;GrD2+_`UJj-44g=j#>h(u@CKeYztUSVwQoUbzC0-Zai6tN@ -t*~?}TDrsCden)HO*Hbt$WtQRXb>jP2;OL#EILu@Jf7DGTCp9t`Q< -~zW24nn^9sa!IoJ2y|eBuk4RyUvCFLLZyjNuIfJ$848r+LJQR1vtF>z-3^qgQC@Y_i9(Cf*sI^Hz7FR --N>E5+;A1vK9?vC_Ge3j0KxL-t|I> -oJGZA0mB8qFotRE+)ps1rNuZeqeBJre8oX^k@&YA9Y=dT9swgBa9R$<9i)mZonXN;h)LwQTB~#cWT$S -=iLNEk~(8v>cBjZ -Q1il`SS#Ue`=|q_dF*N)aa|&W549A-rwFyrMT=VqJ$uxNvF)L@;L1uuN!UIr=KoP=Y1~6l@$q;v+;7f-7-GR4SGC&vi77;pMGoa-s{Fa6jT2?3ke@KRwunb_;%+SAYXwRQ0JX$iG0d>AXoEdzLfR -@{nZviFW2==-&7;QH%I*tIA89MToKVnj^JL9QJ*CVc@4BdMbN37yE{CuLg{){3_War3dy&f25<4%Ou* -$pp`15ABB8`RBdPkm-|W3N(chGoX}Fk$0)nHYYx!7u48U>t)c4%x`Il6ouQ -d;_o{XzkE4Pm?yBc3<8JtfjX9gn;>Z>YCv*dQYHTrV~-Sm|-`~p6~Mjwid0|0fe#$Th4-#m<77VeubV -cTEc{U1|Mn06`1dCV3;+1Pmf$}`Jpz13f&Z9L;GY!O?|7X&%i_rUmrfYRJujP#*}s-px0 -f|mHuBP75S8sKQ{8SSzV%ik^#?;g3ewD%^b3dl&kGF>I~?jG&^rJPSfW8k{Lf!CXv861Kk`z46l3BOj -S=1O<^2>J;@gF)_l|Lk@Aq?7kB(o2o>W9}zGo(kCc&bn?+28@$O -nC3G8111UXK--9!GJ6l8yn_L!8jyBblm>jTf;8m9K{(GePM&6o9~zv$8bAZ|MT6#9((!}K#t7@N>iFF -m&rgzgu7qyxXoy39-U0d0ANi@|JjG+oL5Uwk2=od-(IE7DEFB`~5kPr=dogCJmAb=1E<_CajzEJTA0g -0l1PbOEg22z`LxsEe1^~$j6lID>u`|qJx=gXCJ8>Ay2AJq0fKsj$Tmy$JnP-D|7BouW9RgmK&iMxH6k -z!*%S;s!2;Ve9;?D;mf_w%@kOk?`3!+}YCuZDb{NEW%cypXgB*kl^!;)e)NCtt@OC|Vkc;a-DJYoU*> -IV(U!-1a|0s*Q#nc*_<`hFTC_zMKjd1nzwPxfvoRa2V6H4TX43P?}mu0QI;J>8YJSRK2i0L;3<)$-EqLK=J85d)xBL*#E8CN0v%_%l@U4Jt -2tHbpc&l7HGgdOqxerco=HqJX?&_&&O0k~Y%xzdjK1Om(Z+z`XiSGxEG&*JVd2=PyRhX4^4=m!8Kd?D -i2#ME$sb5_U65+>O%-vq@7#$%RbRXZwJ9D|Z{Dtw6X4!{1lTA}Vk}|MnV -7F(-X%{=$9aF2OAZU-WfhH2gLLSp_$x<9qi2X7z6Cg6y1fL}y=QpVcazx9boXBwAXtf>;f17|C;o3!K -SnTZf4Y+~*xqM`PR%nuteBy;u-)H2X3XoIU)>32;~>G3&=b1HqLH7>AYVfNz+S+OrN^yE*YGv85PO#c -ZWglu!L$wU#iJks(H!A1Qm~r-AK^h}+<(K1_6Pm9|ImM9b-X|KHB0W&aQhzc+0I?3h$%_D#1@15YJ4u?xviCirF<#{7^I -g}ZiRw)Y{2v~$nqo}3tN>(fwrp8v6l7utA4{==({`2n0QD{orzd+TTEXgv`PVtb -_eTSZf6Nj5-^2heCp|F2BT9QX-7wa1yap%jB5ANx80a^9^gS^dF`5)aV1hqb2teo7;hp4AM)i(E}zlx -?DHzLSxLAZ;byOKnY(dCP?i8G&FyyUMU9ww`n1FwGmKDaKHyuOYkL@pnzb(zr^bS2cjkRCANOtXYa8v -&c~SRF@laz`&ZPSv5_BQmR|tKrJu41g1rP-WsZC>A(uKqn)*3HI0b}>DKc#uhkl@~(<|JQA@lk6kFTx -WUL5&hRpDRZu^q-yj~iwT`+#5rZ$|tp^%D=TuCMT%8RikUq7wwt0tXxd>ifE7mg$Xd_a -I0&w|%@K!Zd(&abh8@b({3`zL6xc0lVWmlpHlzBe*Bz6WsPvk*bFz6F^dVvko3$Ys8hfz{#-=62a1tI -uqGHyT;WJipsz!+D=FIL{v!CWsAKg+}7n -|T&|<2=gDzJ00V#bGFQae280EsQ%K8SWYKy|c+{w}#EFVFl+}4QCWb*)W`V{;1x&&o%5Q -_GW$IdrwTvV*)dC_V!bag0E|l*N+p9mvWPkrY6DH8o}64IpV3hBE=*WBJ-xzr}0YOq|BE$|*j>c6BD7;}#y#=rv(xk_ -;yEm2T+8CiL~@;T>M!`Amfn!aM9BhOFa9+A9#CDS+Z~;a`N7G|q-GLe?fG3_2)s_YT|PP^|AIr)AVO! -N}hMz@7e#MQO$Y+^g4skPUMbKYWL+ZJ1wSTuJg|fS`K*jJQ(dwFT`x9%YWgddNL}k4I(1J&J*!cD1MS -9?M=h2Xg^}oMOl%HF$nUuwF2${k8XaY&Z<_dxzRH%BHv*73_%8QX#9W=2*!1b4H8 -WG97DND;!7KXo&Yq7yT&IE0W>c>Xj7)zHjI+=cV0L2mDu(_)gfMwZ&kgN@7g_Xub4vQ#+qQ`g~4E$k= -Wk|>=Ek)`RJ1M3*YTD_79y}iAZ!9aPHD_74-h4lk=Uzzan|*QIFW1={nxmkbwz!paK3UfE~;SJT?*6* -&G2r!)M0obff?r1E3lV`+#Sk=w8VKVWqb0fNNm`w0Ym4Zwj~)e69K17LjbC4jWv -eZUhkij#gE&X`dvf$;)iWJB)e!%qFJAqW8$`^u4sw?;l;Rxs|IKS3YSCN-Wh2W<-hhPq>Gi_`2SE-2GR}QZOcY~#e2mq4T+WgSf@ukiS%N#KX9 -*X8h}H@x8iDoNH|ARrb+ontjakuBo84E0pxvpVNdy+J<}o{72oU|Mus9uZMe6;V)_ZKEbns`$`={8DYHHq&s9`sHfoxULeyzI9VRwU#K5nz~2 -Ep8u)x-Vc<&y%(yObFP23J4w4JG$2en1?Jb6(WAqce@}}ZgCazimfieY@5jrYA!Sk{R!OGJw3ID4xUI -knRPQ8CFL$-V?67}YS?y&OFmxd?{%<3Bb*#xIK>{?F@>M@*_KQ{nL;PG$H;B6GhDf^uW6=lQUjzTt47 -INq;uk!9afnW>@%i -wtY?sc0iO%9`O;gJ;Ah4_OcFz3!HoU(H0IW4^xF~d*f{y^Rn!f}_y_1!EW4DjD<$AiJKR}3HkOS?8sG -2o9PEdCe*Bd<%XT-*4h>Ynza9r3iYy82K#j_{KNCAS59YzPNeaJQ`v~+IVDq`A!Ydd;m}~qas;{H -*l-CFH{lsdkhy-llwj5*xIx{U+|pBa<0BuB6{)6f5-QI-1vkO5s5Tee8nFt5Um$JwEfM;|IPF_bhwba -SK!%v#RHblh|53>fwauH$V4<#te_qn1$u#Xz5=p&ZZLfW)Z&;8SQhCMuy6QRiXo -H^$C7HB^Ys$n;B7!#x9)*}x4{{Pfl$qU&b1!EQ{-Y7_m+jo38W>}_N+b4jKhceJKT{9X3$IbUX{hZziI{yDiYaljwH#rxZSksTWV56;}qb#2@KE!R{{_8YE+G8Vbtuhj*&YVyy{gl^44AvIg%l -zFp*IO@4Y0T{iWT5qG@fZgCUjdCW1j(I^g#gyu;gh-}o!LpbK&g|SpOR{L? -Bb+}^7i2}cFG#i#tH=uFA5_tqt60HAG4uKi451_Y;O5=c`QE+Fub;9;8 -EV!4M0$@f%4cU44j}SQPofMU>1o(5=`jLCiNf@J;T!sDSD=2%md)U2%ZOzZ%AgIzryv!wBLUG#@1$R9 -=Q_tHm9XYMtj-bJyxfq_q(fi&E_+`wa1?j+6*Ht2vvJq&$p!oXM)-=ve6GidTM_wN);{4jP -Yj?OxwX?egbsI|;yI6y>2TC3p7;pc74$mAv%gMb{}A;XETOMcYzGSTPMqlj<|UI;cNlc#rLEO{148!y -Q%yp2mp|2H17xC!M6v4zG>ai={I1a>Z@qyQi=ag|;XoE}3Y{8V7gPi` -k3#Kd`^e!1Mm@;nWV(&~Vx!J~K!5kBsLCE^jhOOOcgG&qkP8-1&H`v&_(-T1T9@LSI1-VYEAO@CG#wc)N%*2XYU$cM}0~; -Y)d)gsI#02M+*R_^@6ojy6lD3Bx4*;d|T$*W}io{rCJ2Km5?EVa&l<)!Gq>!~Hui9mZ-KdGr>;^!thB -J4SQHJ%}r%ds+U!49a}4VReU0ZUDB|04LJdE0-2g>t*TaJ-?3{rBAW~k7|m0B-~GxF7RCh=x|?s94il -J9d$lsYA0~MipQSHEFEkGtt(mZWMhr<*jC-uG@A2E-(wcc`0&(J(1oJK;^kP>^)?51 -u*+Ns==}QrHi1dsmL^Iv55fC*R%*G;#eJ6+vNC#zIq$Cc^`v^@z?`WI5+MvZh6EUl -HY*`dTf>@!q8~gRL36qmU`0FJ1Cgx!Hm2}&Mg5v2Ncg(dS2I;%gppwfW$+8o=dWvv`?Wuk>XfAL~Yry -=kvXTKclva`uboe6psIhrSf#%10A|hU3A$2?~n~i>Y|sS#o{3XCg>_Nk`&37Q%y@z8KH -II5jb%pi@Rg*3I@B>j%#(2nEOpAa25VgmKinH1vanVLSe=w9)4~*Z=Ee#fD2S^zXzxZADJ6u!8AzzA=hSVTAU;u_As>eUbP9lz;24B;c{eDrSkqXbHF-8a5}k#oG=I8xy<3ZHI< -Ui5sGAhlUM_t--cK!)8F*fa%ZBsCPn3k8xv~UFtK=Rf%!`9SxUkR(Ck)KS_gl1f7}B}s$j$G7{QpKOyuL``0r#d7blyMo#?j}KlN -@U2k}=TB?<7$YT74ge+7hlSHSW@}%)6+A>49J-n6;Uc6J@Iw~$)PlBg8?_5PL-(imcPJQbpLXyZGtg; -cv4ba=f$y?SJ9u_cRQ8XZI><-@Naf&WtUeFFi`=v10)6XL=-YdsKC_fJJf^&L$&sD05WblQgQX}vT{YXztEU-$)t!xsY74T74FVP^ -6L8rZj`_1`5J0WGOs6IDEg@$;fHRGrdJV+dw#?0@^8CF_g=saJhjihL(|Z_79#q2}zPOM8egLuW_Dod -gRFL0Y(sstBIb9_$q_&t%flW%#^`6xQ^gsG(sETaEL2Wb3t0XVjG+>te`+QxGiK6l|#6a7U6-8`XKL_aOgWqA0S(Iz`0#w^l8T|9E(6uWKZO`h-FA#lOhT$~c%G*Ub -D#b*f2U0+!J_J09L-tp4BeB*t-^AxpbU2&)-d%dPFR(E5ywoVVAtvi!(VU~k0RpSIfV{P*f5K+G`f9E -br`4r--R0p3BAPiFNg0CYsqcU!BzI_w5jde$+uW)nD-CmIjLh8`^Sq(T64oV4q0A4~I^|?_DJU9khzK -elz9`(#yU=J`jPfg%`1gz{XcBd4~n~Refed+JB1BEtYpA9ocP|>F4vti2!GM7R7Y#1~aQ}bFA3! -=yh%H9)d<(AHhDBX3^YTBbCp`D$s|w(rZ?P^3}n|SOB-v>u(W4n$i`3@D?Zm|0~7o?icORsTrJd$I)2YzRs6{)!N?ePOJNE2?Im5dg -(CF%JCeT8c47if*t)2k)am<|iKPrpT2*A}zK{Jwc#Wd%UppqGpL?T{&S@dH5h1+GPC3j^+8Pdu@TO6O -;H7og(V!bli1ybwYnO72RBK{xY;;2fXfMkXXT;UYGi#_d4zy7;_aUDx}@1X0C>juVy}*f?jP3xq* -1zmjExfDlD45h{#HkJ7@~sYyOqTLnNu4LiLH%KFYre(_Yc5BKdgd^dF*>V6&hRr88Aksvv3O_2@`{Vyqt{@OY>;P^;(zDsSoTb7;$o=XAl9OG+ZC&Xll;60znYIbPLJ{j~z;W{S(E%#Np5?5n2 -;YcSNiq@^Qh*K^=5w9Q4AiW|-PT=pEEDHhQ3AO?ZAF&F_}E?|I&rdpoNY+$@OZayoXDClhB4^->wPi8 -9~G00ZS{U{Zh*@DJ64$Y--e;)zI!X_8FNlM_+2?mDxD0>RcDt-EaUI%;H6dvA&w$T{Qtq*kQvNx+j7u -wFVOCo|GTlI&SKTs~*;Vo!XTes_|iQcMR$2Lr0(fgz8*m?;x*H-L0wp$3<&ib^DP2!zlJdtWp=J)0ck -^$0=f3e&J>LM@vf?A|< -h#~&G*751I6@kfSc0kWO-X&sxy1NGtC^e`^t#pe%ysy53d5U!|fXzMAGHCLAc$PLZ?p(1%NcA~UZV(J -m@s`lMU6aHw60{@tc{pxG`xBbq*nvF+62G?6&8 -^F?Ji1-L!1dG62CJ#sVUlE90n3s%4(EIo6SVG@Kj2Rr5?au^O9L4%}!F08bP^3yl9oi;(E+fiZ%pI+o -`_BkG5!y8Fv+vxjV{t3ykGy^okGv>WKKS-NfmpocOTF0W;Qq@xCUMw#oxmEhWF&&D%1hs0Cy?T3pt8S -h@73VEABMC(Aq=R|v4Tc5P>s`FqmedjyV$Umc(nc5#ip%9bQ!l@Y}^cVJNr`#pTs-^%+T+v`vTM3s5# -_n7V>?dTmsSXi~@CeW9_-wS_JmsDxKbd!=*YCkH&RU4T2=BkxVU!B>!n6f6GUlpR@gPw+vizXe$w`RN -V4$%BZch+!AXmyD}V0_2bC-bxqeq+ky-E1CCmB+bYAOmNG-C-QfLkeU5vAVTkf~K}`4xKI8_Ia$k(4bV7=#kNj`fi_@q)^&Y04{)2ut_aVyNLixpSH8gr-Nf -(eBirdSlQtS?;qInr{`e=P!I>0!>M}^0v%T -EC|%goK|&lptOy6U)~I8qV2gP~-4zV`uv#NI*1%MXuGdpZo^s`BO`f|L(fte4_~*ZfHUF-AQKu+^LI>qyWw5yX)};-O4+bt5_ugT-xnBd|Rpt>uBPOaa=Cah|F4V)~V&t=4tszj~%TIKbx~X2y2QqAQzPkfWBYZHu -z6^j!v7PFbeK3qum9<4rQ0|ZUeWlHZ>!?||X;a)r2kEESL=nNdzX6Ir%krGbB`QrLHKg~lzb>RrN#ix-znR2jZY0#W2ueR> -t)=;|fYebhQvUS&}6$3;Cc2Qk-B?L!{iLhUL-58UHUs16O+pcWfnd34^%1CVc=Kt0hz_!WuY%ggAn&N -HyQfuLh;JQko;gr`MeEoD-=tpAmvMLB#7clsWX(4GeXqEEO)X%9Qe8wGojV&j+h`JngjPAQZ&knu#6bUaoE$>zwq8fC_94AG7C13o -|;%?-Win5=GA=@f$!eMt5)5O2NiH0W&xCoyi)#}3eq?NEv%RJw4lzEXwiAE2_SauH(o;rD4{b)2|>sW -y#g?CWGRu(82X#-b`?4SlZX>V4HY@i0d!_uu7**_^N`^QclWF!IDvp5}#O05!xMQ#i2Av-wvMMMNM9DcR|jcXBc3Fq}MSdosof$^F35Y -SUfM|Q%X{78~~&n7ndXO-4>1jAEWYLo^L<0!ih=5(eWH=mFu#k`DUlFPNtIbdn2Xwqo+-z6ww(FanC} -Q8aUrU-RQ>&TF7pG0mwMdJW)GX9I=aZ2i%lM3JuqWupf% -^wBmk0j{d1?b;N(0>Tfe~_R*3DBQN(4Ph9&m`zC0`wOW^q&IspA}FblI?Z5bD`trP&GIZSDK`vz`*J2 -UF-L7Tbrk0>-Xw!ydcNI@8^H3bwFW)jr$D3hd%h+vLfJ!^g{zH69=-!i8oYpF3fi!f^sXOMOz#t^u -r=wj=aq{7pQ(N-N0xQuLzV$5kfI+1{sw%)}ghpBmDh9MXC4qY;gJ!-X31yYb5lOxIMhU*JxbN@b>TmZ -=GWYY_&keLNFA`Tv>uIte?$&O>Tw`iCdJIh?rL9Z%pfMin -(BA58Xy#s^mxh79xUj5^N+@$`g(`L6FD4|>ZxD9x07NAT+1$cy!bSFlixLLv!27`hAQ+S9@EQQd$Vph -g3GHH1h#AodA{0{CMMcu*^{+jIqU)h9$9kx(VHkIys?8x78R2j%tFUgimL?Xwk5vk+PY*X&5I7#i@Va -dGIzU4HV^t=urB~2igeh>jkm*MN=Dl#@)t_#@!WdkAeC>d3{0g91c4-pl-hicWw7CDo2B*!y6T=KtN$ -45*#4rO@8kZS(VweF7rTwF)4WuN|87A`ZR`tk$l%BlQRQ>Y8nAcOiJq;@(wy*bRBf#FlZS?hHBavBwM -qdv$5||ZuuFJ(H*&UGX#sK2+ -NwtxJz1vyE0W+6YPx1> -Kugyc^uD9OaqY5tL=Sp%Ge;MqFn{OUD -5`I55#fkXClTA_Cq+*tHwyal(g=d21{P&&js*Pze^y+gorO$uEwaENx!uFwUkR -j6HVx{JHi@N({?4KD3Gp11^TkkdZhiA&4|z00XQaS5B^V(*Mq+ts`epGjU@Mq1G%MIfdHtpmPk_s8K=*2Z|%Xgp10NaKc5_n1G@Mu_ -GZxGc}!{!bT?|N@G79fqQn?0+sg84qYO})U-cz=n^d^cll|L>ny3U29cZpmi5-@!Ry*@!^f -jVxBmC8xpV$E{Ww_d&4aA~oQwP533(W(qkss{V$xKlT{=^UvX+=Pv(9a@n)Qa!Yxr&B-JDU(rMe;2>k -aa!mtN!CJNNxIg0>Y{F;pAK@jURDT$g!RSO>e7VE-xb6*fl4cFn^2{dxP7p)iA9@mWdo0ffTc+-pP9+ -9#gbL8)pIm5(z4_<0*aIlvMf36fTDH9d6t}}pu)l43A;5gS&+n5gJ8UCvm=QEH1P>_$!F(Q8(excZn; -LoAg6_K%QYefy=zo%xkiQJV(*M~WC%7S1IOqn25M8hbGr>LE%@8*1aI3Y7xXOz@7^*OTv`aeVe?$DX( -4#)Ho9Qo5PVjaD)vR85%qw|8ep!V)32zUk>)A~`T>+P29t$rC>rJi$;jTN#-T7dkv!}}5r=(vY_aHwkw{GX>BXW``jV1<7_sP-x+HZy -$XIkr+hkzxf?di62a?t85kM+H?~(zT#{}?s(PNhMuIfigU>PP!v)lcI@Z7_g%=1etHv -qqp#k?pryawl1-z}-j0vUZ?AI*#G8gJPrY%R2Jn_~x@{Y;8Uekb-*#zvod>V@6`~@e=)^-MRv$Pzg|O*yf6y@Qm;o)_2M -vRcIk-mrLBog>eC!=^4R@Up$-*_(;;FC~ve_W>ArJ2Tk8UjbT;pT)%!DAMPZK^?kBbOO*NMi*>dBFv- -rj+ldXfxC(&}``@++(-H^TeJB#;ia9}^;!_;gJBn2?+#a0S$l34xhp_Rm%2WYCcmhIlULx(Fz&whtn>uy?|0DJv{ -UVyle|gMKmn=Zd8K>Q(SP$JVAoL2q&Hxg=iYK<_i|xddNj;o9=tbIISr$lfLEFwmSx9*)tlPHl{aug} -|9HC(56k~yx|JLwv)+qa>1T)%HYP7+$>Jz}D`mCB3;&fMmd!fJ7TVIgdBcwwPzeRAQZZ*gqlWZ*utsF -F5xnLu{*uZ~T3#=uj_4UG%m$5u5k(dnDt&U-CY4)hId=k1m%3)fw6=N%UdBYT(Z^NQp|@~}=ZQHEAL* -Cj6wte;v@TTC_=b&DD2B5ytIS}4VlOWftBtO_r(-xo@3+Reahf{q8a+H5Rm6_}yhsYCK#%>UWnxv2n6@%4$(8tVkwSlcJc+`QlK09EWN -zdI1W0P|n&63SvS_;H=HCATF+fIcqa8bzb(4H4aUU8Og>j>Npg}tF&Rt;J=MI_TV(*Mq<^&s(fnD(BgRYKFxw8AT1uE^!KXr;7QPWQIQ ->WAsxyy%t>J)mNiM=a!nb)|G^mdWw5nMi7xzT_|M}lrRMJ*}maLWy+m?fzz@^ix}Vv~Wr3wH4u97tNL -Xwz=MBI?2X=1UT-P3*x!*(Ug4A#ERha5HEVesFSVh(DOL!=%h*DBTt7(>9GrJA=*#Z9q%ATFz%|KTi_?Np08QAR5$n^vnBooHqF$D6%&B9w@rjTI-^2lkdS!?$*}|VV3t;RL`8TK_ImeB}v -ytmLy?&VYzAWoAqPtYZ;n^yHL(db3%rgQ2`N_xe(>74kI)U{~cbWVGdfxQd%NpEl7RDjDP2YD67OB7cq<(2ov_Q-WI+;J1)MRzJ0#v$y&#aPI@a*XC0a#EZ|*<2M5{<$F@{er(N-APyI>Wq$$_M`i0IL?sK2+NwtxJz1vyD*+)tQ~M;-m_@QGz~RC(3|{2)AI;W%KTh61Xu_ -!c2hSDTFs&F5ElQe1iEF~G*6Y~5vltmfku64p3mMcu~|vUCj~Nfz*L^8ch>9tENvfb91@z){(@r@GY7 -i20dUBz;w4T6zGm^72W+R&qQ1PCy|qFenor0s$)X{R`;%?tK6bd{mog<0$|_olW=-G>+sDY&?QCIqaQ -0iY6YPf+`v28*&&0dcx8SU1FpsG>hWIm({WEFQevSyxavg=346?V$0|twtxDxnVO_Kv(iOX30|*Zv=AUc)Ixp)RcrCtX1}{RKIL_SOYl3R> -yTntB%|#BrAzSHZ~esB!HbI(oF2?WZ$Ep%U4y2fB3V}jEke~8<4cCOVyx|cF^mIvg;_^`rtkZq>J6%H -^gn=ld>oXzR?5@u@_|Don-dUox12q3J`w~iXw(ZIuKRzY54(y&P=$Usw!A70w4-Hs@~VGPHjGl{XnjL -AT#bB@jl^o;~fPPC-xHlk%U*v(`|s`#KDtGMeSgmFMG{^d%8y7`dbrFFcwFBs@%v4g6jnCtLtVfE-H4 -6Kru>r59?lB6joKm01sXpfZ2c*CyiZ}h_w9jgUhJ@>5sW2y}xL*2AL{&^90(nI6()!dj}@OEW&bZ0J{ -@imUU&xfROLE(5o$hqZMTjJOgnD((C7!m0o-^AiA*j+iEkHRwrbdlpXrc9OsSOy{H=@9&hrJJa|@SJdQAx`(D3Xfvt%`G2OFjcAkQx(X^O@%3zLGHQ8W^SbK- -_&L_;u0$E!=&;TuHPa+bOh-ZwtE}p{ma4nGqGzFAD`_+EHJ;0q}^KW$yPes8+^a7j}wbuM-rOMlB#85Qs%tnX>DAZxc0_m&D?6iLQdP`4}OMS&wft5-8uj`x!ygQH(-aAfq_CBx+xBQ&ryllL+qsK^ -dd98@P?$*WWNEoj{|v(l?CRCh%PQ_8Z1DL)doarvy5Q2osB&E>!P(quO37lB!KR%dKlXt923vI?sxt3 -4HIVsx#;c8gVy^$I9ne)rBu&U88YHPe^$Mypsn-)de}50X$HKbWNM*nA?$Fl1sC`2e@Gminwe&!p(Z` -v-YvlOpmVd1Xf|vV_>{_Rj95pHXgZF2<)FYr71|(_bk{y^qauzfk^NJrb}AAdL?UO;eI2HXRV7hB&*I -WdOAEPOLxKIoQVj+*$ky(XKw9PQ8ge%9X??hBNZKH9soq^f))bljbEhsklH#mJA@4kQRW!YqclCjc8$DIi@r`{|In$Gh(td#&_~?s6~%jtHMOYyDm>FrZE!bU*|Eh%ViWl#AZNu!qZg#A -ni>eNtb>S#Z>Iu+a_fJ8^5o|Vu&CQE72=l)EEV+;72(tX=9yY$4iO+5#y$RXpdRA(p$0;ItwU(cvr46 -7?Wo3ca;ts_ChLmyFhKt%sP>yK$v5VXvwldtaR|+WVxuYMTrQ7zHf|cw^4ud&i9a*kW4%#vRl0-csJbZ{+xqBOmQptXqf=6yO|915Z<4m|ghwA9dKN+xMg@B^!9 -{`x9tcd%iL)D=@13KnYM-*Dfl31$V-gSVB014g)o&adh6D8SIdV^IMA|^`7qNAei*BB%fc4-Ya>eb?K -7d3OgUy1!8YL*gMT7@=g4<6h_O-ZwygEhAsn~p=-SsBGVsT1GRBD^9sRP~pN9u3WwF;f -(SgVRvJ)pDqOW7wtu=Ryw>%ss&thyRu-_MdX)`a4kAb44hNM>(+&x-U93z;BQZ%<6COj=j`qJ+p_SC}7O*2@yp6(cmCnM-uH2+>_IcY8B6NoN-!WNLSyI1;qGs2q9OU1Tm1-gb(xRTlPUYLc!lLNe# -N8_SVuy@Ak?VZDLUbs|bRFBi|J-iiT9Y7=TDd%7FTku<%5(2*;>fzl;ZT1PLM8NC$)lC&mNGY>iqb>u -#`5I9nvTPR!)y%s5gOZjkGRDdYcyIg>zrGWI+-W0wz*WJCPijr`>dpgwt+9mrx(jLcLge={EEvWmTNjO -tcoTBLS_A!jX5@M&jC?P?44kWSMnSk~CFO%|tkSFkP;IEh%T+SdKKa4TO&DvJI53)#V-`<%{Q%ZN-2j -t;*bz@zRauNOaji=*Vx`Kncs9#c3`o+dP;Ht28qgdG|C%TrdH$M6T{hu6A=v+ktbXk{khC_ -@)^qqZB05s{HPbpW_B9i`M11BD@rCm9wdFxl*Q94Af}^31{BITlN7^?Fg=-7GOo^^_k~b$INm3OOmD0 -_D;>hIYqH-i~bCJ0OM=e4ZOxM;-P14mwSWnJo$8h9ia}YUFu{o$*%gs|td>2Z*)<{f})r4oJS)-wj>} -nPQM^ZHlh0Ec&K?$pM3NNs%lRE~UFk$+2|`Bqt$BQj=jN;gJRG$a7?)aHKb~k+=kPml9O_WJYdElBO!E%rCs_j;|gg -?OnBF(1EY3gupNn9gez6$P81tLSR=3u@SWP4_75uCnm{i!Xt9$I8YoZb6ix8OgSzxS7iDcCBTd2#c8G -{>8c{Eq-vp|jtngp0!LyN3x&($_(X`SeHs=gAxTmb5}9V44GeCnMBu8;W|b2X~ISwQYyQIKdZnisqks2BlW$7 -z>(_SLgAWNuZ@Xy(Ny+MLXrgZIF5TtvsRB#Yv}#OgP_~;I{=NjqN*2jNIGdIKP*-5DF*qWH`G)cZ!oB -%F3fMBu@StyKJT0S&U*x^J(hfnf$BZ`0o==t^Ds*$kgaBE3xULAK|h*-SJmsE5wwV9boqV~-I@Jfg(H -}Ln=nrN2_J$E*KGBo6l9gKLF7jneg(JxmWI;Xskeq=ngsN|=B=TaCWUJ&_0~{KlFt6YQzs!wa)wB*(iZTp3L8k5i?7{+-h;+;I99I+HuNooA9I!(?>EjL=~XT9J010oZuPC%iaitr>UQ;;{=-M8xtu3bGAqjf=>;mW);FU -OEzjH|*fwB(SG>9|I=lTVK#CL^Xm!3(1r-Sbq`R<>fKf-~VOhLWX~vGr2VDxYf+!xLbwus~zEB{iYS) -26+kjm>6(}ltzV6~#L6Nzv!!Dj64r2SKPn)Spy0Z$MdKi2D@Gb$N-Y-17O9;&NB(}t^%E|p6wxp?wr{ -OVdNmP}J^(AbHUKNJYqw|ON2nZ>RdxS7-T2o?Ih2d6~lBOz*1|2Dhs=~0UMu~0+Lv2;$va+*C0_mfe# -i~dEpFRm$tV#t4T*ohqRl(HA?4LVz(UBBLJn}Zr>IyU|gMAg6=3{9SpXo$4SrFIDJL1Nw>Hjg5J>WfGGL5@Wyc&1Mu><`4K}{G|NJr32i#XFqFFKEo#3c+8NGh0Vzx -=Je>aFh{S{y`25j6ZZDopdZ9?gsrC~quQ7tLJRe|4k(^~961~L2W#AJ!o>Pn6Hz%Tch`WhIFYsCmEjrh=i8_Q7!zf`^3M=rE-a-GAD4YD+?>sVJ3`)QG>Y>u(a!yEmjp8=;6V;_0{0YJDmsQ?kEU>t@ -;3=gtfO}}9vH(2@Dt0chMdTgL1UbpC)dTjkGhKipjg6cyNjEiGoxAMUdPEnr%atu6HVKbm3kBeV$Tc& -~)D=+{>D8t-vfb{Y~XCmS$8O*qqp8#4O2d5%Yhx{35b)ZgJtWyi5ez7oll+il?q&^cb(p9gfpDU1Ars -nbCR{-g(IM<;~q@nPoH9Ll8l@)R66SPIWxj;Q2KX?x9iA-X0@D18B#z#s?bmNyAz!Qs26!~?8Jc-9DM -s;`}+OHT{M&SqZeUi*kIeiL^!&pUOp?*f$TDbLNy@6U@2XK(4arsL8{2_>l`wC+nLOw+8LK|iOwXqZ# ->Et{E!83L#iZ8L*AoOtd%AGq1qX*YZ7vDj9*jJ(U{SRgl)~5=nZ#jhj^(!oxeLQA|@Eq+O -ZBuo?AO8^}+2g}iXwCb5?rjw@jMQ|xt|Fv#Xoi9JVHyX6V&KFIAOhgBJ -Nw&K1bV6%?%+UNMq`myut*ssQs&FNK|dpuNX<4Kf=omG0O>PoW8=!9!AAp#69aF<%2miZoWKKHz}mT -1!%9V7W)le(gQ60QX_B{oqxb+*4%@zoDJ-~LL0BpYAdZ{A+8WBt+C*&Mue@T+!f$$<;Ae*2CcO|>AVcOBR{-v -x?%JqmXj;U+T`{n9(JG}5W1R~J#EvYo5&J0iyBD@G00iYT7D)b+<>vExTsnE4Fe#5l!FRJL~IIsu|@Z -e2Hw9m1xsP+d37971>9*t%{QxH^&jQ>S(+68{Y2_d_Y{^G7#vy9|e%Z{Mi27ULarA6xu?X~2LmRyAOz -(5bj9j(&B1n%y%5nNj(O4xzD+wgd;uxZNu^;!MT6mVj#P_n4>h{hjapi~xh7c-Sf_9w9(76Utw{P-#_ -Lr)snQ@V?yw -joeRQ+_5<`3FF84kF0zIGZe>PjaIo6So69f^dpu2v^qMq`(wl*qYar8abeO#|Vxnro*V|5o`y4wdgQD -dZ@cu&tzYm#|+Ch7!;z1}d;VaMGa1F3KgR1JZZTL@Mjv(Iret_&5pb3f*)2Fu|ZZj3V1Wb#=#P&x3oK -`%33jG_GI6V#ksO0y(aKF0nL21#FlrCnJ#_8cwL0?r+to$;Gl}>Q!Ap&v( -fJ##w!9thCVwCl5e#NNX33DLLMVqP27sHxP%qJkpd@17A_w#-YA -kZx#nt)UFiHOA4^C7#0B2jDFyU+Zt{C$hBp>2kV) -lpv}I`{=Zk>Bw%A7!{)zK4JVmS_if=`H|tnp^lV^Sk+2uf*c0NS~=3Bc$X~-0xSc?Z$0D==CPzLXZkI -o&Y3ddh(ouqUd(7I2(d==Z`T4u3Ga717?F%8=H-<0I7r`4iKcawc0_zNN<@2G6ABm)fkWVFgA -VZ#dxuY(Os8ojOTg;k^NJrb}AD8tb(sj!Pb^)09qVNggA0rZNVi%7`eNk;1VH04+Hbiokt^RsvaXCt?u72KaS)C$}E& -(JvLHctJ{BWO+{zo#rPOluJvgDu2^_ZX0=Gw|JqsG08_^u?!}zaoHIqjvA1Ms-Yi7q_7sM+jG(+UDFT -Ko^L1j|eb!a#j(%D0$CDosh|oZoUJkIP94~j`?K-84snAS-Fi{%VgMmm60}P=}QgT*LT=ge+FPa8f!f -R!$+X7|a-L)1Y{fQCO<>J9?g2c$#OKVosBNUS1urnv;QI(c%yZ-W7$V -9v5@~bSUSgzbpVlyNF1GQ|3k8={!nZPhxyW9xHj8t*L2-yyE@&sW8xRD0}-pf{DXb410iJ)zjSDTL47OFKZ -AB{;uq(}uiq}<4M}_Musw;EN9$psOSFoljNL+1fxldN+yyr$qTz)rRB4`JAHs~ZWVRzh9=Zqf!D(vJ0 --9B5SK;-o^$zyl+D6G>+O+^L -I>q|gI5=Zga~Ia3y(wK%a*5ffa4Y`cOp5SNAW6r(%?z$4|9uwzUQz73qL-W@RFePT -ue9LxI&BCXlZ(dXK&P-Gt5gvufvl*MQ&>#ytj&a-i|6l2qVt#P#!qq`hv<8CQIWdGEuo -r=Uq8ZtZKKe%*z{&w{(v|q95$a)2b&=I{1i`Rsc%8Q+yt0ok!&_@92!E60>_#zc^ERs?eF}|UnjHE+x -VnB-;m&UD37|NlzQUcd6&v&1jAat7u(Ru#zp@|^%w2a;%ysa||&%pRbW5~M+=dV^xIPqp<)5NHC;=zjwLIE7Udz)=pBIG7QxVApx3-r1A+pRFA;#@ZNbuK1gV}7{zSouxH(8a4*Pg}`xO94EsRD{mIA79X_Z-iMq -$w=@#ycm;UxphdNFRKawPC;X;yht-VJVbqmMQLGJb$tA -srt)dyO?K?3PiVn$j?6Q9oHWn`5!30&#JjHHqznf-I8E;^FptV&^1p9&t!n9e=$_b2y{oo=DVCi&k#c -3TUeCVzNA?ywO+?vQ%H#9*6D~m<1iZ5B69oZ -9YO_qlF}hgqR?6^WJk@lcJz+&YwZ}gJibG>xGz?e?IL_g4sP)m=TCs$ka7Asx@ht_L -fJ3cK|!B&ji>tUTmpe~S3cU@z}(P*=>+obn`lAhVSO&TvqU8ZHXN!Jkrdl#Hq4jf2Yr+z1+x?V4Sr?6 -V+vxTsQ9$P3|>#v)>h2AGfvgbPn!r&kv^@_;-O%<-TtR_``1!@FiC&Z! -$)&}xRBDX2CUBG+ZO_9|d9*zf*RV9slZ)0Py(lk|i)&cSDy7b-O>@oCW?D!2(q>}UQ{lx1$+s?Q+Li} -N?UHn^Gajs8Z$P7!{d$9l3rbp-t~Us{AayDB^#<``2KFwvgo`+kv<}e@nIC3DGH!6bd*6-TxD#mR(6} -3DX3=s-(3(->uAnU^*Uo_A5!fo$+DETO;wWBw5iX88wijXJ3O8)KXN8rSqq^pHvEuF`I67LKC3t$DaK;6bAXT&xuD1zC|y9Akeu?+sYhLO!6;T -3ALKWebaFBW-O78yK{(fNl+tzQo;~uGzb-!0oI)-P|u*oav9b+f`>qo=beu$Y^pe7-yHvrXYne -M#qjg#H_B`kt$PM=|E?n&V!mRAwa?QF6lt8z0DT^yvj3bU{;id=*}t`tw)JnD7&QC04IG^QEk#=?WG@{x$Ly?9(Ejdsx5=q7q20~zZkto%; -_`pLyN!;Gm%U>St7BnCvT>Ll#io4zI*!$&+5HRA&;xYVZh#OQS`ugNh6wR-4boY=L8^1Jcdo@S)!31Y -TtX+y9k#`H6hLgv!ch{jH4m2&d)+WF7cHB3K~^La=YSM>3+373aw8&rQoGzV1SKtfCc4}t`;ypoKD*o -`bc2Px8%}9s9wfCx%(#M&q`21(n-+M(KHXqI|J;U6y1~IE`i31k#mC+uhx`dfBn#Idlux2i($c4`km< -d`(}p2H^t40%v|$7g1J@qmX~O{2+1R_|l7Ed4$-yQ5vPg%Fqugjjq$5-}8pJMX=@8J329Zl*S48SYgS -br=_HMXDZSWwe9b!(q0gI?d?3*twh;5=ER@ydU5G!%}I7kzVHi3`^9u1L@D)lhQ2LlLrJD!PYRNBF8c -pL`QwCmRJBn-%1?qtJ5uo@G4R~&j>)BCN~33*;dZoG9U>qc|Yr(tOU>Zy -o_HMWggTaHOcA15_U<7ZLR_-=q(t^I*AZSHQ|HQiul2+6%QQvJ4b%lq$BQ9B+Oh|Hvutl2bA@Mrt1&P -+?S(1ga&3hyZY5RvrZU${$AUQd>%|)HIJB;Em9uU6U`Zqgno5;C~yiMTTMc+Pd-hxY;uz53^hNyX!K~ -NU%g3bB*HOCA<*z`rkYi>hgFrY6BUUM50gM;hZ;x)HHq4?N4o`a=11Vy -Uxb<+yZZ(=d~>llG-8WIX^__rJouR>Db37x0n?z9ccLE7PBID#XLT_#av-w?}kInCJ&O@C1&Oq&p5I? ->F88*AKK#67X3qm&`lP!A^p%Gdy|LDvVUk80+N%xQ?8MqSdmOz10qYJ^>BI9`z{>Xz})|PE%!r(jGok -j?wga&WmW|B_cqk_kDs<6Ckf98!f_H8xpulftgvczJ$z#l%*UgSe!};}IzmMy@J_6cuYavWyQ1!&Dpj -+#TSw3Z0oK;*Kv8a26>eJl1;Ls8QJp-BCLUKd^@TT<&I$rio*Z3ww5cyEzl{o+qa>8^JWlg^@DU(MD6 -*W&MEYBZBuN4@d%Lc9GnbUL?gl|$W#zvHFczsg!{|m&5@guzIe)lBfyk8JM$rrdo6NIql+7^Ety*6ae -RmOAKXvM$qVTnfPy9sP*#87=)l!xRI_>_16@_mhPwwBJJo%*p#AV?2Dlo{y$_bwVF!H#in-Mk7B%#)g -NqlJ{54WG|^p6w%izdEII=!vu-@G4T1>4steCJt5r7S-@azqYf< -nb`T1A2Wbc;4i*miA1&t@HtG6fuP8|#q{U;=e>=bNv;yu0gCO&Y>zD%LFE)(6%)9d+R)jb&cC7zyLx^ -ONrT?@cNOk$W4PI1878rlFVgyBLlt007Ia5Ctjr#K1KMkZl{AddXd3!+}o^|M%IuJ%HaNk8#?rD&}wWGTXhX=@63v2@{CYYMrcT -sUe?A%FS8^VSs7omqI%nnEsH3olz!$kk)vRci`ap={xGYl_Q~;!SG``OJLbZEFhY04%&~O(7TVh4-x~ -$OB9|0jTT{$Rif^qc<|M^wYYJK -S3YNG=3YleS;d^TexzH|Xo2aT?i*h-^toBCtP?1)VB0Y#^eO;1uO@FV?oo!S-L|2aW;goItSJbHTB0) -iMQK~9PhpH^lHWXjx3ymntnsLW-po({GXw56C`*43=TsdY*Q7>su7n|I?X`mIGlp+uzYu%miAJYhB<+ -t|AxPSQZFM8@z9? -aZ>*IQbiVx*fJrv&sVbt&y6jdbV3&_jnLsMaUao*t!wL- -7FGz2J#4nVC${e%+px!JX%zLqzRWg%h7xGW+U%GwCJ`cp?1jaYeYc1NhGcQTvbc$510#)E1ZH^t1UPBZEE!zU2Ht&S*XJ -FULil8fh%yXN&^ws{=rrweFBBu#)dwR2F0ttAI2<8$S`4s&E^|yJO%nR|z?hH%HGS2E -SScgFTZkLTEpPzK?B~goOkoe=F=l5p)DARB9e$u<%Zp>FcKg+|S)=eR_zuncgJ!RdbtitrSyV{NyYsL -A7HX~h8RNSbEtZUkJLlL!6wdG&pX1QYM;Sn}el}Y&qhU4?>!#8A?;87w*)Cf*jMo3u*!yO?Y~40HsIecK?Xq>%X#KOs{?%-ktq+XWKWXe=%y!v&-~8ea8 -vURGkj*6;Vu5 -uq$Ws43lfmG0G@lOI38C!yR63;2ish!tuQWWCl%S!3SAx~RR=_}=$xd=4M#Riqlp`g7U^`1Wv*S% -(*PTQ70Ffrt#p65@9 -K}`a_jR2A>&&SQNvSy>SxqD<*B~`7AZH4V(I1@CO*n$^KVm6Z=@&G1{j`Lg~S*2C%Bg?eg#Yg$Vw_4SU%Vz#(}=nv&H2KG!5kHy|_| -=^aYuO>C=cJ0_-VWkZzVLf%fpDiI$Gz8IFZR%jXYuB!*pPTzOH+JD7}}Jd^>!bv>EbD83wsdZ%&#cR9WqrUZdWzzyR^1$1ykG;!99GefcTYm2s|*WY_c(KsJi)OtGKz`vZ}=ftx-RVLrrBf4 -~d5@&!J^c}L)I4?^P{;iw|ulvZ5S)*Z!|-ANra>cvTdagGR_K^$U~j}!{`C=8_61QNIX-ApeO1==SHE -g0m!_s?P-?&Lj;{j!do48&uQ2xEOFutv<3?0W(y?_iA6I)*47D{PuPB1Op0>d1MTC4Ojp^ec^J;C!j$ -%(JB92bT@)sgHWcANnJ;bT3TF;pRA^#yrA#Mc@c;v&WSB7ie{@5QD@0d;Gm=9f^fptQhAzg)<10eJ^m -HQ#ipqLny@0=L3v?*c$>P8G$-YNhRnEbC{)5ayYmL63hmeO?^Ie;*_f!SK%Q`=Gh>g1qGerqfSJSrE| -W4RM)>woX_%|iJ^Q`d_Dr0i9fGg!UCl}B|74Y1viG`(1M$axXX$wxe0HM)y`$%HT~-(>1>b;f~ay|;2 -SwjJ4qg~0Cng?9VHJ3eqsog;FBkOZSuKoPh*5wx1}7BZx8Vo>jsIt(;ex10o(&}`?uthB6iiR0aNz>Z(C*o$8*@w5}tQ2Lkx%rZw -eZ;pnW4=iWx~NBWp?4XdJzVSgE(NUy&uMuKeWk-+NCVRy1|b$eeJ$h|5f*w~r@BMFm&mwPG$+k7eBcM -jXxxP8N)L3j8^D*)*Vu6Tw -hAMzkSU39{&95PB0tmyX^&X-H7y9q>6S+hpaBIUclD?k6X8{;knhvt9Lo*h*jnhPtc65t1%l)R3yH@sCS=*+~o{s5vLQ$2NzHq-WV(O>7B&`;AX0wE0Yf@Ju -R-6xGoVpXijbspy4W#<&uD88;q{EH{YF#t?emFy1n0rC0K;KVdMqt*5q90ri5JG+Y`$2@P(+g57`-uo -AB9yww`o-l^F#zCqyd=%K#N=C}NyKyvXyMp}oQgdmOTeWF)XuXo_jS5~-_i1ZNv;?J9~se?q}C5u%v} -2l1lXoB}4^>57t+}roHa=#_*%}kuev&v -OEBlT}4pW|}`ajDOagaP*vGZv*83vi$6f)0ahn4@6bJ5mwD{0ie+%sd$&wEA=(`CV=K-jiCyF<1{dIPb}!9 -q|=n;HUa3TY**|H(}c60)$f60D&?|jnCDk#gTf!tX|gNlLO3=@Tcn2c_da*gi)6wcdz;0B@8Q;`aQWW -bL5OWzCWs%c!5^8StCE^UWso?w5~EGT9D&!QsXy?Gj&;K;XC~!*p;9gBR2K@=P2MCCTy@@kd|u{hrM_ -f_q%S?M|^2BzE=0JR>Ta75tL-K)~1yP*z<8a1|oe0#rug_7%rIQ$Tb#H0O3Ouoi7>U4OQl#PF|= -$#EN(8ZtphbyGfO3H~K@4H*xEu*el)^uBI>$3fQhgQOZ`JSMFR-%x_49Fucq%rzh%=m~gC+SYL{qIM! -46(hX*RQ}P2{n{r|vWd_PJrO>W%9G@2YM|7o0$0GOhf(UPk^FXqBMhHOspIpzQ&L+}znmPZdS(%Dsp~ -V}S@i;sYXaEA6H)-Fu=ZNqC*-hkOW!dBKy-^uxHAz4FjigFIa -bD{A4>G*p=-yO@r|uJ`qClxX!c&MC>sfILp$L#%E=i6sCsE>XS0d6Maj$K&dOQKoR#mDuYy?VFFQ@0`97aLp;-1ej(>qmh+i`MOfeJ=D$mS -C+<;&Map%P=~uEJ1%>q#y}sITPYC>qujE+gGva~=LpXJDb7_kUnZh0L*eKxJHf>xE$+;;B#I3MijDyG -ZMNXpfApoXd$;E(gypUh|m7L1?e1{p6?khQ;W<_1VEJw1d`((3zRvd?kM;!>UE*-w;vw3c%eS}pP$!x -%~NC(otkt#dqhhZS}teCakoTyd+xc(t;r6&N6W{7dLgTC`if*aMgo^d#xE=e^pU ->A%dT`ozUPL=kXs0QcH$wpr_TCoNCo2>swZB-jAWkP^GEt7X|Z^ozq$`R!V$jSzI+Emn0#bv*Dx -T}Kon|g+$Coj<0VX|pe4-fB%xM^PIEs;Kk1Oa@+>&?>;LvkdJHRKHD5LXKX$ifm$*dirTG$m0!_J^~Gvo-=a+QW;@%kTx_M@Uz -9)mPml?abfm>N$F<>zb~wEM3nAgWlRp9cX?j2uo-G_L#i-8R_5%!Ml5hOSS$-pRQ7P4+!9#HzGl%Qh%-7Yp0!xc_Vt&g!8J5f$Q(^^rxBNYP*5zyuXBa1g4N!akQ@7 -}x5H4Y1uJ~=TKNrA{G-$n<~QA7bCSvr1CI60poKcb?MESxme@~AA88%?J=C6A1##;yIVor;c|{kAon? -TbN~eN>S&zSuzY)&hPqFna#`>zN0_Bk)2Y73qfs6un>oZ7>2mD5L}TXoDA@ajhRxhg9q!i_(>W -5UzGs7l+mh7VI_Tn}~iUgr$Ab+~tzAtCJ0yHI_FE!ffvFQ4w<>lD$EXq@F_2g9DUCDiLY+rdUDqpDrha@ -c&SPEgc)gtHWXI}YWMx9yM0Y#U9t>yi>BWvi@{%G}`4s5kAB^!(Omw<}0>26feytS^2QhXI)?SA)!G7y -n*|JQk?^?!Gm)X9x(A*y^=6>)WC-Z-lgClUQmzTJlqR{9eH|<3QN+KAFJa~gMo*MG{@@OxB&Czj;-Er -^BNqA*7LzjBl~I`t?a+0Oljp&KlS8Ewyft6z1k0N7Yn&iP&7(pAc~A7ANqC!>M&5dW`37rn9=>)R}eKES+H4aTPLfLds;0IHlrCm~%kpJ6oz^iAQ;j3r9BW -r{kp1SCZ1w5`ct3o5GOI-m^>3Ma5t{UBKq0Fy%eZP~(V^DMki4*X(Dx9gC;xUaU$&!4oD3&4mGGrhgb -duDH#`?vXM=jY>8y&n*azQp(B-cZ+$r!fk8qpJlNk(9M8g^fw`qvTpl5)89&BvX?DHU^5gvK8U(vlaF -dAUB@HB-8#sQ_Pl-gZB)A%P0Yo+qfy#@94&fUMmd_Abu^?nG&2PfjH%txW|QteU5=GW)d%l0vB1+Tuq -Un%6$YTNRnJ0YOOd4}BN$uHkW-u$8~Z@L@iRf5V>#WKOK+Kq}I#Gshl0_Y-@Bo#BoxI2TdHv$4_iY$I_Sp`(V+Cd#)EHAoog^iSS)PBEKc -^tL9aqDcidvIym#Zl)5Hw$mFS68+M?M?yx8UbRIV}Ce1K0@=1x}TINc+ow7QVf^tBK5wTMoR4CBj7G) -v3NTGNndAQG`674Z&+^Ua_(&8L(I1tIV|p5Bbefi6+wSwu}mHf&mvlOXGj>ZQnwO_@{gglxc&@pQW<}2Dqt>cQ$~fN0*C3x^g5j9=-1$u -R9MGFj6|F|gbhYp~`38UjCI03w5LTB5>_$wX5(MJQg-vaK3MbPm_!YeblLAPb| -d1)`JV;nua)Zjl)sCbX|^Pn5iAt1im<;4aIIoaN@ZtNZ~{?1pS_;ia*Joq`5xqfi(AsemnMSW^Sj<9%pg=98ISZ_&EYj)ruJ7CK(MsOq*dSk^`5N~7zlO?;x^WJ%Tsk>jw*= -&{Snw5kK@}cnP7p}|}B4DV@cp7kGS9luwBg5Nig6%{`Keb3{jFEQ(ts)R=1yHL_Rs8Ehe|{XRj3xa($ -SV9~&DaA|P>$VH8zdQPKS)XvZSg@o>L=$yLW -E@jD;-f9Ue9F0G1QQTw&5eh~qLTovpE$dmaf?VG~*Hmu9)mc6c=sV6A28yAH+MjI=;Z>>@^dX_zT97CXLFe^w3Lzb>t^p3escYDzoT7?>%_4m%c} -A6HdJ_%_6JQG9yDoj(4?tBlQsrT8W%KaRnVk4L6dd_O&Sn1X*tlO$v~5~0!@6aWAK2ms(pnpWd^@440i001Zi001HY003}la -4%nWWo~3|axZdeV`wj5Wo>V2XaBN{?WiD`eZBol_+b|Hk^D7qYg=`g}X91}Xg#t8%8z4E_fk4SC -M~Nf~6qVX&`|n*+5893i9Vl{Uc6PX>(GA#RSG9Ynnob)F-&I|!yv7LD$`&sXJao3wt*Y4sFvwWxcyWe -}eyy@X@35cg>H6XR2V*RI#3yS=*Q>zosJ7{?c?S4IB6~bQq^zul4){>JkJden&FwW7mZ&gG4;NFYGd!vW07jhw5a||k -O8MK3GL!u(c#kKy8Mo0-?PNNZL{FAVws|lTET65U92st0!BTEZ4~l|My9<>||+sxQ7kXgC&ZTzK^6#P -Oh)!*O%wZ4~yC5a(aC`J6pgA5JF#^;Klpv$>Q_PIV3V=V<$)mj?|PAi6Km|$cY@GzZX;Y4N}{=+%htD -Dl_K^A+mPvc(jG8azKrcGcJZu#axh;;6)bIr$%vy!+)C%x3$@ADVw@>0^i;q_?CpFqyfg}mS8Oi7^@M -Ac_!T$r<84nGmcKLzNJ^N@R^-ld -?=5N~By5eZMSAuYBoovGPv_gMqKEMb`Tlt_v3=BLYhjK}lr-w+adL$=n{5WFrgA=r`g~4z6pD+Rz%|t -qomB+O+AhA5TD2Dlkk`G|*{hk&AE$jE9&V8@*P$w`5f?EKslC*|nn(%CO}YM%jJtg^U+btn7&w^3=!o -c;hpAm;150PY2(B?VWf7zvOXz;va%|W*hYsSCL|QjI8|Ap`S)R07kvjAA@INJcLZ!umfFbl0Af1gF&N -F5B{g;;vHwvuT6wT_zhX;VE<f)zQ{;*_2NNP1yD|T|xCNxZk2Tv -I%#`xFOjn!bI?tSj`HgP#r|Svk@{&rt0nS4rf#MVJB_t9s=Xd8f&Kd(f{$Rr#}2A9smFUaA|NaUv_0~WN&gWa%p2|FJEPNbY*UHX>V>WaCv=BOAdlS4Bc~zCT? -IM2Vi011-!zf4g)j}?W9!V++IM4i3^wS|2mZsEGOa~XiTC8SI$LIw4sA2*g8tt24NRo7I-4zl2WspDm -Y)@CL9`o6C}lc#0FTv%N(=-_|RbvY~V@#GotPzo7%10iBjzrODkF{`JrACX8AZnJQ>FL$8U;0+|fUNB -7hT^x}#ug*g;us=<o8&FFF1QY-O00;o!N}5*f!NV4Z0RR9W0{{RU0001RX>c!Jc4cm4Z*nhkX=7+F -UuJ1+Wo~aSaCwbV%ZeK@5WMRvirI??X8i$%1WZ`MUe=K0X3SU~w`^@>^&s_x4CLb@$>T?y9MT~4>gp< -0%LG25ZOtG^>ST4%r0A|v-^zISmK&%)yPB-qDG?(7xn7XBP18ojQqgRmv{IA)X0xT( -w~Kx~dmg{)L-hUnp7N?~r$L@$E-CNxMQb8bH6oDZi`EXhtA<3Q;ktph=)5g8}#$N%be^H5xlS}rMG)b -Ai0MD?c*wtclw*=O|CcM-JN3B#4Nyx11QY-O00;o!N}5&!fA@ZL3jhG$B>(^%0001RX>c!Jc4cm4Z*n -hkX=7+FUukZ0aAjk3E^v9J8eMbSxba=T0>eC*yz=Per4O26XMA_=H8)M1aooP>G&CfE5^V}(2{N{t$$ -#(e0w4jB(lv9OL=u7B#eQQKaNbl$mSuU@c8$m~Rvhc9X&K+Bs_a^k>G#FLj2BYXV%siqL^CfIXIly`c -hxp#d(qnOyeLJ?3bie{QuyOo?K&J%#a?n;RMTotbs_hb)QvpF?B}X1fqYTPn7waB!#9X`SK|mTWA@P1 -IPh?);qzY-Mi-h^vaKYrFD$iRo2sj0b}!^kQ$dsgv~8-=f(o_ewaCmUeD8!ZkcVP_DB(YFVxjLv-TY% -1Hh@oEeR6<))2|rrIWAKmHBBmkS0@5Cp%9mbC}L2!Ztoj27Yy@BkXjlmIN@^dK?I;2%p72E=RH0<9DVzs -uic5D_d0(=~EH0q)2t*n90pp{uB<=jjFzt=(8#^-jm-iG4b?hf1=$%@d3y3qrYR_DUn;Q*EAD2;LMe! -Kd&IQ3onX4+snc{Sf4fS!G-dkRE6l5O#&COMYV27qqP5p%JPpLE%-yK2}n&P6>2mk+5Gx&S6R+Dozax -9Yk5Pa8p&Kx6tQ9^}_P5EHwZbwc%il1}wrQd+NX!%~(b8w=f?>|gkcwyKCF0(?&Kht=&b0Mm?&C|Ty_CMiZ!GN3=910dB_a(vu -T6?u2>)nqpG+Cg0q9UlN3cS#*RTJQZ%i4TorkQ`yH&{H&w`PMKN2~FWdlPI)J)BS)gsA#~)7vQ%<8Mm -a-d^BQ;_M3F#d|}V>fME9V0ng0}O|d;dRzNzWBr0x}V_X_d@}l*%Ky_O9gZ5LsorF;odoZ+YIyksLyQ -vyL0)9^b6hPXBy;zS0K48svJ4p3u_%>$moFyVh7^q&ezDhM7Ao)>H?KE-*FPE)7x4@!`59Kb)!D_rWr -0*cj$q&F`eKZc3a^Q#T$^OEE<$y0nDz3nvwJ%~oVs;%mM1 -S^!pUGCwce2p!-}zuKbiVW1&m7G#+P$+AGlfP?;qz1KlZ1zliE&>DCm))O+~;=Nldt^7 -+RuJ^&X$&a4QYwuW}FqRII0jom%6E6QG$isy4E`_jp-s5GmCGGXK{*ImPC^ch@%5tWZHVO9|qk~=~j&Dm$qubi^#Ar4XG+bNG}!2s&$LDiBS=81>dw`;y -0vc8aBAvY|yeP?AO3{V7&G00=C}&(<`_O06?ao9h2F%>Lg}cSLPq*WH#DZh2*lHN5Kf}<|95lY5Ee@7 -lVk>IMPUmcyeq<@0mV8O7+=MvTurAII4ocTWT(MDRn&29C`u>AaB_nWr!ydMSe}F4;NJi(bqf!JLsvx?A>(&T%c#5Es6?O2q!G)a}A -vm3&<+6&Gucf6Dp;i8|snQ3<7iC9@2Mj^{YOsO8@$Hv|-}ow-Z*KB+YzV5zVmbD#QeM+-F&{T|vN8tV -~jrYuq!11U}OdgFlrCpI#KqJtqGKXsx-Ns{2R}C76<((Owv^G;m52ft7_C7bX*@7q)~y@AWUdp>x2rS -5X43-YJ~Atby!{>46zsWhN+0nhFhK?1cuDWR1356ird_(x8x?(;yj%Mis|Y9(S{{$6B+7n_mK-Y`*v( -r9<*P&BYuOV}nbvL=Xa^bvheajElrMsd>u+u`XpBsfp^?VKa_45@4Ey)gR(ay&4ApV5u|A17b9FDtxA99+8+HI!)F0=Y0iRI;WZdV!G~{+Z-G~zbP -EmY;(AjXz{))JM!katEZVY4^|ttJ#o4II->V&b-i8{>!HpMRipzOVUpD~%mp*_?mNj=oAv6*_poE}wX -r5p3s;D~aYmxm^=3``h(69&Nia&M{sERB3jHxA5X)vxul(-HZAxxm+lFuT^7FS!LA -d*_z>vcncufvJT1E3o)#K();LbVFxg|3fru&eDVw8)h*TREqz;GxCf&%}Z(pC!hDqQSpW#K$Pm-Yg=w!`0$mjJ1UB;B%^Scxq0;r`BZb#O`Z_Y4?^x$6MnNFc3FS66r-Mu2^PZ! -~h?$~#{JUa`~~^z(*&Onyq(3m%k7#K5cNN5JmS^3hiK^2q3nu@EhR_n+}ru9w@6sbN4qHoCzhAx -_6$qkA=l-j;Yg^*W3!|Q`v`=FV -kw}K_;6K{2bzBHQ4nu-K%|NZ)g+`NBt^YO#ycM1Al!+e5ns1OFf*>r5FW)IqtZQ(ny@9m`l2(QL0*#^ -PW?c2+`mBMSh>4u5>_{QqeDI2~m?ZBbUoHyRddMnk5>MgkIq@vubE(&)RyH4j0{MZZHw&;^QbapzCC9 -4o2yylva$j+FjWui)k(NW$LLzbaiDFxWssxzCc3wFnZ2fU@Cogx~lk1Gs@oK)7MtcyU=YL%e5lRMapi ->D9h>5m;A2;>PIP^@9#c4@V?E2gYYa?eX6#$`dlYi*ccceofm{|9}RHOodPlKO)HsQ+GoSQ`#w2MZu` -91df?$B^Je02GYIum!&XzA!u9790Y=gV7j9AY*hNd4E(konV(apG}ZMdx+3_4)tY_A>1c^5Ip7c9)ji -ywZO9q!Mh-g@-P+VQ@$6sl3pJF-+4A?=`-Awy-CEti7vZ6InXXJ@S2fY&hu^t`$Zn(vpI@wGr&Wd`kt -dH*ix-)8p9#B6YNrN@l|!!&DrFiolg&nmr+B@68dT$y-d)nIG$ir_R!F}?5oZ%LW3L^(4aWj3(RCM#r -af6t-c7BV~Db?1RO6@bs@Q)%i?i@Y_8|iQkXdtkSGd)$X_KWV1u%1=>aks$vdVhA@6fsNl~t;wH0qp$ -Hw-0)dn7LDtVvTTdct28v~mRDR$SMx+@{m0otRHleMM+(JNSvNyT@l^PnCZD!R8{M_WJQoI$Oli|V5F;xHBaEIwpQ)p%tvJ5 -M(SUD8FauAe=Q9VduDQ^zS&cWFg{7beMM2At|9`cZ8Df9P`bfsh%g*x5cY|=HTw&91QN`hQdhz17Z@z -!94Z0iJBZrPZ;+p43-{BW6jx^y6&tvkqa`RO9cW>uUZ~=wSBc44O_AmN4Cym$Q?G?wfw`+uZZPIcdG!0*y|Y4%F6JPw+tKLedr#%VHB@HP1{X~n}AVawp2@)H&FT^WW)sgHyTU=%FJDzC -=%{o>i!6v1*zqq -3W@&6?E^v93R84QfFbuu-S6DrP)Jfxtv>hgaRH=dsJ5^N_iaR1gf)aPYe*KaH{eWquIW@_9&(5>!!st -EF`G6M0{-6!P%J3Z5Jm0O{X;576h5EVy;$;Leq2X(Z*Dum0f<#z~V0j>+6_*iI{2<6Bw-y$qlyf0*6f -aXtCL2!!aBG7FXUfyA$6<#j=IyiDrLxtr;=LWmhS~ggNR2l_yE-f}3gM3plB4A8SK`4SZm -{fe1$pbwMyIlXw;Sr@!SVxs&FKBpVuVHJEt)q7}yy2CZ4@zm)C|Sf^EuxFU;zh=9k6TnZc2#|td%f4L -+;B?>rEC~IA;^>}=hXOT#g9w!)>)~eXV0d4G=hew>si>fzuHaf#=kUiU%$GB!xJ&qMDMFRV=l63Gj2c -F-<9_0Q5uHXxUGTeUSxSkzt0m-!sl7vSI@3@j8V&f|6`{g+~Vw%V|AEiZR|IfWxHNoXh-!nYuf7V`Ey -108eJ9aS}SsvPrcF4^hY5}yM1o>6mEPe{eKs~Ox(mpKzgc&ytKH%C+J1L^^YD28yg9zC_M7LI-Fl-gp1SRN_x-4 -8j-KuxZvT9GeExLv$K7&yr+)EkU5u3Z`m68l*F{y2m1~#dgtpqCW~`=Fjt!kxrkmw>YDd -q{s|r)FH;KaefiEG#n5)OEIIJ((FcblF6eePZacC#J?wn>{V&8MeD@7v)y#nb}l5vz -wYXnULLVZH1bQR|~@?RyJGJzOlNR^<6%HZRdC0Q22XvY0uo8`rAewPpj>Eby%y__So4I+#QbUqT9Z_e -_MCkSM|@Kdwn~pe^-ZYwLKj#M~};!hufRaw?A;Y&NMrfN&~dp(KvF^$f0gDO`4Ufl{HV^oWrtcAR!s?NfOSPsEZxFZEfb4dC|B>PSiWs&{TBCb=7b-oDJk -?+IyfvOdMqs*mKvHgG-_zp(5#_ZL!(ArfkqF7Mo*=N!$PCSQo~{X0migQjfOQE)@WD*a?wI&2iDTS!o -gEbv@q~g3W#`kC>06z9I(|$XDbbBl8t8=up0r0tivQk^(7-d__!3kgudbN|3Ll07 -^1n5rY!tD=B~ynA-Mfj>@*gbhbzC0!q%9rQlLiuVqU -jc&-<|`IJ2=f&Sq$KkdFey>KVu6$>U$H>fSTbJ$gA(Q|7C;H}6$|HX*3MkzkrL%A7D$Qmb?#1YF;@0Z -_HUiNmh4+LgCVY^bZUreDV-VOT1xFF6|SXpZis6s)rPp1$y(LErPO{l;aawfiQU4`WrcH}f1JIPt?Uk -cmlfG1AM;Q#;trvU%}82|tPaA|NaUv_0~WN&gWa%p2|FJEwJV{0yOd1X*RYQr!Pyz -3Q%PjP4hx%yDZrN_4PT1ruxRU&F@-IZL(?<1|{CeQ^Tu`@d}S|>apT}B^H@WaTG@G>UP!S=?OBRP!z> --+P-+^^QZwx1|=e~kCi{%EmzM0s@vxtgYV%_B%>g7Xp+0*6gLq$IFFC`}TS(c4T=-L28_y`17KRH|BH -RYuzm`*1;+h64%MsUF!-B%h1^Os+z2YI3Kg5%KgtQkK{*(e<`5lGIr70nM&B3@nR7{=m=Vg^n}bWmEz -9P#HH@?-nd(*Q7yjXsNmlWtqE%?p(XAxdKp20|XQR000O8;7XcS0O^-x)CK?mU=;uW8UO$QaA|NaUv_ -0~WN&gWa%p2|FJE$DbZKucaCyyGTW{Mo6n^)wI7l8QZ;F?$FM}}`E7o=>P;^66U=Kl{(h_BJl|)UH;- -tTR=R#2zJ8AkbUWci@ewKx<%ga!T*8y5RP6`723<{d#H^{Hw2pzIT?}1SXiUFp!8le*MRU$cR;H->{4p4*lCyYUkmEu -&Bu~iR8{(BBrz8u_8xRH8(huv`#Zq&RxNak#sKa;dCGpG&Z=7zL=U9ohOjxR0pv%B^41I7>hnPqd-6C -68n%yT9~9qO4!nb4I7W43vgW-_2s%`SH+G`C*Dd_`<1LBSnJCPaZ@3$USC;O9hDIsH^Q;fjc%lcJVta~5Gpv6%)dlmet7`-fYsB!tmm-oWB(pTK_Nblin%^27M -JCk&CyYOByl8wAkzoP%^mW;kE5Ui>{b;fqr&yfK+^`M+QI>gsc|>9G$sHK2#&gLY>Ih0(!a$cY0prqb#3`vQYn*k+6G~)byDFo0(M@BUnWig)homG~$R@>_*{ZmwDuy$AT -GCfyF2l}227kD<2)xuQz1PW1d0@TX~+3G0>=<66yv}fkFv{`f#8$S#?V}$5d -P)D5YlT*_o8j6;KP6wbxC=eOxNmvyO@)*X*@yoxj3NV-&agwyFu#9^n$uNIHbeOPht?l6mC8Ee(F4o@ -S8g~#lP^(V|0`+kx{9T{5~h6+&vLjq9X<$OjArh2J9%BkEtFBMiL?qR5Kg>45Ve)XgZS^N4BbL6UnU5 -C_+57He-t6`*_&NDu8Jg)_R$XN+`E~khbd49y^*Z#;5siDrxn*kMxDB3WW%SM4Qs;+E1-ZTW`Q78dlu -P5r}=dy>b>xy;+CJI5sRE;!~;j`>n$@8LbUmuQl-NW*sz9*R(1xr@s~$O{7w_cf5`?WA4)I}aY_+1o}ZuyQyq1Z*Y_lfP|oS5op)6XXIJR5&3jkM&e4w@TJz -Tzk5R=4_KC;eW2|wseM}&u1oZ>=kfTx;H$hOsZ^ -CxZDt%qM8U%5yN4K=+?80SuCRc0Eo?&-fzm7;h&WkiM#_-tVjpVv+P=Cbj=T&22{{>J> -0|XQR000O8;7XcS#xbo_Uk(5O&rJXT9RL6TaA|NaUv_0~WN&gWa%p2|FJE(TX>M+1a&su5kz?Avd+$T49S=b&bW9Ot`5e#g65%J-f2TE6HKmWve6u#x};!p0UA(=^677AjB90h9s -maA7JG4s-I -pyXKG-ACf5)P|Qn#8^(piO{cW5JLGV0(^PTHG%LrSRWe(IjkGDD+T>DO6)n&oG|861|?RC`hz{vT;?t -%8Z(;H=|HW?0Q;RV^*4S!qbgD1B$7!Hk^FDgA9UCqQ@=QZ!|}RStjHi(8k*HmX?vSN-D(&D$QRT;LzGExgBf92rF=|R5BJ{Iz6Nf*SCn4YhW~!rePKC)3 -4F;wQ(km{5vI?V^ZcaprumUY1Yi7mhM+s>q>*9mulrc?Q?}Ut2jK;T8?I2%!KvHNVT&|s_c+Vo6)C~> -ZkOVD=ycxF2l0O=IEGE<&-p{Wq8lskMLQ#%QYf6D=b<*~WVE*{ -cA{6J7V&UT@5fT?s1)w`So+^+PiLDH`TyhbNFpJ{;!^b3@$P7(vsi~{Pe=EO&S=kv(h=(06Qfr|lwKD -U+#BOTOSotx!GOmi@s2Kf8a@*3j`n`sCLN9T_Au^I3Jy!h!|~o|$BFK6ym%3uh#!w7A~cOoitdT_9F5 -aRkze;4^j -MqJ89o;NFv2}!loaQtr7TZ&MYxE@4AWOfZ#34!n$r>M>5bFVHrm>FZ^iXwG!ZG5CmfF^SaFWVV>ARSF -ZGIX5cTbe6iKY~^*uyQ*!hV>q?%7>B-~9|iBjF`9NPDU=zVKX;&_xoX-f}Ff97VPel3>`eNZ~%5|!RU -GM~#SDt&){TU9=gk%tv#8-jTW<|@pmFn3^n19KbZO_;Y}UW7RtD*F7Tts39}i{Jp)0qy6ozlHrZtnWa -+gMA(LSFoRiY9R+(P4f!OYcO@5Bh7RR=0li^f;8W0KEipJ#y_EIsT#ti_~5a_PyrA7GO?#N8aF7IL{A?<*l{3!X2r5L6FO#=5v|guuHsowXH37?*=cv$q -&R8;qDWHT;6Y~E{&I_p}fSY{ddsiV?BlS4AwWWcVJ%xxdmc?%+_5#Z|@JJoQE|As{le@6CiUSW4hAd87;7@g!^-m}&#^|;VGcA|>Q5>%F6ZEUsLdfILMf}hTT0t0A_%4C1tH;_kRX(rmxY8&LV{4r -2n8X*EhR!JBTTxbmzt2Wf!>7l3%7IvmcW({HMi875E0m@5)jS{31dP69pNjYJ|=D{>*L#^KDOpW^(Ag -8>mgIrLzb|Q$?Mg}rm&AqaUbV}guE9)(8qaEA2Wixj~PMG$9Yj7GlIL189~s;lu#@EOfU}}QFF~tMfv -ib_Z+|DT_`O}==H*G=3{Ko5_*-;VLlFWu{@1V@nJB{2hI##y7AloB*+vSU}PGE4#^ohk?@=Ne0i=~g1 -OA+FoVw#^B@Z#iy%uN%OECbN5CUR>*dQAqH$ZN(na;dThXBkwFz>>=2lGpq_hEhoavS6ekUJoELGFQk334CgE50;)P+kSnIrU_9E;h*vqwv+d6E6ULW)#gLMVgRak4V)?rz}XL63F@%)^oOx -U~8eLu%EGQh5ZfRU(j8~caHT{N=+-SRn5V=Rm~@%eRTU9`t(!wewMwx75c2!-?hDQFN?KTsDZPEbh}F+Olz+=rZqJid`anx&=;W3SL11;>7?85fY;{69IJ8ta(Xc3iv6y`*RWvNFg9S^sQAj6WME8V4TcG09mX{n1jhA>cT&wH-Em!QrcP6xjubydriWaad^2uZgIN(I5qa;RQ|`Qg45IWDT{NA -+`5Qc<4&)@nN>Yc2Nu62q*^9 -2!juaPAt$(og348y{xoQ36uvmInEIllcN>nV6N@A%bmWsF@wnDBjhr?dd##`*j%(HV+-Yc$#dS|Z$W0 -oDg;ml#LR8omFMU_y)RbmZOHR3jL -AU$rM9IB+Fj+pBssRoubV1@?j<|sfS4-{-tL1~W^1+qj&1rq3cyp?(S5jK?_uh9Uk9}BuO@F$+%mTZF -b0XoqNVp&pE{cRpBH^+~sEdS#NVp;ru8M?LB=1qfI?26od*9Vb)0azKGCfm1sO^wpnL4X}Tc|?~bP4n -czI|)u<@#iiv0B7=v0B0Tu$spCvzjBmXjY@R23ZZ^8fOLLUK%R^*DT8q*8jyL%a7O^ON?uoCBW^5<;4AaSraYeew -Mw$3uHBg3uZNq3tWFSfqS8>#&Hd?8YTWm>^ojnRsgZJy~3-?5))tB{ZOG9VneLPi7$iI2(AfMAn~QLf -^jd66@Y7Do%5=)yl}4oON@IZSOVfMS%uewRd{t-h1Y{scs*FH-*bMMEXUV;!=+~qh2PD2Jz(w%KYDEm2hz~hfB^p(dY$n3eA?-@rlpXYBI`>m8d2Xm}+27TIHfA;e -%U%gZTc(7`Uzis3E-zUef7mA_~{wIN6$0x*H8HB86ZG!`s+#FKfbw}{CN-f>c@ -6d|KbSp>3>u5*ZYp2@)h8%AM?`(jsNoS_q_f}?hd{4ftMjUv$IzPEt>KaBJRJ$}n=$_}R$IX9$uKNZ^8qhnaf7oVHmjhHTv -Hr%#XFL>DA5O50~wzovW+b_ftS0{dUq-Q$?HSw&Upw^9cmt)W+hcaq5H!KJJyo^QN`sw=2`I;X#DQUT -1+1@6+tvnRI?jAeFw~cFT}|?iNbeab1c`IOP_e71$MKM8aj4@E=bE2~o>Mw@_dgAaZomh(;^x{t3 -Xl^&1ULtQKGVIa6b{=7b*c^YRHluQ{Qb>W?1fGlE@><7W!{4r7v3f9a&;X%1V~rtaEB|w>!Q~=not(_q?;|w(~ODY|v=4L8HwEjW!!J+7uf3l -%QJpzwG%JP)h>@6aWAK2ms(pnpWmf6VluO003VB000^Q003}la4%nWWo~3|axZdeV`wj5b97;2Yc6nk -Rgg_f12GVW@A(xkdrF`!^jc8#RF-H$xk_}(5KE=#`vn5<*;@DFsJ1mv7nVlRm41Kt01SJfnEy9Li)p;tyqf&epLFa24HELUi;g<(Me*(yJ -?t;Fx3~H!5r&p;zIb^o6*!5l563+cmd-CZ2OZdwSaL&*ER0<}!8T2A0Vmpu74l2D-DqR}Ln02r<+o@I --48q)Caw6?K92B1BK2enAZ-bvH3E+u{eP)h>@6aWAK2ms(pnpR-i5?ti~005x@000^Q003}la -4%nWWo~3|axZdeV`wj5bZKp6axQRrWlue8!!Qut?^hg}?2;H~HKcUQmML2)MUKy|iY1wo3^gJDJ(42V -g=!F|dmnmF2mu$RiScTUryq}68aWW}(3)|<*-?keU`OpdQ~)CIp=Ybn2NfzkS@vlL$d7C^sx}jsNtt1 -#p2!eOZy5mIHfoi}{5y2iCs!`q+MJ -b%w;MvrGWLs7=Vb_cOzfget3}b+rD?TVVcb9Yf5A`f0=_a|@KD!v!c(H67q?vO{!6-T(xy7}ckM(84^ -T@31QY-O00;o!N}5(bSQu5|6951tSpWbc0001RX>c!Jc4cm4Z*nhkX=7+FUw3J4GcsReZ*FsMY-KKRd -EGpJbKAJF|LarWl$n;ACo_^S>E(H%oBCH0PaQjBIp=m#4TmNni#>`|LCT7*?fdL+cL9_^TBc%opi830c12>?TUS-)F~ZlBF?chab+^9<)apTc+U}TCzpDjzg9 -v@s{0k7A;q)$T>FP&@kO(z25agj?5Q+ZVX0x8H49A4c1GZ;6MObWw(Gj|yUBF)ly?gr`dIZy -W1+4GIW{5+6s6~Fi9>mQ*E{XOBy<$3fwB&L=l2$RFX)e}5z7~AQZnuKZhsdcEgk|<;mqT^|w8QK5DuyA~05}9L -vb-n3SJBG#?m18wu84vKtVNuPV)!vWOt)Fimo4B~zKwas8$9%S)9aJVkJli&z45qrdU1Gke(L>nc6I& -n@Z7sTy?TFk0e^hBx;#FePR}mh0^o~Y@A&fa>ID8QX5)I)((Cnt*v~R{&hPwStK=jld-^%xE7XdCl>G -|eN_Yi%oTeg-5t&J=382hB!&s8_sDU1}2NY+W0SGV)x*Kqo&g(M6K409C-ANkoB -ms(P_oT9>n*(H+9)J(|Ku>=ric6j^(vTWLJ}0)kl`s6I6U5n&-TU#HAFzH?*8Kt7`;iehQq-lmlY1_Z -E6V~Q^%Q!F=`b~&tWbHkL{$kzvRFu7Bz_Fm6~O->quXs^Jh&KKkfGxe2gHV4j1uRexXUVL@rUNeoF=D -(1BR|IN>*!J*lGqqN8-*k#8(`cPinYpYbFt@u{<=8%K5vx9Lv82;g*tih+ni|wKOg)@SwDaEwWU6NV5n{(h9UW%y -SXlu2DfMzvbT4;W8mbt^-ZqAD*9kSEt9@uj8ET5jG*@Bm|lT_J%>$XHCW^k(C -}(vo_p6o!Xco^DGh`43rkA&E$O=w&;NdP#<9ELW6ACaQ=ZbW7ZgM(G1kkN-s2El$2L!M~xOK2sBxgf} -HAF2;A+YS6t#uVQ=!8isAm4sh->Qe9i^oP|H?~lxoo&%CbOko~V&l6{*-}^_2mYIjreyfmdg!WTu1W6 --IX&)n-rv>IsZPm`Uo)(g5a`vCSd^jJPXdY^DbpK^0`QDJM#t{X|=l;1E(|sP+m?A-Mt#iO#Qu-NwH2 -=n(vl=ju;H{*1PN4m)jT#u5s~Tb3HGc`Ii?Fxff?c!p|xo2IejwW{9GKsS)1A!5hSOChP`BSUUWeAxe -(__uP=VG=ARh(>sar27NIyfxY`ZKP<#Z=yI>V=hTgj~5_{03>l^vFHxyPE;L!Um3iVwrmQ#07ee2`vZ -ZYqr#Z~6YYqzp(W}X7#KfXo?SqU?$mcW+-|zq?)EY5Bb}aUy$z?MxC8hD420xk%#*u(LEG0*A@BuQNp -p6?Uc+nMh$yFhEGU?$y9LAa0kGQQlJ)WyUB#TvXAlD4^1CQW&>ZOmtZ#=}2={GVRzV2oiCdshVXHCk4 -NAjh@7Gz5XA2*NjMITBN-48(g-NxjjTmv&1X5y@d=-RTZPKt%9U*lsn3mv(QHr?JN1FVU#4{QXr?Tqw -Q%FThVPcw-ga5fa3D74g-vekp4PnE-Nx@XGieeLRBw@O2$+2k2&{#}@tC~#ahNi5mM@kns8h6U_4d17 -AceuVXj^D-emB3wycJzD3ncrbdL~XuG?szylt~O38L}ew2 ->*Erf6dA#K97BgMTv$^x}h7RXi!0y1`dSiWz@-Oz6L8DvJ`;C29Hi}{5a#L$trc0$F#O -(*KJ2L&|1o4O0qd3(VQjov@`ut2kt`jxT8|B!MA5Y2SrY;joz+#l={FOHhYyWZ)44pafuSlX8WY>{w- -`CjScuWmO80xY{zVYXnU_*P?Z!%lDQ87MnfD%(nB$nMZaKbffChhr83pSrlT2>^)0~|-SV`casm>QC# -U8`QlC3A>uM|NP!8RS(Z?`yn)XN!SH1+@6p808ZyC1Zd={?tHl&5WW+uUi&ZI?C}9%fJ5Txu(5W&?3H^_@iycyLdt!0dy+Y#-4s -lj<9YMq<~kqZ+b{1`{wD{DJLq%c93`i`c5rTaewJyiitIQq^;hw^~sglw$i-8ksv5&m -PHQKW{O4>nOKgy4N6X8e{DDt>+((Z>HB*vnKe?hh~I!a{Qm}GOQXXvv -UNb1sTRApS+>7X__3SrTTICOk4(z|N0)UiC{3W*LGcVu`C6m6+gjw90#Mg5eL2WAt99*Br1_mM~wSvj>?U|tIvFtNpe>=NRon5{&L$7rgu%jindzxSgUuNqzUF5STKObk(O -QH}rwwX)(#CnCKkGJ;tEA&bovyPH(}Y(22e@iN&tyZi*}JW~rzZJR|DELv;Wq{l&)ggQmaLbD;(c9rE -4SQII%C2GZDM^|TW-(7o0XIR?XGs_ZDx-LKF+F3leo&?iixM%Fa3pbqDrc({MuGTjTpHu$ -XBed*ntU7TFrOpThP(GZ!qjs4(fX8pM~?%HLt7MX!5M~Pe*Fa^*8cY*ij^OUr#lJyHBAON!MM`B`cF0 -W4CUR{2?IPs3oKc4CkqtBz!Xw3HZ82ldLf8!GWKHd$7$_~|LXL_f -FS%YD*WS7g@3FT06fLc{9}v&YkK`R9sjEmKcKJhza;!i{|@ZK@4|m{c>I?R`Hx2m|CorB_`fIo!PajR -zXiWd{`(65cx2-Lf$)Q2=4}FM;3r53&F9qYZgWL4Koy^EwxeKYB%a2xg@NQiRJb21*!hvY90SYJ6&S+0 -t8;fAIyT+G!SP1`{ITix1UjxEA!?b%%Xi>}_SxX>$<(uD^;DS7mwuh -SRDyGbBdEvWkt2K&&MT50w5|D9V&f5$Bl+N_*iir9=)`Q8wR|VAND};MNOuON1(7v((Lt -bTgq$9^N=h!tUP&ls9d(|8+2ETLG1(#3bw&Ngol^!&&1%G{jw9yRa?_?BR?i=(Uw6tqvXU2+4wzn^7z -%(!TAL1N+ixf_TybVlna#%Vx~VTtkfm%S!6Kf2~~IpmL^UiR2)ZJH5 -_;XUoxx9qw~dt&e@tbAM}2XBRP@4vPo%gdHAWzL&o6~2`%3Ws*ZdVvIm(VGjF#Pa{=ojP3y}gPklNAd6ZXwY=<2OC+gM{WHx@;$mpN2L532783sWG -#Ur2<0*B54FTbR)SJHp7I~3r^-bpd{ahXwwpJ*uk5~j>++L2y^gyu%d2RO(hSU`*% -`2J@>s2|QAZETUW5K(azk&2jTzfbzU8KFS(*ABnXxqTmTaP<*A|2eh)um1&Vp6+)e!Y50#S_(CC2cb4 -4EgxaYk}HE8;QO%HtHaYI@b6CCn*|No%Sntyk6cG=bKdD{!pI0*&%$J_xNvD+Xx()2}%vt--BH -3)e)(M5D?&9x7qCn{1!;hpG&4Vsfs^$|emqEq1$0AzOpCrN=n5nE-YkYoUad-=W5EP1$%7dg=V}IwxO -bu9U6R4HY8+UTK1UPKs&7EnlimH9aN6-K(QDH0{??jW(Wtn~G86wnHtX3jG?2AY4a -9CwwqVzSZ#bkSF@%sTu@MVaSdZ1-_s}s|se#SogO -QKbNw~w-Npx1-)}@Hi?<3@h;J+tH{trm90o)?l;Uh&0k?zJ9;UlE0MwkM2*^Tg5h2Kc<{7fMZgl&TVa -~%mDx=-;P^2~}~6KUB<#fFuvR26I`c#?=f=yM_!(OxfmoFjSEowR>#-)0_IL6oiAvjMEN -_$1OZxN?nE2Q1y)|a=`pYkZu5?wdJS9==)`!xAddL^VBEI>^Im-mTh1EQpJbG_rK(Y35_WFCPj0B3Y8988&zC -RRZBD|0o_W^@w-vlC+JQ;`^#0#=_6n(X{EQthIJB#mKjhn&`aE5+Mji=@iavEf^}&b&bR}?+`k#OZ@H3OYzH0%(l7|`o*9IW#C1&zhE0 -#14Rb|CY`@0pKN+Y~tfd14rB#f5K9M))Q8ye+)90gRPG1LC;oQtfH0nthMG@9B5t2-uULDJsU$w{d&# -DBA?ePMM)o0*SY+Mtiop4x_JGr@}t^YKCE2z+KfwhekVJ~|q|+()=)Cx@@b`zNzz({~M%lG`f=rdZ?H -X;dbtl?}~zSYzEs^lNt?{S79R=)Q!Cx9J0!Q5aum`YDfYXy|1}QX#6rP#0O0lihvYs+0csPYqsFJw*RC?9lc-n6~R3m( -|XUEr;B?unjSjpbwLV*;{&6P}cZpEHoq41HFVw+ov%tWO)O!QLGe-D?JG9ENVEycmOK^%x( -ZeW1&+Cit`l@bbVxJc7ygSWHO-PG4wbQ1AE@uNw{y$Jl0|XQR000O8;7XcSLu=vMy#fFLh6exu8~^|S -aA|NaUv_0~WN&gWa%p2|FJE_QZe(wFb1rastyEiY(=Zf%&#$n8#1g4Qg9#ocrJ{^(RLTnK%6PQgab!E)D#U;1#E#R1(TYj

@v9-}%mkm$i_ZsGah1DN2$t&C-G?1&VO1>qVaDz2ASBU-FGtnRrkaqEe -!OOJKT@pw2yl$M^kCP4Z4b*p~5vZ3>7`>lw4HJ|`O?3KEk`Rw!`3>w6%njZ0Khw^$UpU85`mW!zgsEg -MKhA>=cH^gb4Zr{&Hf?lMmGt_Ec!h7|klv8@)E1Ka8lEW=IT+hD*+KXC52#7k@<>o(}Bz=jJ)9;!)GP;CX)IL*DPYon))cJ#f|1EKe;q&-`WqISsy&H{0bL -%sZm;Th7fWBdI~#=wpD`+19dGqyk2daaM~28lhA6FA36z?3OKHgv8}&z<+->A;9qzFlpSr`#vkxq -JrEOGm4e}HBR_yc!Jc4cm4Z*nhkX=7+FUw3J4WN&wKUvgz`WMy(?axQRrrB+*yqA(PG=U1Hggb7QW**6n6aUFJttR -oY|^}#g_O3`M3vTYs5f4^-3FN?QP9uUeo-{qVhFlICbvB^oc0FvgE32+5w;Vi)x4DsI;&gSweSmkPA9 -&%wAvC7FwZliacMU>f$%$GJ=lkDpwn$wKa1Xo~vya?x;F_Cd=9$=PQP~P+?Wf93jf%yqUju$D;LO(MT#OZ-Py(b?QLFFd`g7qA8UeMT3|`#LS$n;uy2`*4?B`npz-N(so^G6TW8xl7&0oVh~0YmOa -mOQR%-1vBLX8G5t(~@&4X~9@bdsFQ>X9p>N%x8xqTzd+uNN#+1qqe=u}|`sj3?L>8c8ca5Z(+V>x(uh -pM9|t!XV>*6A>#v%mlC-pC(%K6>$fJ1Fq#Z0bN3d|0qiWO9a0JS+Ir+E}kmp7&F7|mCV -Q-%aJ>vL@~y6$Y?3p^;yr1POJn{`B-Tyog;eYgA5LB11={K0XH|F^vHhc#~CdiGwNGX$4Sw=8JgWU^@ -E==DnWRc_wS^5l)rm2sa(`pfQM`r-NGuK#o;nH;8d$f7&=zIS`SK0!DO=Wlm1mV<|SUVrp*qN+$wz$( -qoPvEV?hYE1B?b^c!Jc4cm4Z*nhkX=7+FUw3k0 -a4v9pl~vnv(=ZTy_gCzg7l)WkTj0er?hKS$p_EI@we4u!SV;u3BqXIx`t__N-_kTG=)q%a&z{{q+Lc+ -Qq_&`GG|{pGyHrd}frZ^eOLcL{X$nWo*c49Ziqj|{M}$kM8l-zCyfC&ljw$D+F}e@JsYqcwLzuTkk*4 -HY>JoAcJ{rqPF-{X5pPPs0CqsP3gD8qhIsu0=iKPphfw6i3kM`Tl&U{K|Okj5Yfq;vPECO6g8fKXk7- -7e6I3iLNc0BVzefW|8_UvivF$nM(X4H3L286V5ECme_+%mS%=t_mFqyvwPDnv49VRflJz*Nh*N_INPl -2Kmv_)?EvVc42Ix-^oN?246?a3*Lc9P+W!&axoXMDj9&ODQ?ho$5LDy1H|AYSt149+P$Z2tK>;wnC{; -bPXDX4R3RS$(sJ8X$0J9UcF%=byGKK3&%8jM?c6`g+SM-bxO3Pi5Em;p-d%%PF6O#mCkU5VZT}HUrr`BW2rC5>C=u~vJz}?cS3c>Ug^zfVCIB~qN0RAojCA-7NMR&iqVVutJiN1-@ZF~fBfO&r_U#+ -U%r0({^KWj*Ep~Sw%#bl8z>jcn>dBto!(gP;jQu)P)h>@6aWAK2ms(pnpO^LMNy3b004Re000*N003} -la4%nWWo~3|axZdeV`wj7Vq-3Fd5u!bPQx$|yyq)c;gU!t9}uYssKk*2;%+(ahL|Q^%ibdT_pF_U@T! -ClQS8~-of*3iG=c66*vV61xVzsKMPWuABRp9%JfYiT(A|iYKy_PytgmqAsu$oS4?z;Jr!P)<^47o@nHa>{Xl~or@O7qWcHZ&m*w9f~7>_Mq` ->@qMA9h9ofD4r>0(*mD7)^L3T9nrYXl#aW_{hHKw>tVIN+D=lICIR^v91J>Y=1}E{8z_}ZOm()TR9S; -Wb)ia7c_lWvaC(wz*lrUzY3l@R0j^}YewlQeF4@o1Fvxi&kJCo*dw#{%{cv_=0&1nIifUAJrO*cy0c}-L< -lBok$%0?9H^-%j|K6E>ukGXl2WpFm1c|*fv-8?{?eVH@IzjqfKU;N8MYv#{XqvJoT&*lOl-Fua>{?#0 -&BD_^AKlGQ@83QB`NxO%Qt~4p(({s~{75AN%sR>LOv&LN7ofykh&qu23VLWA?8Z}7aa&?a8At&4e(;y?tqF}{z* -MP;FlJnVzl3O%s@O)j}@zh2I$!upA5hg^=KBwuC%yM@ZssMWl~##PCeNr(~ZMARgbCpp;X?dh*Adi9h`wLX}JecG%Z3`yeLYBzs?&Wn -hFqSvt>#9o=C*lSE06h6h(54P|{hR$@z}ZqCj8hTe@Um))lE4{OD=7o6jWXoo?ML8u;;$<52iyLGBQv -HwQMis8sGBd$Iw_uQemhii~yAbVe%uX0p*2o -obBvxjBdob*^m(w8fpo}HG=R~<4DE!nXj9F}_iRPMJ9^~mAz(OOT3V3!9D+fx+aq|3+)HJUS6pngu|i -T$yRAp+6)ylT=CufDfn$n}F9q5OjW4?-W&Q7ha|O(CiV;)2dns5o$wlr$h9fS3LHtFLTlthL50M~(`$+HS@$M -633f<)5$q|~{v`dC)`eTJ;_VC2??pVboiE{mNTVe*Scil}7oU5PJ@ec=1XAYAl&Zre6>~G?*5Q&>RAz -+;0Wk7q=%V3k6~!{;q2ZE_DVcUm{{VNa?ce|-nDj{qd4B#9+pZ=nl?~(91JOZCDS7QgMXl-R@SV)Cl{ -{W{H}o)Py=B?IZKU`ZgMiX)IE)HKpIqizE~AuqJ*P1_;s4<_GHHGCnrnHD)Zz7X{=uR?p-iNd& -$8tti=!%2y&FrcuLMIBB+NCjkcGvq*$fN&DpMzcTPwgnX|)}}&=iEkCw+8KQJBG#jddEb`McF3 -jJNS!31N>gI19)q@KBJVe}WwAsZZ(`|(fN4n4;nnPwHQlXPW)zVd)Lq1Oj}Ukz0$A*L+UyUQ%e2p -(P!c=1^lx4MD{(bvZ`I&yKUQP}3xYIsju-J_}%2X}hP)^o~=E;&`B`U4R>bsM=aF^tw6b)g>G~6Ci(IxO(U|=@DxJc=@UH;UHA!!#Q_gDB=O` -e?KkG)NQ-jS?Oe}X$2f#i$r1bH)An*OM>&Ve>3e)b&PL&Qq2%v;vaWZAuA|U>YB(=x{nEtw(DRHqtLX -I!IYFoM5+(3GiucKzzv^gGRL>y?1_0-@Y6EPCmV`0h@!7}AW?Mr^2$kTGab6;j+f(r!4UnVuJ6f-qBA -pyEf@8!nXv(_WW@Ude;i*cGC@gEhxlLM&u^=sU}7?r4P5bK?V{`N -`e_4@2=vB#GD3}^tVfr@!1@+t>;@~&Osi_cD#@8WI9}5DYYa1mKvCJBwquT@}QD5pD7hyNiFXDEAScKp!0^)d`P#xT{LkgBzP-Szb74+yG`2A-(t=0FF93-9Ej -yj?TM2by}$0OOVC`L0!a4bN|_xi_bw{<;2oGwMWlhPMXQVshWXJ-%=W&a;I{1AN2D23g{2o)sFY48wi -4G3;0p6wqr|*<8h3a72T0@ypXJ#3wXtGHn7?XyiV5lHMb|tFW -6Fiu*;_-Cp{DQHOJorgu{N{V~-lX4?JOF3ZF#(+GOMX^{a-WX~x4DhK_z=Alfq`nVc=i5z-G7wwstT= ->9%Geq?ZU>u+g=m5pEP^!#r&EO>$>ZPP``YR$nQKM(TqWIA@p(>3j=ik0ekPwa9&D0GwyGy9z#^V?_M83ZfVU*gZ2m?l#P6%*^r(N5r*N+@EU6aE25dA=PWA)3FDv4!gG -16>g^auvJ}WpaN#6M2Gy-X(l={UXliL6qPkm|!jmf@S~9rF$iBWc$h=w9)TE%@%ly3D`gvJ!fvf7yLg -(O_uef>JLD+E$3FMMGOv$JiNxfY=Rzzl`n;D}1gg2S}15ir?1QY-O00;o!N}5($PYaQ-2LJ&28UO$o0 -001RX>c!Jc4cm4Z*nhkX=7+FVQzD2E^vA6S?g}&HWvQxr(oSbQfsT0<6P{nJI%Dy#Q@uxViFW+9Yato -+9O1k1d2}T-L}uN&$3U}bB=hm6;IJ0MX@Lm#NyH6;dd@1Kic`Wu7qTQ_wx3s**CqlsJ3iXm6HD?i~OG -HSG&3vyixDvzRt^ye)n2(k=_@4z}}==p55+he12QYyeiY8*A9tRRZ$5&G3Z7S&M^3@a6EwySrhs{P}LN7!6-6KU -uKhXYl{a;jhau?17CzYmGgS!BG4S|_f>rfH2}GqbV)XPvQY$Rt_AQUXi(cx2;;oEMp6#lXYyC5D( -uj4{SEAV32Q)BqzAY6nzIt0u<)L1aeH1oW9$l6VcJxlQHjJ$kRIEL!JfmP71pOhb#ck*Saa#vwNIc4* -YpX&H<{qXKggUZb!P)vj&=tC6o;JM0VNfSm!`9wX!yo`JG31IWVCHww;sc3K&mL)`>@|J6bC(4kLRe5 -8VT%*!3`FdM;`<|&u&gZ{Q39$PVk6hg^XKGP2@np(Im~-~xWoD&yFlN}C!ZzOs@GFf#mfp`WRD9^&ytNe^L<&(#YT`}o2YnprQ -E)c0b1rNq7~dzog3MOkzE+srIB448KQ;_IfX -+&CmSI{?H!<=#ID!?pNw6x!9F>2#RmRl;);z2lXF*WoS0m=V&li;(iIz5Cev2zdvlJk*8;X>EkMA$T; -*a_7#X2`^y^z!5DliPI~=7;>0sp4=KM;7o7$XDjm+jeHesIHq{k-6Q=9eJgm`Mx9-9D9ZQf%O-lDT061WlDv=>7C{h<#XK>-Np|2HmFNuuA*Abh0Uj+n4Be`*_*@%e~&k3l*`_j5@i -6iB(?U|PplR14vg7O>m?*wq3I9vc<@`{2;F;#-4L|7yTmjX)q5hJvNk2zb5De&yuH48K2dJer|ya1at -e?xn`zv7*FK_?>8sz~G2=UuFkf?B6=WHdPUHpdOCr22e-@PLuUc(#l{LlQ>|`e3Hh3bIr^zIz^Q-j-x -L(XP&5>%$fD5YXJuJC79mr1Kv$yO*jR6o3s089bu55-OOAwPWz>O<4&X`3U?>sSVgYU!}W-vnTjVONm -zRIkMfHm$HM$<6byti_Sp6A`Hgo=L48S1_|nh7(RL;YR*R8F~(v{^vQsC0#&#tazg4+-ema(G(%=A%+ -1Z$ZOh|Qf?Xrg{?J8@I>!?tIE~E?>MjKUra_FJFP4vi$u|5ry1IGAlz0bRmpWCCM(ABLPC+31$92+y; -Zp+wO0405H^l-cUVaD|#N+Jh6q^72_Zuiqyy7~0*B3u603i{VO&lxp8ZKtd%P;am0*5QC?@JRA4vJLx3B?}(Fx2t$ -%=k*X&B87{M0q?>Iz11bi|f8>HDP(LN)mD{Ttw^z%(+r=M5)K!VD#IUTK3$nhgHZp^23v!SudbyXpdH -vSC$O@ij!8)5Er=mO6J?hvZ1bUegp^cR00KXxa*t%}*M^6HRAE0)47%vp6@4@9BzlVM*1B_fMHjj&Vw -j2-$g-QP$Q#O_T-Q}yc+iK`{b1e=8#|zc`R_wUvbRyaxJ?0wZhD#u)J067U)*1A7ay`6KG_V#(EWNQB -m2<^a(bg7xbsIPZGir@G7hCBL6N-s@&4acQfxr)wv?}cZni>dc)rzC@SLUaisMHVRfc9<2q -t7p^Vn?m7hDNOx+}X)+Ybk)Qg}glN#qNnYNi|3@9OPNlRfG;ZhJxRC~qh>Bv-ZEgI~DqhVT|bk(JrC1 -Xpg`Ug}*Z*p=Bt(Gk2{6GY7M&q$?Daz1sX5Lhh*2 -AUNCYxpQ8^!^!D5I-7m{^m1`_{`~Q?#q4}`F}r+u1yh)h{`vdIQ3?mkpF_)E?Q$K>E}smcfus1tEx)_ -vH@E!imS5cRvs->btgl|3pF1$bup&fJRIpqrILl@1yClgXz~5*za;{X61A3U2uw5Ph|VbG)I?QW4Ib)rlB!2I8fTeb*n|%H_`{uCt0B3*aq~}>K9(PsGXVsi0yX@50a3?1SJws9^+S -PF?tj(?50lX-ov(@O)qw`Kv@juKY3?I_0D498A|)N^HWKg*a=PU4WjxvCRoD@jG~(D<7zBbqFTX-*1lg!vIW8 -yv$a{yl*wT?i+AAS?t3R%4Bv-iJMzz-gb&UHup5C&<`kpD1@9D!0j)L8&c>FY_R3AhD(B$vemuNP7gY -*Vr$V&T)(|J;R7p<%}7Dg{{jf-w-GW!>Q>OCytWf?GDsh)aX)aBie(*zPZ~h1w+N{F&$LN8*`Dn#jZk|TJ^kpYQ|ToEgT70}dmQ^&)(#r5k3&U7q=GZLc()w^*&yi7T?(c2 -FaKO+VrAxwt`>$52g4MXz*{_8MWPz-NWIqo^%m*v36p(GXzDrUf+Hl44PWAwh% -onC)$Pl3L+?%!$gc6!0S{M&!HUqYz0HXHztmoDzCP#>Vb%30>=GX(UfVkt#XzrE!2<9{SJ%O;8CbdQF<3ZF)Vb|oGIdg7vZZndYOyfkd^ektNq>E9oCmT2@X -TvVLKv~t(F+!LhqO-sfZ(AM5CC!++*&|4tuHHZ87*%5Zw_-CT#IANMN**EUw6 -vD7YiybX<4MqEQOpK0h|p>&4Lm=L<7u`4-~BMq(pvh|@J__w$QuC9IOG|XO*Pz`N)!e-4S;0IZpEjHh -~qe0d?X^CvcXZ11Ot#VWin<7(Bug_j8A#$wFq}P|Iu>(_HzEG<@|j>nQGv>_#YofJQ!-&F9`8J%lW4S -^^^Fdj6D$*$OWDO9L2G$qJVG>n-lgI%lS`1VkzT^l6WH-r%F%!fG*5UWzz1l%|h2n@CI)2Y>M+e`H1=8d_wxZoAP -kfL5f`lGIrQA9YwXvPzKgh6x!^@%WOA}c%c?9^n4Vhhs$la60E04|J_o>z|-)Z -<0Nag@^lK*=r$DVYU9 -D^_{Vw2EmET9RvD3=L%qpwg`vudsREWMc()jqx*_I^*Z_jmFQh>WrTwG#USevhb}{8n*QbR5HI}RW{6 -vCT*R^Eb0no?t+3?gHmj1pvBD6onpIC)=W(apC&prQR0EbROFq6%UKdJ2WpAyd0yK}YJhps!aQ#k>(b -d_DutX$uG67PylIy?b|G^>xnRWe+=yA37@;&y!3t9CeonK<*`qjNK@`g)sBn2t@Awzx~L=q7n3g|LU(zaFB(C~&~?$g$mY=g}P+W@ws -5l7-AFvyRb(_q4J?3r6;RqP%)N)7@=wI#ifkAuOPf1>09a}1SJSj-iPo$cEjn~(g5{oSp-hx`8igIoI -t{euSw{k`3NZ_Fha{FI7syNVGNPoE5eOu+0^2vvEm;I^^9+3%O#-Ewqb>4VWlA{_}3k!&(ZFsH#rDIFo2*HWz@A6EO7R{!44M -t|48v%Rsky;b28Dh1K5*gFU9ik>_XLwN-0DLY?07Lk0in(=`5Z7xY6Sc^LoptYtUS50R_Vo@BJi{}*uX0ex^YpK{w(IOP_#eKYmg)$kQogFn|%7r-r3j*J=cd*g{v -uqm4Eoro;TW<0_5Ywgx47>>0JPZ6QI(Vr(Ln?utW|CDK*0T`MwG%y!vl9LIY-7LiL@m;3^HhoZESgXE -)1M=7Qu%kr?B9TFcq7%foa9H58~Y!~neU7Lg3py2sxJ{;SnP)%LEAAX%~XlyE3hxI^jvWra=Jxdn}yG -ysQiq3Eax0te4P?xxZOi&9iYpg2z_hN%WOAFk+dL=F?|7AtLgwz)bjDA-yaCYFR7uaD=y@2NFq+Z7Sz -)~k8#Ynx7)*0dg(^i}(>czK@74-_(rwc=iwA8UAfq;7XS`g0oc9O)2>nJ5BGpMnLoUNggt##NM5L?4O -Y7I%RIqj>-++bA7Cspb9in6$2@u$w?WbO8)r2gL%xjHjFb&XfcziDOOIGkQprPqf1|BAhRDz2{g<{|k -)Piawq-=&_khksSk2cv$sb^XST>#cKke%?C2asAwU%ZG#l$f`)wA)=>>c3YEPucLkadPc%}D-9cI`&) -YtZtZMS*LxwG-qWzz|JH+z``gvD%`4ET)e+r{9(EH_(}x2+u -!Zq-Poy?g0bb|OV(1i+raxDn(X3>N>~*FlK4BzxMl26^Vc3V=wIgiujTxm<@~GV;-62+Ib(dGt7v_c>G}HxcpZ`wa?luIuZVJxN&9{7*1$Sj_y~geaQ>00kUv$N0+*_Xr=&%xKh~Rw${dG$ByRmu2rx&%FE<{1r?LgBPkf615YS;dSrsc0gq -Okp8dwz$w(6+M}10ZCo_=HK_DV8VT$4!OQR!AoP`=~n-c07=&UE`W{@#qR=W*sx$4L~!WT==X47koU3 -)JYfWB{=KuBto{vxfgtf5mH$)&2j(O{mH8aJE4CTUUPjJM_#jS(6dU^Zc5Cn3+qkQbi-Qgs)3_>Afb| -uKxdrB=+U`|I9lqY&3XtIgRkL;cDSTETHHeCd2{+mU6Rbnq!dzLJ$L1=u%wCDV3Rzj6`(kULtMcfca^})k*hle+k5@E2(JZv^LosnW`s*5B!|+I} -;D%5+xwg&E15tgYj_cf^^v9mXd*WA!8@yj)!Md?vy>bCwYdf1f3=xx_Plu(x92;{PNSWl{xRGVcs8UE -}PKbYZH5WaLR5`;b$|p3wc8zQKY#JPMKRq71#2a3K$A1A(O9KQH000 -080N_fRR<2fbA=?E20G$y402u%P0B~t=FJE?LZe(wAFLG&PXfI=BY;1EbaCyyGTW=dh6n@`dakS-Ow{ -cv@loG5Yq89{36_wgZeK2ObvB&n%-JR|3Y?B}!3gxYp5Qs{pqC#9A`hu)dkhqE;L+gYm_z9ddvzJ-hN -mZ#_oXB=&&gDDzv*BSZ5(x>jhKUGam_>alM34g47eSJFeZN1>@8xdHqfv2r+7AMMD_{*c$5Ux(lBU;Z -LEvrkfgG1&PQP;QoOkK$na$TOTGkP`z(#Bbq=3+u{V}BMYQ~~I12F_SW)O;0LSKZTh@e0A6TdH60*N1 -uSZaAZ^-=^8u$rQEw4sSSF%Otyztw#+Yqi>~W%@WVq<6oC@9iOdfBr>vaeTGiJNlgMHWdoXvR*E&b&j -`QI^kLaHU#zeK`;?!1kDz445T;q^ -l#EWv;=)iQM$Yg^DRh;9M1eQtV8~U3=R(_nGTxms%e!5?={3mY9wL~@i)WP$|A&b1Ar$U#VGUkbX;X!~hB}I?}IDEeu(OIgi^((CuoDZ*l0}mU@V2GSvN$%*s4_G=dIeT=Sz&+P!8^xfUosh8ICc!$iWplzs@_a8R#}!xKamZ8ebl_`EPPjQU*2<=fBiubf6VT&DdiFV=GjbOyDv1qm*H_KE -*dlxS@y1yDZpxb7>^X3xN-C7QJk>}MoSppk>j)J4;FzCcq$uUT~9YxYBA!?2_O!>KikawQae>5TIM+6 -_56zj844c+tPbA}yiRLSRR^r{5PVr6BKYHaH82%O@PpX_2H_zCV^StNM?+YG~q+}F)4B}Mpe`67= -l1t5^$1$k#N7a3U^mEBYr2eElQmufVd(>K3HiT2uj&x4a&LRLeE{uyq^4+3M=njDkzIL7J7Go0^@g@v -+_I#7afz6WI!n|OedBWOdNMDC;>Evn=XdEcnTox8DW=dRde!VN)rpG3REA42fm7b$ry4&q(ULX6kE=? -k(tZnKeU7K+YIMw^Z)r$NnrowqZ+)nd-dv~CE#>vx8r8utO{)5yTZCb8nwtn`h%1Fg7% -X#ub#1%(HjZhB;OGF+H*$>vhz;DL0pmq}$UKkA*!H~8=aJ{x9cp}W;*UbVg9U>#ADyYi$C#zkIVdOWz -dpb7tL?gFWD1=|Jz>i3|Muzh&gAjr$45WioqqT2{^Xne``4$ROs2Qq+q?V0^!uCpliR;vfB%nrUn0%) -{uk4)9z6Qt>&G8X==R3L>BHN9{&H)2^W(jr@9o|C4C(QFfAU~@<0Irk`3+b#f~_GdKa{v4l_T`u180@ -izy|Idb1e1Y|F7W2XGUzc@7nGR6nlpzS>#%O15ir?1QY-O00;o!N}5*bM8@6A5&!@&M*sjB0001RX>c -!Jc4cm4Z*nhkX=7+FV{dG4axQRrO!V~h^w)Iv^ne>}cWG9LT^tsxG~2c!e$HfTm8Dy;NaHli5 -4q6r^-WNu!6wdmTqgUi9($P-m+;5~t9`O4(ljP1Jq -3b%53z2C*MBVO-{C{4n+BM8vq>D^!##%bzb>t!U+nelEmUVwZ*MZFnw{6x9DgW-S4qQ`D~&^csN<_Q#^c`B=1CEu{c4Hx}=Lbq -l%m+hRT!-mg)zOz(0JP#1BS=d6Y|jG_$OKBqN2&wHInk*)+VBZllMf~kpozr$taQrsMb<~r}foEA;ir -U6F!1Tf|U$bcZ%SAV&D_WGySR{$9jq-1`?RF-lj0@8jE__>T%ZSmxLkrx?rh@VUr`z#SF&l05j330m# -c-d#qrUWzZBZP}FhO46M!%o%}gizFw(oKKQb-~Qc%mr$m`aKtJc;<-O^!J7B}xYW*}hk%Izgf1WnKOD^ZTI -OY#-5TK3QsfXd-Ln9F1oZ7`#vodlrIfoMzvWd%IHI{*rpvX=0z-IGhYt{bX4{%5XrA(21~EP;2ec)?- -G1MvQBDgEdrhq1lEXoLNfc=~w3kH8QLkZ18gQgnh8b#6VzNsvL!+1BSraoT=WyCILhQ^M7RM>0Gs}sI -o1x8((E^T)s;VIZV_Q&MYcy$Civ~1%kU69MHn7KWcxJJJq{lrAfCR>lrg-N}9ho6v-;QV_Xts9y4ALX -Q#x4kj9ZxJz3_e6DBvJ%xrKDMytZDLWREl{Ro*~lAK*9<{$yY8tF}8<{CXMq{Zw%TPRXyx2Hh-^3*L8v<#uI0|U*o*7S$_gex?nmi8`Gn>{t4;i0n!kkfP%k;_wCc}b3R+2o7$t=Br -0fkkNid9Mr@<4;b#=+1Xboi!`QNuKyPq8dKIsvl}#!ueeSH+ -ot%4C;KOD!D{gCR>_{$8 -v9TFk~JWW=gLxS(YJl(60odlEuCogtP(&Cf}8ispXLjF;N#Bk02)N*#VPBOx7^Y&v0`#VdrPy*l{j~x -r`cL=RwUa?F|NLcBv?0kg0^BNY0~}l_6gI#lRSJWlT~Spb@^D6wp@mb0z1r -0<1BC>;zK-0oIH__IbYsl7|5^dS+qOK!C-p+EJkf0xhs&obyx_1X#rCsApqUL4ZZ9j%>x(K=Lr6?J%+ -xUjqTwgh00HYal3#iPe#<`x*$asJY-I_ZkSWrUbHeUjsp*z^vN3uYmxIS+#Xv1A%ujtG4cIAi(0Ti>> -<_2(XCNv90?W2r>n+I<|FR0|6G9c5Lgu1_CTH?bz0R4I~dUa?G)<`x5lo?UDWxX1Tn~vNZEAKQ1IS_N -`v&MyfvPBHhPJk)(yVkz$9FmfR(6U0nvc-I>YmBHiwySo%aE1C0M@z5B|4+j}w#pRC@0ntX2m)8AS|@ -|{oM_n-Qm;pg@{glFp;guYw8%RBGCMOX_cuoyu5-!8A7zJ7DrX54`|XX)&dn9 -e+bAjCgKA$v_ODxou{$DKi4eGl>=kB99_t7g$5|ymd~ssYw(nD_i(F{@vR96_1&pM~dBsFry?AQzPg7 -NI8;xW2wmrP-@XGc!pg)iDT^t^AQbM>W_QpU!`wHd@Y?l?v&-6sTMS)xxo2!;L_)tNpU$f|O)mTSh7u --f}Z?v}>3f_0jN7-=yQ}$W-{D`I_SeM#Ge*1Giqy;Z -wSD7>^nR{SXRupOF7JKEKf0^8&k_Zms+`9@tnWpI6$%84O~WO;iJ&bS|~m-A -KG|js`zsl=ZtU@E^c|)T@Wc)@?Mc$DRL@D=CiTvbUF2It -j`*J05-wfL3XnGJn1>ADUUQ;k&AHW!33^P%$Coyn^!U;oneSV<_KL+@Yx4UC@uDN*m$E|k=!S4a4EPn -5$Frht%DRFRtM+pR1%>C%KrEOP?XwZDj=9Mf -eZWG=3^NDjB)dX~Y79!f3srh{Ui>ZPdoIv3L?Hxb6ZJW^vPgPWR;xw4HrT|M8(;!es$^q#G(e(J%<_7H?Py%~u|0k59~0twKX%&;9xiK+7mOz7zcko2FsYRth=^3ZZ%vad%W9mB8rl^+~w8D7`Du)b5j#u-1m9~ya`-6Gs)8B?4^XRW~-t -P@YZKDcmV(L!U1NMkoOX?opk9m|WygV=bvrfism$ao`k4HLAC;qQ8ZJ^zCvYxZY(OQtzt<(eQDrcC -W1*gfk>=BCH?F)-u47=6Md>ocd=;tViC1H7FjCGLO!XIt+S-Mfl`a-iyWDSJbuem9d~@gcQnwk#5>4T -4?|ksS14d9W#=r;Xqel4Xe8TXG)*VIF{Pz(V4L?*{E6p^PYjcaKsk?Yt`+Sd`;`5sL$INKABE@!}Q;Y -b!x!?j&eA34Cjtcun?2a$n7x(N4b5U$>$|bH{Zok;d>pgrs`NGemSWv{xlcEhpN1WhM$!uKk -gudLM5O}47<3f?=`PRrfMHu+i}4|f@zWu*+2Is_lCDj^OkuSmtigHz2WtC*J -$!F=#_pIpVJ~Iwb64z0vx|~8U4^`bWZDtkZufm-4;GW2koh9qq1OQ2QytiVPs$DbWiVmzxW26K4QF1{ -ao8KpyiPT)H4ty?7no3Iozj~Q@%Qu+kf#nc!+?}O>~+Mb*LEV!l$rIXgN~RD8r{GL&HG46d~4RLi%W} -Wg!V%OZ|>RrBS`*-b -EK@fp9X`24Vtv`p`kbrvqAibi}jac*Be96dff*K^GgLS1YWDPCyu_q(Xrh?Rt6f%@rNx7s8wJ9y?Y#E -w0hr*>ly!pR2y6|kLrK+6CJ+z_+R?&c`(o?s$5Z{n#`wet*`OwJ_zHr5QDPr9#`sS9l(-g`&O~*4U)-bt -;2Z22Li0{SG8yQRSFJd-E?c(?E@H+(pVz4SJ1Q{-{znnWO^MC%qq!c?q47~M2S -1OAJNPM207reYk}pq(%aaVQN#G=L1blg4J51ZVwj)h`BzEdBa&BF>jhN9o-v7TlAM2f&kq;22{_7G+o|bPAKI2CVp$Kov;cI-b2OD25)HLUsoW8tZT5~4j=bQ8{SfwfW@toedfs!3Ta -=DgsYTJ~Py5W-E1lVsAUmc%1a2#3|8#se?1WJWJTAh0`j-y>3<=(N$uk=fQzrl8jR)@JqzkjDw;31ZC -{Z{~v&Ic`*$ozA?W4J%ck0mPoFzXm5cyWoTe=yo^l{*O!Gdcau3g7?G5w~sXOx%D!Ma+vA@G=^3M2k<@Nf#;%4SeTUuhp12dry7o59My -AFsiG{s^UHNQVZ=Y9sg(aNi@J+;o)R!6mde$kt|o|bH~?{VYsd&|)p4vX^bCd{88;Qa|co7?w_aq -K5JDW`#P6(RX1pT9yxZED7=P1dDXgMDJ7-TH4(O9KQH000080N_fRR%t{HPLcrt03HMY03iSX0B~t=F -JE?LZe(wAFLG&PXfI=LY;SU3baH8MY-MyVaCxOuyKcfj5bXUGBc}n$aU3EVq(lJww-m-|R3S(VpGc&op<4#l79eA* -x@B6bA!B7$)GejyttP(7W4PmJ*w<5(Abc)!XEmLR_o`YJ<0J-8Xo+%{_#6BPbYxMekm{?`xfKuw(oFO -N2^DC_AI)jeRgkC_p;>XhHk__+MDWMcA+IA``(k`waP_d~KITB~Y;1$)T!F7JZKYo6;#k-;rbqwPapb -PIFLfv}jjZsMbtG(nF^|pt79faFDU$VO>)?|yzVrM6zR^W6pLaNO==FmG8Opm!J8EW7@E9=03)-M0{m^+QnmwyV@1x)&WQ@lfO+lr+ZO=)R@6aWAK2ms( -pnpU1nQt^}r007$?000{R003}la4%nWWo~3|axZdeV`wj9Z)|mKZgVbhd8JufZ`(E$e)q2+JQScB#cf -^ -uLcD#Sspj>sbv?^M&21IOXaL~UqI%R8o;&XIt(I&lR%3|&37qCPq59bl&9SD>@|D@SVWl|LZs#p7QuFTvSLdd%TnCW6DY@f&ZshOx>3|0lX6BvHS|@`HE;F;}Z -Y$)p6q%f6~54T;HiMc}huukVCxOZG&%!6e|>n$(;rj0fDgS!w3m?j+4N{Dl0}IdK;ocAsp?ZT&>*zIp -&5n%WIqFa_Vcv;FApT14WO`r^aY#DIU2S}U<^Jhb_!sFIsUzSF*81ffZ% -0OoRPY;qz0dKpG)hCWFgiVG^if?>4<07iz$&aFwY7X2aA!M~ACZU@aQ63tlU_~MM&){cuW;H4KQ6a4p -r?W~fo~l`L)#Q55^w_@@>s&CJbM+2#M$<`A@QdiCa!`n_8C|}xvgd@Z@#J+%)*5)NgJ^w#ROa0}86xT -kUu-?R6i!Mg$Ybg@Nu~u&$8o=%RwQ6GA?% -r7r*UcqCqj-+!A;0-33?NV+9_!qzDvX~3YU1Im|0@dt`7ta8pc#$?U8`l`7h>7$n`tD+(u5>gf%TACA -2acJ_0}Q_DQ_Ol&{Q~GbXtTlQ|#7WLr)$Yvd78=X_>N9FwB-<UHw23k@i>)2AK4W7|j(3>Q&y2x+w -1c9#HyPET9)$RI)U;e$Zp0$$Q~*~#E}RoU^-&;fd`aSw{*f -GCj;0B5er~oR_Iz|>kaJt;TxP+H!3QBBQaIq`JjWiZBrA%DalQ*N{NkZTlzMA-Lk`H8fKqQSDm4`Ps) -ltQrvG*JtGium)6!#o8egu2M)vmc&7&(TS0?i8wVecYcur#^9BlC@;a<8iH~ZSw)4tQqQD!>r5m8m_} -NG|_4Wvh9!3!uW@mzGimI=k@$R#Z^(Aa6IRkOg4--PNC$C2qaujbTOg(&)2`Y}H(Sf1Kx9A|>DRh<%Z -C1ag7&i_@aNK(Lu`)P8Eju&fJWeZjjOF8VrUiWy?bHmR-((UPWu!U?cG7W*FJ`XE?*iH1yos!Yb`RGR -TnqRj0?w&4fO{3~PNr&3W!o9JJ-N!r%~X-D`8t?6Jn1S#>z~Mf>S;kV0V2p)>Lbjd!>e -Rll`1bruD+#x3eY^;GD-f3oV%hCEEe+9?gMH(g-g!-=18f?dF&v_-6R$g>b4}ErDSdSl){ESlsHcpEa -1iirC;ALN082Qf-|D%VFcvd$WvO-z-b_&~f&8mii=kSxob9r(t8~&l|u1=$D!oBx|(&Cv0A%fr*Egx< -X431X_=TP8O6`r|43mO=TKI^C(v?r0jy3jgIg>f#aIbQgh#tnX8V?sS^dYEjA0=aH_ARSSz{fz}bD*L -mPrs&WjVz^wgikxPC?sCgu@~8$|t7>V6Kg@$qgYN5DlsuOE9hr%J6MmaR$yrB}X*o0iP|BCGavaL3(QwjrUr_XoEW6>%y`8}(&(q1NQ^~a -j8^y|DQj>jUp*H$HK++@``wJ>QU91n-!tIEG&19BuUJwYgP?mRog1lHO$HU-rhvR3th&@}H2TxPKxWc -CS>T=Iq1~$S(V{0%dX2H!dz44aIFTI?^7&Q1klWXx*dO0Tl+n{<;M*Qd^IDQC#p-6I`OTS4C_t4Rs)} -(Rl-tMO%Hyz0HxruyUS@WhJF`2uyETG4>xV7}#Dd{CJNDp#W0fVGb4kZL0G&6eLM6&A$denlTLI)k6# -S_!<#s9DAH9EYiOo>vf|dA{D_oYHpeRIx4eP!RG9HQ(sE-FBQD*EBx7sQweyyppD$%%TFPoZzXmDcNgs0@N0;MP2K%kX0JQ#jhY!LQgeqE&KK_Dr0s-$Bi2 -|ksq3}u!KveWHymG{M>AW;VK~_v9XAX2FHlPZ1QY-O00;o!N}5*u3u>NNRR92cg8={=0001RX>c!Jc4 -cm4Z*nhkX=7+FV{dMAZ){~QaCz;$dv_Z*vN-s^KSd97c1=1o{YWyCqZ|5O#a0r}wI#14PwuS8r_~~xQ -pZ#`r@LuMqvLz_L+mH~eUcyQ0if{cCZ#-P_HKBNEwURZ0EI%KP^d?7v8w7eDavM*&)Rzh{j3`OZMDqW -MO9zu-_5mo)t=XRHZRIE{oo(V;`H94t}c@7be8bL-EW_d)$gXQvsrtQx98QI%FMGin=P}Z$s1kPJQ^p -9B465qd0SlMq7?q7w~KW-YpZH$fLzwus-bshdAm~3^c((3@6OwcrGAk&vuwri7!&$c(O`%8U7OcVTSc -=hW?bUaxeqg -H>BpWwzvI^Q+c$!4|?H;J3G>DotN!88k4uM}t`vt4aDXFXvS~sf*e9BrVs=Wx6Pq25b9oU%g7dd--bb --o0W0^f&pK*NuXg7UiN!o=ubC7vtpX(GG%-py(A$o9b%vrdH^mRq9*4E@5KQ*?B(u0E54mFPmIIko_W -PsTyNmLc5KNd%_wuVIG*K%#)x=dNoRt&yrQ0on2%*Nm(VcN{x<@Gcoj8*Hx_+MSGrK9E8xeN{=62fVxllv8L-dc$I*4u<`?5c0WIfgeRgU}mTg@vZCU)uF -A+ET)gJu#OI8??Bo!9E@*hxw`&54h$1V&uaChusHdBou4UM*KZH -;7r$y|)hc(#n&LC_zRq(~^$36ISNRzX)V!mg`el1GCn_uc -N>SI6n`-r?()`@65w;~(~3?b7(?VC(n2Ej{%=1OIUbX{ObeS*k?@UoiUcHQSY?7}^GdmI5=t=sJ&JJp}Kp!W_BBcRnTvmI!s`qO*&;F -$qE{l14 -zM}-tR+m?dgr4e3GipYaN$$@SJvaBUIut+8VPOQ->2aj~vMBS08o&1+M(}orLsDL2`p>@;#SW4*r5%G -xrfEX5y&X=Y2D=j?#>WK%FymO}XW8spv&Nm|RLR@Aj{k14%+9bg^djLG29`o_8e;WzQ5F~L3yWF1+1i -@fRjg)qwXvq!YxUH+oj4ik=Ky9yD-zbx7 -bdtfQG*MI|TqOi3!%*sAdHc$)x%J(bOv@0Bj>Rt8zed7w7ZGQUjIq5F8`15)MY>Hw~|=9F61zbA-)zyx~hZeD3`kY4gJd^{#9?`zG#xmAnidmm)oo6V5jes6@#>tiEaE~lXKw;q^!v1|mY3j*HxYY$j -nIvb&KIR%uz^}sX>Y9mxrQo%Lfd#4PR+7|PLJMWa2W?xtH-hQeIEQTwA530hh>=yCqgv(F4Vtm-T41j -YR!6%^7)C+`OZM&}!Y2scy7RQpUxdqT6ZppkbT&`jF=iU0u+ni~A456`|WIw;u51L$wsHaLmwreuU%D -G)fqYb52}E+4=LVX@~mG%j&y!6@b&9;5M~A&sx>J>*O>~?!zs^eOMEj!IF1 -=H)O|JrZjfaK^h~8S5w-d0Ru{2-81!FotNM5M6cR3+{t9pH_D)a&BJZhD^SKaj^<5YyF`a+lxf~@b?q -Iqq|}hinbcoqLb9js9_9_G)3+J_XUQ(!OFI)rlatSr(`$`~$vuk+*80;-1b7-70-;%eHb601W2aCTl` -WT`)5tn?iudF=R8#uOn(r6fu8j4q(tFhwT_?+Xy{Uht2MT>X$=M37T=w9)b!Zgd&IIFCEa*>RQn@^8) -8L}$A}ir8j9t(PXoMu;?WCpUv -0{Hh=r!zAj8uPX{*I>t?XJk0|TRBJ`h%Q>((={RO3IFK -6!#X=?+3*hkGxRY|u6XOZw!2mYn<+IrB~b3WEA{xweFR6b>t6`zF3v5=<%+Pqz0wM@#pSRf)z63Rn|IOV^ymO1G -b?`2nI{r>rtL3JHR}4PW~IsO7vUJz8K~S4*pyna}|_zlk-mRiWr)8Yo(r&4R*y%3T^AMqt&`yt=ownQ -qNNMC%%&ab#qf)$$L+D5&B?9T(UoWc4+fFikcuP*soYIB1Ek8wIeJ%g4AV0@%@J8AW-X*F{UWa%!sKLauxN>|JkU^)aOe+*jO+dd -c7Vm!HI>zXmlX3W)!hipXzG<4d6>Oge85B5^ceR^58TTmPtSZ$`Z4tz$)&%8s(0 -v|XI&7EyAG;L}OdEzaleXDlO57C!*-80CbY$}b&h9lrfY-uL7i1^5@PQ3+=iC^58*jbX7J~aIcKu&7s -CdBnl*NX)T?Elk9UtwMMD!vP#LdnC)vYLGewaA1c7I(Fz8*FTh%6B{O0|4`UxqV@_=Tn3koB>puR4=H -+3Uon6;V>j{AX54|fqU;&N|lEC{V1rNFJ&9FbZ*xK*6C@1`AUdbzV2sIjRUajZ_+5?bI8C(ozxHXY>3 -}IF>T2Y^OCOavogt+YO2bt1!F=o)!c$RQo-A@$LOwnUd;1!wyvA1CVn<19?L**Uqiv;HEhBR+%W=)jNMh7^6d5LMuoCr==Y-H= -0~#X?y<{2oeOI=e(t&;lwG8vyz_R5PjEUOib`X}0p`< -zw6}@v#tu&jw_~#goW|hpL@||=S{kBU9UgLYWzfL;Ycw)e16(mkE;YoJ_djy?cTm)a4HwlOLL{(G?Dk -@q=1%W0NbF{3InF-729lh?Q`h>j5jQqaL@Xky5vRwb5JxCceTxJ;G-8FzyxxNnrbLGdRi!f{ZT5OgPJwmUZX3)c$G{hld<;;8P)s -uLI|Gcv#QS8ip5`MOkEtK!5f`QGq)&P`seTvGY&g3bSbvup`eRVzPFPS!TKf?@%TVk;#S-;nQ4)jwfD#D$F)(w>hBpMUy&Z|~wQhk}<2c7M@EYVvPY#shgkU$8`6`&7BUu^t$-~-N=g(`TiNKQ3G; -taVoy(_be{GsYtQRZ`+dv@djhZNKw@A%`i_V60$R5mdjZP7?`o-bj!a-B(m`W1*$fW9NAR3^R)7=q)=Pv=?E}P#o>hhOS~r;pH1d0fU!J->-TAE+c -efKm2zP+|U~;J^Jg>@!o6U6a|-5^Q@kCx-wy@r(gYXgGW@W&=T{BIzD{6hfQ-i_Qdf@u~Q*BPNhyy)B -WAo=zDlWUWRJbD59a0UIxm0dJHt;)SD=dbkPh)pL)EQjxkQbt7@i@HZ(yCCQEo=@Aj!wf=}7p8JpKOY -phkV%nh~EX#;MaJJRJ7-gPPAFsi|j{TtJTB9E%Ro`Q%o67`hWIM1*29sgq^juU79K~dpw_uJ>T>u>7n -qmuTU52(+bnMy+x7qO;xTB3%mp0*#ghjd85V~ZSbT^br=x(o>8M>v9Sc#zX)pR&geN5 -gR1{i{<8viA@(wl2N^2=bCKLp~Vex7nFRD2hNejy|)Sv*BL6t3)DC$JgF($kfF4q^QdEIpyF)*W6WL> -yQcC{J?bs>@Qxe5=pw0QLyscylp#6spD#GQ=?R_?#YH=Ui(XuInI)V&3sEvr+t#ya8ZjiR$aTuY)i?O -w2P$LqdP(yVp&Wx4@J_qOUAVSBE2wpp9HZjM5#&=gfvGtuGBrkBkJ2|l%+R4cne#6#v -asmro{jj^#$;l*nm1iHpQ4QW?>$ZY&Ag!vegm9rJsOnj6{5O-K?}j7BK<;^u=IlOb>dZI*#Y_Qjtj>} -fd`K-?kIf$KC3S{n%iHut%PhuSu(KOna&s>VE6v=dC$gGizR`u#9`=zVbbycOnUO0BGsBY1lGp-s*}SaK`1b_i?|P)k7p<3h~PelL%>Nd4YS|aHbd -B{^Tp1I-i@i^Nta#-H$aSF6oO`Fae56~&qg5WM+$uu?#|{ekf3q7vEF{x24Teu -3gq;Up~wni?2hc)O*O9UYdM}E8@Gu8#DK-zUwVw_mXkL}~O|UN|YIyRvqpmY -S42L#4lA1RC*qy=W&ODsu+J}U1;So*-_iVcQ#DM3WeTe*5_-iP77`aSQZZ!r@SzWsQj`aC%{RQowV%X -(e3B`IJT|?|gY}bTF^i<$!UVbdW7|k^^Su^Mtpdec6bjX|5Y7p%*QOK59VzG5|mkr|b1wCz)bXQ^Tq}$u{0xl|d -Qj;!HK;>N_0!W9OCZng=$ByFiD=sGR|PxEieO^@Vl6)!m1yrr|(`N#x*(gU}dMHRMAQsKP^p_g?jRUY -r%}a1?e5KH8%fthl_YF>6=fF2D!V5eL%8mK#8#8(rERt_N8dOR^tT1f>g66rXMbnvD0d#1q!M4VDa)X -h2MlhRqpxYIwa{fKRYf=J)Q)v@56xqY_VCQ{w5dcU$mzr<@0)KT--AOGo1G1(uM*E={#oHhb$bFj4cw -e5N>8*9!~ZEoa_~yZZh`-n+2l3%Xb&U5j{&#VZ%CUa-l-7;5DR`W9Z#Vv8-ZLOaR&o!_{ioW;b8$fXU -dik(`K(IYX905`f3lb;uCzxkBb}R_kI;mVebXAFq?`guwe%az_|~C)(f=5g+J~a(u__?lJ#&%n%* -hP$_^nrwP^Q)jWk{(4CM?Nt+}VrV6{|f*Qok?G077G -yckhGp==y|KC|ul{tVC-pUFF08f|?KB`z(#hs#&y_@1Yw`3f6j#GlS!p&6nbf!8iJ<3pc3g4FbpSpOT -x9k^Q0h^lZ>&1PzSew#WL6s57{{byH_9bH64%RCqTLTMOLlKzMH6GxT|ff8rGK>uN2$#~6@Wh-(`VHPo)TvL1QTSUn6_!jqQqN@asEsvHY(8(Fp!_IvE_30ZmB{wSXEYxIJe;l4Oc`%@J5YfOf4{jpKH -8&$J{^*a$Ec$dY4Wn$5lpZ(2976sBxN{hc$ZL5xnk=hJ$3vb6A;2k_Yv^8CJpJ;tXa|uK;Z}qQpYDEc*+uMHN~XT)`St1?JQ -lHoFyHWUQm?YQEnp=M2M@hNuXps2i6O8X1Zf<#eU8$L1Sr^q6NbR>hhXd4D^Y{VP7zdG8xWIC0Y4K~G -2zDMu+q;ViHGQj@Cfhj2N|x!+UH}G_F_lpShA7W)RBkK5%)dD$`k(Sx|iUr2oj!&!v(?~$#~sc{wox} -b+AM*j>3CPeC)?r>$BO#TscFiHrjE4ChG>{Mu8Qv31?^O9zwhw4;JO$ngA5?pnyAeSwA_)>sY6geEYe -)PUxTzcS{z59m04H#$Rs9XOiyV!4xLQ@91!FP^u1qz>gs2MYCFF*E+BtA9gY@l$+(=ni4Hfv9^fRzs$ -4RPHlWLpF<(svfU}&dh|{Q+(1?s5l0+1bYxuhbw`-V$2+z=pR-`es{pELlX;RQdIRD@>7i&uw@7dL<9 -u#0V0ns~WUH0>IfNf#VL@;lfAsOOzNuDZl9DyrQUQBOY4XlvveRw5s5&#;;8m_&2c51RT$ZtbQCQpKS -rMLer+_d-CDsER9nRRld#!)B+G*Q*poI)x!P}ybZrBdp9XFy{_uPF8r6rpUREDN6 -(6ot12gWhd@u73a@sMhIEW@D1kJq^A%{yD<=W{kZ+T;oWplz^d5lzouPE3ei^fo^Pi`~Pd|KZZv-DGf -^*z9=(<}~c_B^#;Bk3jZd>mX#XbQLV-Q*3W+{Ce7IrH#vQ{f_w(m$tQ>Lo(S#zN+(&MYV2xljQF)_UK -aW5X~yjKA@%eb+y)3z|vH5W0W=wW!h3mU%95oY}9NTMdM~2^R*SOJaZ*}%+!9_%YCJlHrg|@S}WkX@X -@i@LZhyi{6;7#s^ZpyG~x -<6(XZ%wpe96;{=TMYX*FJSec2^fu|B7tDORy4u>(rkUcwOr>Bz_By^9C5I|GZ`2=_)c=@=Ufg#l6UjG -nW;k$#tG?QVB~Eos>w+(s2_FdP&Q~Rq6$gZ^=2!M>;ep};Lse{9x6SLG&2z<(1~}^6_;zZ*Hpw)^j!$ -YBDgb7LSH}&ouO)TV9#7;UK73(q-V`1XA|%=TDOabUk^6N`^UX*H_-^S(DlUhkj+r5csc9@>UlK)m>T -ND2xo`Co8xx}9)vDwo3vm~R>1}p+Z>eFX13de0`i!b`SFa7UV@t|J~zWisvLsA0kX!>GJr*_VBN9E4a --Zd7saX}&uuS_9W`UuRWV%eXAMmgDeH?;O--6!V4m+Z9gx|Cc{#DKWV$q`KbG47F16)>IAX7U<*Nj#j2iG7lf8eFEz!`xy*m*#Z);} -oT3VsaFvg~B_nhz%J|>~_RL{L0q-XNxpCU>81<>h*lAw8j``ijN@F*9vOH!GT^C6|ua5kRlo0;7(J1D -67kI5Iu?qSMvWWG`Ps1aF?XQ6(zCnu)>48as2gL2Y -B3T2(IRv&O}8lp{-rm+olY~dVpv`yQ4(7B-m9kuNnJ1vZ&`{d@^xv=4{ACHr#UkP|U-VmnD=G?H{v#o -Fcg5AV)Wo)eoDN>IaAzI3Mw?4d|40qKoRwx04*!x(p`f+k_gkMJ3t2cFZs`kNa3U6=tUeFiJ-)>q7js -pvd$d#x1d`2l(6POXCLhR-_la{?pCrf3t3a(7RIi3Gj#1Wa -{Vj`CXNHlV3-iK_#Wd`8OSc6l36wRdR{#Y$k4HYg~Qj^kM9K?(B9^?TG1W5lvw!@6h=8ug!5T}PP`b$ -uwv@QGD*re;m(13rDsrLHV?A-A-AYw;OCSd82Hd8+aH_*tv8CuOQC{DH_{}H)7Q=&-;&6^>q%;DdiPwvp@Jad4Co*9kj_v_ -Qly3^8uct71^7v|lt5Vu9W4LCuJ>5gc3Xov~dLws+N&?xGI^oE<#f0iOAVmJ1qgikkL%VpnXC0tEs$$ -cnxUmYaZYK;zoC&}nQk`IhRZ8wMCfm}_P>G&bXAU8_zt(N^8H}z%shHed=phfgb1Y -FXAYe1Q^gHg-$6(yzB5J_!Lw#q>e3pH^BiQ)LILLEWwi~Ir~N`2D-j9&J_`V|;}t&pY{>J*)(y2eHJ0 -o0I9o6a)fs;Dd8nsd;S=s2Ia%))JY^U8OYK@!k@?=~vy4#hg1u87uXjw$a)!^?4s|BH=-a&zWe<=|9( -_z_L~MN-dR+NXS-JzHLw57#l!d6xymLSb805Wx_?AN_jrtp=bm^-jl~NgvCN}_V -aWFKrxz&DEM^pl}K?hIKl>8o39socj7^kGLE{?OB-C=OJOtOn^Slt6Wstd6pXcm51b!$&a(R(;U)2Q8SDNDo8IAD)EFKe*{ai3if_7IV -qF``09eb2jJ7ZPfM^WbhysY(}dESU#o*p(l#n5G2U~W$*YY -Q^9p=G7O;C|JDk#(a6%P!i<~^?H0%Qo?<{kT;%yS8*KR9I;`3IBfwa^TGv-P(aPJT -|q5KtK*^1EVnd8lJLL`GYo8a!YhFnpb6dTw#xrE56aLjBSsm3{1dKu$-NYnLK_MECV -ldYgM!kI_6wkHnh8hC+kEkOxRzyzk}65J#CEo_HW4NcmYnF&;Q``L-Z+0yXGvEy-u;jUK1M&xzjXua9g3*kEH&9GIZ$aBJU_CK_;`S7=tL1B;8dF -g;h#4b5eWgkjkYS)wRvqxw^fnM}KL4n&nk~RCA7gXJ)CI&R>;NEUadUoh!kIC!lTFw`;yy_J)Igqrc~ -W(8fnHMA`f6W9VpEHwHKxNw)2OvHdq0}lpw}NMo*$+lraRN -w_Ij5M)I94*KuaXDyOT_vvpQyYG>x^!74;MxmmkLWgc_+Fu|w7{EUXdF0e)jFO7!&k&!F3DV -QPFUs6sZ4vhcbT|}dO%G2Kl$!T>Iz}w_(?M$OdIkrNVCkljI&W#{*KNS7$`?6m|gCertb|_MOVSJN1Q -=V4iQKG2?9xEfV7O7kNm(YK^nT(BYpA18DPZ&0$Fi58*T969NHE^lIa%=Bq@3c7#CVwiv^W2ku5N)Yt -8dc8f*PSRQO#k~pdm+{wB*(TG-0UG+Hkb|Rpi*mMAB8%(BFB0gD3@sD7)s@3j -Wo87{uyRp~GPOx=KzR;e_G`M$6SB!}muARI(bzmb8A0483*oD~$88`Ya;qpA!c^YNjjDQz%ag%3)4Gw -Qj`f^f}T}?}v=!dr>iMSX!%PLa|4=>b+7BxzAYzUKU(gF`O0s^k3_1cTLwVBj!Pv=1*dCxBjU2TLr%#Z%A8gLP -z$DtBp5jmw_&Mh{P5PSA^W`t5)Y``Vpr}(NnH6^CQ)Lo_4J!DbncDHsxyaP4dLImfx=^TZTq4Wqt7YEG@oUY?hz&#_V#pvpPah|!GkfSnKF%qB&?Kd@KU>=P*?( -0-gh!Y1EKE6cjW5?^?MidD&1deesY=k;sSVlteBZ7f025(u*XlVAvcI6NCr+-TZL8SrQ(kL;CS0v`~W -RU~7s^5Rjn+q#U3_Ju`&7yCW3wW|oBH`E2!(iag0z5O~&T?n-ZclrJ5mRP -cp(K9i8aoGuHCEZYBaA$llHw3zsQ_$fIww9|R0z_di4HWRQ$v!SfRuN16a||&(njA_JMLn=B*}NNu2D -Ti0)NX+u6k<}ddn+2&tjD-X1Z1WDEH(3e!0x_i^9WCZ{b_qw4)2hbJu0|8T%oFP=(BIEGCGa{F<% -%+HbScPT%M*i%OJQW2Eu@!t))_-iTO6=u#xR-tb3ec*#wm$?P)x2}EhvgV}a;B37}K%=g}~H<~qVEd#bEDxWTvReGM9B{4PMx+|&0IaU9<3kcm)ywE8A*xi -mIBa3-9BD@}9)DnVAE&T+cwu?G5StH^A9wy7Y)E+rL0M)F7@ho}V|dC)!2ym -pM(Is`U0dfz?$3(E{U3!y8`Eqf4eGX9hpDrpmj1|1J1`T}l%`X1`GFKRi59aqpIT`kDWHst=%`Ij~n6M2)iE$P^Ud*R`|yghh%a2&fc -0L_b0x{$bs=501o;xXNaQo6ypO{<8PI)x3E0U9UL%aX%_Q04T9T&R%O*Jfx}XA`r_axBgS^S&Vms@c# -ml$ryPNhCDXV@l!E;!ZMPZ7jH>FY^Wdo#71ud{Z*+a)83xpa%R8wvn7PwMCL->Nlo!*mkg?YB}eI^5w -EvHAS;kTb$Z+V;)y37$iGfW5`(&O&Jj`e4Unba|2ZJ_AQ8HpPL(z$v%HZQ=5`a8Yx=V(3EFk_Iah-6N -WrdhUXM1O;QpbwnEWKc`%+kebb(m))^h2k34oHAn^172>u$vpckW%1qnEIk^q$b6+$!bT>o{qXP%r4d -K_dGW}Bztp(KW}XoIJ{!VaQn>Y%oxkWPOz6}Z*U+$y7Z|0kO3Of~=MC}%jt)G&)ab(_EsaM2Jg+*eM@ -Hl&EXyaf726_=SLszOX*3W(@5@R+CkH!PsXI@MopF_nUxWEvF6>fxnI!EuUbm?kbHY8;3k%G?3nDV8b44+XkP(rw@Pe6XMu;9%juj0uX`q -!oj@LXP@qSVZ4&SVK^);?7b?fq1>NcUG(_yv1 -P2v?V=Tg<5Rf%xXQbcY6vg2HoV-A+NoQp_HgI%Zw%HY`%0VNThYEHDRbQZQ&?i{)OuH7is@Hj`vzId) -)7F2N6-&C!gvh0Yof|+1USr%Kluw?To`}GWMh!8)mXJO|=;gXjO{|03vDcKl<@I}UZpv5Qp(+O_o33N -ltf9(vTAfv~crRf$%V4;`eFu9&=J@g^8eYG+0V>K$zIm1b -8*<`71Cd`|QB5)6{)R5j1q%#-ZFUnXAFYC^jzcOHKZO5~U3s6(e3dFFv52p)TW`Qrx~H%7(w*{^;E>2 -2XwXApBn-h3Jf8tvbRy2xFqt&#AW*f~0kaEJ5Il3y>U5J6bg0V`7bC-ObU+Q;3yi~?)-jIc)i8x%N?aBGW#O3?I*hIVrCAsaO^-D*epAN1@uSpJLjaLevgB50Whzr`WK!)cpfyA$xl^ -L4kKbTd`N&MFIn4vdxNbn@bup4i7Q*%uJCxbwga)_AQVOwt{Y85!j6vRN!D0|XpSc)a~dTh`3aHfMOf -=Ge1U1*FybyO_JIxfQ=|<^mtCZ@q3txkT0zKU^}gG(Xxp~lC=s*0c81Y44I{rdF$)KY!|+6Ddn;Lw(@ -)7WC`pzy9CN)~;Kna -;F#HrsIkQ_>HCCGl5*-fG=;ahwO{1Pvq;8t%P4j}(c9L9H5HWj&dnKJ$#|dVGCoOeV^L?I{WFVwGcwJiM2ag(Z -qG3sS>>?-7~{)GX4`00g6ymL^FZsrB#R6&vNNp7u|}ABUKaT}4<^ZEK+&YDK2PK2v{KXpg -)ps}vT+)HV8qkGV7%kg58>eGM1LF@Su=3SzEe3_2GH|1zxZx3KGAL~qnm{*&xKdO~vxa6PfPh48B=qr -;dO9J#kcgSJgdF{enU?Qs~DlYIEP;#Br%TXkqI@W)rBKxfIX6g03r=?u@vWcoXUm*9VvAC38~qa?CI*QtKMzm}qV3oQOB>hCSu{jHSZTXcnEIXnE$>BWya&b9Uf@!Ey% -J*0H)+q4HH*gNXyP@po>wGFdvMC|Ukg1G241MZGf1Vut*9)ASAp9=rkPnbiEwA2FriqD9IU0 -LvGBXj;3vm0IwPfZ&6iA>Y*ZipSc3l^U1X)tm4Fm10FD!{P3k@mRk0m8D@g`pWQ+z1%ns%JKU1gw2tk -->`?M+I=^e10M4719Jwbn*MBdIA5Ub>p|;Ppo7-c^dise@BEJ9zDKaL^coLh3Y9&GM#k5GKAyT{^8hi -Q_Z0UMYDaVzBT_7-dmHA;s8++QQuA7D6kJFkKEAR~@9!f7spselLP#N|@B;OrTFg{P)+G!+@`8|8BnE -)J{Y09VdK9!KAZ0a4l9lMJCMkO(Rc8PxgK>EhR^1ajDs7D@bW@ -_;%|a0Kkw`lR8mFaJqMqZ!GKj1JY3w8G2RX9BNZ+s0gcEPi9C=Z*PZZrmOKfbcZAJ$XtThL8N8`9@-e -#fC>Svw83TBvSWOMxN7SuR!Xcl!@(#{cviFkPjM4GQ-OM&1!s$GE3T;F8F^#e_Tb?o{{i&(^s8Cj|q2 -7suHW*R%xeCL%ksMO}LWQDw2>C*1Mam6;`cww_G^%lkYXCkJtMo&D9d##0ykO+dG;3x>(N%^nA7@29T -Q9S^qor)A_LQ{D%8vJ;$*Ij-iB@iaiionPsp__K1YJrAtAuWnKOY_JPZCy~i0z5EVaID7Ud>ooJwDBTp(3%5}8aiSuW8@GNtEsj -tYCr8f0CpWx996tIe(h{J{b=Hg1?^Su5`2eZ{lX~sAza7Cz+;kXW4&%>*$TpbF7ZB$irL$_jo@8^k2F -A0N`d*ALUoSW%xC?1;+>Te4Z{XP{(iQPXT6st+BS2J+Kqsb~ZW;KJ*(>^udy3SqUp3PbSVO#|B(`BAT_TDCdOI!w73~=&w<_iT$5t`Z?z!MTe;L433rgnM*U;j{ -l8YTZ82D2G$K|GPe8w}!ilKBNlMqK`R$RAtv4c@*9(T>j4X*A}ir%dS&9rHjIKPwz@@DLwF?zV0fZYD -19yu|^CR4N$RH#sXHHgmODH2Kd7nL?)T(wg3_3*&-%@Ymtu^a$k<>J?~)v8y&N3a0rkTL^vJ9U)YR>{4oxj}=(+eKU)qv2yg -%JMk(GClu+`NHgYK$1WOX5GApiuV<8~E}Eo5V*F&ZHM2=LKe1Z6qq{PmUKqa~6B5(%FTsPD2#-LBgT&g(6q+3@AvvVMF -gf(86MKFNZmnCS0Pemv-j9W%#_UkmoEpxoUK*;$-b$8HhJrP{JD+QN7Q^Ipkbm~!a-e_V!X|g=r~yR{ -QQ245CM+!!#LmM>TqDRuh^C2djgEV<43^rJ`Ws0i7z_JuDXO~xoof_9tD*_UA_$|>#o#kJ3YW|da&#i -$<$qs;{smgRz%mVap10@NkfJP%H;3v0L0Gb7OV2u~@$2lWxL98Zr&E3pIuOW5g=td_I7k8yA}u6jp_) -B3722O0I9gM2Z06T;1yg2fUq@2FPa^@z1O-pU_i;#yQ~ZA%C#$LXHtr&fsrWvQ&hAuy@ogvd6in?`Y2 -Iky*rT37iAgx$f{h9p9T^s$V(_DyK&BA5-eQgRV`O4N@4c?o%5AayPGZ&7in$nG^Buf2ys;>o71*B0n -t~lt&UvI_WFIezSxY}r_Z`Gmpbito$w>SC7IrLJ5dETE9)aN(oFa%V_G`46#|9{VfU5`<MO*Zo;`b-?mUhD)TXoNwLf+N`rQW(L5lF+=D?Gp|1> -?9wc3@W<{p6Ez60a(e?{`hii36zTim2TGYcC)AI_Z{w3aP#5v4o$xAdGq0!YGQ3Ed>sITYwawTrA8SL -k3PZxfdSa0eOhVYy#7MfVQe9=Bj-ZtC?wcW$MD@lyPbQX}>7y!_AeZ=FZnd0B)^XlQ~QkKQm`MtVO%*$q8`m(aA}$9YT& -w3KY8WsOB)G@KAg}&*3PnMICj_;Z=z`Ard&AlASj2cc@Fda2cclRj(8%+( -d^8fSUEuyN6HS`$!ccK!8npo?f5{`AzT|J|A)=<)AG`^fjPa6&Z6{NQGvCIZ<2XMH7jB!M%bRR`ncoK -n9kz@}V6Rr^=lU-WBiZ>A(-XP;m<@=Q~d{!!vDFS8U=o#wN!5ps8>1 -7(aFNZfg0DUR;vB(m81qlWEbKoL&+zFiLONY9oI}d!kd~dx;Oms8Um5@+GWh%mLMnLILq_n+#b9(Kud -fgY@1Xw^_CDSP+b_iM$If8$p$=?CZ$*RuIF0vg^#LwU;6yFn3>CV-(%AGGR!j=%_^wJr?*p(;6a*;!f -Z?K!D5I%9!bsqbVFZW*@{CE_941HO4yJWX7NqynI)^Al1Zqe{eEHJ}q?_SCJ^I5W2V3M^AE!UfN4vNq`yMXP^-MUbf00tek*$5}SusLAkHq2^6AJ5x%)$BZabhx05tfsxK6_L&%{u?$PhbBj^k0etI8%dNpH61g#UldqXvTjLRP*TTr;opSx&hdaxk;p(eXNSPiEU(E -j=y;NpQm(F3o)PJ`WrNa<7B?hwfZtUg*aAfM7^z%W|5HyvpvBln|fG5^z&H;k+Ek=0H_OfaLv`ObZre -1fa`skoT{A&O$XNP;^Ei5U|;Y4SNh}O%i}#T8hM&LNS-`?`epLyQSxO!75JgVV;?w;<{XkU`DSX{+FT -Vrh?8L$}`m0g$OiVm5Ny5t3AmKyPqdgZ9Ko8T3eF%d(D(h`(-U^kbDIK{t^y}N$*5^};ysc^~q~8*!KM$YV< -C5d(tHTax(f82JrZ0qk6b2Mi`(Xx757T5ZxRFmj{jGfP-~r|;hXb5ptMhsC=C8*;9PGb5*xP@8@Z#nE -_fzCh@bvfH|HHx8av8ZRYEv -ZW0uu+!ldk|W>73Xme-al!TFyi&#Z+bUo-OxMtvLYfi^Gunw7VjBu?Uj~=*!E4h$oZ3#$S+n1q_5~9EjV?3=#?fvEsM68K?klU0)+3y7ARFV)$h*4_< -CJ}*qf(sRXjDkbGF@=VQTj@rPm4RwgyIZ-H^L;VvrUWN0(s?I+a)w)?;C(9}WpV~f)4aR}AT)^}VVd! -WcIaP??t9P08YUP72$JxCbN)*W;N1HsA*=V4v5q^C)*p@m&_&5mpFIAA(1~2&+?D%nZPVVr^yVb&y!VNjd;QMF#`Ntj}Q8(=a#Sa -E|IeD4~SlF(YkCe>QmYGJ*r9X#i7!iC!H;pCQLYMN^p=WrU-`d&^JrE6{aObbXGwJtmRDWq`y=JOiyL -ANxKpbL0pV4hAMoFC4bTY6N+ciX6RC!Nh8<8*+2S>h&2pn8S|Ha9b>vqaZeikNOTbOt$tMhAW3KXr7 -P8$>6wR9EKAM7B6y2wXwCG%>=hH@?alC>`pe{v1mywqK@YSl9no>g3i#9$wFw -*Uf!c=VSZqs`iYpJt~BL31geS?qjfg|uN(rp+9gi}IR5tOqBBByDo3TKAoW^`;aC9n%-1b6Ie`h_krn|vgTlHJ{{tdJbznXK*%Bqim_it#*&-1+fbRP{*Bq -hKRD-w1#pqPHvp!tX82T*mc<0P#V;}~;T-;3;nDu^5|7}!z~4XU@=B+r_H5|Pi=bOK(1uMCUq6Kb5hJ -@%W=FHZCMoZ8npa@*{zp9k^L=NFN#fSKUb{!0m28tek>LWG4{k514O_0@uuZ&#I|zp9-Vd*AK8eRZ53 -?;XB=xxf1=J^o?u^`20OXeva}Ca_DE%V(NAKiEGyc(s=T64UPv4qxvcqm&^E>5PCVs)-kOl_gyU8IVd -`_0!d=#vsnUpU&f@ -SjdX+0=8q`^&S`ujV@L_Sz5WiL{O0p{Q>JAPmuurXd&vLKgyo;>-*DR8z_On5q|Z)ATy4em^tn{V(v+ -U@9oN5r=yS%Y6>vngP*o5e>e7_RRF>9P~RGbZ+*X3d%0qSUj?*7cqCdlp1D3WIJA7lVn1z2xTR#=`pa -=~Ki)-`$45@r|=9xg(Am-sf}NrEHudvFl9ePq>bu%v2xc&2}2GmbYD)+OJ_TD;iE|txfC`y5gFg=T~7 -pD>CYO_DNU0U;dQuAksVT_Z^??`Tw^(QIY>`L>9U2v8r1K(Q~fCYadbyfHneE?7xW)0ww~Ri-u?U{c! -gC;q0G&IFrXIBv)5C~TQiaq-GE?z=+&v9b=T|IV%deq}g0Y6WsODpLBm%)WDZ4Po8Gsmj!eBDVF%L)&Mk0*b8VhgUz;_vG`E#`gNuc%_nd^em}31zA;_F{cYJ(r^5= -eFdQYOapt#yYdFjt16dr}|LOsf3D)>@2?}S3ULJE)x-}Oc0uY&8Pz$2Nt0QAfIMEC-!C%K`+qA1?WRZH~_TjVB<=@T`i$6*f|W^cAob(3H_s -ZjM!@q9ln4~10Hhp5*>%<ClzKA1SmGr8u!IaR>X0hu;@ -o}REw6kn4)1XvyMi;D{62GQ)2e86)1*&jKV!a?KBXiI#WCLeMKT_uHQo`{I+=~Yt9DH43ak@d2MZA|h-afPQPn5t?G_A)tzvKu}>I^rF2oRlCG2 -gEXOM!2QYy<9uyBnbk)>O5OrD5?aPI`nKl%^LC!#N6n(IP4t^RwzWo`n;<(09=UODi_@;hG*}%5a+V@KlRBE?F4xthS<@Y#w7u8P8 -$&Y~wim<6_S^G_+tO{9@a&=;F5>jZq5K;9wHd%pjz(7&d8nz-CgAGLT_A!aOBTY`qm6waYVZMVk~=}osBta+{6`NI<^-Y}4X2K;Ft>GdF#XQ}1yh-?gLdoWd!AfI328=rN -@j56Xsk6Dt;4Gp_H=YVDt%ZWX#Y6=IN{#oczg!j}~DlXe}z<%U`8r|t4TSSF-yuZ -Ec#@I#Tw%Yz!ObhM0cTZHe=cQ$>z(v{^DteL8rcDQ3O=$;P#`?5R -z|TMiWZX)$NYM>bP$A8k5OAS|WaF`8lb0bmO`W18bB2js4}O7=dA4kB!%DUal`tKQio%r(;9sDDm}72 -h8?)!&Ts|8s2RSx2d?`N9QrVTtwLi&wvrW!UwI$SurfkxBL_>qbSYZ6~#Tje1|pO>%OQ>ELz&^aG(1z -aSg1rWOL4 -l+o4h%Oilh~*myDBUvM`41&|)QW8I8&@BF+C+Ix@6J%|q;qkKrr0FDE!@#(NOP(5~W+--Uyh0{r&t0a -8l;+g*$Kv1e4_6#35SWj)!{e`clSL)DXPf`7)ucz0lv^+k2t`1CJ^;e>_1md9fKw`YVE@u*VTYNlux} -nMD9K`WjM-ZD1W_8i5_U31K(}TRO#L+PtK)L-7DC7Y~G`aK;10FzrDKY?v8_2*vlXOHY)Sr~ha~6XeB -c*(Lcw<@qrwz^hd_ofE@czm$npd=UJ5*(6p}+cUS*$3w;$pC_m&4EGh*4K^bNy*_2RiYeT){T#u@hGZ -LD5N3#meCzW6R6L7D*{yRh^Y*`S5!5-T~G));+H1qK;PIz_8Kip_oqx;gA{rr@=Fwk|YUwq}SNh(Z(oDQCNZ?C38@8rI^o?88qm -+J;$xtMlKFm-#Vbj#FN)33)ds>E|ps-?MYq*T~y&|<-9fal@!u8F|O=-4BieE~p6*kyDxz`_xLIKyIO -VF@JXtel-!^>lDi%;!-!S03IWsMXW3n4CO!*HFLy*k#RUF}CoT%{OO|T&Zk8|1%xnSGd_8KKC+M -OLsJ;C-h$!7)pYQ9kj$>}j~dpW284*gXN$#Gi?9APc+_3->C=vy`RVLw-dFR>FXJ_zem(p8%f~^@M`! -kdqh3>oOkf}zj5*EZPt7;aV8}3?Y1hs#=4aZu!wcpk_YE&Wl|vnottWYyJn5*yu;c75s21Y_Ru8>3Q? -ONfhvP6R!Fxl#WvX~lkYJWEa``rxecQdfx&A|Qz%)rdNp)4eAshy1oK9r^c -{~w1u=$Ek&mUJQ>GlC?=`>y2jWFS?Yvy55xVz-Nkv(-2goTNX8 -S6o>-Y&ILvFnrmBlcPnxllKYWPes-DPuNAn8{T!G<@{$JldHFG4Dx5I*zy})rpEK$mvj*y%yz$iZBrb -@Z+dHS5`XX!u!Km-46JClMwlsxc_k)xQri1Q)_Ig{N>TP={c5^;%YQE{@=NtU_=wScw&GY14@g5|Byl -LM(D&7leNhnsIOhi&@R}k_dzqt~Wo2O>*Q&W}oYNm!WcshCPo%;rqPXS&w>r+VR>K|DLtE|p08dc&(9 -UaScUP9?FpN@5nb9(ahi%(v~0v?MY@cRgU20!G>Wi^I?&CB^8;AZmXes+H+dGcuhSwB|wkV}ue$`o6x -YveGgstYc5@QvCv+iUge-Fxqa63+esLk&;!4REIDD}1dEt(V|srb@U|<${0G34xne6ror<%*T(oX<>R -K$d^&qC^bP$@{;n>Ci~y+{(Ik5F(*oaadsBMg8TVp^4F^VkbJvdF8eg}So&4fB)jEV4*I?SRLgo}h3~ -879GFQ9g36Cstu~^1W2GO~O{=z%!)o>+?^CtE??C`f3LtYEXrIEzkw=3I$ZWk8A$Y6QDRvu5_(~ly|D ->4Bwv+wj@i=*+#GWT=kv{oiD+E1>D0<)%K>&5{>Gs`!@>HGhzrIcX$BF9s7vtp1t@{4uU8ht0{KTy3e -*;iU0|XQR000O8;7XcSi%il<-T?pr2n7HD9RL6TaA|NaUv_0~WN&gWa%p2|FJo_Rb98cHX>KlXd99R9 -Z=5g?hVT4}5hswS)nl~MR*JS!+D1vMXfIJzAukMzBYz;M -+PjpB3M!EcM{!E>1c9#Ph)>51d<(&4m!MALJZA*nbuW(=~LGMUAMxzCrT>3j~hMflBX+k$FBL0~d32c!It%(ThbAQ -RD-rw=|~q|H;54pGn;aTbz#WsZDF$lx!LH -emhrj_Os>H2MEb6#7RxbHCfr0WiRTiC`@~+6=Wjra7bJ8bz+@Y+Vx2$#tFz%+zF%jfi~X<0N@d?@?tj -{}SS;-jOFkDCWhZB}SvCDG)byX&G$@bmsO`0k{gOXWO9KQH000080N_fRR_hin-Npp~0C^Pv03HAU0B -~t=FJE?LZe(wAFLG&PXfI=LZggR3Ze?SWS=HHW0o0SFi#KNR3vBb2Q?jK^nAa^HBub0)=4+T -${3)P@*7G+1(WV@0}S^5@pFwn)XmsmlY|_n>TNU>MA?4rOG_P&>xf#m)0NRmjLG5i%za2tCmba+%>UFHD~tPA!XEX0n0^Bc3#D&Q=iiEIFPgW)w91~&q68 -R=n@<9oR@~W+<2Af57M{LPgYY=Wm8kr;QgG8YeQ2-TuoM+oU$b?mS{z+RAkt!|xG@0{<7A4W=qXc>5o -X#Ox90XJcSqLHN^ous0~Iac8fG=KN5Qky9MsAb -tRlg?CM(@twyL>K0?KcngRjNzy%)+GY$+B2Bi~>nKZ1@mi#fHj9{B>50HeBHlR@MRhUNXKde~fiz-T) -c6Bw(`9h0^Fr%<`q9I^V+1q%stfZpDY{<&M_JqhPadp!O{@zehI@5b8)ZW$DM7BvhzM%fSc!H7)!r4o -hFt`>Hv>7ERFvt$V#@=!7Ei9&FWLfAY_y)4f#M`YMati6kd=HFPBhW_Jwy8o^@iJx0!E;`Mqctn}UEE -`2Fel5lBuf1(G8){32>fn}!0$dEVTL5qN(nkBT3*+nMSQv^SL}4(e9o53JX)BJ@F0NA4P}I8gm!+juT -JAY(|F=kRugaJ4xrwE4jTG2J~c!=lEv6&5`PgNL?`~o3xY4D>g;smNct$Nqug7P++V@b5dR(Xo&JOZ}s2oMV(eZiO98T`vu6d7re9 -5Zo(y^>8uXZ9E84x6k@vK_0*KK(NrKk(GJMxC_EOxUs%%I?7JFg6j;Y99s0#|_Xy(l=;dcVNeHD1gZ& -Z-lRMLW27MT2iet5n2bMbyZ{(MDN^LhZ9N7`yK!I_tk*5qRD;x+Z^=4RQ!S5M*tnIrT|P0;$6tc+7ZsT0EgnXn48*36TcGmUWzbAwdGpr3g7kUhQtL8WsU;=DMn?*7Btd|_O)v*yFf>FiAV5JlCN*b|9S*E5Y4JPh -XO1lfcpz;Zb?!-sCO$(LK*>I_rw)5Gr=PQ$*9iJ?IIM$MAB23L_-ks`bl|(8oH%X}mLmh)CaXNEiQ;F!T$lvG)o~m#P&y^qeMgZgX7}Cj9MwwVd~e59!fC_2OK{dvqR-Soe7DFIK3 -VScmTD-#c!T;`l7&SU*fQ?q~K*SDUW2Po0l-Kp>gY#B*gc95+}s4lqixcUo4lbCxXr0#Hi>1QY-O00; -o!N}5(35j!F92LJ%(82|tq0001RX>c!Jc4cm4Z*nhkX=7+FV{dMBa&K%daCx;^-E!MD7QWY0oMkUUrd -*DlY$vTcPFI$hSQ}aLNOH3s$BRNFB(tRm7KCDHGU@a=dec|zBlG|uDN>>&C%dbeBm{8qogbVZ93)z#T -u8{)St~N1GFq_KOz;KBbs8me$mb_NT>GSZ>384s2CrS{(m1Bmn7MEf1=59{WWtR5QHJB2B;rY{70nd3 -_nwIi$0SN-9A2J*{oIAGopuZG*TCyll+d`v;*3>D(kS)FdzOS;c!r#?m1Kzm&T2aWzJOHF`GU3~;Sg| -S-!eLR8JjOyA`AL1Po&^+mxm~MKA5ai9E=U2R-vYQMI{1~jI%go5T#BT1*DA#@LQO`U!MNX<_#1&fXaEwRiBcXVvJC^CFqm;snS>~T2DMrrTdiWkA9p*~J -Gd{}V7+@sE!XI&N7HYm7Q$pY -#T#-y8Uc<#=;cj&lFXh4p6p8hL;FVTFG;x$)Sakhi@79t4^6CjE^NGLkVXQ0`8?{h%j4=0S#0+zMivW -d)eYw3cOcFkh(zssb3~Jyq!@!@QRP#q6$WL8T(F6P{q|$B5UY)1`z3UBdz^00c{sap8C^joK0O%;2lv -Q?)w-8}owGhHIWhDsf|)qGG;OWdJz|1}u{IOd!*?mb3liuObTWi<;t9Z15wnWVry$k+fu@esYKlm($zm=uLR68ka-P38EyDgxDF2XKt=j+f?G)T5YRTy*mf~{!( -Z3jWu$Uk{m!4^xNu|vPu;{TT!|WV5y8UJQ_)pfSJjvq7JB%Zca*-5B-6KL-Q#C@5(QNL<=g(f~Lr_DZ -`hf#y?nSWJYSs@_xd?WY^@Z0NyIXJNs#A?93@;LfdVojer${l!#9Gr3_x)EY6CngIyQO)mC=vV2(Mye -`-x3HIETO6~seAsDM>MxUg!gxIm+x=meC1KTqY^$GbCDCdG^!FQ8_!VZ% -B_gJCPg_;^iW#y8WlPJi53_1aowE#Z*DLz*AGl;x*7P%$-${3jT1+XUiBsdmx--YQ_LN&CyVB!$ -yG?9pte(ROz_`;CWgUaXFw?l$3vETX$4V~o6mQhmySgH$;l&kt`53;o#g5G5g=h~9iC2sJ^`1x*kkVG -nyyJ|%Fr`@vj|B6dvgf=u()MQet`_BL?!n(axplGXjH6C?S190Jwu=K9jD7TVfk>dPvMW44*gpX-c5# -=g~uyNZ#Ok8cZ8H>J6$REe;=)v+l>l#*H#V1(5eYS{%M1x+%%yJ8kL&cAucQcZ;F!1g`dwd&?mO#(Ch -Z>3Sr@>f@6+1L-Og~AUyT4d}qFpp=^6t5BriEi2=gP7y&$IiCTi|~b1YiTu&P}PnltJPW=A%d_AqM4LLK{tw5?V#ZSY#QVx={RL1<0|XQR -000O8;7XcS*7C&O4+j7Mk{inYZCbQd7m!!Qg2Ez>d=id0D|i977S?~v4m6e-zB`_R@r-*?D!;o%{*7ra -W;u_mlcNL6#8k`JU%i^X0GGO3OfcY<5}W3l+~@zeW1KHufHcYl8Vcza{;e@P`$3-~+PB>yfF__Ji3;p -L4T&R9d~YMok%z!IxYv@&D*Pr)e{o8=DgQA5=-?FHL%QnVx0<`be4J7`XK<1wNTCB=BOVLL1+VK`6$g -ZI(F%kikd4_L@RL%~^r5giYMqsYAn?tB7<^d8Yh-H8TwvaKNHL3v`Mp_hZjz0{cRvSCin%4vDQcYT~z -ojDqiCIQy^u}8OVbrHC#4@i=)cn;J%z6TAV@C?^3A69On638!oz@>+1?TOmwI0%B$L)sYm^Ppl_N1Kd -xaF}Q}2I!$qTndcY7+?oG$PrV@AIF$>v;$SB#7v7|9*DwYgdOZ-&18)Wl_90X#H! -LH5?q&;?Mz_Lp{L0>?K?#Uq7-c@4pTTyBChV|mq%9QP%>hf*fZ_k%01_F8oq^FP$cDx*;oiJo@p=s(m -+w@Nn`N=(|R@~daHRcS&2H#1ELMiwp>Jl>t{734>*HxlUfparbQGTd80A~iZbDBiJ{n^Vu84+*bH$C> -mQiBEa3>u?(y*vOqyBcXg7953RQ(>j4StC8~e@&@9?%MPq@w_5Vq%G35r-@;g3i#!h#t*hj|1)W4QoyQ8gWeinDc>lYDmL*Bf5Df9Yei&d!1r9wiT@P@ -`Q6y|2DxjU1mf~x7zCMp00iPkl`0Rgj_PS2q9u}ikmg^iEhFi~2vIZDo($D9OH?a0hbtf{u)+0kxmCt -4>IfCsCZ;-}{-N|Nsq2`+Ls3FkCdBDBWKlxWK{@b_B%gaW(6r|9l=Y0{4Ys}Vz-{2qFo=;o|AvtBd}3 -A))<=fFH_=Y3O@S*pLb~llnsRiu$i6~iFRvb7fa8Oof60s$Ah4+LbMl8ah42E0AZMJ-5yTEw@R_Yk -HQWm_PYQMdn&;ldAox8yGq)a#aBy8-?yS`a9qgzSDP^Is7a6Lh;F@dKoYR|bkjVdsmXeX^)5k+U;Ct5 -YAR)n({Ftk?b%CJSn{akk!o2uv8aAt68Rp=>?YH39pCCnlN_i-2*NVsyP#@pDcoR8}p9gH7~;(pt#pAhrUUmQlR=U4RJS -mD8Kx6{=Ya7+KES`9xLJkB>$A4e;q7^?gp)ul{OaJ`=Awk$y%PGJ^a(SDE-ms2gh>AG`t^mbmEqa$E -~W#F9&mZm28G>mUJNTXcF$adK++*SYb|q$sBH8rI&EAW$sla2u8_8< -zz%sPk<*1dfmakqNR7D}isL)Np2F@QYu)T(+iGKUvEI&S3XUOEIyI(#hX2naZ6BJ39xK(Zb(aL2zrPh -6u=!>acoy_!z5p|B*bUs=MTtFRYbNi9()M4}Xb(-kTVncX#3%SM0pMP7e*9k;aD@ri*Ks|qLy>GwW)$&&5a@T>Wvcxe_ZJxtO7k7^Y>c+5>~oyr){myY -OqDEj4tb`)}mn^i|Fv!gdo?D6=8ZS=0>lydu_e=A5cpJ1QY-O00;o!N}5(VN3Wi~0RRBZ0{{RV0001R -X>c!Jc4cm4Z*nhkX=7+FWNBe%Zf|pCE^v8$Q_*VUFc5s#S1h`R%8>I11bom-O~{ej#%TlPIE0d{9f2( -wSxqRV|9-M!UDKvHKkbfY2kmGq+fEw`x+n5fb&ar`{Z3a0?ypfjRw#T -1l=tv;Y3;66%eVWhGk#v!m8>>k0QX{8bk9HrgE4mZzrEmiG&7|aq@YUO6VMp!-xd$Y*nqh)M7KY?L;$ -Nrx=pCket5f7s}a3xx=!aU-4c}UB9I(hGB`7$prz~#c@=UA5W3v8I<{Y0001RX> -c!Jc4cm4Z*nhkX=7+FWo>V2X)bVig;s5E+cpsX?q6}`K1{+qA>FyIDAgQz+UjfWB|(`$V4$6jdK0tb;jbOMg0{33WNGt|9&^Wo#$+qqm}T_ow?VSc+ -ouolt4Q%te(;xL!f<^Adgu;|0*)h0NazN+Bs0SZJIm)uN9039C%1$Qy8cFj!gF`pg#KJE&E1D3c -f}38^Fq3x{V`)`|BhB`In)pcaoc` -@G)WuD5re$m-Dpje-5$yxv@GthUdgzk1D{yj6xd1r(JqoCog4{%I`o<#4hPV$ep7R}M|=>ASZQPq=#u -&MH|E&_T6>84s-APs?mAwq)S-L-_I99pk~AO11_~1fl2j6}9;%DHSbR3|eb-(4$Qc8UlhA#;~>DGWYh -;OwBh<@GOxf$PR8eBKO)6yuv&o#%M6op`8HPB|_sFl#V7b+~&lEK8;MGuD&;b4?>%0n(yoxBA3X@}VQq8TEO?T*ne58Gv6a{ARXnnm$W8viyg`6|BPe1ZuoihWum?|H -T)~gk>-t3sB2kecC0m(uyb@Iq5dWdZP1>DYa7)1aBf{74Q?ne0i#0%>Hw5{gB=Nxfy9N10d2 -P?MWfyz3SK8;1^?t^zh9X$2Npzi5LI&=AP-k-HWQ#;y!Qzo0m`soP0TbCL5h5f$ -e&gfDG0*Bj%nh|9au=1$wKXv%R--uUA;4KA%iAEKA7`s+X;Q9fJUsRqMd#|K>XvBsiP&&RIGpJLzaPY -iOY{P-30gcK07zzvq@E4DfaLpuU!4gGX=^@_OxKzdd`9G8ZV$aA5zaY(xTFvA?xM0^u;==_8s*9BIA{ -iTwq!zqMoco|RJdPAL@kRMH142t`g_u=9{P)h>@6aWAK2ms(pnpPr6A=B*u004pl000^Q003}la4%nW -Wo~3|axZdeV`wjBa&m8Sb1rasjgdi8!!Qg*_c?_otFqw$>^e+$P-e&p6x#(;*GeU&G`Fwq03lFXyz}_ -~H&3z&C<6Bsg@Ri#6E9Xr<2v;eZ|*8cr>^T|1ef2yM=)a+sB?@tcAElKRhdF+boeJna#DVmn;|M5N5p -rpiBe+ljsh*(Fu;a*hpNubV2@tJ$CnabOj;9WO(4B_9YxM~D4Okc4aqU^l14gU@N9dPAEvo(8%6 -ZmP`{s;hOe6*V>dYrX-uB%k%$T^kng@TlXj87qB4BEQQYnD-(ghrT47d#17+3Jc!Jc4cm4Z*nhkX=7+FW@&6?UvP47czG^x -d399VZrd;nefL)oezGx79}u9!x~%Jp4Q(F+3`15Js!b=_9LbPmq`|O%A0_#wr1guP=_+rP?4SgqxXky -A$0`vrQrKC|UjsffNGf9%F<;K7l(c+_4FQ-f>=Gg8YK5>J2ph(m7hvuCD4h;bzL$+gJPKFs -uMx92YA6(p6>kUxo;ZOEAP2aL%8kJIm&gRtb_FgSTrKbLq#7utvb~9G}Wg?wJ+)47lE}`;0yIt3>D3V -kTJJtVL*GK-mLLlqwTd^mb3J6hn8EbCo3gCkZqK~C!>*Cof8ca*@7^HX8xt6F(&-eI<-atactiWBB~d -%4<5oyCZ#MV1cXQ!ui-fu;N{`1feEBWA@-NnLZG{y|X6Y}v5HeaZ1jU4t6vn#_Wu2ud`>lk`g4`V5`Q -!W|D4esZMeZhTd4#QbCCd;nqBmcAPUvMeH%_|k}SOhu>yPx*CzrJD6cOL=);umPVZ{{c`-0|XQR000O8;7XcS-vH^DLIeN+%n1Mh8~^|SaA|NaUv_0~WN&g -Wa%p2|FJ@_MWpinIWiD`ewN-6z+cpsXu3vFbKh!o<*-5c(5Sjq-&<+6_G?+8&B?xRnV!q*x28tXNJO6DV_Ej|)2Q-|$DHZFB|U8Ej7$L-!tw4*S;o_7C)95 -GBZ4`7{A|0hRib%eh#5-y31UPzY>!Hk1A9!6ya`KDi8P -6o=po597x^g-`j@W1p?3$EV)wo@K)3NMz2$+?kk0{jPU=cYT)@)%-eY5u -5lR+>ev9R2{PzI5>syf}>do*qPY>=vNiJDv8r=IBDIad*$6+3yPHe*vUx4<_RYnuGK+E5yw%jT;kVq| -BxO-$Q`U+tj(sVgWAKdOqRoo&aUi-Tvb8b;=%rlGD4&&spKViCdWx*a`~oY;&0x*gLgvsG+2g3X5Euw ->`pu-t4~>>UH?kEcvZL+Ip+<0T0+#ogo<8G9v-8@J?%(qf11cq(dG3f1&fEyUxbEB&tpWKRacQ0^1PhhGS~ENgP&4E(GOXY^f)XlI&zd%&v -a^vh|$rJ`27T2hPjO%U-B)*DOVa -A|NaUv_0~WN&gWa%p2|FKB6JXl!X`Xmn+AE^v9h8f$l(M)tdZ#e{TgumnO6Kf=bSZniz?o;K-8yeE4i -v>1tzM1p`aD6(q1zkTnW;W3hsWH;NDZ3Hv-{hB+2gLx9C8A<8UB#r098;waIhOWMU)r4o3rQSH3(`** -|0w!A}K{PGEehygHB>#$nI64yZMn-S5V)}jJMNM)IBS%L^KAjME9M4BVMBS85>8*OgzbLZ^Fw%%_C1ZL~%w?BQP#EIp+hC0S}qZrnfjDuKN|Buu2I*rIZDu&`XjqpuQp7qP!0 -#Bwz)yirkw#%+^_z^jt3ACFjkdwGxhob+i!h5Hb8R#&NPzWonGBqorue%6jTVsdFL(<8O-~rGAr}_6} -)3OCOYqG6s%O%Al@GQ-S3{y*@2G^4&(t7qM9pm4lO800Z((9MQFayaLCp)_nyTn}i;y0RhF$ayTac5G -LkX5o%d%BSdF_UYuTi$DUlv!=x=Dlaj4veyV%>nSh?J5*vA(WA^N`YNnP;nC6UUE8>xiu*el2nd^&A_OFp&Voo<5XA$*Kw@QE0UzKzZgSU^YFO2aY3 -deb={jABC3EC6_p(5afCCJjc~yjsY;Ea_J4huc~e00(#(FT70;13r}jX1mWFjdJSm6Aag;$CF?--Foe -$CkjeOhIlx9Wx7^l1}OM_8P%~`s`yLR)`e9$hX$uC~GptjQI^9`l1^^cny5{{te0fFJ*?m^XtGMkN#W -xZ~5+#vbVvj?XB0(o~I9OLl4%wUbsnXL}4^dCKalEd~MEUT}<&H2OTL_HC@2+n%8+P9FKz(DZMgRb2H -jg7(k8bIqYfIZMhyX!uzkL?txcdJlV)%XjE -;y?8@RtB#EOtk57}r4Ruk2Ur+Ab*dl?*(xfei*l3gh&&ieV2O0EfUPzX4`kA+17%3Z_GmoXubj3OVNpK1k+mUHutje412be8j~Obi9xLj3r!~E+1T#!l -xPwm3@5^+k@kA{881>6V}~pYmc+ -v5VrHsS<{rlp4uY3?n0?uE|*4}(f~SQ*s#xAVF1~mu3BFLx@_h94qe)J=;Jv449Weu_2T@Z-Rr&RcFu -dJ-PU+!_LzBY%(8j7z6)HhPXUWj&iy6oxs*x&@QQM}IrGYc(DA_ob1?6WsMMGmq+^;Fx_O})ZN%X3r&-bL!6x5hQZG8-W;@HPWwixDH3OH?PV*@88Jx+^P+2No7@oI-e$Xtt -3X-V-GSLI2JZ*$&X8kj8&bVZ{QwIN7fP~5r`O#wN1TZ2^hg2qeksZs44w_|K_vZD$WciIU1%<)m@soa -)&-SB{y^#HdgtN{uC^H4D2q_2DKz@fJ^gx(KH%UI*x08q+C??=ULkm$+(M?xx|J~c*_t?vcq#o$1giW -1&*ys#dkqz!-mtG@D3`pSnL|l}+$xl5pIe=FuE#hI3I=u+DVql6vNQ -`pnp`SIp<4QkXB8Ji60p-geX*5O2SlkCgtuUv(;o5Ah~#%z`k_T&!8G!+xQxS(P0}#W@vsuUEYp+?C( -MhHTbOuXJfQr@#8yAv4;nh|E^3sp(4>|uYyU~s>d7F5=jjC3GB2R)od#iato6lOHWI63+v;;5#O^#Q{&9`KkU -S4#RkfT@1nY;0f!dU~21HfA=b?3Ls5CxT2CrgR -f)j<7ti#8XYKzm^uTBD4(Qt3WiGl7Po3;V~Ym()|w8d6t!Z!HL#C+;QoLT=mE#m$SRSUEep2H^H|+;< -m`s!UJnIHQQG2)ast0MT>i*-RaiY6jCqcxf;bJ40tw(G_79m`oT2F#EVj#*cM{94^Xmt9~@ev>told4 -_JPj1Y+6wd2WLrhkdOF%9@&eg)6FnzLvdGGmH-UsBKlD9g%&#)3X1E=)V3-JUD0nEC1n%TYxX`@qE#B -`3Bo{=de$AUByDvCaE`_dlp9hIQ~LYjwb$B0z_jm><9CImv|)}#dfinyDWzDV}*R&NMKi+smfp!hd!C -6u;dMA6c!IWX9@jhgO)U*)S@0g3invij_R;UYZAxxgmI>|XKLi7^|SdT{QbUzYfA#@!~G@PH|TWwE&N ->yv;$ZN1mhq;>~T;=vU)Ti8rQFfCQkzg;IG3l+(v_AHTI(wha>dX!&( -4i*ua0b+v`D9JLdO}vEq`l?mqkcvcg_vdXd7(;0+IHMj?q55faf08ytZZfqYLZe)a$}RWSZh~;dQ8Gc -F#@gyxZ*&3}H@Bh?D0bo_E!7c5z(ghhhF=o-j2YeY(6;F!3SN75rxuibvApcoAhV(tgmIuov)YlwI<- -HAnviP)h>@6aWAK2ms(pnpOt-3Q#Kr005{H000;O003}la4%nWWo~3|axZdeV`wjGb8l`gaCz-mOK;; -g5Wf3YOm&h0SwM4ip`u1M#kL1;&}2`+LZBte=0+w3l8)mp_P=+A)Qf&(i%r_o<`7Ao;b=JX%{L=gT5X -|Wc2kQLh;5^^g*6AE0kn)0v{#bO#GJA@@ -L!axX1f;c_Y^7!Fpr4?xcU-eOSI9mJ?X+>Uy*=nM{hB8RHb^6TrVHiWZ=`EV(8pV80Q?1{%$+J>W%1> -$TH~Q(x${@f+#Soi#RAPv=evxGYr3ODLITX|E>Gy0j3xQ#~w|#IvH|1aRl41XO!$G_u@nS9ly%L9t<) -73i}8t2zs-LkjPB#dfuI%U8oY`e;DBQmPKD-bi<}UIjA{+PT*|KA19(qRAim!JIL5hca+7sVw=)V8x6 -mD6u>=`a7%5$SRj+r+LmyA;dW!O~D!thy}DPXI^ax!i%Ph4KE(^Lg->wGkwPRH7P))H1tZER~*w`aPv -|q&>gkUC6i~2E=UGTwge_i_(N7g3dGD4t9LIOExiQd0r_LIP_)ZnH_SqzID*3iGvt=Y~9|DCK!Pyoc9S5>(Wj>LNL+o -;jSY9?0M-IW2-Ykk2Tj$S0@B?&Z$U4a#z@TML(7vwDl<~`>U@x>NwuD`7QprXLadZQ -)?ir3PYji<*M$tT-y)vcrh_Te_!rohjP?cI*gH@cPkXl&TBuvCH4kCH=&<7dSa!OlTQHLcQKcZ0MM6! -!%qAR*S!1ZhrxM-*gZ<#{C-)L#HM4mIF~xYi~IeeLM4SF&O!>c>Qn`P{V5mq~79R-0rkIq5$`q0!zL> -B@(;guoh2T9(`-jwAI~Hf5CanScYkxw@if;h8-ZybIJEOhvEH?k>LLy34+vodp0;#zceJA(LA0OI#ul -;7w#BO>Kb_!5kg~!>vZ((JwM*v4<-0*EohfyTb}2TWf0~0mI;~X*d5)r_A8y~b;Gpb<27?IUdKr&zMW -QzopHBCjNLj(jE%L>!j)PU-HyJ~-9e)1$V$q}GH31f0nZWrb`cF3Mj~KO2(ajOasPg_zTtI~Ib|x?N; -p2!Fmt?VY$;@`{BPbl6C=yfZ076coELYui|d=ak%T%*CdNhPJsY~VX&CZ0F&om@iRBLaS7UF{MT1dpo -pu*;+aN}r+>uNpnlwj_DV0tM4JmT2QAogT)~@}d-_gmkZn=d!*IMcPREiNqQAX%(-)Z$>z!!pv{7GH> -2~D#oBu9ta_WK6mle&zgnzM3LXHc!Jc4cm4Z*nhkX=7+FYISgVbY*fbaCzNUUr*yW5P#37uyWEiMI -rkhXe9*YV2^SLx+kqTWSL~rdYjle$Dve+?|x&)Ng617tJ6JQA0VFpp83s;GbIb6wGaP_2QebK9@P;!jJoSL((wJZCbkde(ek(0^1Nf+OFYsOrA(46$#c -Mc^adzWkpzvq6)@Fe{G1)$iQ%W$A51at7{m}P;Xp;u2rM(7DIFX%ta5MG&N{pg4|*cp8EMQT?z_(tdPw{0~sl@ds!L{~0dr44LeXHM~wAvYllW3gkFr11AwR8F -Jm!5@o45evW%}*E_Tkr>(W1{pclKGqt8#jmJ96te>~?`*FSp;{QK%JCyCuXxweZd$)%kEC8_VafeZ;5 ->`Sm9DSXH>y()lviY;9e-n&RMi^k`6A1iIKBoN>E6O8(+*6M&HP-{;)DoA5=(+92+Stt=w}{4+-9K0^ -D@(j8ZH180$wv*(iZ$DH^3h_oelYtDK{R1~v -4=$Vx$mUV8CYpJ*I5peH_k%$ZpCzS(rt*?Ln!mk_T>T?+O^5`C9k1YKpD>$>T&=M@uW<{4tfQ3@0D$J -uk(w7a@#l$2M9yX}wqra;XwjXGGkO2a35>BOphiurZC@4p4!peC>Xj6cy -IK4EYmclVytES3k-Q#!Lq_mErp74_ASgAy;!*_8wbbVlSJ_M{xicYtAs5W-H`93}VTi5G3RH7+8;-0n -7_3wR)OngLR1M*djmKKI7b3iJ1F+I8&moOExf0j8t7oY=Lg=91al@7OzJNDMK5uRBw^3OWUG;vn0Uey -$rL^O_cRTj}22e`_1QY-O00;o!N}5)&Va(p|4FCYQHUIz`0001RX>c!Jc4cm4Z*nhkX=7+FY+-qCb#y -LpdDR>3j@!oZzn+5SpOOhf_|ks@RK#(NB#7f0XQx0R2n3H@NsK9yB`M!2hkJweP5M-QlFrQT>=!BBIZ -fSGKkh{C?Ci|!eD7-8w}&9VDT36q54>ubiLU?7yjFl+-iVq(-rxfd^soUZJwi -`vs24jR#NfpzJ=9qXB0)*eSH(WV0R=ON-9a=XgT0lHJUE_=1m5BU^0-)3TX$ENBz&6FRb85W02#D>if -g4~FEomG@O`mZ6m>of!K?h#9!Dvz$n1A4k%eLS9Jp%A>O)l?^E#*rJm?8Nh2aIkN%oh_xO{~mOVXw_{ -ZU+PHn6w^{4wu>73twRl!Szd!m(LMnr1<4qBkBZFZ;gjqnCGuAl)#GykgSpd=zCM5KeNS=D%*=c6Eg& -7Fnnaf@{?G0p|`1E+|_u1Wh{z;tn`;uw`%Ryb$}gMkzSLgo$87N8brNK)SfK^BR|rprO_oo7lv{0#UDWijgZvh2j{11%U24IJ1BK?B{A9*kcKPk1xl -P*NuUOn#-Lki$xF|&X&zB#TeP9@wkpRxtgoi0hx{(1cN$_ZP(T)ldI7GL-wf3+LcP}0G}o34^x#;H#I -<3IEHAv5aA^Z}^t=8ci0+A&hu|)_m-rvz(3t}^Y|U|oL_G+=c^OBnznv;km(pFiWRW{f3xRqUNv9RbH -RB}s03oO<@_H2>s0VM}vuo5pTXvPa2cLS>jl;q>v@!@xg|7V2HoIX23P2~oJrN -Cxmmyu~sn7e}uyl5gsSP5gR{763UIx#D=6JXPkJWB{lr|1UL?lV2dA%scyxAS=yyxMuRRT+GPPB$xx3 -^kJ_>0jLdIS9G5GErwVeQ-7!BrU46?hviK1wyfx{iGlglkI&Qb4o$=Rf{tq53cF`dt#766rD%;}?5_P -_lr2RyxrEhwXGNQj?if<9^!hb`Xf}nSPZ?3Mf`NOQ4|=28Bp2hFkGV)kTauaY>0?rIYSXVNokZcfse1 -5aQHA&iuv>5=HdqD;rd+(~Gt~9-3dNQ3Xw&Q7Sp`Tj-U<1giD-|1Z^&!&BW-uK%}IE=A2b?NZb{Nxgt -cOT%ni$eyBJD#chVzB2j0ow}Md(M}Gv(*sT0R(B9%3`fd!VKT!CCso1q(iXPJuasI<)5S}xh{6PIgp4 -6U%$O6BSnaGd_(p7VNW})E0U?Y_CQXk(e;wppI|jf>GgjLQVge$StY5;1=~)m}M9mC7DH8%}bvAVY-2 -sy0!|{;Kqy15iUc`50kjcvSJaKXy`P|k}BcNy>!T6yX2rRm3+uA|;XB?@(<($qD_O3rFMz!1FbO_Duo -+8@Pj+2RYNK4P(J;1W6cE3nS$efSTG>)DU7|dODwbi;wo|XYUaI? -_%c9=!w^a_FJ(wln~6Drn<_;Cjuy<9oWxPVfpl=pOpRFH9M2^wInS~0gCQEJn -dI?LwDN9)g;6=f579AzfD$YP%~6Srr*nU!01$UF8nvcA86@Br(!c#pmvn_6yZt6it6Z&h*VmW9%NhbR -XucUd$EZKe-}5@sm;J`ZK@2SeNMlHkgpLL0=e^ngIJ9_V`P@Qo+Unb9JfE!&2i^j&u|7=khlt?DvgKt -xz#y4xfxOJ9-C(Z#b2RkX=Eeemm|A&8WU#he&1ia8S3vMA6|8>5;>Zl#D|CElDP71YX?9jMo&aLW-8T -_{#?5PqF@){F#gwRO@q)nC!|C9SJn)L97u0XT&#AroVPQOGB;r_}tOTS}J-FCAzhIAH6}3JYf1H8JAN -)I=&vJ2vHXBw!T}9 -h*uX<8p>{G9JI%88HAL+IL0JS9E_ax=&%BV;cj(p;!a2@(h#olUW{k6{+`)}Y_gj;(03 -TxQ+P^16<@BUBrz>9`H;;`!d+EVPdYzbDB}&6UXsr7#?Q=|yqu2N5CSrLvJ}+kGaP#E;|b6j2x49j`U -(tB5n$mHAOyTC{*CtS1Uidf1C{({h@BEz9c3kR?@HqB4J)xUEr}EtxEmbFM!5Otl=B@?_F!WH?2NRc` -2nSWYqZlB!NP8$Meo=>Cw*GE{U$$9RBLwd%kGhvUr`Pie3+{Q>t?m%*EMs8orW_q!vWs}1OJkDy04m= -qjuVn3#PEmwVr70t02Tcv=V6f`Q&(EC4|31mz$)Bw(+EC|SS21Xlk9;CRFu1P+ySx-#HNK`GQAvTuJI -Jts!DwG~vuh~)m?uF8mpYoyMSAO;l48APsK{%KocH{~4fk#$wO*nY -^FA3vLZ2>;N#-t3ww-wscwUy6?h4KXq9H~TpxhSkD9}<*RDMaoE2S*{@{iht$xf(WcFsf|)92_@>+`u -COd;L^OA*r+d)|;j^KY_=XZ%=>y~iM8(G1w4ygAYT_!Ijxd#{YiMZ8d=ZDd6)u!*RoGye}uODdm1J=xCONpTE%FawbvD8I^#C8OAU;V7Nt`+tgRI`-nQadP695yYQ(@r -x7FfNQ{7q7%mG(CJ>eoc6ka8>RAHvq(}aU#1w-?l6shPL6k?(o@J)2#95X(vQ#M0DlXKgPB|((MbNkI -yNVQWe(BFhk{Orc;A%8D2i8A9xoDvxI+?jHEP#rpT2h7pU7rj6u&4aQk(2eFJw(ADoUU>^ZPIVjyc~j -MamgkiwQ;?^Xn2aj2)PdeJDzaU{#%ANY%5%6Ta^%qyJ9q6X4?so7Sw;^Ks#?um3SG-vcB$`umzam#h+4hO;&fMtpK -e$V5-bKc4?3FqzwzfbKm%1*~Xs-Bia)Ni)-73&4vv74#~xPg3fh-+3SMr6up~ -*j$%pQ>-$2R2=C%Se8zK3D(A>m!*dmct)_;86xDL@icV_nk7w<8|!gSEy#gucAM)WkL(%jVWif*mu|bITP4neQtH&JnulH5x2A$@Swz= -;$w8qKVnzJauIUxChN)rd^$Ta)6PIK1q=E`Mn)w^mf`tln8DsuO_qh1ews1=6Bo%PkFEH%;!D>$s;i` -gVrNj?)6i5aP$X{^?nRCcJE40ht3OzcdId(;6;@aB@NyL*AK?^=W?wyHsBPOq;=^zbQEQ1}lbYU?LlA -b2V4_RqO@6aWAK2ms(pnpVo7xYM-`006-^000;O003}la -4%nWWo~3|axZdeV`wjIX?A5UaCx;GU31*F@m;?HWu{{?rD-|wlctxcB008VN7l%4+VtjzqIftRA|81q -KuOn3{(E-;kN`;FB4ws}umoavvA}*WV7A#dtss2I4_0lnA!6OqV#(@T!qm*$ds>T>Tz+iIyOdnXX$`v -DQr?4IwM9v9it_FXz7F#iowH9VIj(mpIVq~DxT$DLJ~9rJKWznT>Y@VT^id!fl1NEeaB-k0Wj&EwD)O -?ac~j{%GCk@6PSh~%|G1>}lD29&^S4?+jo&xTouMV#rm|?^P*1K{Me}XjJns7WAK=Rce$WuVcH5nxZ9 -n~^8veu{S*;-|c2DzGF55$Wginf*l>AIv!OEigbWht=)ja$}#k$dlo$<1zwC>S9%aNWEaBhPf;O~Qjg -R&|(C;25^wUn=w)ME83IXWQl6GhRnmNxt<1e|wOandS`I3e(DID$ch`^=_k&u_)k@KdeiVyrje0exzCaJg+Q%V3f{pcbsVF3V>+8ZZ -kt^H3D?5gc(Vs^$wvz5CFF^l9gPLcG0)OK|U=V1-HLh43X*bfC0@oVxbw8_MvOA<`1%|T -^(1@`Dd;164kR$)AsY)(O)gU<%J56XjbjBO>hEygI3`o>97lcE#N%Wk_Y1lqln=aTVlRqRN!0)QR4g> -N-!2Sd!%=^eMX+%RaSNj$dMMmvk-2wV}hK}F-Nn2}SuD!NK=oY5bVEjXSv{LY5udJhs0zQbCicTT-O0 -aM_js7pG~2fvE$lMR^A4J93?%jxO**Q9OxoHYS_ALV-;n({`+CKCIjm9 -yG=fCEzNqFz?c3Cp8|6K1$nLj-Ers!@W__ULjG(W+uw&Uj>a!eqeq6@6kcpD)J2e&ILjQe)r>K+Sec& -g$sQv)6Qja4uYtBcEL5xD`2I=c`?3pZN?OLW-N-d8F3LGY-E~Z|eFu<1{!!B!POi^4M0tl?kJEV0j5!qG@u~%G49b6_iR0}9AYCd;d5o*k;9Zko{3Gz1==qFL~b5oEAY%x7#FG -!QL`afL7X4{?GOFeB^REip;dajAkL)7zioYg9*E?SDTFmz6TyX(rhgH2|T1;EgiIH5ZT -$MIT!69oiLhIry$x050faElEuyVtk`y!Kd>d7rbQ1b7(WY6*qu2RHx_{?T0xht0l6?HVkwhAacj9q2@ -msA@hII>dA-HATM78L@YFop#hONj+0<}HY>qtlY-FipAz4+^%qp0S+Z|wCI&qRtS($~I)4BXVpvr^oi -rwJoF^N`EGYLLQ&o~8$3nyy|$^?>f5?@RqZcuQVfUKZ;td@$dtzEq^;bpX$VP)50dGqEO@f=P*J{<=H -Rm>+G%e^@8QW3{K%sR@^9_{q1C3X~*`_?7oI7Ug^@c3Xj#LtMP&RWsN47*PSjgGpdg<>d_8y{EPN{aX -7cD4*nUFIpthC}U*eo}?0L@7T~vKsn=|EW#J~?cWI2C5QpWzX?7L+j_y`u7!rfjAMeRqf#qqk3h6{ -Zu9JxM6#-?3{DevKTy+(gkxnZbrI=L#c{;@w6>Mda9t>;wQl99ZaR#0(a=?wi`daSkKFX1&<)iUHhly -TnkfG@Iv!B?&d)Vo%&?KvU4l~zHqCMW*fgikhvvr)fA7$Tu$9wHP$RBLB$Ea96R%b7q9l@r-&SG@T

p#FLyl>x(D7@nrw5OsF$5+ -07P;4OV^IApNMiY8Z9qmG9MRKARNT7SEF$6@i@vANO^4AVlVP1!h%Qn2*oDFE|}ChsDB0xCfmz@Gj_x -^o>o}zFk`cTN8HVH2d(RT;WhOZV*Bw8k&-LSD`wEc2MdS!(*P9>OaX%4JI}2FZ4Zx%HB)la|37@wm)lxC&p)D!6=WPja5?hUY&Of -Y2rwaPdDAKqIbl};LS4KW;UlKFX2`5$Xv4Kq`9~<6t^S9pUZHjQy{=)Q$~E;)}Ja^I-KHhBMN4Qhh7IG=9goh+jXe)9^)-e -fDwsIuD_XO}zA?52NeM&Tcs<{7~oO(z+A#UWe^zV6c_#iVO>&$f8YxI~cVJbbbdYw)~z}xjd~Cu6f;G --dWe!y;k&}!oJE9uytRJLrgHV_B_21n`T&i+R4j&r=+(S3Yp#nX?zU9dP2SxIlI`2byH{kKJ}{+Jq+V -Pwx*J`;la)?bzOKVyWMK8-+)fj|0$;}L2g`#1V!-9kJgpT-)#Q7qvzlUcZ!8SsZ<4X>QNRf1n%X|*o_3> -B-(ZgaDzihDxc9AI2O+8S3elFN8PWYREk88-JUHc}!D5#6R#6{wpTUn8pQF5o*cj)^aB@nye7>4Z6@s ->%kR#KANFf3`h1KFA?T%DLrv_^6h#+$=wm&++;jW)q$krq~DoIKK2kEoxI%k2YkkLsX3^Pq}wNz~(JX -bH~9>_0QLI@pohPRVMP0P66rY{pf7JBJwT}-@I^Al>h0N?7|fs!*B~Jo_u=4Ry$%}M_Dne5b}i+zE~k -$U9mfS07NeO%>~**foEKRBHhYVWAR4|J6kuKP+P;3H+kW#TO9kaw+&~QTns&d3G(!dE%6zd%Pl~vWqn -SkD=kdTJGIbfTW82JwX`szEBjNvQN|9(UI&-N18I-k+8^#|oY-3M2L}fXdkb~3p?OYbGZN+breJlRN8 -tdkqa|#3*=+1DsBUtsqBO8CAU7O>bh#@lYu>Sd3SBv6tcn2#-*0fMv9{m{B)CcAX#mVqALQZIUGfm29;ENY8 -(2G`0v(2$F9N!mJhko)*C|S<07Sb)6F&^SvCFfU*#qdN@0tnS3yQQ@r5P{&z7Zmd0oYY6zgO*DT4iUw -gtJQ%|9BE#Z5jq*)wx##1>9~Ri@EXd}*rK3tbee`24~jeImdm;%K$a9KR@;mi;2opYQa=M4Eg$B}Oe= -Kx@Mi=D0x&JHXe$#}>vaz{b@N(2734GXa7c?)=t4rOKpd@_1}gLDrfAi#|3--c%ZlYPZ<~iWdX2N+;6 -L9+nou8}@{toToc+>tDn1l<)Vbdxd<|MiRk*{<6@8FO1BSmC(QWlkpvVn0i8tcs)l1b -_21hwQh|v>wKh5#nD+!Rs|aRoGl-(k|yfXQub@c=q}>uope9~t*qVsrQe( -O%z9B2qjZq5PsT|PTds@xb}aMH?@lcqqMv@bw1;oMIKwZW9pK|H&hW>JU+m$@`Fnf#{(}R2a_kJx&Yg -u$KYXx<@4mmVhnHWzw};V&!)4pZ{_Fd=^@uY*ge -i?QZ5mI0zS3D4!vR5bH=w4ZbUN>DQ293GNaf!sB=IBhm@LcS*7egmxjjl6zBj)||UED0Hw67tQ-0hiBbWeHkKXozzXTdQ@|5@{>Xc2@ZR$As+;nY8$w}9O3o3U}U?~ -UZ6ly96GxC+jvk)Byef*)K$1#^YrBF+9k)-aiCAR)shXonJhKK&Qi5qOg?FhAQxRnC@gl92!hH1;)MZ -YBhE9!?RM}gT`_O%=LdzO9KQH0 -00080N_fRR`#}s1TX{u08sJu!MGCY6+Fl9)3Sgw^BEU8&oTQf^AQX9Qb3uy&Nqg)5`VL7^q8>?hbF2=w$a&9v9FEwb6;cy*R?$| -91JUP}H9NxG_Fb!)XeyqOhhxhjirCh$<|mK}36wQkK`u*@{F;&9(jp@GEU5XyG{}laz!d~cEo*anf@U -LR?gS|OqoFaX)kKz%pGYgK-JvQ-BSYv3{S8vHy5e^j@|KHle}dkN4 -JmzUp5j`HHqJ;4oU>LjW!_IrF^naC#w^vC4u$L|a6!2m#BqEjq0*p8MPwg6(fdl1Lv>bI95RTPuTbl}mvt#f`rtDnI;dIMe$_E*L8`XpXY-=>5NOWH@35_~M9R?OIQOA -Bk2kO-6k*CVrO99&_%>UJqnLtV>~Ap?3$q``1NqdIh>EU81$nhnp$oBMsqR4|0vq@i)-~!m#; -E%k@{IpAKWs>#E(MzjG_6iQHu>&lpZkq#7Udw3+!0a7|+C(a -6F`)*&qdL&_~%!vf%BJRd0edN>@!iKEtiV+L<%F6tijQL+J@q*j@FcMCPFx*#q0{wE^28Fe!`i()*Q+ -Xo16~PWjbpy}ns}zNYKzhsX78He*gg?(6mH{+iz0(l0l+*BSXGo%3JJ?O8R8yE6kuNf&o7NYdr=6Iz_HjCazYSB+Af4zQGnNAraIVI6`Dg*Y_8jUGLVJOyffRp@6aWAK2ms -(pnpPWce$*EZ004h3000{R003}la4%nWWo~3|axZdeV`wjIZ)ay|Zf7oVd9_+?bKAHP{_bCa<4xwM8- -=nQ=jzjxopBu}ahr=XwywR7>XB&?k{I(v0Z7Z9o9l1yF5U`d#)aQr-DJDbt*?G5Jt!uIQ>_sU+Ja^)}D$G}$M3l^yldj&j}nQtGOfGkIR+ULUCOCFXelFqlKuOMa(ei~!Z0l -Cc`?hIJuIP?g4Qfu`zB0>$xG2>vK#z`pXFG# -o64Z1U=^j|;NEl>=_PPAgms&4q8P{ZiOucvn@qqt-R_0as~&Vn1tT!0uAaSwmZnRgu+z1Um|7m7EVj;fYv0#1grPei(|+70Y1%VYSgGRse9%aThK{m*7?RLqg64 -2?5Y5BwL`xRT1QBHozA#;yFn+K!y%9TC%KmX%kO5b$lDB8K6Wd3=nOrgR8CvNZ4wi&|+|g&!dXV`E8P -Oi#2-E(x7&qSt%JvNGw8u!Cg2+j}Wjc;uO9|sY4i_^%HpLyREo|Rvo4~jl;{mK=ihN -a+Z27gTjphnC3_y$$o?B&08whADLEAz{6BuS`a+;=@0vAbvIzhzve<%WOfj9yP>bm*^Wh?`cyQfV-OJ -pJl#d^T@8xH+z4Vlt%&yr^>3P}i(h@1!}m{$mP?e>eAKj$@;JP9rpc=R*&r2@2+B}nagJa5FdtY)`kV -E81wre7L}dvqZqkyyeu=exPFg9KN!D7_Fg9QO@@Ldc_!tGt2bmWiUjxKiU~kvsy3mK(I>uGRdMJZ41$ -Ijrm#HY4IM+VLF)>ws``cgN^MmZ0OfhErBnXI1uwEurc3uvaUXJ#OSzXr(BXMm1~7RYxC?0-J@K=5ES -~BYGp^)KVgWP6xy$VEQT(S@2<<$GXlAsmtxH=5c$AnU}_*CO6x>ZbU~yirQ$13@ --eym%xpez_q*tN1;ALfZ%X!EArwr!LTn%Or__iNQXR8_*=h-rHL%%Z>hi{;z*tUcI@#y^VC9D-$Q(F* -C=Fg#kb#{^o|nWMLEx-kr~bar^q|^4fWSe}4ML>Hpd3esliee12}XTz;BgTz$zzrT3*{sa7*pIP`ui382ot#FZN%t$An1deXH*bY$9 -uyyZ+$`El7T5wDHefwy#wi!W)0#d}Yw!bF_8=!1+spkj~TL${Osm%bHm6up^wb$L7uS^gOKLMj{ZzmT -RBI`zNOE^YtPiTK!o#9~uXkYabig0EzR$D&E*o3r!wd#*XUok@+PiCeLFceRKO*pd5wi^=kgr|qSL=w -+5(TPLkV5xQmp@3fyKs_|DSuU(`&05nIVVsp6k(YlFukDcz76A_HqsX|buVAN&%Fu+D -6!+x0CDGNwpE!k-|foE(^O(61U}$7Eg@N;VQ=FY3viod9{x{BSb)aR;b#L#*(@?d+Zq;x10OMg(5V=DF=(Kv$pOkFayhgEoMNH^N!Y -SrGS)JhmZ+0v`H4KfP_D85ea`J2_#}hiY3uhVk{O{v~F10;Ucsmr=)InIW;vAaXiP9YO7mhtL|nWOQC -zLl@@K-)S(hJ(O5`~goHHgabO`U|J?98JQyjzXh+OG^JrXyRE4jA{~ibH@qqZS*EUJ!NG)$jF_Zy^2(SS0Q5R -=JUD6*#IE<$HX3Nb*KK+LL%z1I{U{4IezAV6oJhcZW_$86>m?o1%Gy{sQQ?q9SO!tLV(5w@1#ae~=d8 -cgqOV3+8>i3^IE|tUiCBz-DiVXzfu+W3sQ7?(qj%XzUHM`uu?&#K!$-{Om}HwBAVB+@q`t0KTTG!yPh -m-dg`uCJU(jlWYrJN^nKXh4JLzX`)zsJx}~G{9KH{gI<>uRM;jQ`dDa)#w2Js<(S6?BfEkKr)S*}j(l -A$eG|SCHGtR}x;ELd0;{priC2s3qW0&~&b-S>&tD^77a&y@D(Vkv9c0V0a7K>xfL3^$!}_CLx0ftp&B ->Tb+`4p+KC$1_6I5VtGOi{Za_Oi1V->SPM-HlA(KgyW6h{Fp}d9}8uI -*6G&QJ1H=Y!O+*nWacXE=oWUys%5);D)Stjh8n21ddO21&QoE-ristTrO0HHAGEhP&Jz^4&GPgcQv_d -uXU0V=ArI)5_v=5M=*IsdCpkHykJP-KsoCG{F86M&Jync8tTxs1lK%eBp~NHAPg|ZSh;p;B4gm8GY(cmr@g8vuvAtcWwYyg(@^cwsxSH;< -|ocpamJ*8H)GF6m}ROxPHB~KzS3pUvayh^Ed394)i$pUdnN~i%}a~-otuv~9q!##H~a>tg~zGZ%EWAXNUcoirc+l_b2BBo;iBGPLC- -3Px*eii=vNByP_!(oSXUI_wX8f6S*wdXc44;CtMiGu50wUW!NA#$gM)(%uV9exa!KNt1WSl5S-D&WGf -b3rEZG#v4Bc>5J*aeER&lJ)^mtC`PHy?z%d4MG=U9Y(VPX=O_WrHYsS@_l%js)QUXmA~DXWa+duOyp= -(~hxt26O&ROmWK9LTF6tL&}zP0DSXm3ha(!mX04kIs0!u)k94R4QU|wJ=ck6P+VvVI!@$bz23V3(&a% -wgK|hfd&Briwt3KP1%FE-%ObJfFg>5QHKO8_f&vZRg!I8?`D(9^yp8~A^e%nP7Y5F)ex~S;nb7y?tD% -r85qH1w5^Mr9338#>CulTo+L?FZ1@Ccx?xpQrt*0jeco-vz}LsGPJZYgx#D~xDq%c=$6o4v!f+;Pz&d -%z!1*KiMUD@T$!jggm^zZHH{z*)hl+B1+*Jk5tKeo#K -Pw_z^kl^d3=BCn5ws|AF3o(*|qo{QG9?P -KdhW2X~NS9{KNmg&@X#B`Lbv7?}Vot`FFCXO#YpuYp{IE>IwXlf5nq{FjPTDBQb+8__@?kbq%IVzLN| -19iB13pA*0Z`i*CXcs))gpLtcX-D)B%@Q2s0UmXn)CTWqC6EM9gIX*gib=+sDyM%N3eN4i^*gn%01U! -+eh|z>+HH`x6#Fb_bSxUp6(rYO{YKqCUg(e{86}BB(C{|$>ya?bSxFO$@>0#U1?pc5@6aWAK2ms(p -npT@bVqW_R000Ic000^Q003}la4%nWWo~3|axZdeV`wjJVRCDAa4v9py&2nb+cx%HUx6|^6Ee%tO&`^ -&iIaGeOqcUM{=cH?kri}>E0uj+*SPVyZu -6>?MJUX|Zza5sm~ND+RrP0{HmWYQ5)vC@5<&OkBjpup3Kb<}crm-K(=YKspdzHk0#L2UlK@z}b -$Y3h^{o?ZV=c|iw6cD}l=bzsGdU5HJY`j1Gc)E!Y+n@T;vzOB#c=-fz}1f;RhZPQ_Vy;g*S8<9}aG7?W`Rgpa<90aOm1AAasJ??E61BIkNwA>1rWjS -wI@Io%&pJ?F-BHwe7sf9>WppmA&R>dL^&woaySPs@yyKYM1_Y3$SXoQqRzTg+@tXzvvRjGt3v=R&Nz6 -X8~_dBo;UQae)hF;YTdVIU>*<-~W;SL0Or&Qrm5>kfv%-6p_5^D8;#I_ifFT@*_h<_9Ed6Jj>Q2MoIs? -Q_NTEM(-6`DN&r#p_y(Ao>4D`jhv*92Kte8Q#ilBswqk~A09$~ww7{&?U4XJ1o;OQ9co}aAAIJw|@um -XA5}dALDjM7sNIVsBzL6-QSlfG(f?~I)aysH ->D6pTKSeEk?BEgNBM#TJLcGmvJ|-?NErlaYW(Hbm8SH{+6ghQ1mEB@=UsY& -a?r}WG(WA%FzQW?|GQ&AS>JPp)y+#m?#lQ{M?H%c2eXvS4GwlVz%NQl9s_*PGZeF|JN=h$8${VpntKB{6dw+$8- ->iAA;R{ZlSw$@p%G`6E$Nt*dCN4i#MHm;+f0UUV-S9DE>LIK>_iHT?UOvhnVB^M&4=6f0V7>(6Ox$G2 -Yd3_gKycX5QOI7tYJ|fMh@!()j2hT6_s^JZLhfP{V5sXjsYf1*SydGnvdvmq>*+1`%T`}!x6w$4 -l*3gHd*D8MT@qhA$)rnT1d1i9mE~OhSMpTUV{+H;qeLN$Da<$0D4^Q1x(v*`%Alovs}^!yK#>E^Q2wq -+%3Ry=XN?DA@d4X61r-unEh+RCn7R`*PLPP#>XCv=ssgE6rENVJ-B||cisEEE`9xv;`p7!j-(GEgV9A%N4Ig~i;Y2!YrL*m1~}?uvKt-)`yaTO>Frr -Gr`av>&lJYFw6`9_b4(jk6ckGxYgoeyd8BVwjjZgavtDrtU)Fr`!UdU#N1u!dV@^&qlJX`KGJOP1x9ofc5Nqh|$z?xGHMO6W>tmwff8UH-m;{gVp)fN9`=s?zu@IjYHPNijmn66!gL -{cSotnzXn@&7+LPfPWfM5ppg_gE2ixX -H2~*JU1;#|gSep)KlU7}ZL&4@?2B%p(5^GfLjw0@8>h@3T+!Rb4? -5T+}6E{gYxp(Tx*kHTfDj_beA>6X4jj&l5bhRRM;9O1kaiYm+%sYh0<8@XJ`G3Z -guD;Np+{Ez3Czx?(EXWwB2jT@CE?^RJ$;$Kx$Wbqj;c%cQcl1u!mWuW3&VgP3@7=AKLUc;X_Z^3r+MB -obax|!ew0VoK=Z}FJ{vx&Tcg&PqUd3iIrZrfUq&(1cRO|;32Vl`i`m$Jk!GYJlN@fm_8*aY4}o`T+bD -_$4X(xx}w$Ohf{xw!-*CP9;#m@)F(^H1+CF293@)1W10cEzk-=XI3AIG#aqYjW&__=9lWz%YLtENb~< -7XyFA7bd!F@{FzyV8!>iYT-nAsr0&NJ-l|zGT?UNe~&Y}HAWAYYiz^86_I8HXlYYze7b%yPVxFhw=VK1NG? -gbrs+!p9P`RzdZiX<9qVPObk1LJ0M&jvA6L+d2qB_n+eVku-st6f=PE|P>cu>i{i!B3-9L(hknSdg_| -7WP5Q#0&J!LEk*?L9nE1G3V$F!Ti8TM|zQYU2@GKP1E;aBEpf_5!BJ1c83n(zD6DXsGc8aEp{Abv`5t -rGhBiFc#at8PZ_C^7?9QpsL*i#E2+c+P!k1j0GEjN!t#4#nDmG49;k)}RithC45GqOFj|%v#>n?f7)A -CCI0S-1JgQYq8pQXw&p2tD9KAS~@Y*bf$7>=`O`C==>1uRO!~-F{GmSEn*2ak{e~gF&>yd3mQLj9{7di|hKTFsn(Kx2;H%Y~l<0hg&Ju_CPRYqV3;7F}FVTgUuMRmcLaE%d; -Ziu(E2Z@KJ#52M28Xhz8YRBYH`{K1-C$`o!U(VL -&|K8Rn{{A1f)}pO!1Zyik75h_9$jzgkfDX{@GY6`D0T`w6hwW##V4w}iay|4!VV*jm;GS^fS~3PlhSf -@j1#}VVM!qK%Z7BGF;eJa_y3mPx(v1azMt^rF<-5B>4J`V>6=(D8SZM8Oc@jYT=gCzLEBdqx0ZQIGQ0A>|RiGu0>Kn;PtpCNUq7n6|A3nU09vP`l8ENzMm$)x!K^= -A7=V*&@bC&SuKb=lu?475Yu!iWh$xVB?o&jp6@BaT_4 -*b#E0Wq@MN#~@x*l*JYR$_qQrnaKh_!T@AQR8Bw;ypz0xNXL|uk)C=WUR)2tbGVdyOLWz!VqmzKfSNV -m(d8Y-BC;W(lXW=x|IR%RT#W*sr`Ma#^4q-R@fW6RYoV%Si+g=4`;(U1$PvM+yZOpzu(v4&-)ew3 -sxai7NJ{c6%G-{W#q>MV!f-2u5}`;E4s8Dzr>mmP#d)A1{yIXfB4P?wK`0R@s}Ma -aBG`xA0erBL|{7T+S3?`zK3MQgxMw;n3Eoq4K4_$p;Kg6NvlgXY|g`?wf&ZD7zB+@iw-_1_0 -jnL^`w^7zvA{cCb}z(%1g$o;DsiBr$@5iMI52(#M82o>Kp5Git_xj3-lCR;_pf49+d!t^T0n_c$E!MS -Vm*DS6@8ma9AqY)d1B6y_#mSG$TE%I+s?d6fzTE6@k>xbj~Ov$H(6A8?B2Q@xZ_=7y%{$|SI2EL!ppP -)h>@6aWAK2ms(pnpWwD-wWdf003$e000{R003}la4%nWWo~3|axZdeV`wjMVPs@!Zf7oVd97GmZ=6OH -e&1hlN*@9VMro8M+O-lnZqtj?D3?~1YoXcQVRsrB=rB08EdTeOxxmZ-YqeF7wT8KT=k}d*21?P?Aa7g -7_rU755fZkflPUbd)bFpYWDO@(3LpBmqWJHRx97##>+`dpe|+;p3LiO6uU4!KC-N2GRVwUk+wiWb=zt -#UDRrHhiF7((WOi=+9pyVJ$flwnZd*DXe@DB%l4dkn8JU0e?X9F@kol8&ykIws+Z8n>T`xwhF3e+1xw -H#9dFzyZuO5a8x>w7_Df75mt=^K|4&C^Q;d7@ffVJ_@CF9aMP~Bd6_bDt5xSy*l1m0Gp>%hXtzA=e$b -QDFe1o;eIOSTkr*6yiPMgjP! -xQ#Vrx;C5LL5VawJ{`|vH@IM&5he%=ya{AJT$v84h(g~RNGcv`moQD -%-6Ka6)_VyIUT(oITv7nFUTi4(u46%5{`+FG%(nh6;`6n{(0JdkZw_zzdV_15(#rv*)=Zg -qRQ7^T^s%Pq@N!K1!M4n|e&x|u!HlKR>6j|-tQ|SEmRQnEpw{1$s-w1?y+8?)Z6^V9bXa7*j?K}c9mM -LRMjE5#Y7yfw7M)C)HEhCe%DTaFrGiFHroq#uo9W;u@qsGJHK$>{hHpZILRH?i+Hv{xY7x88kkj9z_| -HOo94>ScsvDhyC`}zM;#vC(P$$++FwzCwqZ&OAHCk#QwgxQdzJglmmO?yGiZ*O59_wzZ;6>eR}7rDUYQQ5pj#* -+S!J@C+!T7ubt5bh%X@0Z<6uHv-U(8v6P$%nnrNJL`Zq65e2+Uur#`{Ki6lspMwI#GH!Fza8_fYcFYH5Xafmj;wNzCMiVn0hoUi6e;Mv5SBel8ofm>lIhEmtBBuy$vn69AV2xc -OJ6I`9}kII*QMf8{#Bv4})mEE11!GTpr!*Jg}(<|D=7KkMEe5>Xq}-?!8h6#K59KD#kVBlEcC+3l?e? --~Y)+^FnKG8Lf8aUDZQ+JPHeYODRL)s#@y}*v&O%@)=o;fW>U~WUI{&&4jO$#2K3U2bbgM%>3HE+BJ*?So?&%i0BJW^ah7E4PW|g -`Ja)WC9_f|DUwZ$vY#>qo#JzGNQ!PGHa?@6aWAK2ms(pnpO_R6 -@qgC002A#000>P003}la4%nWWo~3|axZdeV`wjMVP|D>E^v9BlEH3+Fbsz8c?yeNK-zc!q)uylpC)xX -M=2PJ1__GYRlLofWly${5a_DyvK)|NfA;U+q_(C9bu6Ln2V)twyZybp6I)esk9;zfs3(TUq1DZT=}`z -#c8UmIRD(8kg;^oMog_(iiV#A!HWm~N6O+4)@W|7R!W65p20EEbO4!x+P#Vpsxc~=d@bC!FMq?0|MGg -**7_@rU5DT)k4Xp*!iEujgEMPxh*}xH@YH8@yh*f?qvba2q#MlR~{=2$;BP8Gxh6&s##H#DC0;7GHeC -g_bawycyqs6^KUJWV0>=9dPm7fEK6mpE6|CN=`eEpa1EAYZWF_4 -=Hr)^Pcb>~ig@ghHm~-K*}8>=v90Fx=L~6Chy959LL=6A{8vpN#xAonL9I8mr$lA2U%`vWk7#bW|G;}Y+Ef&T^G99D%6%Q(`7E)zS -(bNwQe@Qh_72wEky)(+f88~zkd42uYde_{nPEwHxs84FYBUK+$f16rcu4Ni+65qGLhL(bv^<7k@`k%V -*V(qRjpzrmw9Z`MIjoPJNq%2OqNBeHGE1D%?PI*1i^dQxD}`~NFP&KkS-C@F$zpbawRh0TvpO>&a^19 -$cxNd3-8Imds&$Xntu-up*zX`tXj;S8YEu755E>h8d0_C19DT)!H#>D5C;KzMM0Z=7m6?T;}r!Xc5MdS;rnaiBcX0I++O0AS-VV;m(@z_f@rw-`R2 -pn64`jLh*2s;68Ka)*j%O?BkL;3f#i!~`F< -lfkZmaFxGoj9oQ04zLAcGCs=8@S6Q_96|sF2z%xV)j%b%j8mu%0ODJpb}!G!L}%DOr-RE+p}1i?zH?v -B-4x8o3JeqY<q_6Z5twy)Q+QV>YiNB*j{8-(+Ji|hzg -&JVk@RilWS$Tog%nO!=zcnuIJLyZuF8g?lr`Yv<*(H!B?I&%bxbBHx+S<(LxuCCy_@JQqm<_cCWiz$MBw -WYp~5O{B-+Yv-3IOO4r?FyLO*Z^YRN#1^ohm7VFYB!1f+SpD!sKPim5O_a@@|q2A30mFVvgo-E!c22p -L=CvDC<8)`>>K4uJMgDv64q4%Eo!?2ulVdo%q7{Z8c6OaAs8GJhswv%z+wnBChdG&)i*of{rQBO6-DZ -!uQ%H$&|L3LOHl7SNtMCO#Ke-X_V0No17C25A%eZ-4__uMW=YVD{Q2Vx+y#%zEqF6O4&Vqmc`8$YQ3cI^WLjR+N -d*YwrG1>qrF7PJ7d~a$BGHJ4wh5hw-qj31Jrc4-O{|8V@0|XQR000O8;7XcSCS=Ms@d*F`PALEY82|t -PaA|NaUv_0~WN&gWa%p2|FK}UQWo#~RdF@)=liRitf7f4uvJWL~T8TY=(v+UqzH5@UwlmIUIvw|hp(N -;pm?AkOl)Fo(|9f}wL101fPIvXRFXe+o0*l3B_qQJax$D~llee8{u9!Go -ysbw8e#D1d|6Sa6+|WpVGmgH1`&|7hf`!;o{jL@aE~6Zfp>^Ef>c`yPXhRG+`#3HUdD`cXd^px}u~=; -CY8YU34X;yQiJ6`&Ns`yhPUW=4A4hXvxaF(;y;8l%$gJ^69Sv -4EGLcS9XAK-zrx@|wRcBk&miqnB}w(9wA^>fvAFrT<7f%ngDCcMu0t^#EPmlkJU8l*d-q1y3M$+T|Un -h13!2DJk0-R!Hr+JJ!uBV6130e;2M)zvL)8+I+4Z3`Bu`Bk;KWk7ilzy{joo;~TS0a~80U5kbxQeE^% -?!@6YT?KZW3iJI=Q7R2|XfNPg*KCkImzzB@+Tk;H8zT@sT#K#T14HQVuf+h+m72ktvqAjEx0-{r3^ao -75LCNY3iA^&FJQRtGSE9n5&W%OlZe#S$8RlH89lD-}h(*~!)nm- -sjMxw%*Tt|#=RQ+_&H7zz^2!R~tqQ|Bl{vSLZ9z6d0@!@38SB{;if;Dlzjg@l4sv6eYKuY>m*FdsAZe --i*f^FcCdNlS6oqjO$IBdvc-ymKbcqnFa(hgdr4ayLO`i*pG3l-iyC9;+*>`lDeu%V9usj+ckZ-Q<#R -H1&u1vz^b{sSdb#w>I(Nji)H3-eDqeYLwDv%mPJ>)Vd^^43)WYIP~PzcM#*g-d63EG@?9yNYOCZSMd- -qzf-(w8X7kd8qo&$1ZhzvI#LvBL=%Q@hEdu*i6VdEYgz;_KMwYO3AVrS(jWzXb+b`KWsKcGbR<+1bGe -qLAvB0O_H;OC9_jBZF${Sov8_C1yL3&WwjpCSyo`{^m!Kei}E8!6nYrC{jA+BuunJr7%$`g@<0ICaVK -G5bk+M{U0+Blo21;V_5NW*+5_HHNs0f6b1x6slEH((;JUsMvpck8cY4)>|ZGqkBLOM4GFNxi#46 -e-_#w1?)@Q-1dBN?P;bWgS$H6@#{{Pob835KTH^lzT%nPXm!c##H`xIb#(( -#)q*%OW?a@SSFk5+3Wz&Z3h7AQF1F`t|lHct0xeGRV8BuYN{t}S((#CQws?^1~o;SI@lObm&~(YRyhS -Ac99Pac2LHAi?vO|uQg9R%Rv`h5Hfm<=L^SDWQu1hYC8f2)3`O!e8NHI7zI{=hh%&ZJxr+@r?h(Sg2y -+RDNylGNO{=0hz{tcr;k6%>iW!v0wm+bZ#H}w$^pU)x0@#RY&>XBT_Ddwzw(Dp7b6T3Spm7D<~u*Y`IiZ}DiOjiiXR}_O!K6_o -_w}9b=G@A#4||F=7*ZZQ_us7@Pc?)BuTtKmU@X2%swct2Go$+6np0Q>MQo*3+Rk!1?Rb68xK%(N<@C9 -CdmF*`W_-c#Ops$*u!9Sx8lC^qHUFn1x&EdH*rB_k&+(j04O~gNJvd9gEK11N9A(y8zdVJF_5P;JG(= -Uy{NZkJW1QQ@*)f(-kH!eE8BEx-qcMk=2tW(ITkjJAG$iNM -a{T1a65EAz)w%@WSf3Qs8~nucl`YnO>;CdCXcK4Q!2~1Q;2^iG&_+!CdQo!5_UT?_?u;7+$mwp<-ahc5tG>xky#>^F* -lyDl)?94BxUEyK&lmgcP^2a*n&Wy5qR08ajQ321E`;0=|c=Z~df-UvdOkoxeNiVY#1amTJ^n{Wv=x7U -}u^DSug(=vkD`$w|!@+%SrG#fNkOvVwki>18fB)p_f;r66iu<}$ -|?to%s4AgkSW2m6t&mW$qPx>^I`_g(@HAQB&DVtGY1ChBeb$?ssjL5?PbgIP>H52lNDpX -XI)=i9jX`a(@xcmv{?hSYe_v?Y9fqF#okMuN~P9YjUCL0$Sd{q{_7cCO ->&ZT~z7rcNhlIy*Y96zpF*T>);ZD9lqeWZA9-V>UonlIck^3-LEe*;iU0|XQR000O8;7XcSib&@cB_9 -9)42%E(8UO$QaA|NaUv_0~WN&gWa%p2|FK}{YbaZ(xaCz-LZIj!!(ckqe5c)%?L{|OQ=Si=Xr;g*MZW -G62yVH5*s$nRJx}%RGRg&^qy}AG1-NoC2042(HJe@vaCT9v*01IHTZ&-l&W?R**SnTqm&C6z#%iqhYD -6(anS2k&tw&}7+nBS5-Z&^X28V&bGBi{}m*>g5R&Q2Cy29+IoLRmF -PKb+ghZJNbn`uRI6Q)jR+vQOdCpV#7w|DzQ!DEBBFc|jYrx0Wwvd_bE@!JU03y)5O>73PA@j;nJ6oum -Umh0SNf;4XfoA_sYd7`Ym+6ARaL0zm?lM4ZFM%jCotEo&fMn9E1ik&$pWTcWu}XzI}YVa&Vb5aW`(5^ -{E-w{sq!xKi^~H3hdDEKz&QTdCM&?VyX~F<{YC!#F@K+z6aC9;d6T8huFec0%AcF8)ctC+_lCOP!24* -FuU#sX)2KQk2h62eqD`4G=_W{$Yiv5}7p?@G@t0lG=Ii~BS$kQnZ1PVqqwAu&?xxG0N@|m-K&B&D{vy -fc%qP|2EiBy_{yD=%G!}Os3!F6Bp(u);US>F_Ymt^h0*h-P(Pf>bZMG8Ed3z}&4M{?rLK!MsXYH;oIg -zF1$|3D3WW~q>u=%k;4T+ARB*$@a(+l!Ea%y@4@A+caX6FDnkLCvb@3U5MF0rm^?1aQccEv-M*QuJf2 -;wNP?qslF#QB_!sNstVu6l{MZ0PW~0t0PR=#;47r{%e@RLeGnOwnFunrjQJdMdfXllr1LGqVjXiC8rU -1IFsn^{Zm9sI#mjAtv6`y9^QPHU=zP?3!#fkvu|y;Cg{66-yvVpn8dw>Kpxg2bk@}1u^eZv=x9BRf|2 -$Q8EFCZ3Nb$V4tS#@)Ci8e+$XPq&zFdGKEH)Y6HYgwE?B&O@pr$%qFn3QapXR2g)yT$rZG4Q!GtY8y? -H183t*Z&>STRyez9#1~1DBC=Pf|y2-?B#-$;^U`~=yMT*5f(?|vxYO!T+Oxwtdt}?6Ok(vBLI -u?i?XU=3CTL^YI{a>sI?!No`cLR+vH-Gud*ftuu0#eYI4zDGJJrkxtJhS14601I0m%>GCNpR_I?Y*l> -le#qC*RtG|+QsYeHp|?7Jh%EL#DE5Gexx-PRfCrJ!2n^>SCFT1Psdxu_v#`jVLzc2uG-isK@~e -G2by;k@Uc^j)S8ztuj7+1D@_EwY(;^MULlo7vY;T{Y --5v-=O+tg-tOdCLs{xXC~v3C?IjR5L^A=K{c#%%aGqjn#s~o^6rm=LPCLP!Co!0fEtioZJDXdtl*pD- -}pGS4dLJ($Bx#5TrD6P?Y9|eixZ$46u09mbA2MSic3N6`Y%^Wr0E<9#3n+D31P7Mn)Ow(wdgZS__#7s -T)^yLQ>;QaV}J_C(@)=@6+jYJ|Fp7i>(~cDa9Iw17%*F))@&t^isfb&)%n~2P*dht#pvApyyHZiB=av -nju3UknUpaCr?b_RH(Y5h<_Dh$HbUr>@Y#k<*s;7EcvpEfE$YgCFqDo{bANK1i -O8{eW*2!fvaRLeV~0oUT^pAnIte@2lBDyX<9szq8D&Z}KY4dx@H)uHsHfy$`Iz@5Cg)40wP8_INR)^l -uY$9ZNo;{dw#Ju8uy6CAnBfE5%K{EM8Taciexw^ci&B4VsMRI>yl%SuStgSA@v5;4q~Q{#{6`+T$82$ -c`0Dr+MHyLyqqA_fI`u>i)Dr#RaaqeI~OhQ(|%t8(hF(Ejs`6*paKnm=1MC1kydGG^ -fxNA(fZ07WW#8AV*9%#a@@x2{6>~L)T&);q4}gtvb626ADzo}4f=jVyQOq!{nQ}|?l5_1b1lN<1l -Br=+Xz>;6pT&GEEmvGXM(|jLDj7sod!Pb(Q1D#WjR=(pk@NI0J-0yJWz}NTTt-+q*F&$E|P~63C(224 -(RyILt>LROPBDsMDa#1LCt*R0FZ{8EMYE^ByO@|JrNz|0RNta)&>GkRsF#k*S_blDrnZatvfAwEI3<1=Mgsg8)}~n4Y%Tv-?^?Vn>k_;OdGlC6zArQ_!NBBtd}B -A2g37zvof0vwFrqtIAQ7SbeYB1`Kc?=pdVoG4LQCvRV%3(qN+`Hb}@ -ShZ`nyA~rn#0F~3(T$~H`um7>gfU=}Bro$8v=qzDQC;aWRkpj*VVvAO)nTC>Hx)i#O+sAn40m|}_R*x -v!+7luHw)Bl-C(v%#~Efk2UR7xg^VrftVmugY-FlMH#0$lF<+I2oOD9Rnr+% -Wn7fheiMM^`4@ZEK7%z(%uxkZ^kY;)A?4TzLhuOE<*U=5dka3C~-4C-Dawo(ZHy -qJkVz{^{?=fgkFu$ry;M3OSYbyNn)A2PHK>B&u+J7@6!zokDySs3q{#XYJ$4DY$GBKn+U9th6Hrpa^N -r#SQ7$=(yTDkWEEi11Mo6XoFGhv81k*fr#x=*T>bvyY9|%|g;KR&|1E_?+lQ?toJqkN%@#c@!qL -_v?t)eWNO$>L{yqx@@a@|3!T}5jQuCO+>e2_UoitZcWj??$U__+tG-A%Xr*@{aed278T^17@bKtoWt^ -q=75Db1UIIDgyh>-Po6$|eMSNQDyl#q4LB#9CP94Ws3G1EQdKieo|W(N8Y4W5bhB8c)^>`cOlHM5h!u -{Fut|u794o@}EId>b&4~0A_;CEB20^QH9U+8N7Dq@Y8Fc8dN2oAm#CC*Lf-Oks`Q>C|_~+(U!|Ed^L* -YR$`Bw&fK3KqH@_yMwgJ6+2!Sb?8_~(4i5&Yo<_#V`3UmQ$SY>N*cBPii-fxCxZLgh9RW{WU<6x?)4b -GM`9=}#}-JbC`&*{jz;$})^tt%m7UwnqjyN`8Fu^5ydv-@CA}JP^d_e&XS04-{!GkT;2B;JCC-J4did -_ZWX9i-Z2N*t=fcPH?_uf8KT@#pZk$F*2ih6l1M29Qa6iS(7>sQv6A~*rBa8VWY%c -(M|)ICy3AhymtrpR5`N09ateEH>nxkXpwqadZMDgl*luclP*daUfypE+&xBMd)L_y6Lnx!#W~JmUos4 -BsHCZr+6w*!_9`|uQ3X}{ZqX<8gWkZDn`OC|^Sk+m{>~>t8=Mj!oG}mqs)9EJLrZo(X?H~vnwNSe`Fr -il8!?S2fTU`O`AZ470RG$Mox8g|6&i5*)RmdWwTTtj6PFi>Go-`RVB>|Px0XURzI^k8%rnavF3u2u}g -)XlLxHhc~C}uS5#q^hfZbZ3@{57IH%z;294hj@3u)4$W!Z-Ilnib@+tOr@NDU55_!4( -`+GR^)Cw-uBLft`l7I)GrbZ6ONfx2C)(dJ|A(VW&2>`LR?wPL#C!1J-T}n&j=E_!3+u;<`YJ8>SYUj> -V3>$KV0zO7Cpz~XK&DOaJk|DlW -ZY5&X -BD`gD$>Kg4(cIL)4MB;&(NJZiYE{6U>#mZIFRCrRF9O$T=lZ5^NSoBG7$u9xXn8m{V+Y}$q#sx0>^$PryHb -DT~#s)e>`^zBxQxWDJJdu5|1(IoIeQdZ)iGeNIB6d>s*1)yDJCNr&eV)qLHO%t6(G%8*AE0Rb?DrY)E -As790+4;>>jFYjJnJW=#jfTmD=@>Qm;?Yt9{Rm9J}B`g#sb9nP!ja&AKKc3%O}(HD -i#283uFNZ6GQhIhv%J{=oW08exS|3w278)6rFmr3C3D0@bt`g?Mz;YCXw*+X3yG(*Fon-Zrb-z2RZZ= -rZiGN4Dln_;qY9M~zkUz}@dFC(e{;)#O-Z?Vw(8k`e%o5t^8bz+bw>y2`U#D8X=h{% -1aBl9<&n4FOI4~tz&og-af9R39Z^1He0&(ve4N;Ls->tnR!0`O_KPNRXIvErwgU?`cDh<27d6&EMJFk -87};yNG@X&9zRheGx&zSLcRSd+xJ?OFV#tZxJ(LkPtMp+is9ox*lEZsk4<~lEj&7W)ZtYK_H>)&j*4z -d*VQe2}_O)*x#@DKQkR}{Etxv*jvBQ8kUdf?h26B$zzpsM3?eeI2wN5HRhgx^+HCzPlIwzydQ7@5SO{ -{HXE(GZm?1*$d;$)#m#Gg1az@GV*+<&G=+Mhzw0SL8&)7u^1z=j+#hnYdrhrpqj;U6RAc -}EY$X-n#``|vg`&}~aT%)WDLA3(RJJBIJM`P3Q8rCDb@ai9XPy#l^jtN0|W(hddR-WcYrUWwlT>3sR+ -ZFFFvc|Jq^oY=+<8xDQyaeUj|wzOA(u*(~c_(B`k8H(3hR1Ky%s@fbGEc_o& -0x^7t&GQL*c-$Wdrqz#c?-jrXqPNfsE*vTzybD0Nj0AnazUhbOZ4$qQZ>U$xmx=XxrphVfREAbMKQff -%WzW+KB8MyoAGGjruFzoH%TOsV|xFaI(g)pYFdw9q>*{N=Sp@RwB&nwd-d1(IF$<90C+YCGYF01$U&I -NH7(Yz+B9v3&XKuFU)PVfSTcPk|$N4~2aSnaRp5UMHE0U$y7;#ZJh#&jp7e}sNZKj^r?c(n -8W*xLQhXCc1hnIK*z9bWB38pIsX5>sc_fdp)W>JXiB -n&FKwGB}@nDINcbW&lPQwH3PvNAuyXUk2}o;=ToSNt8aZ4m=WCZvlr4uU%=nZhtQzK~Hnv={&jvE4Y0 -XFZL~tFjO!edu31=!#ySCYwLsyc71u0CSbH?w&2}RL45F@78-&X3P<>Ler6%(U(~l>-?&hSn@&9!J7S9%b3&1Is%@S -L12Fa_&Lf`FzQhN!bm^^SWr4O7;XI1#?=J!TDHaEi{#_Li!aV7~4&!Su~waqp^zyMql7ow7y5pHDGAtkM{e>(ZXgf1@&c> -1cP8br-V#>%;RKDO=jzlHg;1GEU|gBjKSE^@=^+#B^DuqAtUp-J4nPUYPyQRRv2>Jc?%vOwcrlB>CjI -I3m4$X=z7?{3j`*tGQiBmo-k5Su(t%%Z2)Jo=;2K!6p)}3`rCZ^k%o!IBnU|Rki1h5hIHykUp}nmo{d -FYApoA=n|nb0JA|f~B|DEBuG6cG!UyQ0LVl5Fh|z(HnqFs@RsP`NqvU$EetTWK&072c|HJPpf7`6qn@ -#zCn?L&9gT6q@ew8+i67xCYV`CxYi8!X}xtEzb9#VYNMrNml0RjUG9*oEchFbKT%j{r}(f{(EH(OzRS -Q_~i(^YA_n_eru+v{Ac#F7hlCH)0m&E*&?F1|rj0{fk0IJoGvr-2^7=zHPU^-S -c*Eo*anD4f{TgI>#}I3d;pz^J!S -mHpMCtogJM0nN{zApTU^*ZTos=WQfl-wSi0jQ-LPtctSW6Z9*j1Z+TYjWet%qzTNSw=kxSy;)dP#@tp -g|qucwr9{M|D@@Q6Q>6~?xP{w^IRX%`P?>}aBX>5)6qkudT{*I_^3ejG7YDYpF`zS4w`F?s2x^4K+Sd)so&-HBE8yC)~)Nr_-R^L~zm*ZQ^6)r*G!rI%b$9IgR*J*?wl>po< -0W3jwEOnv-OlsfgdkV8+ki#m8baxX6+Fkb*79YsS}Nsc1VksbeWUUU)mSeNWFKwAxiH2UuN-Mi!WEcI>KMe9 -<0Oznof5Py@Pb7ComHW0IXkLEpi57kQVbvG?))0nvc?225Bq)M46LN9GbH$xrew>P8< -DG$<+%P=fq2CgUhu>J78)qV?fAlg|N$v*g_-AzsA7 -e>@;;nxN#fxf5)v~D$K_=6azW}D$6YaY$lyR+Kg3Vm)gwrTD`i%@ywG&Cl -f^V4_}=g(k_$b-cyJYc4OqP>eS+t&*Rl1{Op)ojnY1n{A@EQw* -J1mQ{V$Y5oQ0s&|y7iEenn;WNFgF<+#B7!hCJaCTy=!uwK)>(Q~xQ!QYr&e7jKC&)?miFZ8b17(zZcx -Kk;6|vtC;)R?KK?ckvQ$WSs(J8DEL)Vg=zBo+SldU7KBn66l7m)d};$PV?@9wc^%ILrD^*`;?LMG@pi -lUeDgB*J&>UXhMRj99uww1kgmo5U%+wN&Z8j{n3)oq-zGp>FZ_IFv6lHu -C(}~m%sg;I}AtPpjSMxh|HL=UX6@YsRrn4@&PQX7%(evSn&<7^0H(GI5d2n4H^CrgLy<@^&-)OIGbgp -W2ZpsXPsA9yM>>imXrp~_G)635Xe}pc4Keqj7;eQ&JcRnEZ1p5hmI>(QNi#4ojqC{L`oiE9q#>2y(oj -B<$a}MLdPs|PYa>9QF4{ko==Lo241HMPFE9ruvOdTN@@KKMC{muj~pkL%m2Rd*fr -sTS!Ed`H3W!mIDq(H6nCHQrhD$_YzR_Y%v{^zboieC~_iu={E7Q4%4dle*WqA%UMqRYI1oA#3;aT}bs -gtruuyys=+smngk%tL4>SvkW2sR_1MN!MGfTL=tuk?Pgi$GGgAz05Zb+Phfac>w3ncWEWMvcR`T{W!H -^54TLd9>I{`I-w!88JKlUDGtQ%RRgu*CtxUj`uJ3Qfhw{&a8}fADo&D&~Sy5Et?^Ru_zUb@>;AaW%KX -~XSK78kcIT-ob<60GU -)l@6d}N%q@dUs`+(gS7RDKZdFbolX-w1E9j_S)Dw6(z3#ST9LMc0__F6dN21hciPqxo%U8AMBYscdwn -FQavv^~1|_tA0jRr{zU3XPY4=e)`pJ^Uqz{o|v`T)p=UtMHn!lZvH&jM|t%obTL+E^JvM-&?p9G4fW{ -EUpg+8z22tv6@9(=+d6Oa=2E=glKA|4O2h9$KZVHwA%JqJkzm&WuzS95G$n$@OOpz=h=nB;%+FYrOZgP->#(WAdLFXfODKUn{y!~5mbFq!h;-g -wM;+M7#MK2PPanx7JP_{aPEi}Q!y{QkGUfAH{k8_g@!ZBraUYAeRzsec1dO9KQH000080N_fRR-4mge -qk;E06OUa02}}S0B~t=FJE?LZe(wAFLG&PXfJSbZ)b94b8{|mdF_4eavMjI;D0_v4;&Y2Xh4XxXD==o -+g{6(N6T5uc1W6a>@gT%6KIfa0^OMIhA6B;7jaKExIt6Z+?rc28Dpya1^)9S}=vns1A{dSu-6}+|w^QK-V`QQAF&UKWd)$yjvdve3Ekc~&gCoRiC1C%npUPk;P2Z;Mg#=c-+=@M -AIiaaA-qHiEM+^X^&~m=@(ieO=}&{S}}2YfVM#MyD)_>Z-e*T$fd+GMJ|S1Yo}}Z=mY7%T;Q3-4yu@# -!P4W?rl+ZqvX~1_4H3b+fX=@CF95xXhx7S! -nHC1VEpbff#qP#7PPyd{&2L8DMK%;}43isMhUDvzzf|{OoVI-d(wgYK7f2LitY`N3%w>FtA0E?I|nMWsPpdp;NW0#3Q3F -;V*_k*Iv8opHH!>@9uSR6Cb&*-conDoN1^0kFnFp~f6~Y(`*cN2OU;G$6y|@ayCUfNgtb+bp|alJnWy9B7bEHiNFdn|yxX! -Va6PF!i|BV|}>I%T5=@AsFKan|cl80%%D``BDeEm@E8A@a~v7*?>5Dt@&MM%eo-NXryYCMxvfW57ICw -9Q50^DUN4q{8BkFqRPze*eGd=ITX9j-ZblCD3=5vQPHS1K`1bgD{tVTIc&cTBAx!&6y3V1D9r)-j0ogq~?L+0YUchiDCo}aq~-sTID-_7cQzLbFFZm%*%Fx_HRTgd*=_h0I=!WDCXokK -qChI`hkP56Yj)HA&)pGi6ibWrd2?swIgS>Klr(BZje@v#{K^M)Q%}&s7=#_0=MOxT*pV8h -jzLXyT{=Wz`i-gX&dO~GbT^^^6CsK{~YLCdtJOxk-qX>X0!*_9@8?K8|@QK5edAiQ$}>r16S|C&^QhX$dS;qPYBI0Id0 -7m~85Gatot|yDnE=P}O5oi9qHg1!Nuplh2p};Gc`cdQO`Q4M|cVuYx9wAyx^fzUQ!lz>7hYKNvqb@HWOr>Dn*_!XiL5(JgliV2=8{vxA4`}j5sKY5&_Z~y&6@)4?@(mI% ->nY8++_tj0HK)O0sIB7<^<~a!OQ`YjTTw8MCE~M^+-AWLK&o4x}!yXJ3g{?GHaZgb?S7CzT$KcVC27% -j$DCcP|ZB7GDJp>nIts()nWJT5OE#aWUF!M)9z|=Q=+F1L(gm-f~M`R05c;g0a$GWJX1gm+hyq@i|{4 -1XSrU|#3yN4sd;aQ$z{>q7DbgH!%h__PG;y<3j|fr6}8U7rSV*)K#tWS-yp6T7Rlm^A-oX?uaN|CBCv -c!R$zHnkGkZhs&73kw2Sr?aXx~;_R#O-X~hHpTZt+8@Ep4=i8jjg$=NxxNwO7VlI3T%M*D<6kZD!z0c%SLn9;wZAkkfJn -fn@Mcb84(zJ}Sw3dqE>n{nvAqSWUOb!yQkvyXl;!1GtdGA~h!r^*$JeAPnhZm)}KqT9+GxGg*sV=aV8 --2^+HkJU_!qWe`QUq=2Gkg30;aKFjSlTFl&UZx*LTgZJD*#Ur{Xyy)oYWZgBuj0ZP%Wuo>+KS?)$Obi -(O0lG|S+L&vr`OJi7j8!XjwDKF;@K1Bv$zZ@bP%sV1OmZXs6LINLg*qI$^~l~I6-P-YiE+>(z1I5Tup -%lmedy5uO8h*kIZzPS2N@)U2UX98b^)ci0~%~t1<*yENWN`8fG9Y^a)5@0J8GKM`%El`oq&%h}NL!D_ --4<6H1zCu6lOZ*2FW@)HWN7OI9A=0>XvTFp8L6-$DH^3a)Qj3xlQkW|hV?2!GhgJ_+) -x}8bPBLW75!x`A6#U9f`UU{OitRS0fs7TRd4SK+K4}E9eM2R4RokM#@Wx9jv{CuRumVZzy3Ib7D-f!{ -u&+1EdRAC)AVh72hPnG7Rr&G`kTAE<3c}(+T78F(nId9z+M>9*BN$UefI$gm4=^58Ak{JJdhsCP1ZNl -U^zb-_#FvYDdZRUhqDLtf{YX?Mm?19HXSbQqvRXCuQmd1&fqB#9n^CeXmUXjvTNbw?IzU5dJ^3PGx>H -_NbyJ*G_2Ih0FSA2{IwHxuDQCsGslJMIk1D<#2G9UU8-xSPZgzh6-d91VE4RbAo_Ebn(5SFWiuCxsV( -1?~al2@c>_w}(f#;T9H;8ekzMQ+%vh8Ven_kli%$*zEu9qp`MGB1{aSg+G`&-)q-XVHa|9CX$@6E2xT -ee?sHcpz|t&y{EX@VNFdOmLp9<@<|Z1U7#!cj<%SG7NG1d4&^@_mEn>&vCG8~_J{1>bCwyJE4}f0Llx -9`!QFjsoE(0wym(@`@d-rvoZK@Yqsy^qjg!&}Wm=^N~Jn#uv$_uDfzkcAJEufHbREt{lY#Ixs{{z-0{ -#d9ImS$N?{(aGu6+PLj!KAE&aDakL;H3%_h-{U)b9HEcV+P_;OW;om$HC^}xR{Pk%&%ze|H80prHROR -~Uev%nr!hwdu{=viP!^7#r!|B5vPai(vI3Q5l_fov%sbPzjoXAQ^Y^UXj6hHEyyZdqc2`Uge4QN$~T-!kE2%kSYo`>EK63KsFzj-aB!YLNiB%5RiWAPV+4al~fUtD=$|rr;C -?4yypt1q;{Q58Ul_Ze?eBHfXv5uoU)nptbU<=_FgA8`AxAs8y`zJKa{=~C~Im}5Vh!2{Yqp#5h-d& -b8;-W|udC_FMOlxr)(ZhYPz%*8*JIzO_c2=nR -8NiNO6nTkPvs%x#iZ_~Qw&UoxYQw8+>a;;o||)HOW~P%KmGQZwV1#od1WlYg!#6d!Axpe1? -0&fnj(SLK4O`_v$9*kD6jdDI6cBH5xh@wo;s;yKL6czDnXvwJh6ZL- -QxQ26=$0a802h!R>t~bT -z49T%X0mqGw>7rz+pq{I|;oTLg@PG$9DSvdjho(y1HCwHlCWGiOU94wH+7a$^a@eQq28uAzQ#RjYO$3 -D -+5D0R&CJ$RRQqLWeKfsHYzo$g^>%uZMZ8qRvVGk<*tk6s@ve2 -K`o!lZ*K7b5#Ua|Awy->V3a)GbI0Jl)Y~o`>=E;7GWn4sWL24bks&2MYTjLAJd0s!mQ{3=eW#fGit^- -aHE!NqDtDJy6zkkCP=>_GAp5E?-l^92R2T^g= -!!A4P;y5|mOMBgU1}Fo||slFn!k0wS%8dhJdI`{QHC26N;Nra*2ps&obr4A;mVE}^3y3y#|9|A -~o_gAfzPi)xScHHt1UjWU@=;8b>Y1|c%WvzD3TTMR=}klE|aF5 -UXKmn7$ikWBHi=|09QiU_a`W3Jno06NJj83Ye4qZTMM7KwL}+9xUT$lLd=oQ5iSeaH_3DfPInktEoz^ -m3iakDbVxgQHo@&9jJx@fVu=Zh2>yzS9F-vc1WTHo~G -{>1E4lr6GA&4d09MYG%cA?MUo$3F>~`6r2wD#c$}b{H`t=0J)MYb+s@~_v$+TkMtUPNM^EUi!zmuUea -FFU_T0)y@2le9xD4uDcoEhF-iFY02K7yAm@P9;0j)g-o@bjrsdAD7(4Z7*xD0?oa$+(DhbM>l-#{}OR -y##Cy2)rRXApi=d|LBW?Fz;aTSjq -D7oiAJN8HZPJ5gIV~)h!oz5PR+pOw*+MFPUgSE~hC<;D -7sD@M$flulBAvvx;;+WyRF<=1Vo4f00>a*I#9FrWG)@frD*yPmWeAEolLBZ&+83GW24D}w$$p~go!lKJ4hEpReEo_~1HUHAYK{-oVCI3L9W24aFS4Dgn8bk@XSqC#(%QRF -V8l7ZNI_u$1<8Ag=H{Uj;gYO6Jl=^t&yS_k)_ezRl!vFf*&+2AherGOT~V55Bz3KESj9%YSDFw24Hgb -axyj4xlFyne0DP91O@iW)=lT%#F6m0Z{BW~-TZG@@vK%~Ebs4bbGU_W(D>8GXU-9mb0Lwj}#^Yu~+U3 -cQUX`K9c%5?flhV0iSu+n>o&BO2oldIzB|^Cz6#>WR&CgWTl!Tx9X)eNJ7@7Ma;%uD{>)_W((&LnOm} -+A-^Lgzk_Ra*koO*t(6N`0(+0Vmh*;0+VlWAiEpV;(hjb`ga%rQrd;xdIHiC*hp#$ooEvXln8!ZUnFR -KIz#7=>#ke1Cr_SSmEHCF65%}Q{xVblTrTR%C(FErWyc@dZZ=-oW2$9Yt-FGJk4WzTqctnvF6$Y30Hv -lo!%^~|k1QcYLIh=0VOz#P!^{Cb=^kpUJ%Zv65bt7q#R+f|3f{@lm$MHi?^P4&Z5xVsK)4zNunk%NfTvVfg+%)A)XB00=iF@?QrVWw9oNaJcI1103%G*GE#!bNn)V -c~`M8yXVUK<`vRhg$A^2aF+#VS8E6e|V-^d}m~u*6XT!qT+58k1w8 -*dUs$;LsWRFYCPO%C0Q5lj&<%s^}~_YrO+Dsx4`2j%RJOgnT<+GOG(7rYZ0&!06_!t4%D}B6bB7DOuI -G*pYfp9$gXEsV!DHUjZ082Pv;Ul|?p?HYl1gj-&7C&7N#MLsL;0b;U;2@?@~D-Mw$$W%`g=u)qFxZ-$ -5Q#90*bUa1IKu)Gots>rk7NzLFN1}+G5%trUDbWN((TXZ$Klzs5tT6w=0z&^}C)O3dX11EnN#PlzAMb -4B@(I9rN;W-@bT9M@8O2kD&mDs44Ca}6sz8rs*y!iG}{Oq1w)JO@?Mp*Yh!-y(>Y|1i9{;B+Sl)NmzO -^R;%Nm@*&YL8*QiwSYx0jum-=2Z5pu7_v&V!B=^ny~~13Y$Q*F+xM`v``%Nj?mzs(+E|GhkuvoHRP)c -?zp7F8|gxE*_lkIvX56j?bEl=*Y9jV-r}f#0$jyEFZs_4{_}?a{KS90<3InE|NIO5IS)Y|AAR`;&sT5 -@L-<$h@D2BuyUV@h&T?P5tK8F`j!MOx+fk6JrzKvWiUKswJ0WtGCC7{<#|I(iPDt%4>=Ocop3TZzpQO -25`eZbIZ|eRq|FBJ#(s=6$aq*ob%ww9%CA_BEY^JHARM^aZ43SW9zp@OYqT~|{Ot5bK@qiK^p1e1uKO -|b=IS3(0RhS1h%n$QpOg{pxzX%qtVgpIuewsEsF8`2Dcq5uiGsRx9t+xH_b5P -euGcM3l|gAci>T(Qrpa0@nJ*xf4g@{UNI2c53zAN?+%QNvXZrS)9aEl60C^CN|0!5TtTDN5+9nS*&Xy -Z;WFZT4obOGY6KFa?AYS-i+r-QU?d$n2W-NX@P0>Y1F|`m<$O&!#CHZae!>urR%aFU+NODt(XyR9@eN -^tk)fW)Hh_EP|YV7|4k3%1v}#Uj{0~}FZ-*S5kYC>^f?G7Z9OeXiAzFIhi&0QCh}z|t<6%x$6@VIt_e -3llZK9$Xau21v~#7Mt>|@~8ix0|=fXn19Za>^g6^ACdXZr`yty?1CN}1icYU)4Wv+7u4wKxSQ9NYVKo -2V&)nBj6uiHYbk>}wy7dmJI^DU5b8I6hV4p1QI(vRe{!rPuHX31PkEBsYu^~Gxa-q~}E1koygXA(W1R --1Do5Rj10n8%*5)59i%`qU`{K){z1;OVu~Aj2YOP)4h_Wo}SQT{~cFCd;wj@p7ss<2AgJyX-Q>q&LN? -;pbsLHqii^VZl+>=4!?Y7zPeEZuMQZu3r86jjLCyXyfR61l!_=(;m8oRRc!gHOp#?@l1Z*RW`AA89c` -u#?D-NZb!pzGakw;^5x|$KY{O1JYDARKo-uB*&Fr^8p~Fye!L;(Bzg5c-$}!D*{q|WI?8E=o$qc=5Qw -|Y8*@bCY|pDw?(J%wzKE=RY`Rt?_j}n3KX1wqUQDF$uJ1Mc%NA~=UJX~x`yfrvVa -4s&exfd7CJYMH?!)9zQ^)R^exZhaVvWkxNizqJ2=UB5H -TRVk4>3|JIHaE-AF&Rxx5ywOP9;t@5$&ok3MBxp}MyKXzd=%Bpq%L-Y&}ab-lgB7h_mo_gRZ6KNGWw> -6Eyp7}7Z6*Nd>Y}fwg$#{iYbV&o4T*%L5wgHY1&|%0wQP -!KXcLaacfSD=RF)j=-v+t>QS=kvO$;GdJ3*HjI{9PT3yEBK1(%Y*#5o`kK>nz$;(Fj2VcCQGMD#XFze -s@Y!B6+-{1Xt>Gl&7fK(!EKH2Flns!8aMVr|@}AhO_%O&a^ydRhXa9=%3i-u9@iZA^3&-;|&fY{34DN -skHY+KO_KS`beX&yY+N*Cm9a9uT4E`tD#ORZc7Dud7~h7U_73fg}AZp4_b=b35Rnk -Hh{b@%XekWaj~KpYKJ83$bh!!Ka_%89k-j>60%ZbVHl0l1g^X-7YnSpH*h5dyHv3S+iq5`yS?LoDw}% -DrLCT5k5hryfU()sYi>bRa2P6#8bY7i$izVY;<{C7ew^M?}=7n3YX2?It|+G019`bxx(u;rt^!0l&CdHGp0~)| -UAORae-}Z7vqF(xPeZR4L@&2HL7^QmvqIBM%V`-gQaJ1VnWOpFYK;aTjkR_k*R -(J>(86Zv&0o^F(ZrR0LmOs{yLkEF$;?ukO^z)HVs&<81_X$gnhs8bt)VHiio%O3D8OUa9nD^*<=xLjW -z|mZhu<@QQF&vnlDC;gd>~IJ%gWOW=t_WfMIyu6?<6**51+az;{uZh({v{QPzkw<=q4P9;LWWMufLaT -q()_~F3DkD>{&&yYMK88Y51gBWanD -h`_^3EaI6&&v_kP_Y;A(uKL}H|RjxgK8vHA!O%OLaK`!mC8$h>zqGxpbpEz1m&*l#fh3`d^;Lu(#2o= -rUp?UtndNprS3D}D4PuDn1j`Pjio^U0?h3cnfe7VL0oZ?N1C; -!7EFP()=N{tWdU -4prZKzTV1Iyh#wz)ehHUN$v(K~cmziZ6z9>s^=cZ^`I__cVjN!-;mS?pD%;FfCPQCxW1QX_GS7m$c^O -h?grvADwfR!y9_uDxZ|fZEWn?U?m6+?t9R`C8?3zl$cvO;{qX|3qAb~18VWf#4UxsYY -Rk|AtEVdEDH^i4M~nrw#({&3IU90G5Y8O#b3+pyers5Qi*>;|Gal>rOCY_=^^$oQNAGx9bhorO0GTF* -5W`A6RVN_Nt|$UM7==;x%TC80HKPqs{axs -kSoT;=>O>{|<+B-WSE;;ZL*B`;&CZ%2s1a6hy|S`dcB62VVh%*wy(hF(*=R+Wpb~TkH-_YHgqbHD3G5s(*;cXyp~xS^{Ix9tT~Hr2Hd9 -6x%kq8X|?-@!*B<9Uzp7;9t7zVi}G3o|d*HuL;Nf{w+@mAd+6N?Sh_VQ*Ls5+S&2XhQS -8)xHsbax>ZDg~8CYWq}}E?#2;^uvNGUs}R!AnSy;jcI!3f8(b!S+KzK3W+~M9%m?erH&O0lt7nt|)kc -S`c2!IM=#@`;dJmc^29XGyTXSd^fxPSFo^Kb1AF -71Ap${kb57e~h?^4FTPJKePYFp+%|$-`>6V>Pi`H4}Up_(yW2+iwTobtkyX(tV~Iza3<`k6XVbf_>hb -zb%S>?%Tfwntz@f!0$r>IYkX`rEV)6nd`g}yUcao6mqroRXh*!hLktRY7t}&7!X=x&^k{>b0vuijr$f -jxSd{>X}-A4H*L~fj*>=%z?)Di#*Q8TQkPZQ*5ql!Xn|4MnpU%Sj^>`rp%egJO9z*{oICn=Fx9V-a-=E}T7E~s{W>QUKI+ -)@80?mMQux?&Y@W~rIa%{)=5Xv6|TBm}j*~@c}hcKPw+rp$VPzAWBw_K2;ipbOW$no>5b%hGhpSfv$K -?Cq7N90f{tIRmiB=<}&WO9ZkW?&y+0LaYHXF9A~S6mz|LXjk$KKXIrwvQUJZTKUdhzr)P@JHh6g(6EA -a`yL7yAmnGg>FdMZ%Hb=C$;Ps?k?`5rpd>0Ai7BK_Mv1(+~7yCo1*2}o4SWuOPdU8ySypRDY=!Xg``$ -0a3$UXdcn-p&ycn%8g?ktd!8J4f#HgZ`2>vRVd$F!FHX6s&-VA91ry$d#90Mu1;Fv6m(1zNvmM6=fWnQh}MFhl#8QhQo65 -XeKaiQ17#f4hn7t|fz#V#&(MwNE?j??FQ`NntKttv0-aa_;klTZ$CvBODA!;~2_-^b8BzyF9?tXJVAk -}{b#oOx3einEZDhDP?0YomWNL+sr!?T^|0&4#QfXsK`=^>Ug?Q-rxkeD|hsFJZRlEMA0$*p*eC4eie8 -2)^5;Zxgt|WJB|wFrRN6?-_zWeyoEtJgqjpmJxtXf94%oy1w`^KLV`Z2YcCS3%)Qdc(Odmf+Ks}wIeIOrkpy0J9#I1tYGmZjDi&kdrg{DJvM6T}uR!*nR7x` -5`499PaFMOeR)cU&&sUy(C5i&h*A&GfO3Yf>^RVptu3U#DXo8m9)vQc(mY}{=w^j4^O&y-F?qrwe2^Q -P_~Aa+4eIU6$bcbUM+9`dI-V)x|6$)X$=13IhGulGdBKyVJ!W2fZhT&#?{z!S00e1Hy$?gS}wXR@ph* -2JCJ2~y|GbeV8RVKmeHJioc)tZX7=kG&x{^pVEJkvr_2^#UM}ZFX#zGvN=S9xW1%bh~B@GVbNBKC@n- -i8IO%_7VyH<_hSfG__C>!_AxHJ)Zo%--&Q;R1G0M2SfdJOdPgNMLD9HnaFG^{FfZEQ2=uo)EWvRavu= -^9{g-3cDrb>T=4w`f*=wB{9zAD`##3>QCpu&rao!_BrRZ4C*~*8mrr1t2b5wDY_ewV_VtsSl$B~_}r$UJ~AQ~xlJs(!%;7 -ajaw>Ypma~dkY`{UwywuE~!G|JOg*-$%?;&u$lC$n5T2ElSVeAsgjoX(zG%Dpf|{T#@4>5YsM2~W)pq -dQrrJF`gpGb8uKHI#E5&#sR^(`>3RVnH~U&%qN#H-<3yM1<~ZtHr2-V`K$a<1ig3kxvyLN+^Z$TVOSP -KjhFAw<1IYZ%*Vqj`(r>*Iz|D#fo4;ce3ms!Fk0UPc9zD?-9n0A0{v*+#m;fqRQw -7{*Y51B9ih!G+pX*mdNeM+0pus@SvUyi-4rd+8v1l5%(#0Z!AwOQd4xTEr0pT^L|1*uoLqorMLZt-$0 -$z9<+7OJ5!Papq)tFJ??n9+9qc+211mHj=!sBA?YJ<wKc#W!D}|D34n_NUIwa!o^s>;_TzNUNGN(@$m;%ZyY*d@Y@R} -6(XcGZ3;Ifx~anM?*JWbE4HSIhhaJq*bMFuzi~LAgZZ(4+y@u3pM7)_ -8v?p_s@dPzFWuI)C+007A!-Pk}?8J35lC@VjF6~md|7#F){Bm8KZ -0_})f&JWpbTxVIPpr9QIno4o&kk9cjn+H$&WeYGiGYf|5ng+M}{#My!E>292mklPsQl7zT(_PnwuIFNNPJGcYR{gWyM -abJHzwcUCz$7MW7-T`^m+;tU$kzq_XCU)1Iv4$f|lXajvRINHp -xOLR_w8Iz1;o4#7FMfQ@N_fPD_FIPVpihUG&W^JeVY)6Ys_?jtQ0+!o0&Aor4<>5U+WFKX2Y#TLuA^F -Tf?b&0VTz(nFxPAAKn`Ui4c>T!0`#q7=O|mctKQ_lE+0pp#hCB0rDf55j9k5}H;C4|IE4)47I8Y -h$em2HG$Vs3&1BN2``JEno{|``00|XQR000O8;7XcS;MkZn3kd)Kr4RuBp`0X=u8=Ui@aHtlYLVCEqrDOv&$uvFW?AT}k4s>f4@a;;--_B|zT -o3bx<6G{wl8p{1iodnex+x{miPwG`qp)&EG*JSFddJ!S7GpIW{3FVk=WP4(8_$;a=SPfe#NjdXM5$@WaAu$k8}VGb!0qH$^JLAF2U{`c9ZM%Is-$E`2Y8P -NAWKcih*8uXatfub!G%t{Sn;`dcHuoA@*gjExX5NHy%jbbUvd$h}XbJ=?;sGeE5Khe)vGZGY~JIn&Wh -o41D%TWhDp)l6VUd<%xLPVQi>nTGzB1eKud0u#$l)ZL6r78f>GCh30=OIT^s`a6ThWqAfN6^JI#*LVa -~E_^tlBXZ_R#CW_EuxERe%U;G3a)?G6M2oZYS5mPr^!w+=#QZc33aYlw-jsmB=RDeb!@Zt;X1uuuU0c -{~NWvtWQy};{(C*)4#(vENn32Y~LPFx*Jvk}%LM{f|6os}xK3=k>wM4S!#qdsTWLv!ECx -SX|G}F#D(HR%g>s;5JQ-2&RDlxZo)(6M6&qm1ssLg9RoPZkTaMJ>VH}cSoNHpJ1rC}TE>3HCIY$y^2* -U{x76+KSayTaBLMDX8oyVq&VKv1n7-QD3t4R`?)B;(W%e0d*?B>niXny^R#JXuu$H2$uG8r~VUc}lZO -d@BNWJf7;=ms%hm%6?Xt1@Ld(ax);S;}L=pC0Z!Z~hkAo07D!E?N?GoLQ$s-9E?ce_g8RG3MoJ%asE(-{a*DwOVI48uM)&-brb=R`vGD(mep@YIq)FsTuUcaa@L5$Z6Rn!(yeOI(xNcD{cPL$^>=92T|tx&8KN{nit5>};(`aZMQ0p -=0_V%E8q0eAhxlI`9&ZOHwO@(N-CcRtvie{5*G3pNUqj6HMe{q4Mk@SA-X4mQOLD2QW=>?_{IVT+!ke --UMQ^mu4so(j_YGn_&m+ZN}z#2(S_=|q*ocK)e$&p(A*lMU7~x8tyHbwO9C%f;tHjZiXycoNAUa$@Xj -d~Fp3I?6C>Tx?h=@%CQq_M>7m4A)|3WC#t^mWZejlvC=-YKBRze&j -F{`Mv5`rmuSY@@lpk|AT8z!M@_RL6zX4l`I&9SY^8*&W3~0+DHxZ-R?ln>f7ivS`y|GEOSa+zdHZam- --&D8$Qj{>mCpcEq_MY3aVKPC(V|`bX~a6O={YwI_S1LqD~>upF6}aN%vNV2Kq#O37aoK -+W_94_l-+;=DKfDelXR|Z>7M>u0A&3p1Ikw$9Q545Tl7Q-BLihjW9UM(5AtW5|^Xzktf*(c)tkt&c(Q -LL@ybX#_+D_Sc1X2J+kEbei0^HiodrgUPMjAIl9$19N<&@=`!I_qn!%x=fJu!~Ggm$jfimYIw}A*K6ef^{uSEXV!>?`ukWwuf%&6i -%~`L#!m5gbW={JpzUbjCr32ozstcGUMeo=| -{Z%P0S^W=CO9KQH000080N_fRRs?Y8S>*}<04FQ}02%-Q0B~t=FJE?LZe(wAFLG&PXfJSbZ*6dNE^vA -68rzQBHul|L!D?TmLaQVXc`?>$v)O4IY_|#0Y=Ocs6k4KY)R85DqGnOeefwR#H>z5Go!=KMIC-bTslAFQHdvw(441JG(!G -;|n<+Ihiw$K#8S1(Q4`>lJ}d6h-zG+0%g$wWsPh>E%AcSwjUY2}1-!20JX~*X<2$>hc{Mdf<-5&PgHs -q9b)%)&-y=6!5BDD77y({MSII+g89bl>YBdN`R>eNjL*K9=s19v%vEds0O?xEhLvcdTbuyw&eL!1?qRe72U -KeYB^Dw+LUI_dSg0=;a%cY7C4G4o=Hr<{!28(|T!c7PDz|w8UOA_z9uJMk!Xz3o#un0)pCHuUtyV;W#wcbTOZ+jKF$$ZI>QLf^1TSH9~m3V1==` -9X!HvZfLfO9f|uvglk>@QqOCqa2aes_hM_UCR)9qt3x@wk7D-HX)38h0Xbv1qvE^`%GgGhzH8>nAgtl ->M-}Hvoja0P~#GsB!R+A~`!&p`IN2GX7G|yT}YnyGhR_i+eL_G$Aj2A=Fna4~)2TzKoI#COi6YJp?t?Lqo7RziKc~usiH()}$~ndQ)Ii!!%)~H>LPKo~ynlul4K|)i0)P`T -_fgs8_cE3rn7HZ`ncv%r2%peo>2N&>xM+s|FJskGPzaoY%t0VHqX&l`RcrdhNSjwhiHn3d>3lMSEX)4 -X&V#k{aQRQdeu%99l&+S7LIC|0EP}YcMDnnC5;;^0P+o9RK#2-v1j`+RI6-|NucbX~9Bsv; -S)G?W-Xk5(FfE>s2TN6{BAUXZG8SW6G68m0LR)frvrn!+q&Yh||ilhHkCM_0Gv?8gkTDJGaFRM4dQbk!i@jH -u^ga+QY{DNJHA)=@J@0(!yyS&XM)-Ug~kAkMKOuLz@JJVU&v6jFcD2$Me&{ -9@+pZ@qD$ROzl$7M9_TeQ3iw<>{tNb+xF|#4|4>q(r?MXUh8`XF4GP9Okkczbi_ssQHbTDzk<0WwkpY -GJvVO)yB=p^KH09-}eJG1xGE(*AMMtcY;WgL-N)8a21kF#pmFWmeFe8oZad? -Qo4w`AE3wigD%>6)wq$8zo__j&_?WFkKaW!aOAy1kCV>O}(meNH&Jg_$c~12|Tqn|udUJDG0$PM3?=t -jaKdqG+_G;H!C@o|luSYQirmz5vqm-ycmfB64_*L&LK!JTG37^`c_TNtURUJ92Z{B=2W0|kGbFd0P`FtTS_xKy#YUjpRhFt|u^AA?Yb1i)DCTkhqV+l54WAdg*8K}H`nc4Etu1`i74l&JJ8;ILt4n2tAb -63=H_@*-xq8`ND}JSPp}v%UYb-6}>g9BbF|ViBJ-K_LrtN4=16>sG`PI&njQSDS|A@l)4byXD}}q1_{ -2dj{Q?qDtp@dq1(9pXGT0g0;7P-=_B^)(1?IP9Ne)L7o8A04nlwfrLVPw=_Nz#>1-qCS3f*;#V;Bj>f~@}e7CG;MpFBK@cCmK-Pq2MsrnvO`XwXl!Lk1=h;AX*EwW1cb=640PkH9xpgz?$C^!x0LnCr~ -P(BO$P=CCp6av>YJtX!MHlSK1GwB;a^soBz@6@6aWAK2ms(pnpRkt`_nlB003_V000~S003}la4%nWWo~3|axZdeV`wjMa&L5RV{dF -OaCx0n!D`z;5WVXw2IV4wt3#Y#3@Ie8Nlc*xCzle+vXVyD+VbwQySCBacUH12$u@;n7#mCPy`A@FMuk -y3aJ3e44PvL2aquMT31r;53A`hHef)Y`u=(p^{$u&`B`7>WNUJe(9Yffx;?@R%D8}en0CY7JEp);TD0 -5{JBeF8dl(eeCPGd!n(D1avk6L38u$SfY^J2Ape}zW~!;p*eh(>Jgr(f@<57oxzQcoYYR^^4zM}>5gK -AXyJH+ez$AP90Ss5EBI%28Hgwq+{aQ1LTwG=?wVAXTbrD<$6CLx7BM2`vzIyoMB^)xjLn8dlzcKgF{Q -y1kJQHGljiECuAa%*H29z&aD3QOZEcEqBgbphCucLX3s~06xWeCdH=!+K1H5sLx?`a@M#H$H|9%5=0u -L;1qD^HGB#guPQ${UA;awZP220NzlkVnYEprO$^x4sRHT(Xyu3@NUR=0T12a}Y9by;bv^tjePista-h -g8W_x4B0julclFrxv&t&7liyf%L4s&LaN}whAqz%H~G^lhViUIE6%^(T8-W%;qAtbS&Qc5>c$5PN)U0 -ZwSqY0o6iGLsB6l^uC-SMqt=uue$IM>n?51VOw?KP1x#wFW3o)oyqWiH -p%U}RaAJ9!rBuxRAeO4yTagMR{whekqojYw|eZBFg8f<;d}Ccb&oIBO&hQUCo5P)h>@6aWAK2ms(pnp -W4>(Nh!!002)B000;O003}la4%nWWo~3|axZdeV`wjOWpHvXaCx;?OK;;g5WeeIu<9XFp%qdT=)tWPo -2Cg6G)M}s+hSoD0wd8jyD}+IRCZm%|GhJ$C|i~kXZ!HQhnL6z5d8O^@vD91&TG-vJE*;BkTOO@`r^;@A6Toh -l@|meZ(me7)&zq6NF$Vt32Z}dkRb6PHJKb|5JVy(yCR{Guy3#5lLj+4*EW9bt)>Brh7T7L8RaVfdB6x -PAlvKgZ=ZqQ0!ih1}_x&qD7@iTCWwlZ)C!f|#5UMrX04s!1OY&6nA}5q6K#D;Kpx-$+y__uxt+foYqM -EdUo1@qB*~fR}CV -N8ABoT#TZiV#N{w4J$mT1DiA6T8g}Qj_+XD*kd_EMKqI0_)yWL`J%%_%aVy4=#D$K6tBy5@(xx^!;`d -j#~mXg;y28G)Pg*fuD?yh2k -Gtj#n!25)uo85`(sWOD7vv)TQ*sfwv9 -uYgu(D_;ZQs$T_pMZrWyN5atwNn2c8RB)UaxW#kvu)^a}!Qc5(Vv!G6(YThV>p(Zf%=|>!F^bU2PEP}QM|s7LMz2Bhmi -{f}1OIEsmYpF#zmMNph~7D*Zqfle(?Pwi2`Ad8wtBTCCp>6xGZ>rbH%#coafF(3jExP0)o*S+*J3ABT=vC-M)i{%kAb3?g+q@392@eY|Am+=$gR?6-e-yKp-UW|2MTloB?l>QL?$xO{Vzgo)@znT -3Bnfq+Ds(|XR=?4FR&S1DHn7`N$V$@s94Lzx%&~N!)Of}O3=*4@GGO)2R#j50GoIb;_Bvp)##4w~)vS -99m{n~CVf;&qb8IX<-VpRjpe-9IPPE~G8RM_Dt;qyfYV9JSPOOMDWp6hk;{pEa$y2hxF54tO|Dk#FPd8fBAUd)wWskoXb&LVgKjJC5yS+fwx -)FWtoBZ)U#vX5zFF{SMS|;N1rJZs>)ApE}-mNz&+*g0_6qxs^+O^O~t`UysXc*0$0u>zk@&T@I3|%G^ -o*fjQH@lYPsa@k@J~yB|Lc3f;;au2@$yamD1mRpZv*_QO#z;kJHfZ(s8R??#IqqjE1M@YnWs$2tcg)z -SO@QQwRUiXD`D{sw<1NwRLKlyJ3g83|ows|4^$)ASNtGQtE)-{Vi!LoMhHP}uf@f9N|!TM!5Wq~#sUi -o|Tc6dP%Q^rg7c28QytQikD`XYRe3A0bjF*B2QAUr)e?auD4XsHAXIh7}x;s -rCTF1gS}++6uQRMvCeS+{_D>G+A>KDhi{Gpi?Gd8=o`b{48}yP;R7&C>7D?ADq}I>)gj)mcy;LnWtF- -Bd)41)YrCowG?b%BXW~p-)~Gaxbd6eJ0)O=aL*<*TN@wwp7KKxRttW;ARmD55s)~4$Sli@rl~*vYGL# -78t)As4%C|zkg*Mbh$m1eJh=zFs>3PmWo+l(EEst4Sg`KTU92v$egY&Q8d*sW@mN!$g6CY~^U&4hq(w -CrIGWeOcd-jbGy&%!5A@a-voB2@K@B -99f$9vf|Q#=C0-ui;u-L4#^BzH(rPfngT)2}zCKfarj3jr}L$kL>J@__cTnI~hu=op>o|?lO={Y-HQC -v`UGWbW4?567gfpS!weL#Vyz%P~6(cXaRNPc@s?SMF&l4=H;!A9W%_~b{4QsJ8B%k*V}5Gri%u0V|L} -=7PhnHYWCXjLJeOZK1!>e(rqtx^iY{+$*GZ9LR|UuJeC>?j5s7J*PK^<*B*f)ue!psoC_|E5y`R$g|# -TQneAkd#eqrPYP#Adx-QiHMY}a4-jkhZvvx8om3 -hIIK~#PyAp!U77>i%n_g;mniyRtZmv-9e9ce(B$0>%E^3L^9@Cae?FD7B;A*7IIr?z8PV_7Rj-%AoW5 -bXCo7p$)2fEWn>LQ@mAk)NWr&|i3TvG3MYvC4@O#YjFM>4)X15ir?1QY-O00;o!N}5&=h4m|R1ONaV3jhEa0001RX>c!Jc4c -m4Z*nhkX=7+Fb7OCCWiD`ejaF@ITuDx{l> -YaQB-^rg6R05@Su>iKXJ#I`)~bP03BgLsl{6XMm%y7=X$zle+j4nW)K15q+hGK -c{dbPbvJ?Itx^!@YuD2EyB6%$PY(>f0pUt^aE@4r?}lKwp21PsNB1kL7VF?kEyl&`dHkCN;1kZ3h=GbGZ^P>YlNHn6{9;kD8noXiOsQIy_~U-L0n&rEHCB6Eb|m%kZ^J* -!tw6N_tL+fg4s!USBnw&weHVYRli9#tDS@&_-Ssk#o~11g9j{oFf26|n3JrZJ1d|7QocQ6=&RsYyj1f -b9OKS<={Rrd&0TSRMgoHh4Pxh!JJWoMX{7heX(>2h`F~}Z4rVZ>_tuzC=-)r{7sY?S7YmWh-2&9?_m5eUk -^EPU+fBsKEy=EVb)txNQLO}-=Hx8QDYUSNNFxzQ4>7k3>bX}y!H&FYpNNd^9um1m(j`DLRN|s^7T#bv -sEqS1o?4Ws-w6v-)>O6Uu!fKfUdqL8wa$l>9qZuj}NUdEXldqkzygubbJ4a+05^_x9yU(9W-0vokXQU -55g<&tW5=wRv0!-_7M^vU|CC6@$Q&@9tuq^h7V@O4Nqp#_5Mlv{S2d$pxu?-o_9fUh>uIV0+ -Lwd12>FIp3zEqrXQ$BmURF0IB$K~s4VZ8IWoU2_x)3=wu6otD}3T*uxu<8x+CDwie@C~$@9vZrF)L5z~{6KNX{P#i2+pNHgtx`JEygUxy2`wgV!x; -EwGMRA8j7@5#Hc$&iaU}Ot_iI1gj^ScU3vO(o>cSo|ZZ}TbRSN4AuF`NV!*v=y2Kp->$R{R*fcQ}3{U|331d -GM=yPP5o~HZC -_^PbmWmng0g!U?1U9Z1i&I@6aWAK2ms(pnpQtG{;pC2001`z000^Q003}la4%nWWo~3|axZd -eV`wjPV{&C>ZZ2?nZB*Nin=lZ4=PO1$k&5yGk*Ksvx7(`Hw%W~0)vb^N2CO=^Wjo!bU*Ewt7?b58fw` -PHb7t&b%QM)kVqySxR#IE|rYw_!@Dh$czTY>8&-aI~UmhQ_te;{lLx(dJc8-4bpR?0mIbB@S$MLFYa5 -h{@H9M#Gh7)76EMt9IYM%if)R-!BD0g}=`=#g#u1JaP_HY;(?^Yqz -lIGPe7M)9wVRo1{j}cC!{XJk;NW>*n@R9Ze#X!Om9;FC~*qG-QOYI>~>4b=m_Rus;Fxxb7B8Kul3i&R -=m|L7OZ6ebBxpeajYR4{y5~Vn6$rRX}WrtZODLICHBHVi+r@Ho&yr -rM)mUmDP^`P!rO|#GwQneOZHZ&l*0dIO;@1RzHv&U&pr&Et^Lg$j+QKQwqbB+K9OO}*SJv6Fgpsmgv` -8#KRfheen@y|d+SNd9<7`E2eFu1sS4vQviJQb`&6`kRRqLWUVrk*1)Cr;5|3#@e6V$Aj1Wad+O1(8gs -d2^24T;jXR=eL46zS@tzC_Bmg~Nr1_aI6z5=9H=DN`X6+z2A*tD_omiu^^q=sb#dvnx)=x$2Z$M7$oG -nl91O(E}#pz3OT0_K7A}M)59j2V!z3J|rNdb#Q4?Oq}Uw{{c`-0|XQR000O8;7XcSV^uN6G86y+w_X4 -M8vp=MwZ|8D=^#-1FmS=&K$eTic(QzCQ*$nr6h -S>DTW0>L{q{T1TX+-nLD-n+xH!P0u7RqJgFozs7fq$zkdDt-F+^rVikydy$aG*SyWAMnm1GUd9cKa{`a^yDw6=iiN}=uNt4_^(rF8sBDuf1RbZEI*G|BDr3ds^+3>(jt#D{&gk(wifw9)>&ZJ -n^OMuE(iG0!SH|y8!tp=M$LppX&u!-ZYCnEjULjZxv#l7@hsu;OysiA`32*S7WZ)#FJKG|S*QOayRWg -*6b&U6l_)juE=9f0no&@ti~9&GBuw3GGNFL3@W;VHx^&q%p-$w;io7mNixd7iQhzY#>JjvpC!*qB4-P -=i!I2SfI6yK6z^;Qu7S}blZmJ?fhK5qbhTQ95FgP#r7iE>^4T>&UFev<+h&p(<2SlU@i#W?RK~u$foy -Cm^nj$zpzdB{OF`zjheBVsZ&VZEH^yB3C^78cfyJ>Vey?%Fj4&`4^`S%xZr|{zs40JXC=n^5)__LcM-v -7k+zj`TqFw4VJ&Q%fC53`HQOf!mfCG@!!+v`XV~HID7Y&@cqG4jpaPn>E-d&G&((x&Q8yfAFp}1SJUh -0{pmT-6kVTQpHa=9L6lO6C%|whB9oXIlbKmEo{#+HBiRaMJqqfkn)d?|2>cHq=Fs=oTCc;Q)Tt|Rw-R -|18sj!9bsUtbScsrl295aC1P^I*A3&pGk%I0d0a?XZp{Rqn5EceFBOLXrqh0*U-G(7bRdMFuNAIBZZ1K2$klhd+l$MqDA{89 -H#=c)Sk}xAO66ynGrzU7of{|LXaa&nCoa(9wBt7z~20f$SIxG=YYX9FTEyaSB20xURvoLinFnRRI%~_ -bH?sxq#da#sc0fxEGZeSkcaQWauIvEOIan0gdX-!0z$trn -^Z{i7{Rc47##v}i#j7+)GD^VW;ENZOMZpwQ1lqMAR1R}?^z9J4vlwz+<0&>wO$nvotbw?)62PgCf{?2 -$g(kI}mVv=R3Y_aP?aEu2QCG@O%0K3i^jTckmd5zA7~5C*r{F$!@NdDlaSd#YVKh890Cv6R+*32G?id -5df*uz`I%Yzt9-=oAcp7zW$T8sw^uCYAJB?6Pcl%LqCJ=cQf7p`^prvGKE-==UU1&3Ktl(|@L4bbd;( -?&G?s(D>Kokys$_Lweq$v!iw}yL|ZJ2qIRIG_!8#1;!x4^bd9t;?GohI4?mN?+)(BZ`~&A*s<;2F-ya -#~WOWsqWN8AaQ&`XC_^g7;!Sq7r9i>S*FOH(Y$E8Lxhuk=@)_{kbz!o1sCd$EQpgCUAN}O%8-6%wxAX -&s(opA+4$8H*qc0wET@&#xRv2EXY(Bg(204=gOVl7U*b8i%0!^Y}Qc1ow*=&5;EI|J$?*7i1R(OP6$ -&iI(o7>=-RTgCk@1#Mi5!v8b3UKdhNjX86Ne55bq@094n)6#eWfusp;|*zn;`c_P;BU!|yXlMtbHpaK -C@%{Qy06bzJlg*KAFBCp6UsVSh^-3q;dC4)$B>-Pj~KK!f(?hBh2%S?U=s@7Q(4YTgM`?k3I`qUHZg_ -d$rGa(tInxy<4_bWN+cft)nOm>gG&`^S1IbW(Y;i$JeGO6^q#@3fDl8=764a3H}4LnB_JKHc>g2N7)> -?Z(!xZJe-RUg0h|_%+N`A>1pnDt)=Hx_D?+-6NGuvs}V2G^IU%n^PeU~KP%gp>v*)s^yn!-oalITU -9GK}G+$)vL_|tHwFmCePN(H&2=9mt0hz(SgS$$^Ji&)~K^)wrA7P@;gZzAfO#zQEvA>1VO-J^3BF7DV -m}}5pvfN4@^9Gt52i<+2H=?Hf5YkFTxI^jAbbk#=6grnU-=K^VaFwlTL!5BPg;vv?MkV32*G2|5w6T} -rP9L%JhRM0vJMy-@ZHtZEku$rqg#NkQY@GacU2`lnE8So!<8Fm+qx4oKcHF|AgX8zJI&cPyezlI=rvE -t(9c{f7NhG~?SBU*H82os|3@O9Qk>n|uz!Ch{+uTpIB)seKwvu6wLTYT-R=WQFI9Av=wg$KHB7=-Mbn -$(*kmZrUZYFPC$=V`PC&XEf;pYi$6tY_Vx$9U&I%U8)ue`_z#EZotiHzKAr9EzJHo=F_2~j%hw&Nru> -a+;l%3=+B?BfQB3_Z@ucDG?~0J_#|ZO~Q?4>Skj5yTr>Pp3sF00Si(?p)kbQOfD$hd7aegBGiKm0s@j -ZYW^Y_eG^s03EZO&QPSgqL>qKn7?^zg%Js8EXK9Nbvue#JFV+gs6D^62ipoM*vJ^6c8)G>2W=}=$i57 -GyR<3Erfd2NyNsj3VKAeZ7YyXSDx!R0cQ91>`Fs!0(n3F*m_{ON5&o5za0^2#SJw%E0`cYOt^i&+bsn -~NN1#I3Ufbn8A~|eh`BIbdLkVFl> -y^O6EWz)8f-nEQwZAtU?Q_=Z+M&D~9&CrFkN8@rD%$);HyF8RtE|P@?%FI36Vt?^X`LkLl~sKom%>P? -mSSqpH?0k9ecaM3IKmf%!0W8Q*a|~gG%?25A#XVEzxc&rEHw1!sge`VC754q`)xIwAqDR#xZ~{OUZi* -T5#^tQ#pGUE-kU$q?`5)pSRpXN}I?oIXKs|i5%zL3kJa(^FTKZ?3;<& -RP#jC<9{?N(;+$}V65Hm5HdDNSZj7>0gWMiVfr#75zH}vRziEx#W?KjD%#cCCdyfQmq$%eI__;kcXj+ -T;%ECi-&~rF?z4KcV;otnRw4^Jw-ACAf^uJZ3mv@Yead!**VH@3IWOD`g -JG*vG5s8Ra}K+U$9kJOU6on7+&uaqS>N>!iLdwM_AMUrTHW#)FI?tJ@7Be-_H4Y+VPZb)``Hh7Jmq|0 -ppQD&t2oObjqwhU&Q?6&Z5x&BsIff68^4Jl9{aE_{#Kg+mVGqUrse43y0K0%El -9X>8~%eAZ?7;<;Imb@^V_hEavXJ -c}ybb2Tu*GJZDkYEb;qm7`d(8GytSH#xm2||*2b9R=qyO-v#pk8B?qqRtNiFn+VnZ??v!tFUT3El71@f+&4|AHYOL&m3}@ENGBHi6Vw_K>nIoZuB($QbForM|FO$no -y5idoMo+wL*jD~n)+^#?;fT5h=7VomGBZIalTiqo`n0GDz<;($zB@o#I#h|jCyk*p5WoQxHlje-}iyB -G5j@Ca&pFCovm?+`$n-yH?7x=q|uB>1u7S~&Qrh*xF^YU~l6wCu8kiapRpx$yu)sg+~f$0*#l(;k<|^ -gn>p%`LVaAqLsXw=(em?aPt$N<`2))8X@X3eA`P#}x3hv~2r%CniT?^g^&ux6#q}9>t>waq>NuZ|H|~ -HKqs19hcvq?`0&`c()jf1=aEfy`Ya9G=A+lr2X|sssDhQeg>pHYZ^Om?yPY&30UZ->M@3)K3gN&FU35 -KH;+&V7*Cf;`zyk3C3u7a>_5P^;QcKR+!yU?>lr&*hf;6QQE-D;DHl-s64l@u-%Mkat9XO&&#h~*Tti -~VuYPTcb?^{_>d-CyG`Fr9K_XS-t08olMn3c<@9{)Yz&VQd)w(AxH>u{^7H*G|M86nO!)TfZA#!WDo@ -HCfKl=f%GzZy6@+AvTBBiJu^)2XA7Uia={F0bipu%Ne&jJ;JnGu>JyLIPLHO=eLX+2VxsV2cdzDqbzJ -gQBZe4TS(vc7@+PN(%2hk9SF=jw($F)Dd7#-A+>?}T5A6OUOFFtv0BRTcHU-9|Gsr?a;8oSD&h1TW>< -lSe*A_C4ll-PDb(NBUUuj+MUErpc#QbKGna)k-AzMx~KdF3}@O{iep2yjz-4&k%>4oDOt7|FYyinJ)=ZtWcy50^3OF8vt0p3)Y=01^;wX0?s|t6sRLPt34Qj%Pb#OLn@?P?Pjai`t`$ -ACLwYngit>1caR9>TAc|I?=TS76;B!i472mDm32o;U9|hY1@ie2=;H -B(8h{PhS5;M`9k`wcluFqw)|i_$kK`q-tAeS-|igcqc3o6MZSuZN-`pBFHEhlpDxRaNm-SLbB(rk8p- -P^flhjhxhnY8m3A3>NJR9E*s5W-a?Qd9?a4?v!R~7Oy@*)ar;-X(2u*>+UqhF%6*g1oHRhqTLN1< --G?~v#rTD=$&^W#vtk{mxlD<3{?aUL?k66S_Iyf;(aJ{JCz|A=WOZuk{>wgKnFy?w}w2Y%HTJPNWHiJ -~xyG-A(C2r=^^w{;C8nbDyC2T)4`1QY-O00;o!N}5*4Dy8FC1pol^5C8xh0001RX>c!Jc4cm4Z*nhkX -=7+Fb8u;HZe?;VaCyyFOOM+&5Wf3YOjQ(>wu<8PXut)6?V=5mZiC&;p)d@AYg0B6nG#4ki4pX_cZQVs -kiA9QKjp`0yPQ8#j5Qn}~1~yEa65a^<`+ILhCs|vg!)`u3x{p{iTF=66a^ -LhRmy4qrK!xk1p=tzPi1=xw{|a2hQ|S@lpDl8y>hcgMwj?trtJgU=;9A#?RyTY$lpCl*J72=d?GS)Ln -3N?S|#};Wnd7xZ`rm)g9Nz){G-s^x@R=$elK);Ow3TR$(^Vv`lNbcbj$rWLfqS1{i=zabUDoHM7E(YN -wqV{UkeZ$hA?$0&eNMYrJKyjuQHl*>@729YBfAz8YjjSAv -(6Eg`m*n;dcQ2~>0Qwyhnn$p|=BFE_I<+5*-Jnt1`uS;mdH9d9<@NS`m0<3f=-Ncql|DoUDLnKUviPhEb<5aJFv4OJB -Py3V-dD_@@o;O+YcRR)n>eMS@l}AY%DsHBD*C#Wlf`C(F@vMKxL~;54p7+?NyetTDqK=h-`H%T?Sm(S}nV}YZ}c>NRN3nPc`dfzh#Ekqcc*7a-F!S9vJp4 -=V1`wNe*P2jpeJu+(5ut$jU6H;w&W9N$_^-!g5TO4+~T~?l8-X;w-x1p80CgMHkf~DPe*-iftZFR&jG -wGPb0M$LRg4rF9eSVDRL^bva=VDn`lkMFH&)wicd8!RBKXZ@_v=+47peyjgZ_m`$CM}D$gRe+sZ9Y_QRNiye8 -MnkWj}`(^Lbn^1^jTay3!DEePXH$o*kR4aDjaEP{4Q4a+yc+f(VF;eHqn19&H3!F*`#qDdP*kO+v;X$ -C-Zu^0~@LJ!fm5>psaaL;SKc(WQ{yFs`m_sNqg(Q_A{ -<<1|V<9_bUCEEXE825Sq1fj!gk$dRaQuJP^PbJhQ%@%1Qv<>uD|{v{1?>T*J_=XK>1aUiQNYpaNZYudq=E%b`*4s3x`g4fRnuEKN9-6!rbr(4eZS@Lphj| -Zv4%h3)ag`P>?j^ej8h=eWPw4>||eml>YMd4w*9DRl|UL|`TUX%G?VRz`dgr&Vi6z@}EFp#U$lc4b%!~JFIY@G4UJ{13j|M+Bwr{WI(*;=Bd+8S?HgKS!AA5%#SXr| -F~;8@+|xalBor4)|7zTFjU*qVpT?1AD|BU-Mz?}eE=B}4?#Z)IJlDAE4q4&QEU&3!lo|d3@!FE!19D# -zBp8~wlo`=2>j`S%$F^e|+*zOkeIYHLI>Du|6!Nw#yV9x1&Mn>(#9Ald2mnz+5D>b9-|zNlr1j1wDT_ -@d4HG;$GFIuVr7mBQVf8hzJcHDHT7wZdAq`5~j$si4s)ZKUGO?1KqmW_~?~6;1I+AuId{+(9Z32WYnz -)_z8vq2SjXd-gXdtaIga1%`Dr^nvVroc>s*3hhR8{H&B3+x$N^CW2F2DXZpV!aIwe5o`nl&m_`tx~4R -!G)lX%cp{tP{5K4JJiriOAzbtdL>}1cA={44r`>5ThltRYXEzdZ;uc%od}fDr2ALqOuZ7?P0uB*`g@z -gh|bp90_RDQk%|^f-NH>xdtrN|Je*zO|?=DG@n|x?8ibLEt(XT=5M@sOk#QbDOM39?l~pBDDTH9fXj3 -N{xpmXRK>xSqjxNoj%MiHkCvEKkWDd-eN5mfKof~aOH5HF9uFGgR{}F}N8Ff$(bk~NL4DKH9I?$eQVU -+l_F42qQf@aV-(b_wU_oALFV`}0pB;D3+l3}_%Fs2qI&pGn6u%U%JPtQ=j!~OQ`rW3Fc7?z|RTQg$+#fIH)78pNiPpkY(t7;>fCG9)6r0+K!w -gYY5k%oh|m=%aE|C582wlnTtfO*vjR-iKOm%x^WwD;%*^@Twm2?cdwC%b3DjrXId+>CcFMyT0>BWetp -sWTt;c805Q?3GE!&&5>CXPABd$2i=)1f)^;aeXvm?&P|f%chF_aVjjufD4TnnP9_N3vAE^jt*=mEdXE -^9;)Q&6b@C+NIcz^w=$on5D7LavxY(mT6zGd3-Mb4L?+ -6)!wG%f=En(M6``K`;u4?wCqf0SO9`<+(3B&7a_DCC`To5&DH;f5+ubqY@Lzvrb-v=o@NTRs) -8t0ECG~OhC@)_Py1GfSS888b9qrTA4HP484(IgE{%wbddMlHM4eQ`g)J^TxdY>208a9BDH0!T`3C;)5a$|#v;AIU -;pW)WLETbn~nH)&hv8N@6aWAK2ms -(pnpVCzJfo}@006;h000>P003}la4%nWWo~3|axZdeV`wjPba`xLE^vA6J!^B@Mv~w4D<<5k7}U``iM -AY@4!7cUw0o}8Iw?uMt1CrCL*!6I3<6vLw9VD(e*1Ozya$7aoVz{O)~ZrvVy4mE)6+Bkm>wkAZ1bXG< --R;v75Rp(cG;rJ^R#4%=t+y+d=W3!T=Z|^qFl$R>Rs+O+j7LxJYGr!MVu|+AK8yjNmhxjYQIggTh;X{ -+mG0f$)XyuHx)19o0N~(SyICDPunWVvp5~G%l#Hw-(~PPVvD$}4g{*P!orIpFC^*lB2V)|^}NQ1k@)9 -l;F_NzsBE~{mlfZP7!b{t^WyeKVkr1lBRJ>fE(LCiWU-!OhlBxUHwkbzuhx9S74(m%e|+`s>~em2dj9 -7(Z(p6wFaPcI&!;c~34Mvc2M51n7u7z6x3aQ|vjs01NQjlxw&bfMOK|AWT5y)HDxLu(5L~R|?3Sa94( -NT93!4eST$L3JYe4OT>w|-XMH-hSoBtuHrUwlE27|#XKwd72WLtrNs+`^O>R(G&Q)d0E>KXw4C(23m6=TXVi)d*jlXZaNQ9kR#2XK(Y23;OtnFk=7#M91v=?7$G4OeQQL_}%I)eY$EwIP?R@U8J2#yHnwE7`Z24+DyS1+R8RCSD1Gvu|eX=)eQ -V5rVjXFbX0hPYhb3R|+F!Jr;xZo7n=U9kjoMX@_YMsvNzif8P&B&~y_oKHL`h4)jI!-rSmgXpUL7+uZ -PiQ0QTdSh-uQiD+E1n><~PSW?AlvS7Sgj2URA1!skE6X(<~DmgTUofQ~^sN(!3Q(2LvB$X|{{sIpwNpwZWWLr(5+Di$pcOAD>ypQ|zZk*{J{q -$TP!5*cf>QZx@oY{cA(9>mBZ)H(;PvcC%rjFcB?lJRCt8l-zvHvsmb -5z|uiqZ#OhXwuBn3amkYYz6Yfi@-|TEs5;t2Joj?YjRwwg_#R?{3o -lL*{c;#G4itsk<8s&lX9sNLvsoh;Cf@$1ZhM5Z$33|mgK%dyji(y -TSilckFmES`%HE#chwK~5)%!D+zZI}JE~*&v7gJ8)RHC3+iRS2LW+i$9&SZH!tAJH8Y=Q3XJd&7DSf1 -Rlt-h5i_xC)V=>o}XCHPvH5f_52i`Ppsz?cz$L*KZED*tmp6G`MLG{9G+iT&o7X^!w_8E8W*ht2e_-5zQb#t3`lFS{??tamBwHV-y -LV-Fby;=|WOVOMmQEvK`7_0#TcXcwD1cFJFNU%1)q@XolMA?$X|eY9C)xA3?R?WowVf7|_mj{88U;KT#w{X_H9-!^OR+cl^wZpY@8`d-`TCD6~Q7eCa1K;b)Kgx+?7=^5#SB( ->}ZHR%MC>e>k>6|@shC}scAc5_I&*a@YSvJ+4#VJDy`Wz>=yjAu|WTOp$DSJ~dvsi7C^l5q>;_W*sP* -YJ{2N?cHz_yZTlJCe#@(|HPz={Xqe%4ErkC8bJ62vjmfGGrWrIq`eE#RQ7z9v*o73q*oT#3vD#qJfaq -*d2N}RJ3NWsFp@N62QmgMf@`eem9Xbe)oyi5{7F)2qRWk0kq5^9J2r@+Md+GWW?n|KCMHVpvwn-UI!L -2l@ECQtO0UT1AP+URmD3#?6Uy3D(0!NFbQxgqnetyP6GT|F^dm>avWe -wBX7A{Q$GOotU;7-*a}}+ohxk`-!9UVR8W`qLj_SPPAF3pcrUgdoBaNa3%qSx%U<;(sM4^3MU=yi&Ep -SQ)h2FIQDg~5E*8(ZEPikDBK~I#rwEzpfQ@YjysFhABS_`b!IHhF`u)_xB!#~(5L;IcsLtE#OrL&&W( -wxr7AbLG$|ExWk9-R%D^8XRG`zt}ld$nb-8r;c4f#_(&UeMq0{tkn?$PgXg50GF)tbtUhO^}4}yDkdx -W*|@wn_P?>p$C_F6f_$^QkWn3Pgx@P&tXT1@dwKJLc=;=YJV5;M~k#16D$+f#t07vgVzO*E1Y=t2w@+ -I9Po(ozwDBaamurbVpVL6h9d?{u}xlZw&letFE()|lJp9rN=UyuJDXE<*TNefVn`EeyuY*@)jV&Juux -7;z{_?3gcH;?UY7AsGT;3vsn&v~I0MOYD+@g~I(klHD_tK(=5{?+hEw*6MIaz961YPq9U6coon28{TC -}#Mh44=&kb^`_miUW_*b_)1naZ=F8P3OeJ_lJr$V6>J7gBhaHQg3nzCYOjrW`K%*Y7m`nEX{E;=5T#H -4a;Q<(?B_%7tS@p$&VB -Jsxlv%wNAwhWgwP;qR!AQs;uE&ezyh>t@h_dF!K*0nK*l_f*+D>!YiBr$0Pg!x&QV%%<4Wt;08I4AS$ -pILXLVAu&stPd~?-ZOUC`E~SnUkukBGEI!Q0H0Rlzo-DV;JwWVU4bBdO>F0>LEZn$>GvYgrr^!-~CV79ko(EW=oa7pqj#yZf-8hAj^4c(;YUfJ -b+$!4G#I`2Kz{W#D-1g!zJok$i-a=wT!k-;~ktzNUb(JF%m+4$V!Kx2L(Iz%v_#vq5K9e>p>2dABU)jm;< -4_YIGHX5GONrkW7+TXuAFr2dZK&t= -X94RjjTB60Sihfixjgf6&+Q|GV+c|-*=$HR6Scow5c;F>ZNu&bNEq=SGwkI^(#$%rN+0lFzY>7Zl|a5 -OQq`VBn;Rttfh8N|su#vg4nC^&oC!I?NbGBZg_&zef=?iRpFA2Jh<&cr7)=|SmP2PJiSrAet>($G>M- -Ne4@Af^tzG%>aL8e$5ho7nRXV)C?1(~?`dAteEtbw{bqQ9s>z(O0V{0kxil^t#UkgSlxZD~|RwMPaK9 -G11+FPS^gUPYE?CZ2=864b+2R*M6i=7d1g`S`9%B)Q~09X9_CATc;`MS@7cwWY&PtI;QAEImoksARKx -UT^mI@w`wHOup>D{sM5vtzr$u4B5*bs|C%RRWUS{9<7yB#2s!Lw_-Jfb1CQctUjv^VXG8hGAkP&R6Vd -@y1ukgmCWvIZsvNO4mq(N!s*In-2%RIL-!wgmPX|ZSd4C6mIawq*L_j?Zq4Nze;kzsx>fgmw -Mt~J!G+ovB)N-suD$CSMY#rfzS%9f`jd}ib3r3bBSp*i(i9B>k@g6L1(PIE&6$302p$=oT3_AFQBEt> -(hYs3fv9{&hi{X`;3FH-E}ieUL9QrH!TO*q%X4L9>|{dMKRUa#*As{KRSUq|= -YP69dB9W>KZ+Ry?1bC;{AUX_ua1bv>?6}E){l6Z?L#!4qL;kt)E!Q&tl-(BbQl8z*?PfT}VtZ@*8~zs -SW|0mK*|lsvIcgN1$?ngn+B^tY*M^Y2lljWQOKIa^AobLmhHS{M{h%+%M4R|?nf#T{@Q84zZB2$5oD| -wc4o+rOVOI?rmA497U(K-WahZd0i7U}jiab%ZhNzr;yw!>?Dp9_#8%wea)}XcpFF6#! -@cX=cSib5`)1h+hCThj>8(b{#_OOV7&@pL)2ZZv8YML=%k?+D5~1n -t$R&)OM)1O%@;KtE4C^F_VXsASv -B}k(MaRQFje_$I)2b}rOThJZ8guRTV91H7_E0?{&(01hXofq4i6E~&|7yE>#ODuk*dSVp=(qWmC=az7 -~@>oW}w{5UgUTP97Bd>5rf>Fh)&XF_#smfD3&k?3-m7011T?1-aeQJgE4a1S8sCN7xhSc?^PW&E*)m5 -iX_#K8-)uwjz+#!TXO$rS>%W_jIA`Qct%2PL@3`5(Z4M*naN{;R7KhG*fQ2EO%>)Nlo6Ts(zZOQnX=hZn>CGa^s%d?)= -oqYVOLHhAsP47io-sOZb6%|b6PA}0C}Fc*mZoki7;S)Xqn0Kp(%ptWRLkz#v$|M>6|0>vh_Vko1zu%? -W2W#{pz*a#HH@kSLMORYcl?@<8$|Iy13OZ{{TZrVfqXbas-B^NC7g@^KNti%+|V^4yj?UBy4ymL>Z%& -Z(UBo|G_b(tW^gU}k=JVu?gNk{7mpmO5^Q&}O3-@S`0R^}O}zOd0QgNts=43eE^`XQe@!fd21DqZbgV20C$&2ePPv8AjHLLRTJXM+W|VfbuKfgNH?Ub -^j(HPq}v^t+InIIseTqTt|em6G5GN?Hbsr>jlF>EK%9VZg(n%rR>`s}9DYx@-hjyBNo8lcR^&ee1q0TBHm^urYHOLD9;`RXw|YU>d(ISgPaVNJ*z>>)Qk6_75vr&ujgL+4I%gn{;eSTq$}Q4E_NMuh -s=Fb+|#!$JooS=yCVu#wVnMp6xA!iK^aSe_z&FeBDH54rs~V5+I)9qR$Gpk5*4BkX^43=0>SJD$`Qy$oD{3#Ed>l#t{z*mT -c_DTE1xhUKXFOn#q4b9^ubd8Pi`j7v<@rU;t7_!LHAsTw?bof!Sj1z^)dMs2 -j}AM7ncht|^RI7ztkFb`Y4$shRb^}i-WPJsPB@y?ck*OFS7o&fTZOxh6M5O>P{~$Gv9CnQa&Pl8k#{uI9S -eD<0wQ_{>{DI~?CSzQ{0Eb`(BAF-Vfnv6F$A6fdqf8!#&fa<_B~7aPfzI;ex$%`3DUS<60+YTZp35&=5<;)_Ck<++0V+@4Z{@tz -J41f+D+G!ETpM4@+IZ+Kv6h*-z_H))%DjZ+7^ -%F%ky`quYWrG>D>A<7{84d`}wCNTjrli@qtY>Liw?;@I6Uno(_y^Hv;;&t2n&+64a+!u-pU=X9W%h?p -6fp8@O3#dWcT>&8?ey9g4N4i&)!>O|XF0o&&E$169q6KeaSp=LUD!w|?3W^2FTg6tc8qr)oz> -sV3aD|A~9WdohpxQ3mk9zgHR@!>aGU#rDe$_YeHuug4-~#uV{yS*mhwN|u=i+Mkz72Z^`mLZedwCK-y -dAZLP=%Y;la`C)dU)>$_rq&&-o&pG1YVZ@h4oZdO7b)G|41WL@@pYM=k&3c6FUzk*GGt_+BCflDuj49rG5nSO`vP{ZFT -s$QCKIJfa#on{I|j%wIG|E^Pozy!T -cFyr3DKb{$>nDc_+2_ -Yw~hZz{4F00(pti&o?U?6ve!jQOywM_08+ruJ9t!*Z7m+@e2*_b4r-#%MT4$#T7{%D>uCBY8hV0`zc50e5%6Uj9lY -<>Rs5bZ|hyMp7l{g;`6=B+qhUNZq%V6MYb#|rIL+KA~X#UN=GInrKAS<0ot&BWHm_T1b=X|ZLt=*q8~ -1lGL^41ZnHMR{T#l8RhmgYMDUY0uxEJRgniBzPfo6U7!)Z=AWFjfaC7e*(LPJQaEk0dP)h>@6aWAK2m -s(pnpVPL81~>F002>m000^Q003}la4%nWWo~3|axZdeV`wjPd2V!JcrI{x?LF;s+(vT$`4kBBBfAy|N -zNseunw-!l5Fcvl2sxdC*d(5xI4>*g$4Eitf)PoA0-cwSIU#5KV}B=1uQAczN^&1E)gF+Gd(>${WU$a -SKB|mPfqF*)bMm@Je-F5p;-S*-`f7=$@qgC5%qT+fH$q%PrK26}c>)T?{Z$!UtmJEY -UROPjTdxI^~hkm~;>l^icb`-&NTJICOc~&lZzI)M&wz#eYKfNqF`TljW5zF)4R(<()+m}sURQz-%{wC$-a3fYI~5LHXHoL#CzVhP0P1mi(0hhf -**b__P0&D9L7rC?Kan1kLph(obJv%ZLi1@=blvNw|Ek&5%fP4t -lIwKQ)O}Ib#z4JE8$B(bd52e -CqBZ_X<>b73-BT`)gbb`h}GbcYL>ZVg*9tS7<2WO&$LGhwM&f)&(h*$w3qKs$n1&Ej=O4Ic6=;-?wub -+MU{TX~x!Yc(?)r-w+9%We+e_z4~-gfcPv*%x(e)sY`KmX?WtLFe7Z<@M!SCsM5(SzuGEuvLZRn0Aqu -$(Fd^!U2y#4>8?Xx;bQ?&Q&K?&An-T;R@GLZX8m+`_ -v}u;*s$3K_T+yw7MmNP$937p$K6{bBeDU=+=O-i!FEkw_(JrAEKMs@Sgx}8Q?yONCh^w;r7C*!iN={@ -2vMe{*dAk$#*Yr&*wr#U;Dq8G|TGb=xx&v`t?Suo7Vh1KFQW7Ek-mh*`+yFL(0!5LMez_~FzN{x|B(S -e`^#UpEz}>V$*ns#?h-y@0676vIR3IfxGEqU2IKk?tNRdk1bWa2D#yNLNg7l~g!Do=Wt><3DcH= -!SxSQFo&C3t0T1V80Q?(m>RuvjRKYU9WA(gF~c>z5&U%?GH6TdiG!sLs0lRz=c0aA@l6??e9OWjM1ZA -EZ%(zQ6uZSgT(RKY(nq^s-2QQ68!FBC{X{DG?L(V7fNRR_mxdnV;>`;#yU49sT}IvPhk0cJ|(wCpvT1 -5SWkXgDdt!8iG^8+oj#RJJ2;qsdC~Uv#nW%{v;TN~e){ih^r4aXV_bldo>y3Pd=d>dRub`-WzoJUhD!`vc$f!rq6abD0@?RbA8Q(3%%JA0ERV06G)`@DBM0B6`B-*s>o=3-DFqIeqiNx2U$Ck+kXDn_?a -B#E-$(0c{s#IH)fH?S3FE(IzBa~RuC`8eNXxkPyo8ly@n`qIz2Y2{jAFe?i+_dPDad)T_6W9WIqM=Mg -L;iE{lf$H4W@EUF`(fD5j8TGriynGXiJJnH9uUhQoIQ-#-8?Vrvd?ohP6%@r{Rmd}S7%%$ -D>UeJx19bGDmo9ygb_AI?xV=5f>yjwFF#IuS<}ZYrL_>6828jbO|-*d0-+9OiqwbQq~76PZ;I`h+89$ -gx}YKu-aFE6Q+A+ZZt}^gH7yv!(05jMpIB_ZY?^n`ZYw8bS(5?6577HxOJ+V`%*a$k$-OSYC2be$y#w -{Vh-x90$QCyZi}_8{_4r(g0&cpkSYT|?DJRmKG@8Y$rUA=2zAjq+^QU-@MXe9>$arPXDot@EzcrVn@X -1yJw15Em7lXH>65Lh>7H?T_x9hSJT&FLtHA)&iZg1{Eg7A~TWd|l=?@WRaW&vc>b=`{Mo%cm|9RFUN9 -6!1I8G;F~UqLvr#Cg+nCHnk2~=Pk+s^4+@VIU-4YIHkw~AVcxRZdJP{8x!>c!s9>A=?!8$IEtFr5lo7Hjgz9=gUE*&$>J -dK{QPeJaSUJ)AlycA1Z)|y>6O=aQuyvBNv2<4X6up4l=K=GDE72WEns9pb81sGWdJ%KlK=FM)r1s+e? -g2B$+WZlGdIf2h;<{A~BDK6%UC=@VW@e>DOp2RaP6o3;@aFT40_m@_4FIFuq{nr>=7$ -iK!_$H^p#Q3jGS8H?=*T}R68n&4Ji%HwZSCCWi-Jvm+^#Y+-!02x|Z&H*$Rrh4)tnICvw3^oQWPgb_u -wjf>`KX!jDW3oJILgn9OKM~AQ6Hfiw`9|m)V=bDigzt-cT=T>|_sF25@A@!W4mqCQ$;{e -SWhmmm)M<&eqMX1d14Fa(<|_{F%3S4|U0RSPXhz?LqfY2Z&cmuG)1!#&K0ux=JDF)t-c+KMXDdMTRpV -!)jD85L2T9vqc5U5W^%^jLE2l4SnN9C|+PX8!C8YS-o~xi8EPzzeQcr)S&bdOXl1CGb%?=oUDHA)(I; -Rikas_`QWjAVISmJ^d$g5d-;MPjQ`HBzKPDL7|%vY#a`#YTn|5VtZL5=V -EPL^xLfie^9()IMV{gBCd<@t#Fbl7KcCruzk}1^tL(G>NRoOT?Ho#+U>)s#BuaFJnqut9}nsNlDd(-z -2^S93y}$=!~{-xV*M3DK%E96ci_Z;t;?-X1Fo0ob*XXy?0z@w$3tUE&H1^Vlv4Q_D9PK$t<>T0|MHl$ -PCU1)W)heGdRQsay4$|>0r$;st*U714?TPVyOcqwfo~vgt+qpdxTKe9|?SGCW8ynWI>4m50aj{FrrEW`bBG -BvF_0928^w2S}jC5l5BSI8YVKMzCU>W`O_~&9%EV|gn@soP!m^|PR{ugx8?OFT@9d(Vk>#VaZ`NiDxP -vuJE_3OLS#PL7RrN-;NZnf%{UCUp<#m4IsyV-dCqOP`X=`Fctj#$26X?}^^=LAYI7_=$&$nM(~gTAzk -!XaPEpEnhR9VyL7#LrN6&eK*D%N$eIXG)-F>SjJ*hn_94DqAH1!JeVTlNwt>sP=@~%kUqgF6o3qftfd -962I=mm*^Rb?tmE0_)jt_0yFa=07e2Q8*Y;kVV4cJ$&?7moabajMr6Zn5}eSPx=F&5HPd&=niZM+JA9l^g?kJJp@7d|8p|j{$d)3*2cGSK4^~C|UQ}h#DOs;Id1c1+^(KgdEgjSaMXlum>D -Z7Udm$xu36{YQrgtfppn-a}NJt*T_sw-#)8+?-0~JxrGHP2CqJp*y?w=ruHW-wm>n(KC=qvP|J`|V|m -f+k|6(J&5SG1UuuKP`Ob!D{^$^AfG^y~*<-e$0O#RfN*(AE$VBb3ioM=@6Na7no8{S{1WuSge~4I->_!qYP4wC3QM!{7UQhwBDbQC5wA -$w$cc8NlUU`jq$$O0TLYnzNX6RCiAE$Kt{s_Hh#m3mrsx-Ixnf~8^T?h_rV?^}TQdIDWVfLxaSr`sl{#l?B$61munZ+@DGfEYVb -M@kACm;Qg|Bx}ltJ9`1ep|&llxfH4k$?4n6$G$v@3)UFY;?{hw9)yt;lnj#c4cGtL7F&u3w);A9s)EO -xO5H=n|lbdYh6A7w)`_94@e6FCN>u2;uCvKzWMhyVl46XT-%hEuj!u?*li=vUP+u -o;>tx_I`_Ogn>~ExO(4pYN?n=4*&L^_@wrP5rPIyVpfE(qwEu@I?WN^@Cc_;=<7u15^CK -8`w|mo$THci?(riF-29B_R!C6TeRqj8KDx+ny$pkFp3N>yJx!sdu%r&vB~6L*TIDrv!U@3Uvy$F)D63 -%Xa(8JRi=xm?sC0MGpZXM**o-5*)6v8|WNbs5m{3@u6Aa8zlZ3~8r|`lzg0 -KS=ut@kGX=i){lsfB -tJfP1f=i-W+;R-b&a?$z0GI{Gdlvtpj>C4ly7r~0mR28z7Ql>DO@zmo`v$-{aZzxT$!8tb-*~6j_=rD -k>i0N$!yBg -1EA@xJ$gXNeN6q3I+(HUorpnqs}%4gFIMi=Be<2KGE(keOYn=K73?S-CfE1V6kF6OwIpnPzgk1@%&D{n;u8h5uu)mY-sKc_o~dVjE`! -Ld#4p;0&Af*I0Tweh6Qnte0h^oo#y>UhaPqPW(@TS^q>lKjX`k_@~Py1~3<3b%JNk#-0qwx4mf;C3ft -ykTFH+kID?sW!Y`3VvoBgV1WC-@8pWASPu63OLLtTjio2Y6e3Qfd^Wd6$itEzGsL7-uHW#Poa`tr(6$ykoHf}ehN8&;?!#IMSz4)3gCk0O$WD8S9DWh;iE-wH4v7siO5xW1mX=-4hkoTi3m`%`Xh7Xfr -JHCtm@tMSxC7jc0#e{DJttXVpz4)3P<6lE5mm2B_(_3Ec94B)?Mg`Pp?8p`*QvspiG&Hv;C*HYL;T_DhvP -MMWFt(iTs4!;n=l}RmxV2VKCf9^DX|K0P0|S?}&q8j;0+HJTad<?+FgC4;F68NL%J^89YoimnVvPyJiMS6H8GO -s}OcKypxBU#)IV?8)uTnCxZc+ClMVZmEavldntX3a&FRHy@k%q%m3qk4cq+iylQ8PnC@tU -?kg`6g;NYXe;GyHa%7HLCJR7ek;ns(KsVx_SnxQpwdTmItu;v*Y_QJ}2`*2KSvDiqi$ND-kCZ*U{$S4}tx}kmve5CAOgfI9 -1aoS4ntNSIk5yv> -ciOk3pYdU((@lPAK4icT3jM&+Y13FZ!mkbw<#Y77+T7TuyOb6lAW(-{|_klYxd&aJ9u_L{GfuK2HyKG -lKCCabEs#q>S!vA3~@@14CFyja#!UXOB5czDB6WJE#hmQ3}3w_O&!n7Jv}heE;OfHn(wy$96BieFFQ7 -W{GmPq0n}&f1K(N2#TJ&H@M+?S$o^1`m51c%e27r^4W+mJ_=X7@w4=bqrFWon%rjyf9&mwgDV4BaKa< -Lqd+186mY)n3T;fg?-)e3j{xUrI9r=o>{T?B2z$BDTi%2GFSAEVsJiMvhFX}e7LCmSx+%p+r -#1YCl91jYoB;a&CXN;9{QgizPIy -&6{h=w<0Qnz(rc55?EWgW!(hr(Z*r -4l-^XrV&uqjP{G+F^l6s;N0LynQa%=q3#G=sAl~GT*GJvD+xm3r6yHcEO8Jxwg?*M#yl7ybZM7;63Q8 -S?SoC1y3a_f>%Jqdu5ePqpocsvz_x+_$JpkAjgJwpsPwa(Ss5&3p?X|5MjGcZD{0uJnDP`Yo{u&9OwjQz16)p(q5+b{$S%X>cEM;e_*V# -Q14{0i@c<51$Lil+0pn&Tg6vX52BX>lZ1-pGHP~c++Cv#ENE*?(MO_KtfLN0YLz2{TG{Ty4#QiL^;`I7j1S>*NT2Z4KtZ)39}J>VJzf#2vu}Z{9iG8r12mAGq&6N%vZFu*ODzXN?Y-B0+E9W3R$ --mDQ@|ptXj7EIl{N9ikmKjudlv)dH&+%i`UQXnd=-!jy@v=60ybM)1_@*+MG*1{v8t9WP&akvE&I*$` -Sc&((B*K6f?tyGA^5xu% -;+DNFgR!4!_;YZoeD*(6EHyJ-10o-4P}E@RO4?5!mPp{@a&_m!GDYDw%B(R`;E}Kh4Q?whawS)Jko&* -V3=57OGUefzV(ZAJ|%F>ok!=C@@AoB?v>Ex!W)KMs_-sPcos!%9N2oh7PL>JHya!4m~ZXz)`7LgPafW -^WAo0j1m=hgaUpr8oReX!0lifNKG|Sp)<7ODy?;nTZM?8OC)6+M%9Hw>MTNOGdgWP1)Qk-?c(&th+Am -V^VGDBxx98b$5O2kQeC_1u=twWu-9-kt^ZrEtMz7pzr@*}oS$n5vsn_h(P)hEjVdulT&BG)lTiAPURa -;%~Ol(gl&MZ{r#E_9eXp2;!EHq@C$%6!Bt|;SDmtf-<`}Y(c(ai3%I!Qr&#*H8Xe+GaLM=-lRply?gD -mXw6+TNp*lkvzTIx)$Ww?5gx95C{<=%D2tQ9_Ip$SG}F69$gT)`tqX>^pwQP13Am15BFCRO?_^D<5wGfP{Agk`V4u$sUyQK*gRx6#Zj1%`m -(HyJxx(Js0&Ag_YdA^?S*S?{qlX^hALZE>;DxiHEDCYMlb0_0NH`T!3ZxiX34p?3oP$1(Q?k$dY9b|Z -te5>=b5E -(mk>fX?oL8dQ7w`fb6idp>DI*{K!WQx_>+j6m%sZ2&gDOlTiAzK*gj&XmaandCk#$Zll@tf20Z;bbAQ -Ejt$YaB*M)B9MOo6EA6z;|i$cwy8WA0I;<3vtXDjOIz0U7yADEqA{a3#LZbH?5##VyhtKG-uASz|;e( -PM)5?ClJ)f>SvU@`*fkSyTB^}$Gj5Yb;4RFxNkR{jq=WLGso{k^)S|E8JI!#-g#w@;I33wf+2lpBsP+<;keAKZIPf<8W`#l|?1s0>fsy#6_kLb;I!>}j?2zPXJHg$piU?(tTmcH|G -y5%;_!AM?$fsVPNsZ#UOl#m&TN75SNZ<%^MW6i0QTZYxAhBlQMsr=qt^Ti`*@Es|8w0MqJA{$D7CwoQkFF$$!1@6aWAK2m -s(pnpS2dxPxRL000D=000>P003}la4%nWWo~3|axZdeV`wjQVPb4$E^vA6J!_NO#*yFkD{yqK3`!7dS -B{f-FGxj^l-Rl0PDwhaQhQriED7$y0tp5Hwc1N1zy10#ubvrz+_jy`2cb$U64Nu?)6>(_-P1E%ckL!w -l|#8~%D%7qq~7e>Zm_SiWL;OyDoeU**ObfZ(Hd(Ece{Fft%1`=2|REA`sY{0i!Wcj`0ua2`9nspUe?Q -jKYcY+U3t}1{OwP5uik%CZmQMW{Z5yByBq3uTQ>adP4%~ZwOy(*2kd{g0F^zOKVotgnv$#bLzYxs*LJ --sDVnz3>0I-tbplINUXco;Ua<ER6{*Lk5iKDa}X-#)kT)HYD&z{lD9 -XNf@{~wfM2k=ga@u#CFQ_x+ub4oB1)jThi}O@?G}(~Ov{p5JO&pvui*`vs|r{+h2ged4L30nqfifDV5O3;jp^$4$at>64Jp;gcv)?Fk#tB%%mu;)Tr -%;3HNmBT;_#NsX2i><@Gh8UwL%D_OzyO5Z-6i`TI0~(;y7HEQs?{~fPTE&ha@JMrv&(X~1J2hUKo@BnX4m51lJqBu_?~=r~-QHoM)?#U(wghRalzP9cng-YfG7lQKzPRC -cE6=~Qfb?$K4#laHC78m3&zk1@G#sTiZ2AV)wFcL=$mIXhl;MJbCdN>qg -^|MC01D=#It2_>wnJGg&ytz6f@et%Fd9^rojDe>ne|%LqjSjCT8R{Z&YBxsES*0bmtG5|aJf_X%=#t* -m3hl%VIP^v9_Wc;AuwKlbcZQJ6uD|crJDq^6B6sjf(- -+_11fk6lIi*P$-(Z^?*QrFzl0{>JQZbI;2rPp1PT!^n94B<*G=`I1~M#>H2N -+%FK#M~CMxDAk%CXUYK&2YSp^zHa!0|G;R6mOsFbt^;6wghsp -C{;!H|#1W6kuZ;cyx&!?;$o}#=}NJLrX-xMlL-B_^Oa~&eJ6qq2A -=0YsW_?YFs*EaPFH964j0%MZDs>uQVRaIj|ASrueUXk)VBMQ$h|JlKCE*KkEy@X-F5ZBVTw?9TUKSnk -`Mm9f2Ha|u-KSnk`Mm9f2Ha|u-KSnl_pE|P1E|>O)*+RW|q$a6;4Sv*x^?eI)x$B`QY|a6>tbqZ2mV^ -d$CI`ZCwRGBp_Ovpew@1NFL}jwjP&@<(OMwHT>^lULwpA9`R-zWzRzb^Zy*~?+PXLtdlx);akuGHxm> -H%VSEkG}8OAC*3-(BTXC0nwWP${{_>8rn7CIBp$>fsc#e!*F$s+5DGXN$qVx9SLJY*m|?*B_go<$Y;f -x1dRXHoq;6?e#DYWKJbLY>|R$5hN*N4&=r;Bl3VYKut&1&olcvqwVFETSq4>YiUnI8T8^AlRMGxxXF~ -<@e^gXR??LEfE1z)R@l^5H?_QM^{K7Z3^dFR|L`_ow_{GpB_@OAad3(vPjs0xikxLqh%(+g+- -T311|zDY_nXbf{2(JIOkhbWDTJB9&2%8t_pxSnu*#Th{sf8v*cC*1T)v@ah>2Q^%eR9spCcfdofh5Tj -8ilq2kH8&>IUbbkujJ9nspv^=vp0AF!tCUPtXx1|fT9F5yfEK+Y6$1)cMMa{*p~t_vGbJ_PS;kd$vzm -;QNBL-aP)m^dg;VaSb*tfB#T-PJ2=ye*slzP8(>^>T8A;UcYqz;5wuf^oxzcV8$BJPWruOb`Qf@wR2p -IJ1#k7SIvha5ZU*FiJC@5GZSyYYRIKI=ZI6T{?8`mA@^TMaK{qJy{T%7d1j3k;~>WhwY22=Llz -nAod2^$qkE(bII;iurWyv`2LxB*={FQbvi4oQ*)=r?BR4a;7pbi%nCEU~cW;u&Q_b{%QyE7djhRq&js -Ywwj?oi0=SJ89a6?zJWonrN9#^142~bHtZT_$HPM{7p2r9JQdt%;TAVQnGNSZVS<)q-+Px9nhtojISu -skMDlT&|~*ajcr2AUB|P(8ymD=5IU?>fv|*qWd#IvFv+Fk~TslQ?i)4TZ5=)S#=4$}`L(pii?bu~`j7 -kj-_PBFjWarD!O7klI*m_f3<|0|q-Lmz=Fs`AM#cTwn(*@lL&SHdy{sbX}Fr9ox*j)pi+jh$~+#q^(- -79cX7h9ZjOCJr5=>A#!3`xG)#$3{eosI+@$W%TW{>fvY^Ced_lcxlXB65xrh2LzUsZB@G|NYs28hez(GEtgbAkr!IBUDz -@M3Co{OxEAU?1u5Tyd0QZ!iQzHEiFV!&+VLTyJIc6+=A<~x)x^jSbevPV9{@OsSNo9YR0KBw)`j) -%Pu~Y!gEgf6XH*p$VKb0sy}X>=%|OnufRPk#HAveaPUSwt~XQk+&6mV&~J6L<5WxSY`#sVY5M`&gJ6& -E7ao>2_c1|XS>qm{2eX+i=#g2+w!)FQ!avoP%YoEdC)Pin{%V1usi;AC*^%PsVBnfFsbJ~a4ehBIfzE -UA&d7?qBg}3EW!Q}!3XoncK4M#NCd+j?#KSP^u*ZEc-hWSA_K(6K$4y7AE1_YtQsNIiU6^);q0dWrWk5z!8tjuW*uxBbBA9hG_bk|uKL>^#sQO%_>4aXDF8cB!taR6ATuc>L233_LRdBMQ2~zUQF^7yW)#N_Y{I#Wx|uJ -=Pk7-O9r$o~J`bV~Swv~7;C~iTZMo7@qpCI!H=SbbDBy6*DGOCwK3c4_P_F*ZqN*g$aC{43#BoqzgbL1a`nF(FEk7ZH-=K}p$WsYYi~#MUF-_$<{bp*Fdk&;jh-YpY{g(S2q -RRMy6KG$2QW!V6AJ4AL+a)7#yLrV2sR)p6cTssjP~k#AQ=^eK1+goWpZ#xW;_j4svJf-X%JhJ4Ws1Bx -HaDtpnGhA(yF%uXr3_3GSn*$zoR=A$XH#D@l17`0QZ&-Yy*^a?+4fT8lJ^B?OZoMzQ_zkz -Q<6*d-bQuCH^KGAQ>PrI7I -wPtZIHt_C)hs~jEuXXnqDJvGER&9rk-7RbcRtU(Z~^3c)6UiuL|zn*=lW3a#0hpc#YyBI!+#&c`v;rDN&rf483Wav04CY5xm$9<1eZalu^q8HQjd-Pdl7m|ZY?guR>WNil{@^IX;a=?lw;G!$H*AZhpwo@DIxthIIZ$EW>E7dGL=Zx5FTSEO -)Hhk$lw&K!fTfkHU#VK#83rg<2FzN}Ra)QE`2T=~aQ){0#T@@RiTP^ -j_ARQu-TEosvN*^cDPWVBzRXeEYf}34Y=szRnJBh;jKT-ov(n7Vj(`&hh^3Gh6cCZ(W6Ja*F0+xv@nmvwbf-t^a_QHO<}% -5kyu8h^*+|-$-CA=TQK~E(_7ZVMJwGW_g=@Nm({Nm*^x7=Q6Rw+nXc+{sNdhyAYAlfrA54lKSLB7eEC -{DFCc)0|a-ApGJddlYhTlE8u@uZNT&LJ(+3MS%Vh2yg6(1f#QT5NP{hHB^9Y?9@rMjrZNfH6DLx%5b) -TZ=<-3vu_nV!3w@-FFb -x_bL=bo&?cg#E2v3I|fxhxX8U1k1VPIR)98ksi5rKe2CeMer52Qz53Xl`*P0=1tbyo4Tn)8>j{Zir@G -du9{6IW(;5AQB-cgQJiJdw70y;>`ekg9}#T8CgP;}=_}CdtKvQs2^7?0e*Yi2+cDBIC(&l^*QFympKv`6=tW< ->I}5o$Km3~Y)ob2GcU{KO?5^;Yje(t%)E)NR_@W%3xg#7`I|>u7G$#u0Q>G>wZpTIqd*g -bHx?r1x?m>(Eb{_Nu+cRf;V+fD#LAb)<=6`vha;Hw4M{8Tbiq^%RP2oMvB3aj&ujAL&MQgB>o<}A0!j -WbfCuE5%0wL?lTX7RE&mCv0D4L|=B}_s=&W$k3YK$M1H%@N1cqOeaY -Clr-CCUO2?~jYAuUebY>HDa`88zaAluG-ChTkTBXgKrUYEekI*`%+ -MURtB{7>Ul`FskJ*YwrMH&fmeqv7z=soD$D%nI&=_ -4OV_|_uiuBj!I6@gY57aEuZL`Zv}z0oEEOUp>^a>(qzrjwvAmGn*1f~9*nQYVOm1vu$bhORG$Bs -#N``JzpNHU28>8*AiOBUn3h*3`I_ -n7tCwbIK%`8vu;lizu!{l$Rvh(4Dyw(Y+zjiO#9s+J3ucMG;)C11}2o%f|5_ecZ~|Xi^$CWC>Z4nV7{ -R?oFhwiHtm?vT*|r)sMV7rgu1!5A7Y*eQ58f@=x8nP5t1Z!>SMM8`gbj*MhXRkxQoVQU0pHjcR6ScQ* -Y)pdV>ME0hV3+Mi3#wz;?qN>5(#^2kt{uq)N_lZpU{URdUGJqiLKdi|NtqcJ!<@t1RGg%da;x{v9g5D -$Y>LXd&>R3JVKHj>6`Z->I2MT;-GJD1{0;LxfU2TRXL+IWzq&lI74DBNAHIfw*&qvaNXET#xyDRrNdZ8ae5Ic9Q -ADzIhtnFy(wtn=1Vwq$7mw0@k!A5#H4{b+;0J7Phv<9zTOzo}T9Nzoq<<>gLj8yjXN2`0G -_qGNg?W|emK_(et=j?|yX`9X06m4P1l8b!9O4`a?{xSdp;tV$=+@Cpn*#}~!zPIoiY!yX^Fdnc@5bDB -m@EvUmhUYe#!eUb!4x7w`ciEmq(3qx{q#YaSA;=b90(()Uk-!+XIX}CI+UBPH9_Q#yxf{`pQ$p?{imL&_M00;U;I5wu?Te4qC -B@Oo1fLO;asr#9Uye{u&eEmVrsGyHz6EF`#nv|kLhnlz#LT9+lzQgu_;_hM7caBWbkDHmSw`0`=f-CC -?B6*5Cx{6QWBssKp*KWU_4}G#Y1d3XKQSBgY-yy=3`00hIKK$h$tQScf^*-DZoBR=b8x8mrsuNhTm3^ -({ByJV7d4Zsa{2C>?w}6ZwsekoPYNJfh=Z)k7kHv@ff>8IG|oPbS{xoqx53QLl!fht36mMv`wV4#I^d -8N+m^Qjx7U@kVvnENm~h1O!$O0y5d|UCl;uGaOkaFa=yjaj7;<37c5fvj=NzGGGG-EpP6A58?bhgEvf`^Ub+S~-=aD8MmSdw;MR!?-ujrc`f(1VVCeC|fIBDQ#Mt$1{p03UhNf -c94LiW;Y6lmV#|7{nn}5kUCp-m(x~SmJEZ!X392lpmeCflYj=_MbUF&_)lyXM7gdZ?YxjPU1^zm`0S* -sBY0e7j-}i4=YrB;*tQ?UML8Ze_MuE*F5{5nOTkasG5GSJb$^^2-K$J^`5t?PP*r_*Z6DY)rWGkYt&7taY%h8KA+KI<^Vaq4WG7;-Sdmj>~#fmuCH)9iYxMFS -JY;)yeqdeeZ9m?ebX@;y2>RK-vH(8E!~M=n%R`sAduy3s><&`w!dAk>m}CnJE|MH?y71#i}qGrE=OH` -SuK-iCmH-Z{la6Y9UA^M>(_W?P`ggvyt}(Cn|I;|)(HM*Uwr;7J3T$ge(}YL;Cq~q+1KS=^6YcM{VTk -L^G(~dcr3_@#G9e*?y%@*pMCLJcKZ2g_Sw&W8RbyCXQ$lyFGqWpyxJ|2?@muoxr={7%m0tnst&pam_K -`#eg4@O*{^=(GfMFtme;EWtYWX!y_iV;9ML`c@eAt5FMP6Ix7Yg$fBQSiwrCfA9(2LG`-LSwuOM=^JrPOhe>aA6g4@IL+Vx@c?EQL7=3b3xIgUWsXG^n`!Rc^bOv7~KKC&w)aqB+&74w~) -C9B0{P2mG<{Fp!*%&OF#uT)x6L~&A2^!_d^5-YBkUjS#ULz5k5MICNavZPF`TeszIiIcS4bDmWP0Wjc -Tnn6^e+rE^v9ZR#9);HV} -T-uORYdZ=NBN5+xaE0i*F6qj6lc+E%~_1UI1*VYXyQ4A%bp-I0k^FEhD@AVeT209MsPeMd?k6ODIqs$B?a*`jQ0~hrQ&kQ&)keHSV`^-T-*F3nE7^K{G_RhQ8DE4XZ -w&M%FW|g(x%WKpVZW_wlFI6kLk8)yJjj_x;B$3#H77a+qR>iSYWYb1d6or{-|!%$@lY0Z3Gnb+$wEy% -9XhX`Y6F6wuiJ;epQ`eucqF5tB*rrW$9CQHsnZj{uB_z$0O-0Y`Av=cI7L|y39zYRVD*|N9;zH!vp%=M@TAP>}f|{`!HCp^iMva63X>8*$%+vMa_xT^UX_hWNt(JH5+bq3Vt -QI(b-4QdIj93^>NV|+p1xEga;7{|qIpx&b&?d@a*9h;%?s&Rpg9-K_)SkJ;?RzH-Y|YYa+&jsi&+mn6 -`U4b<-SKqIhQhgk7HZGzJLSHp15f}xSL?g=hxzh?eiTXTrxlOU2tb;}m5>S8(2sR|5a?tRD=8WRGGnm -CZSRo7i6I3$wf*5#>Qk59Abbo`Fh7BX+s7sXl|-!A!cQO|0i;M=6!`~#df`b|)a& -JHwYbh+mzL>fz^9d##v#@OJ2)1uv>|K=$XVE263ABo#fVvEj#wek2@~5LsSC(CR -|^4mOVz80Q*D)mj3{U1_)K>7{M#Aw3sjUmDi+Zuh?rQ^1eT#a~qCku@26|?JR -9D`+<@=j7TmN;t{Cx8x_pS(xQZaYM#a@IIxSat-xgkAaX&Yd!0+*24?pXE+8Cue^Mp{NKsho6-u&66? -_HFr?zJ(IK{MW|N+@kQ**Nc@L*4U5rh2U~Yw360_?nQyuU++u84_g`Ss^E=`qfP_6QA6#Dc}G!KUGMX -s@3Y01kLyqAt6!}FV4CMNzc^dWN0LeGN*qCg5wMEwOT-V*1ViS#=?QR;dhS|dNLyI+^(gST%cg^avqO -6q0iH{RuhExow9HyrZG(x^{h^bN3&LW`udSy| -l>x0#Hi>1QY-O00;o!N}5)~O02CLCjbD|u>b%V0001RX>c!Jc4cm4Z*nhkX=7+FbY*ySE^vA6J!_NOM -snZxSHQfa3`!JF@~5jUQ+0|hUv#mhl(lzPsWn4m$=O|4AV344RvSgBRDMH#Lw;C(N%}F5o(Dkg`f-V4 -luAngGd(jsJv}}BLb=^FZJ)L3kH{aTmW7X7s;aJAm>!)B-2qHkL -BqU_c7O7*>J`F(%8E9)!sHb2SWI{T-8e7^eZ@1KA64=-N+VMdRh)wlfPv!besi%Rj`=jFQRUoQZnd;V -qF>E|ztt=gRJcjnEjU0*gebe&srFaA`+^V!Mtg!?sLRZX)q{led?s_1(2a#yb3SY*KO)dir(yu4`(TX -R#sEjMaam9@swyr{~n+Pr>-H(#m#y3zQWuT|ynj5n)F)w8Tq{fh3o@?Q+3byN2R0B&vhFX65eZ`-Cau -e!c1cPsr6{%&kRwQasDO|j>A^XH;1i`oqKyZ!DKuxm>Ek#D~$-<7p4u~kL4Z*g&G6HcKWch@+8pYiR?{9pp;W-yMfFE4K -y`Lpa5K)I}%8$B5(pFjWN*`K~VTmA7*ug_k5@lU7O#H%pL7TIK@E{lEDPi)~=e}4Y;7hk^m3zYWZQSr -;B+DuMPPFAg2-CV;;=yt_g!JAe=ueZChQh7W1rhE7|6ClGg^{z(@zj_E0(a59-ZgN59_QJZYPgN|JRgsiNyuGy-rhqmWX+Tvo4Dsx_DCp%jvIG2AHf}&tP7%6<~SS -u2y-cs>^Bi=qauM9wc6^>i2D(T~b%__gH97J^wJv_zt>fe^bXkYClZ925`;G2Jk*=!NAI%X08zjrQ20 -yPatMlb9o8NoDfCuXkyN(hZ8ZI{9w6sO%X-`PF4^iaK8E``-B%nkzJKI(5j`L7u`@Id6~IzNVTR-apJ^BIwCvE>MDK$RqCW!Th -_TQ@Z3ObZQ*pcf4cAJ=0rxwx!J(cI!%A_P}E&YYxhRSTr|# -RUneF)t%=r^|K-v$&vce)}zU<=bx&(jI2^+i$h_HaB3t{nl^qcXN-|cUg|Y{y9>;q?9=<$_id!yE{0g -s7nxyH=1&&;t)pc2Dw^wRnvE?6)eqjw}@AWh{?=7Aei!jCOi4a(1?7dr&T@zJj+{y1Nm%4o%f!=0pY5 -@){mA_LMiLA2MNVt3>mDqYEMxtLg7?E91_EVVh?8FLOT^giZ3l=T}1ILS~apxAT!66G|EIBToQ3Pk~j -6hfH-FnaS8}Pr3m16GoP+R2}fXlOSC)Ttz(2;0T>7P8=?~A>G82E$5&HtPUfcgxes9Jm$DlL{`FrSH3 -PbkU-QU`Fva}JhBYnB)cCKFZ_w`LKejAlVJ9R&hn@n5c^ow@cVHUl0b29|Ac+CW!Cmg7aVpmYyp}>c) -Je0 -J+gD%?R^J3X#)9Wv7DLI_1~VDCqiThyN?wTBy>ztT*td%Za_)Ihp$1g`RPxMfT)08ZK&KJHwDzGn=1_ -7MJnV=rK^u^CwI1ecXGzev_SDmtA(#?5hnNDzhTHC`k;xY1%g^YL -|W3Hc9-&)l_BRFK}nd0(GINkJzx9!vL>dOL|6!dWCAq{cd0f)O|9_UoIQ=0vGt96FowOvjfU)^; -NcOdYGOPj`O$Kx>ZGw4-N3*s!Jd4wN{*qX+5;+*2PY!znXo&+xJ?;L47Sse@pjX?;$CM%7D!_lKE^0I -SsMenUEQ${t|zXlWJ_PN#7LbM_8P>kya%N1~dSN7}i<4zZVc%&^+@NNUGz@nTs^iAS?WN+mL@_=A#Mtr)@rQQ6#&36TdMVOKA%iIrZ$w(`2_635 -Zx5%b7HDH*d)Nj$+4u>HhgG5kAhB4$xo)F(^L2(DALCFr!!h5&w{C^onEh1o&~ize -sAI$Ct^)A1f!MUd(vBICOG3sUeNzDe`PJayJ;G#QCK9j5`H;5aS0WKUouuU*z=<(c8Em*M=yU$2KCEP -l^x(s1(PVBS&b<&W;V}WzJ8&FBVrld4`N+DAX)Rrw=Rg;{G~9kpW4!(3GPR)!BEf4eWxu=NO5Vp -ST;)@Dvzk-TK|bMyrveME7a-8A*bJ?bQY@ZBy6B)%&)be!i^cdg*ahDuRA`ciFvGI?@{El>6Akkl}zreZN=u9QR% -#Hm!s-OM?+FM6)xXPNUX<*F}4^N7ZPTb=O9Ls!Fm~Xn3@VLpN}OT{GE3&pQRLm{0vG0{(1gSPAjx6VD -8}XSq-1o?pmUSYT7Yf8N$Y%ub54b;Gc*sBO{U>_`rcZeiYnN%LO8bPr2lg697Ea-w7GR-Z~MCeWs?&Y -XqKQ?c&YS2$x%9;!2ik!eSo>YM&TL=ftwU@-%I!(ZwJ5<)K|-nURPyCt_LQ%N+lUHZ`%EMaB!#@ -s8UrtN>PY$V!2$Rd&mk)B+u}787=F$Uch9UGDAqDVY|G{#I05h650l9xu&Eu;cTNLpI{k%#g-cR>V%Y -#GrGs938GYS{USZ8IH_A!y!4-M=-WyoNNrB={Q=3{B7_8)~Q`Mj2*`Kgv20ixs>;bERF^O2luJ(!4i? -E?r&Re+1QW|TF3acB{1hX6VX`#(|xI0+NZUASmK6+`>%1CW7|r?U?;87+!Jkv@d?EBW|l?1Ji|m1H|u -#!@Ozj!=SFZ*74@4HIhSy2OfS}}ZAheHwyh~Kakv7AC_mdBAj>cIJ=ssm?U;oQZQtsqUYD^mE9^}2&` -87TV$Skt|`Nf6%NN98p4z@u<%v#vG9tW)837q_3rYRIj1klgL8r0PZ8{Tdjg! -?BsQWPsl@dUK-6Y{o)FHiD*4zG`F#ur}|RZN^ -;e33uceiH^{e`muL9PVd~nNPFFiT#USEew!{3D+d;zXU_^$wDH?07z9#wks<^t5O#AI{nlZ(kS~>drz -hOddPi@+yz~CcU=79{OK=zt>X)o9>F3XUfc)Q_Ezdle&F7mQqYj$U -;~d33Kb}8Amwf0MxfDU5+52#+=!Y(+Ot}9$Xjorc!M; -928(_M7>3qR#PF%(Z+=OVJyFgqa~bJ$$MQ4`uV#8ePMn2c>44y+g96heLZLG8QWJq?U5-eeYYpqs;U} -vw5>LiX|m`XaImh*^_#`yZK-bNeRFkHsr+NA^YPU9#NLT?zhZ0nVcM1W{0DUlZEjHG-H~rD>~5FkI}_ -AC`TYc`#Kf(cddHcDUgO!Q>@*`{GZ1Trvu$yU+wJ-q6GsfV2+<%G+4~Ph7iL&AI|||xuk3uk1KyzW_m -`93zkj1{KTJ+_Of9Yecreqqz&-6i&|S03rym9gI!XJn8Ob}-vR=@T)eW8eC9t0F!xDa#&_A9>Qho8p?Ac$UdbTS2o~l_N{+YI!H#IOr!~D>|6FIoatP6nzqn`_r%SO)Ia(2 -qmWT1^B_F1%v*f+WGst%*EqTmw{OjfA~lt@LN3_VFng9z)P*B#r&%(xCMCX=+K*wOnnEQpF0MXRpVyP -*?Mt5&vT+V{h5etc92)2VoNLX9I^JCg9Nai*qgPn?$0z_g#{)teZVc=k^Kf1!%STO1;R -YmWpN@i5kH*PF=wz-NN3A0aX|+A?ZTv&x5Uq7A?0%5awMNK{p(G;Mj^`MtJCnV;cyt2K~MsL=vWLQoEVGtc>B>Jd-UYT80F>Uy<9#Y-ebcbCb29=V@@$@6mz>FMolkIZTdFOTy+OUmf*zeq -66Vi)#yy}RwZIU4zOeDiswc(%1*g>?)4nF$zSjwL43$!;GQ0Del>q|2@l=pH96?6$$!O`BQit3nN%po -otPPq*A8mv@PN6^s3dHI|Eg`yz-@G>6TafWFgpCeI-tVBjbL*O?~B=Hk{b@Pyl`KnPRyj~D7&nRt8Vd -_IgW>VVmJWp#UEb2`uh22&t5;b;6f2zu3X1C^T+{U6oo1gHA=8jaJKj?HHb$kNiU^@9)LkOcwUAPRGY2zxiHH8lhz7wN=)}m=g6G6UDNJ -zI(4V;DhXXrLw`Low0K!x;KA=~br%OFP48GncS}ABl5&b@Y8NHundc=O`7BJ>=^%MI0?>Y+2h5k#iTb -B@-NLqbw<1RM<9X{vzITMZwAX=6M4Nm52ey0m0R?io~-)Zo1@&$PASI)iHr4JrRc!oKRxhy#3%N{w}vU3$XOmi)LXI5rZJuBq}%|# -Rx{OLD^PW`)&Dz=e0Z}M$sNXjj*QH>waRowcH@^miyh91u*0$&r>}-VbWQB;&YLSW+RhjAP4AN4bBl# -7aZ4YSY>0ZYmD`Jc=^^I&X$|f2w*v@{yZcv$2=0sQ4CaLumwW{5k~9aZ`!i&Rc%aahHob2kd=ms60T0 -3e3-sqm(vT|LvKoR+qHAJ{*ozEUR+&m+C1(*d&Pzus3>E|1l!-fuCLxY}56Ky+ -5j?ekoW)6f6F=hrQzDSJ242Y>v()rk`C(KQ5`*;tK;6V$Q -D8LVn97kCh9ntp+n%ZSijLeqS`Pmv%KNkmGv;E+we%pWp>TZ7GOinNibjQVtuW&t(>ETUNim8=kuiq1 -9~4$G*!f;RYpC54T^^_86Sljw&EW8IN2c0P -RBo0u=k}KKd!x}LCy3#B6NkC+RdWs-48MywhgWO#7-9~uqJrPP#1#pcgw$liqI2i`9_P}7kYH6o0Z)H -m^XFEocboF>i?1Td-aV^Yp-Q^%YW#3C7}NdEPHFYqFHx9IwrlX}h9G4v53t!Cz#rw?JIUTa|m!KCXu7-aRAkJAf698joVLY8>fqsCj~&Y*Fw(}>VZ -cOvraF|KSU#^jrRV!RxOI6xrV@0!k|-}2IRD(TlLQvZ5NA-CQ-^p -5nP7|}sYh0HALu{{gM2#a2lSvPbi&RAjHTW*H8@oPG&Q^YkqTUYxH+5_|^vOozqSc??SNGFt9+1mYZZ -LjiyxJZp=d=vT+VH*S7mx|jg)2{OQ>7yr0Say?avP@PSjH$GcfdurD8ZM+GeO`|8E2NU4$lWF$1 -_W2Ya3~dk$Wq5ngeTA`P4|L&~p6PVAME|*XR4To-h{pUeyZAyxv!*>lbUJ6XP(p_){V2dkLkrUd!|9- -28vPE1&yXyo#^{Q;6A-911qKYYMSWDOwbT9AYg$1{ -qO%Zxx@0mYdg{4kqFQ~!~AUFn2_B9Z01co!e}i>28X^X&^tVyWiLB6FhT#(`xRsNqTOPTVX;I_Qzuf8g`vwHlE_e2bB0|g4P -`UFGS)Nky86!M>giGJt^?Wr%ay~t+kRE<8QSqL48IV)T3Uh#lhCZSOJq=u|?39itz -S-#wI>>pGP5x@s8IoH>oF2vf0w|0BfJC>1LIQIq(H?CA(RzI{i^uBPNat;;5n*)gnb -OV-3Y_LeW7VCkafhk<2JbKKSGldk~I%$SVB2$}0@64c#B%H;KD -jF4se8dO#CrzUwfN0=9=Wzq?I8ArIcdlt!9rGeL>sg&qSjm(*T?lqBv17x|HayBwF3n5w0l2k!Rt1xJoI3jk&TMjAud$bu;l?`l0FKB_X~ucZ+PA!Z4~F -&I9>&M3*R1RzXA*1=7|`K#-O|LUpY>U#iVp=vPf*3->~ssG7FCDxt5VYB}38IHx-_N%386cm1t6oQ^v4I}jojS;{?!2`)b;F -zgt!^pB!3d3#_|A4-k*9|s5GN}P@*7cil}wka*u44J!F#p1oBk8@Q8MoXA9$etTx=>?>j>pp!NIKm9X -@uuZ??WCCe2CsYXc_T@j^W4SCu<*+{a&7|T*a#%8x20U#dZYo?L$!!pmW59AFA^15d?n~*jvmVbqWpB -OvJh5AMxV}5R2#^noKu$(A{Vu8G7WW{#Rs!+xt0$z6!KessctgER)l -x(h3apV?41~%6MRg+bcBn(jpxb~yax*y<}9GX|Rs;8L}#3ut-c -xwPW7hY`4Uu8Y1PhK({J>IUOCCB%mk#+1z%UhSLf5_*W~%U9{crZ-;kB@4RH| -DJDxvae`F~KP12i+7M|LErs4a@_TfKF!XNU(x@cALCb7tV$XuAQu)ELjNbvaQ+VI-+%BFko*B-%0RCA -CVqmpA(h1U_3CAyjR5KdrggtFrPOFRrY|2q2ObVlRUMI-a@DceZV7q>A)V|bUm6_wP~b5iAsjfG{ROj7(3gXc%E@%+d<~x4P15Je=x6?Se63# -RGC-H2yM6S}*8I7`6-GYQ=YRj%eE+Vvpwv~P-{3p^8EN+g>3gW`_=N4B{L@EiY-SaGY2L;?jARz_Aly -54B3xUT0mCNgvFUjHY(1QuhY}abum>G&5hp78GRRpo5WOZ8JE@2@6aJ^qh-n#PE<+t{#8wE$@R6jr;P -;yL?&UEqR!-lbl>`;10BAW2kM<^B^g0&Z_m{aT8?Sa7=gQp=Y^VdgAfdgTiv0c-K1@$g$2niB4JKy^y2J{#y5Gb+s=yYA{8xE;JlapUwsxd6fV6fBuJ%$F)zbb -*R7+n{u07wMx}8e|y@Gwllb+zU$3cf0tmCiHOkzADj_k`vPO`b24b~*wZ&baJ?K7<&O10$52&ADg4nA -UnE7mjifNv>64-)YU~qZ2g8Uu@&hI>O)A^%kYGnswt%{#-serki?qEY$TXmnhB(1 -!8d7e>DWPP1j)}y~y)I)Y>W7J3Kl(LAe`7YOU0ErgzxXLE>~7KZoUkVI5@}(kVci=iVg!2zr&BOek<) -|Ay@b8ej*%-(DqB00IX%gpbuuA8_PUz3bW0}uNkaW4dmQCl#|yXEvfiu2LbL{5!{dDx4@WiK?{0=)c3 -}@F8)E_D;V|7mLZRz#UO%9Sa=r__(SpL9Q)?pO|#Qw383HW?k$^;`OC1(!T?&~K -jBa0H^uuaJ=akh7Cw#S;Bv~&7SmQktbPi1L!3ir8p#?4$ -Z&Tr~3;Yhj7%3TM7?53&kObcQ&bf@Q(p1?V=%Yfx_S9WU@mK7{|lxa3lAyehPg9QLBV6*5|Qf|r(+V1 -w4%IN|fepSz)(OvSYE->)t`+YIb{)ApUu;CUP)EL4K7*1JiXW93Aa=XK{cN>sARJ$%U^M@5uY}XA##z -JLRVoL_QV -+;UwOn5A5`_;%Y=*o^`aR029Wjo1Bl4y2~f2~#`G^YF6^=M$Ra3GB_23wH<}C`*(;WdY??xi$eThPoD -puyX&!yxqgIi8+6Mj7qPMbyKFut}S&cIkV0tAhjk7jRR**+7aNjC})qwMhAEICP`IyM2i>IUdaYo#dr -7ia4$HbIap9A)W{Y|xtMP7e*jQR0|XQR000O8;7XcS>|~*i%>)1d!43cb82|tPaA|NaUv_0~WN&gWa% -p2|FLY>SZDlTSd97DXZ{s!)z57=T)QglV0`_XaMbmCtERb%3jrUNvftHczn5{$#B)z+a;r;EMA*nA*3 -DRP9us%o*XWqOw9E-Y9+Crh^Ry;LK8?F~yt!l7`M#v`+e*CQ{YzjBR;P1QJ6#ifh4X1G1SfM1V7JgM$ -@-5p}HaGTAanmio{_X1H%{sqd|9NwLAEvq~?TmYRN&RhoX!v5WC@N+QtarTT%LU*SMbQ;`YMGE+!&Ye -sHY7gRj66wUZ+Hoh2UxoG%TM35D0UexGpgd*um1iiTR4+f`pJ0XbOonligshH4*oo(phB3*60V^3!Gq -d{{Uxh$nUY{tu#v%A4}_s_@0H}vT?UrIfiJ@DKz5Tm2ZY>lEiA;3N>!s>--VHY@9Z{fz2{krl#kC(Tf -%uneiV&Co(m~#p2s~3yxOMS$~M89kn({Q%G1LGtXzC)>--YPdHhQ5IHSpOWIGEmug++JIcg4Z0%F_Yz -$?SycgPtQhHHE1(&hylQ?vU}CIlZJ(E1eJ43ltm32wbun7Fq%HUg1rQ92S`hfnq*@Qdg8@=*&oQX*_8XNr{Wv4Uv!6ol3SYO4lcE0Cd0%EPYv -LU8Z8V*k;s^0i==UxWd@pCfGS?TF8z_!i%%HR4$T@^Zd;SUx4nN@pKdQW8cfruQo^5l)YjVS3w>tkE_ -fPG~!9l2KFK4H3B^#ai;vNMi1%3Qm=z-6IIEZFmef0^1J_>|hT;fsW(367Y^n>%_&Zj8$gg~1; -20gvaq14bxE=_TRp&k6s%j>PtAVVO$kx*ZAf8F)S?pjQ%JzLM~+B_PGdgkuVkwo#wNRr`VK%`-JG{iq@s;KJHsJ4UjBrq? -`mvmbNS|hzV~i5d$Y@}uM-o;=2bo8E=GEXhB~z>=}}ir%VQ7yOUj)fx_*YR6G3t&XEhm$t1BJFUTXxQ -bt$+rr-5g?)$s%bW88!sFD@onr*LsG%+P7lR}M!*?>Wq^o9-^JnsjK*da!PzqB -pT_$ZtFKcD&OwWdq;mIG5woYKRf;VU7feDQJT-?z|>54My6}^K;)?yPqhXPKE|4Z--K_aA+G|$PcD9> -yB50~fB65t1DG<&MqlKv1C>NEZU?K#;Vq<*(X3u$8?zprY^;$Kip0|XQR000O8;7XcSQFZoEM*si-W& -i*H8UO$QaA|NaUv_0~WN&gWa%p2|FLY>SZDn&VaCu8B%Fk8MOG!;jEX^s2FD|LfNi9~$%q_?-Dp7E8b -#n~$35gF5iS%&|=1K!AEy+mDO@*ll0dcsvxS%Q(Y#|~Vs5&*d08mQ<1QY-O00;o!N}5*a*v{ut8UO&K -a{vGx0001RX>c!Jc4cm4Z*nhkX=7+FbaG*1Wny7tYc6nk?LA$O9LI6*`zyxF2hLKf5ozZ^SZHK3B4rV -gNP%Q51LwnVcBl7lbh|UF`QY7(AmGG#vwhF)4yQ4@Ykvx -g1o$2c8>gww1s_N>#byIJnEL-@u;%I&Uhx+q_^^``Gw#@{Cs@qJTPY?ZH$nfy?<^4D&Yck8;@%J -+8PPS%LM$h&;C$=jB-621B~kJcsI6dbT?@)cX=s}l)!nr}|BZYfIlJB{Fjy689TA$*!g4`nrcRj_4sB -!S~e1kcTCKc^q>t+%W!jt6X*b*PV_v`uqE3E56^`b!A=U8~*lyebTdPC7>SmJ6VBdsNm+BTza8SpS$mm5~)TQ-8At4~-Z>%UWP@#{SLJ+?osn_?c -_h1&3Mzg@Cs4qbq*bv68Y&^5rBi{gFA&OjDg`tL(5xNyaDfcvi8DB@8N?$+JAbzc>NXNfG_HLUCQ;$y -a{>zypY-x*ZxMBxeqc3ZWYCG@HaD-dX=3+Z((fAAr0)%$%QR|rGIf8S?qzX1jxHFdu;kb=yXm5G)<2! -P}A=y(JF1HqCY_t_CUdryBy{JX~ZAgb>2iYX3#h%cg`UDZ3)kA`T==$kC>_PU=B@I@Bvt1drNCG;kWI -vi$W$mQo_wpFMe;>%?6(Ve@u?tSziO4WP^#BIm6@hnQyX!=nJ1AW>~CzJQ@y>s*Z2iXTVzni^(`|h_N -z6W(~TsJ>IczFNL-EYI^H?L17lY*_I68HzRlTX-dd^U-pTc~+>AO`6WYTm6YG3idrqB}N#%Bnl07O(S -i=vI?wsK43;w9`S^H+Ttk)2InU=%9ufm7O;EZV@f(dIM$e=9^X&w#W4;$mI&Ygo=4dw$0CAdRIqCB5& -Mdj|bng{eg}ps#TgEMw>W2toA1AfYyJ0Qx&b=A% -a_*N+}Wr^h%rG@QF~b)s6tCl}aqkn0*oItO;cFydFO<}@p%I*4MN8g^eRlw$&k5QNMS==7$B{}Kyq@< ->x?)P^z{MqZRH5VhxM0W^A?1IbV_j@#2j{z!e0pOxEw8;NonERb{{8%&iY12zDUmdl1c1{OijpmIZcg -Sb`IMqyng7K?4s2~x%N-9@Mpkb8q7P53~YoLZ;X}dDCy&P@MsuzXzoP5^a%nc_x)WQTI3+R1p^7 -#%T%FWw@>O@@=)yxskSAoQ!UMHE_j70ly&(*vLFg;-;dJy;B_%^a52dZc^dS5=*-g*LWyhr*ShU}S25Z79{3x%ZjK_ -dlz~{UTZ}Q~K90G*-LR_#J2fSCy3h4KyK_kyQQifs6$qHGcbmo_0^YFQb*XN=>~lgOv=mnfjl`t8w8> -Q8C5-_nBYW(rBsm7T}rCO{x6hgJ@$k)jw@8J-3YcQ||Veo=K*`oT+Cbs!u9F3Ukpc@wYH0aXb;V5{!9%N1^O -X~56$UxR`=z@y^BEzGErS;pT9YxLwz*^A_<=UZv{((Y?v60$H+vd&Fak8wXleX>d;$T^I*eO!fys_oh -eDm~;cOi>F{7R-nl;S)QStGoAC%nYkjw5xY240o1#}?Eujjk$-*W(A=;s%z2a`&=i$ -+(72{C3>~?j{J4@L%>_L`*TEsvZ#U -qrTY6ly6x?dV@`hr*QNIIj^lg5`bW2yHT^2d|482&E7i96fngixVeX97oW;w>MThRUBLU@d5u)>m&@32SS1opIO8qn7+G@ofSRRMmJZ0iSwP7$iVH0xjWVe+IY!jG)y$aHQhEat#3Cbuol42$77BO#c(gvb3kvp7YWomD84o|-Mv3Hfam}Ww2-7)C^|n3Yg@ -M){bm*JNLCmm+g$^i_uM!Xw^9qt2SHZF!1)e&$}Tap17NIK*NAFY0oQ`CdnF9NZsty4 -ZzGo^wT2B>2I+s5+C&omP-NlA-K`TMnddvHHc+HMJ-#PaSNmO47d?3GeARqJ9@naSWQQjxdM$! -{7!$P@B+&1;Q>0@9mk5mVJv0i2slX^UQDC#5J2-l?C`u6>u_C01g|qU!SSd|B1LHkVunk6%c6O+gNVW -o{|KB5;UqGDew?WgdO3?I+jcCeNb@YLT&=|N%sU1;{?(#9(yp^e2=h1a3M_XPqpovtplYYE^`@6UA;| -}f#vX|mhnXKrKJ1!o18tO6zbv!Rl+l4EPwnJ9Rw11lMLpJkV2+T3i}X6=L+UBA-aw -Z!Mz+}7(O`@#4O?+H_z=j{tqGh=(h)Q|D~VP`sDXpcCk0?yed4$s}d=5Bc64UvA{Rf)SxD;EIVeeNOd~%OBJ-o+wGKJqO^y!2cd#bekbd|YpD6**oW4p -(uYw)$NnbX&dao%KBZ5Mp2)I21e1{P`nR@sfx16|?(#%SP73I?~&anAVM0y~0N^Qx8>A!Xnx4u$7TkR -s#Y)Z|k>L4fMCKU-S7_G_ZQ_Ks1jnlkpOYowblc__PwtG@Nk!=vueo3QHhY8F!MN)fS*r2{ik@^~7u! ->m4Q(plDtC;I_8c+bkmD*4xv8&{;NX>7xatc*>pj~g2X9<`AYszkq0<7w~6A$IQY-Jup>{OkjH4_MfV -UnRr_;VizN0L#R9p*f?)SU9?%x5-_*3&0W)vq;AqiqlV#1c$9vF>x56CJE*4&WuhzKzl+fN;~#pifj}IcHSv#N~L>2dE(XO7D#N>v#Jq*T~8AmTjEW5RTTYJpGEM+uK(&|CC --$2sqqpu;a*D2g!u95;wB{3uP}Dv&8$}wKf&jJH->`GP#ndf?u(A47|nkn@f5ecR~}O#Ay#pf^HlT8j -H}@D1;$qJ@$%E~(UJ4$rlDM=UCTq}TbRB&#W*q78TA`ei!;-21^XxL#3=_ZykyM7E5dw8^9-jQT{`9H -(&MA_f*mH5sT3-SLI)7tv!ry`N*qqi?tJj!z55TdcRsphr*O9UnxWjp8J -}4?X%#+tiI=zP>S`xa%akWCvh^}VlV#XvJS3DKf&ZVld6$^*QpR=Z%@$E!g7M{!AHzV?Nx<8vaMIx(4A)LRuS;+Om93&YLOMpzJwiT14i9b7z!^ -IR?aP5-CJ0SQ(-<@tl7NTdaiKV2dvGetruC*W5zF@>;=m#R)dMFN!kM>wO!pF*+q(NfP(IVWB3wm*)O -jTK9V?5EK}_X3w02?C1`s7Mj!oC%k`Yg{Y&t+VKDf}ARqyYN1R7~a8hPP1IQMk#ZFxh^kT^o)+il(e6 -i$~6CKPZ&0RULbc(jq@t-G6JS`$ELz9t@f!Z7flYu*{%Z*8R9H -tJqix=L%>RB;4t&25pOUt90pQG^iNoFbu~wFrHXAfSUW%PX_r -8a=4IbuE3wiU}g>UNj?LI&&=m?r?%Xh7eBfsA738i<0~3NnGZ+|sG@Bf&%#Kb4oUq`?tpw~W6<6R8zx -_@TtwjK7WSh)Z;ErIym(4hHXffcn&@nfW@i_{{WXQYad^LQ0dRb>3aos>gU{*hZ~q?OSnNr5W#g|2=g2!~HJ&XO9sh{s-X{N-xOm#F -E&Y%x~XI0c-uslLbw^FW=7=T_oNj#G_aHZ@vr-B&9d45ubuUzNNo%0?0Jy&ShXeGJuW*sc-TT238tht -@25jbED-7v+|p`yWCBeZFvqslpNmb8t*l!*~K?yyX|^G)9p?ZS*by;>xguF0aag0iy`ks8C)MLj{Y=3 -)H3St)Tg)@cPUdp4?)aa*Hm}aCP=c52QQQ<-KUb)xa1Eh~_AK((c%*%r_yCR^2>L%AUG=ImfIiyVMEm -8-Bcb*I4RaDrRUPT-EU`%v^+oz{FEGsl^Q=gSLou-ew|{^2|%oGwq*&I83Hb2QB=&)qqaA*=!(P4@t= -64QCX#;*p84UE7u2hNaU3y%|hj4s~q(09bt(Z|jzpE=*~_L|S6TY{1i?kxN~D9){)e$sy9ICPT<=xDq -?tfz^@Pdn4wv%Zmc7`}q1ix)JEQZ|%B_7nhmPy>zi#I5*O8eN+@umKSrN#VRsu?KNpM>ftsR79uNLXQ -X5Lm|p@(nj3>|(1=(nHe2Fp&>#C<8W359>Jm~WpK)okS|1QS`J5|)@;Ofw&4+J{YuOs{MTd*dtL_UdA -7ETk6HEo(g207GF~+1`8YgL~KV3v%&l{YS1=9fv4TT#Ra*Vs4J6&Pbk~2VW4*wtP)L20OB8kZ%>H~xh -k?C&=pl(2&9lQjAV^s%oN3;M@M9Ib5ygBK2!?S(*z3QMm#5<<)C0^>FH(~HjDZ1jMq-!a-(}h>&9plC -)ZX@9?q=H|3uNs((z9fg4`Qqf?>S;%muEY|Vh@Iafy#A2RvKyVOSF65hSTRODef}2RjVeqHa@2y_k$g -1!h_$&rGvbe3)WpGPXl4VuXQMSR3XM5$RRr>DX*7MS?Lg(dJ@srK8FOW4W!trJ5JO-QqOF_sf^#`~5= -2W=#r3-ergJ=9SkUC!4Z-5}oz)_bv(Dzew>5x5tVVWo7qMBmOuOS2V}0X(PxlW*o#G%F*VKMdha~o}!b-_vw*T7$uHZ{&%d~uchZqf0*)9a4@Fu -f7fJB;MK5=`NzZm`14;Jym9CZ(K(~2DH9f+OW#NyRc2gt9b*oaea{0AJkd{okDd>>oOtbSQ(|L!ujJt -M8;9ns#&rS!>`6#LF8Io-mekz_FW1O%(*|UPHWnxsl<_-?I=UtXlxBOp%#9OP5>tmq{fZH8v12^&8IjQ5i+U%pEJ_YJ{0IrkQ)5wUN7I?I+>0+Rbeaxp~r<81%VU*(xLx -#BPK`${1hCTbJ;{-1t4;D6pL*k{46IA2tH{{iag=f=ioYo%Lm9I@_#1wg?7=2Fz7M4rY%){vqqM8vKb -FwXT3TMI(Ia7cirzGwt4PCOXM2L&uEU~uwM0SRCNqMkUet!DArI7ovd<~>)Nq9!a$f|d#)hrOQRAop< -!*YKARcuYX!Hk&uc>fZDwsRUfy89onw3JbVH!sQEPTNlNGw-;tiM2JR<9pG&@|_NE|Uly$h8*rW^}XB|yY5vl&_n3l?nCFN&b#6vw>dq)vLU0wImKnZl?_%L?*y!vAQoM7qmyRdD!4kvRC9_*zcUnxZ?uZRD3Sq$MXYd*zE@ -9o|!5=p_ku$Sppg#!o|AB5>k@5UE30x!fa;V{@j=B98NIbKaD0L7J*V|( -zA(jyE=hp7IC-W{IzCg4_I}qgpcrgd~*3%n=r-a10~Tp7dc;LtI*dp50)O>I%m#PQsxtwcT}lna -5v>kQ$~o%j^SEJM-w?{Slm^o^eK7YE4*bj#xztXb}~A_*UX((0&lvXo@2DDTF%a8v~}J>uN6YGQy(Eu -f&zNnG6T@5XErdT+=fQGkQ0d-y;5_rHAp7tenE?4N)2FF$$y55M^A+24Qmv+ -qCuvuDqL^asEB$saxc#~*(7?8pE4{XhJ#pZ*QNJpb8WKmXgG|LULq?$>|(3`>9T%jduR@qho@kDmYVP -k-~TKmE;*{tDpX`)AL7{`?1jqL@)r^z4QX+0fsxz^`vax$)-%)^+WXs44~1P+gzvQ?lgke6Oj#YXi6) -$OZc_?>EuSu3@M=0+!J9JDa>Hw`CK(mp3PM1$r+8_3*e~6U=EIvZtoE@RVH@-6`_p+9`Lm=rqU6o%t3 -Y(j4=wQ*m9slMSOYh-rk)zh*)kN(L)+7|gX`f+h_PhjVkgxKPax1Z>tPAGe$0Wc~34@0t!_vi`=2ajB -7coSS;jdm{Qb`5#bA0|XQR000O8;7XcSKD`&3R|)_C(IWr=7ytkOaA|NaUv_0~WN&gWa%p2|FLZKcWi -D`ewOZS5+{h7qpRef9c_7ymp^-0Z4ZsByTf1xT+FnT7?89WhP{W>?UhxKAEDex{+#d6gAYKFr0wh5GA -fMzf$S0(#x|?j?Bqi$*GKTD~s_we+a^qQ0;5J{66Kn{tmpoat#tJ -g@9dfJUTF3XgYK^(QRYy;e)BzBLz;F}QK0G}DNu*qtLZEF$n;JzZcq-U{6c{w83!wy3_zsW;TEn@a%m -c<>ZCvlmvNR)XT?%8@L;s~tJ6?swAyp^>R+g%L*su5vdHhqREZLvXHI$fckhjFQ-f-j|~BEDfkAW~5U -f!*4f#~ZinzePXJo9<8Cu74J7xG`T@-5s;~2%)s1JFwz{q2fS=hH;06Y5GY=lK=)QvTT&VVF#bFH(AO -T9mPEvufEi~+a;sLmx^|~%y9BeHM?Zm-wQ&iB`&rV&@WeAvL<}|#s*!2HYWVm41E%%JdvpP*6m>weKe -12tX(!9MWxWT6P~{h!~LD#NJGNah?gz2v(@?;u`G%JzQ`RCEM`q_7rq*Ud=v<4jP|i$tY_N)1C*J*_! -w~3aUQd~&ij$z)(mpSAs?kZH)0gPgjve3mFKa=W!F2g-mwJce+hZ5F2F_wOR`981dlv3YMS>ni#UZOB -+Fr_xI=&Y27r(T^iopHGY*rNP41Lq{Q=5=l+LFq%jj@N9qH>Acib<24`pC5KJs0Y92L_Hop`0+c*i7r(2)5mcnRH!Ydw-Lu>)@d9z?5g&m1mB~kb)<}RoKD!m4NNM?EzS((TD -9ptPL#5Z9KA6VLI>3Cte79z;fc;6iZ9~HEwXO}eFRTp3Y6Nb!ke4ou5?DH-&z+XZT`>1WLaed-YN3!q -GnVN_ZD$7GtiI{K0^**?U$z|82frqQH`6~F)F0xU&GQAPcWXw_lgd!y{FkIKJ4P$LNs}3sI0>H&?wwm -@5*W$`?%+=pA2ZSJcdDCXjo?ga|0lW9)?(@NxGkd4>k#wczx6xm|EUZ}TCE4Pb@tju(eur%nq}P}$i0 -vgtXbMy+1pu|X&aR5FFbr|Cu6R;@Q`xPQE<3+j!(3qYSuP1c$4|kW85&pd38*$V6TcKBX$3>tsci5s2HoAj7H8$R+tK++ySY -E!8(t^iVsEMb1kB3=WEI&ya}jfl=gs?bz+mU-kO7(VxDeciDQO(i|Jz8)`?#yj6$)GJlN}W-^tkUEb&fy178+*VOK) -=-@h>%gNm%4-Q*8nGVy}D5ekjMzZM$_jtjjpRpRRtKA5bM4yMC^~ViAsPo5X0$(qNP{gJ -P2A+5tamnFhahxpfFf)|k}tq3H*;^D_d>RvH;IoXrF-#xzV|5h5~KL6C%Cj=)+l_5grC+$P}yP#XOCj -u&zTQ##8wnFN~sKoyB#M+SVD5!Tdb3R6Xlk>wTD7xWNmqi!k@`=-8Q -Hz7Q4Rp5jcxE%-3BrpSMm-LSWtjaVa(suX>zz-qG|lS^KdDi~)H=G5Z!n|0ZyXwvV&g9nf!!UR@#T5oGb{T%#wFTJCSb7X1;1Pb&E&04c5Q^{)d0D-%Gz5$bLQ&k1e?*lwzb -$m-V8Qb44W47(yz2Sr57v}Sf?^LN`Y$WlN%~ -bMNFV5W@+PuI+SZHgfxey!$?zX#&-f5x~1^~YoMtBUtcb8dDT4IcH_p -8@A`^f&clLZ3YMLm?1qWF*34*ZC5|R%BxjCSM+a$wO%gK@zyP2qu2vtg-?cxsb?GZE6vy^MRu3~ocXf -4jb#>jkfEVI*x!zUTa@B~hPrmxyG5quI;!m4AQ-ydVi;v~z=tT(gZ{j@9YPA#pDT_~KyZ3kEfB&a}!G -#j9R8`Bg3-G71UTviKURHUzZFm0$Dfq2;FL&bmGM}sJ=mmiMkfo}q)m&@}XcEmziLjMC*WFbapSK{JoBwn3eU0h -87$A^pS@8A7+Ek2yRe}8s)eQ|yz-n|#E-(9}BxW0II2~Tgu+2v2-&li_(CPD$5U>fzXu8@8pGD8-sIr -8gDseph*$pqDFm1c`9g>@Cnja(|REbmoSz;eV|Rd-p98(9N+bHI{kcUdDFYUwO0J~}#r8Oy2>i%pR>W -trEeq2Ae_&8kvz4)|?DcBky`-5O_>wP;Ke@Dr)2j}}#VC*&*@y5sEC>j^vq7iHSqsb*Eq873`@bW>HT -XoRJw*#J|xJ1cO}wlAyGvMM*Qfr`k6#T~&?FSu9cxtMLTyg7z_u2fU)1WwqfWu|K4qLOt6jM&t`yqIT -*8Bk9^56Mgd*ToBv`G3e^D4gy9psn212f!7(=Yg_C!iNse>t{hHuvrHzDHxJUIPZrK1O@SP=EGsI-J8 -5Q2>ejcLcz&+9&AJU*f!~Q-G^$Eu)2O?3d$R_B=PH-&BhUry9Jww?=OA@J`edU6v|Xu!xs=rESx#+b)*Qkqg0sppYm#(@C -NZR?3sm0CK;=CL2G*o3fZ$BFxzqt&WDj7AiLwaa@uhzK)#}vKJVxFPi1^F-=kKU>jD_PBt({c_+;u7V!F2VDWjaX-EF)zUvc|q>4(P!XDk|$ -hNg`AfHm4wI^0_CX|=+KcjQ;@%W+FdN{Fo1sRxyU+X*DyDS -;#c5~2-;!#p)C=pIR-$?ml)U)otFV!O)H6^z{E;2ncE_X$@8NPu8)Vnf^Mz8GtSmuG)DpVDHpIW839C?Z(cSb>)(I69#yN~A#HOs1b|!#7@gKwJ}FLG-C0_`LzG -cMH20@tizk6Te%t(lOn5rWg-!33!8~CJ7TOj=w?O$&ACl8rTZjt*Kxj$mS^iSc1$gMvug;r_;x!YLE# -ue8M~&|4a2WqNUO!t`K`;kLajv^muzXD2FzBChP3~kJ2jT)nVOD6+KMBaPM#TBzPITdt#B6>nvAv8e0FF1=d*C -MNG@(CmQh4cJazyfYaLrgUMEs&wm;!Ig{(CqY!r`POZ7*xiD40W)cSmhY`V`Ip;^QtPVKBaSBq;d_xk -)*@0!t6)wY!(F44JBweVWd5cWpP6#70egS+X`Cxp{$oovGu6%yKn%K*V*#)&t8?W#pX-3;3DxzULg>Ja#62x*gfw)e8PEvH&NkvfIk -fb{|1p8uifZ-7k(d>CnPBJdFdXzq&7Is#a`E4L!hHQ4+8g`A)NLbSRo>1=EoQ -~myyF5S?8Qc?xY~mI%9*08Al6GBf$Thp#!rqo!VbR5oX`n+wLSBdu3S8RaUmI|G?>WuL!aqT~zX4Rc_ -<7RxdBKJD(#9svb3aH3LDfWOuU=~j3Z4x?B~!>bagP6AaHBbl33Ru{%3EH7aP1tTmVJ-XD$L)f -JauG!hJlVfJRUwz{eL#F@Oo||pfso9UP8=`4oAqG7rr5{s^XY;(1Zg7U@bBOGSY~ -q10R_4ZNjrFyT9%?u6NMb?OB#Y$-h@=ou?>Yyx^f22sKPRjoUj((&3cfKIv-Z&e}+v!_`sKBv90SEOA2JVUFvX^eXCo=(KPT;?(_ph;^5TeSC -20LQ7>Rhl|l42LmK?0%Rjj9v-tfk5&SEAb6u6-3jP{VM%>-jOl^V!u -jY)Mh_H=PoQqg|KzL4v!>m-FQ1S@q#tiv= -R&MHihcNYuQqvTTM6-?asC3cEn7cN$T5NKRx4y&_UIARblRBCIN$ogYM}bpKh0hz9X*aBLOh00b -yzs@~I#IY%2m`;H!ijh+?KjhHMmrVJ~m&hm5*V~nBf?c`Y_`C3V9`fP-sTF-OD$+ew%!H{>3N#L-%`@Nb3x)|#mM6d^|uR7R`?IFkPH>xfX!J5Ei-a)XM!B*>0H -3*%oIQXqW^{}?YDwi%gt&)yS#m+pd;2Bm)QfQvWygWKJN~SB4*&b}X+2ytn_ZjR|>7Q>#LBgKm5livD -AmVGJ9#mW=BeseT3h0gdY>u~FDBr*%xm;FiiAf#07?Ks9xE?g#{B+Yo)H9pLv9DFU+{$j+wl&WCpiPQ -BtgXwVo1#3H#qO8~-TL_*EG9cM`F!%Cwq7e{Di>~rhIF7VSwt^owXAjec>;Rn({>;i-N -T#+7Ea@N;P@z*gIxr4RC^}z8iv@_-U$i_z3K4R*e%aRWoB(Q(#GK(5yShCW4?i!-wq8X@@=R}5Bu@7{ -Thp}GmZg{Nt@j|p_(aB`$H*I?aElwoPtiT+QGT&zX1qAi%zi?MGGcSrf(p~5@xlzfQhijrGCK+FgM9#e`QE+)I|*X!TF*Awd3 -C7g_GIK4IjUkciNw|CYX>f!_q=UTnVf-RXW(v(njJFW|8sYtJbh2%pLO3vkzwO-{amuzO&1|zUdpWck -2=QA=Ub(9eUx8jt3~?)JB&WO4V7!1~6((973^yZi!EKQz>=Tjr|Sr*xkR@?rnh?coLtq(k8r#g?fM;W -*c@I-0SLV)V@JRqlhmCvaY?#=Xv0cUi$(STZcVi4bfiF_dy3vfK>}zf?;ltu}j}?v@Xt?_&Zg=ZZ~Ch -6W;i7u1sglT84p5M>wx{YZvNV!;!$nmTJ8|I@*9f+bK+&0+1 -4)t2M#5!g{_Ldb%{=23ayOtb+#^Z23%kteucBvJ{>u2tskVJ<5G_}laM9cikq(ouY?(A`M`Dx2Zku0; -{t>`>WJyM)QRZc6Ru`{||aYTM&?nXCh@PyF?c1dQD>E%~!YLn^W<7#>>0el@w_|VLDBTlhO`U|sA4cUo3x4OexQe46Jd*IC{SNX@1+ -;Mx#x>2UEI~WqSEMLZJ1zutGAcSLH%WL(1t#7NJ9|XgmVW60-f7XXAs%@d{i?;AN&@)3xh)YW>vhEVS -2(`s%-dOK`Af;3M!mrR!94MJ7;X*fY1&YKHr#3gQ}ReakN*D)|hz)vDY3BS;O#zyqGfSyd(;`C~*M4? -z*0}PA}|BE?9(j?7(T62vPa#wozaU5D>k!rO}$zGkq^wS&~D%i-IhfkK?RbZm<-&HgA_MJ{Kvn5mf{H -=Og~J+HK2fj_tp20^TW@f`1(OvtSNfYbTA~yc^jmpzJC%I_E($2QdDCHK00iBD7URy=)KI7*ogdO=>8 -2D+=e*I0ETpJzz_k{e>8zGV91aI(iW&Rt|$HxXfc<1}p?G^lNQ&#lw}{nQ9fOm@sn6RU@r{7LZ+nP1j -}bc!@GsX*PEZseB0!F?#`UK(-eOhZWyF7ku4Bh#xJsIMJ=`2Z*;Ku@?5XCOmkB -aDAdWp|4mF8-42- -D({K#HqMQHP$x#o-GcyRcU=FiWrRX(In`Jfu*>gUua{|dFqzql^>SFB0iQ;*zJI!MZK-ebvZAwS -qsl5?LE}H^y`Ho#5U2lINuD<-B$0Iv>2*?YWoMue@R$_jeP2{5^cNPv24NY1UOw_+>>}R-%yG1N7U)Yzs2agGWb@BeY-1q?5(U -LKAH8~t!NjiIrJ34P&Etqt1}pcg(>7=({*^(C}@f1z;^mPkdm5pr~T7MAj0GS7(B^&mBWS0uqy#P -gCsBe9bi#rL{wPUL)9`HWTO~u(wYuGhL|QG{wKA>tD<5G)3#$F`jo$Xw7?KzB;C)1a8%$-3dA6T8Fb( -z=%Qam2vgKY6H!WUfC1_&bO}B)%%04n{TKuuzvrd2ez0Q#{*nPDJjkibt2T)4`1QY-O00;o!N}5&$&1 -yF11ONcv4FCWj0001RX>c!Jc4cm4Z*nhmWo}_(X>@rnUtx23ZewY0E^v9hSKDsmHV}Q+R}7pNDUg*kE -eh0yi#mz7>vroDv3G+-UJ(Wi~_Qosh^oo}kb;gF?_ -0m<2*FX9@jODnQoj}%H}AT2~h}lnIO{YW%)~{@fM9*k@lCRuVsb*C88ro`9( -pe{fcGTh+K%Ccc&<=aP~&fLZQSMx?rO5D#s5@`K|rcR&1XDd>1WkBdkLc0ljbOfoY$2<*8%GfW|lx!@*_eT`Wfz7mE^bQ?lAJ^h_ZY -Od{8S_+{30}Q3WlAI%0P^S7pv{AU;5^P0?LgWC~z$H(Yd==Y-c+qBn6Pu*i0X`Q};k~T~#b-FFp@oo& -4s3i+Ja(o?#M-6|QLpEaUoOh&CrnIt&8nLc8>_o(Um=u4y8A9!E^Na -ct76BKE_Bkm$a3L^+`6N`yE6`Idw5D6jSE_#e(ld>xGkWdj&2_UX-<~5>LN3wp4oIDQ~cA?gl0h3Pjz -6}wC%eg^`?#up^%?h2QI%mzc`|5V@jma#JJwyByd)i8@B>NDbB|<7W$TQ+uTe -uHgJ&Q+t2@6?l72v^$zTh`GS+Fs-|&^IxjBVMe2dX*2n;-dyWp7#W#6-wmvzZM}R!@*eL5l`rZ>zJ~P -cs-*$;f7Hw|zisk!NhgB#51c9W^I{8~+6%z?&?|SRV$0-KP-9c6SkGK0Bqkf}qiR#hb>Z^ORu9I3*iClomMX9KUjT -TM_Z8CxEpG}?viQQk1EmHaYJluYv*I*laOQH57%L+PC{smA=0|XQR000O8;7XcS#+uXq+XDaqg9rcs9 -smFUaA|NaUv_0~WN&gWbY*T~V`+4GFJE4;YaCx0oU2oeq6n*!vxKJ>_1{~Q*i#>SD1}(`JcbzlD -&axs16k58H*-)fPQgO7R|9zLV6kD@56w`wxT^^l#?x&C7T$Q!v`O3oS_~cu7R|$?1E|~nNs@~Dwu`;W -Q!4=a&t^axa=9qro!VRn8N{JM8?}#Apd4kel3Y8=i*cC!lvV?BU$q@cPZMc$f8jhjw06}vU489|VT2) -XGsZX1(B*wdG_qTCdk3^F -l+V^O4wq%;^2}{BkzGJSMRoek%nU0~$Y7TvM3K8dynM61F6Tf~`SmV7W#*v&v~*Yi_yBhhS7@*Gwa^q -}*7|mzC`#s#Qku?gA)POhORNVLA`sr)WN%4~gS$y12T&UBF#*a}&)L)5|$r-@y6x>|(l@UeD<5XNYDW -;MeKwVhBiSA~*O_YNww>a+g9(UB2ds9RZoz2r?xmJmU$)CG(2q2)TMjEh!u*Q5W2}LK>2n5{uvkx6FF -WUQl7LM-G*?U~1Do+PWmFUZzz6DYIyKfzY1ObBe;UUXQrxqp)BvhW~{VdW|Gy)?!XRa{lb(I9CMVMOD -Bv6BX5$?wb3uxXRZh!tZr#97Sv)p_E$oM7n;9{*3RU=>pDny}$@g$#aSs^`1;)rBg1M=$FdGvMMId{{ -W7E0IJiZ2Xy%~PJBNZYABT9nm_RpQ_g%#xwp}!%mp_qM}e9Nb9BAob%rI)g=gX!G;ZMR48|LJcWJbhr -dF`4z}rxCp(p!LV-G`5_n|U941Kc?)w|HQ@cr20fWa!H~)@~%rsa{Ty9VshyHFbFHl-TU3>rFEmqgt%(ln0(@K;n5r= -W?L^+FIm+&h{-BmL4+URb}x4e6e(dOhp>+Ff6g}9=>GF?f(o;C}}lq -)V@fLphuk!iE}H)*mjmBb%ABqYcORZv+3h1GS@$pNROrfq*b?0)h860s9=5C-8##bv+s%# -(s~TwGDYIY1`h@C=4MJiqY+LZ9Z&g$6%slYWlA%6X+89p7sRYQF4~;SD{swHdV_uaM|L9@?hN`@fNou -V&JQ`^)~4J4Nyx11QY-O00;o!N}5)1{~#|&0{{S$1^@sZ0001RX>c!Jc4cm4Z*nhmWo}_(X>@rnVPd%kaB1{`nDhqJ=A?QnbMdL#}0l+F -=T{<|Cj2VNr>M|Axp6{zmJh(eO69fQbi$Lnxg7%nYrmp=45R2x^B+Asu8=A>g+JD*~w@F=eHs&4-_g3*HU6~ATAaUiG@To6_B^Yf-@BGCzrjLpwg4|3<%>*Z>*U!Aeo4*pRqbPg>3TT9C} -k1dFbwIt%m3YBQUSP;2Ij*;B)Ch~rl1fKb9%~vk>OmR%eGcGO2@T<559@shzb*Fb{fs$ -2tq)h*j|cd)*zFdZ!+N!c?GBdP&E@*A-fsBq11vT-@aKASIRoT2aT)wpS+Ac(O5Z|EeZTgIBLSJ|1-S -|nnaPBG>AV&>LT+x+YPJIv+EO|{NXPP0W>K<~B&a)iWhx2+E@&(PwH4%|}lQp`YPgf`}_E0}0vJtTHMK -8J9e5KiIjJ#37|UPBm$3!e-LBY+3Tn7n28f*>{MU?7bcI4Z`fCmn;AkCqD!KBDXHAe=o!V}-Y<=DbhT -pE*oo9#bi3?kmEt5WcyH-esK9sT(@xHT%u{{Q0GaFSE|Um+xEP^3LzFGbIj6yUAu!OIPrM3L-2k>g{< -p@6d~u^uPMp%`<~%DN&~V*D!|o=L9y}!)oIAS}15bXW9CcIFqScDENy+Jp=xHpg|~WM^GsgyxC=2wIi -ZT$6By2?%yx9{;Ex*--nL~RPIILCw#x2QH~V*rX5A{wF^zg`lpZSee0sfp+7tC$2%KW3O_tFxEl&j;P -h@Ne}4+$3vjnlaQCzq@MhFW4j7%f*h#)M{h6iviJQ(|5q0-%BV0G*yTK)y*w|ERp+@$G$;Y}bk7%d&K -$3go<@zf^@=82;n)bWF>9y6vdIbLgP)h>@6aWAK2ms(pnpQ<)Kqe6b000^W0015U003}la4%nWWo~3| -axZjcZee3-ba^jgWoB=3WiD`em6TC$+cpr#-}NaD%0p~GQL=8>gS!=Q9B=U!*oEyZ2!cYOrIXB+A~o_ -9RVe!1ca*d=N*>w?h6R!T``_>GD4oEJh64?n{nwUVgeO6b2$9h|({HttvpxE5BK=H>Q}XZ- -gQY()##MrCM&6PDb_6t%+)YRyYPM}&DLQoap45&VVLNu%LSd;t?L2#2k3`j#D9Q$xw7+7Q$Z*+M$Vr9 -!|@DOLnhLu$%ONug7OM$)lMGnm9|aX(m?0|{0O)>r(LKi7ev4){n^&Cbu8rin!d8XH@jt6t>JZ&r)td -bd1d*iL?{6*>nN|EZn=LFh>#Nm%wORAiZ!llq!=J15RRqXw;xzcFvYww -IrEei-zF#}U5kPKwAXi~3bD45ox~N5gP?$%wn#+L-Z7H1}q+`5{U6d>(3F=l}6%_{oCp4CT+KS_YAh) -K3N>*|5h&nSiCe$L8)WRT4YLd!vTt39a`}_CHWO2P*a819@0^n=VDpM4lt6%%3^A^dr3!&7Gc`*or40 -AXjmyHP@yCXYItk)#Y3uX|GBf=@1y@R#U*h7S2c-cim$`atwv8ZUdenF5KbTGKatQ@Cf@QH^<%UOmh; -+t+EjC@&%!bemyK1tMN9a`a8{E>Tjc**u5>c~EP2O8Tue@dMx5qgSlW`YRIih5e_;(kM~&OuM=2r_RERm_xwoH8Pn=h;z+h`;mEHT>InFKfCizg9YLi~@KG(>svQ~SI?;m5`4z%nYW-2 -0M!yT66sX*b#9#IOd5a6A#P{kT(vRKNWXwN(3hz4>`w@;TpQaX#GlkqF>%Rs4EV%KfpNI5cP9q3ksJj -mz|NKNg4{&4>V>79R8c_`cOLScx&`!Sq$+Dlg&n9`2Us0z0NIAT=dYEePFHlPZ1QY-O00;o!N}5(g#f -7@(0{{R-2><{j0001RX>c!Jc4cm4Z*nhmWo}_(X>@rnVr6D;a%Eq0Y-MF|E^v9JRb6k}HWYo=ueeYiW -&?`Sb;BOKwSeQei?_fjY$y{ktC8;Pv>i^zLN^z`wtS#n;I418s_niC1BbcbN(Y)ALc=_Vz --{7xGaFlSyN`o0xl8(S`5XL1->8rbm;2+e -6D+w>-7cg)JVRsb{ebj1ZCmJhVoQT%QoLtN%)A@3GOk}8H&*j?WqXObV@7%p4JcJiLO5Q+Y#GAocsW}}gz&d@-j}YQD#cV79~r$ZJ;wuD$9i-zr6E_S66S -R$>e-GAx(dd0-#T4D^yW78UIi}qHP!d~#6gat;b -jl1){p`E7@uijc#XALiC+d=eII*g1>L}7I^}*doGfrK;sHEjvoNBG~Andpfy=XVsZ3^yiYG%No4TsN0 -lz3wkmU@o=H|inQwM -87L#N*0=n3RK@Wu(?(5gPcwFBf8+sard1=94uwkew)P%eG_oc2E|`A -Mo;z7GE*U-$OyT8;~}iEG+5OF#LmL7)FYyS8g0-mkZV^LCL%{ZQ?SaF5Jw7j_3B9n)ia`^?0}euM64P -*No`dXWrp3%9PyJNj~E-o;_`U^Ln)z3Lb8-l&t%_C~kNg0E0Z0|XQR000O8;7XcSrfjm)+yVdqX9WNN -8vp^8=jyvm_jLO3hWkPT(E?Oc4YwHNDNmJF2Zx@IY7`Z1^ -xHLP^%JlL@Jeq(jZZA0~r?x_>^E_flEl#t`MBb1fk+~>&vtxAyM476l!A`p&8)|ddd!Qz^oU%wYC@yh -gDUD%nJ>b&WEA_nc>ZRGL7Qt8Hx4qTPe^O(DK!-kAPvb&iAC@ox6J -yP|4fCQ4i!||g5^8h-`53k(NfmlhO7Ip)AeLFosjHLqYlvZjNNKvsfTw`%)ki5qGvEsGBqQ}gkrW2XC -EL^5}Tbt5cn~6P@qJa#k?jaW+6qvYD0lwQaa7vG=rQ!(hDKW-G=m2$F%$;-w~}`FVfE$BMqz+c27HSG -5EIIAna7~(;Z!DJ#Q&F89?J2Av}`i(g=^N^vPc$7#)(IUYCY8t&wEey{l7(D#op8o5iDD|B)1fHgwhe -UKiYY%}LIBO$9|ZXs{y)_W6cWHxs^tlm?vw0}`Y+3glcn8)# -t(^1-u><`?~c|E9I0@n#cXci;OVpP{{Hi?gQo}2;AI>LF5v}}?^WE|sZqg870qJ?Crk%wS>OKV3I6#O -&e;l1RN!;n+Ch?6!s9aHKEx82z|1)eLgwMWbf*WuaUBUI;lOzc9U^F_TkY=mh_F&IED%&G198L=LPRh -X0SErcOBwdAj5z@rE>{}>C6W=>YXLe#}$6VxzZOHdlvOmo~bigaCSVT7FZAW~DaWSS$2FCwGGBs -LXCWtySAWdd{+lh7WFU^r^S^TB91>LJFP;rQh2^%&j^&d&#@FjH4tOEd>Ut`{PrKt`yZk0^my2*ZqB -Su@IMwNRka2H3>Q9?=)+lUaobiZs*o(HXz}_1HZ+IX*)Df9|&cKU1w15Q@-ouekJ;b_|!y6J`Y|$~iZ -Bb;N>TgnIB+tK|jE1`C(n35$3Kg*$`iN8JRl-EI#i=xF8{plwL#$$ZNLv}gEC@W?^hmSy^pFj&gA;AX -CTyYBNTxUPrNUAGhQVA@LsN2E+2+Ewk^U3l^XOq2=|UFZ{{^i~NB{hDJbiXWmB#v};o0>ZWnAY6;Jgn -X-v(Jf0*dTRl4wNZdv)daMxtJp?ax$xkeZDD_Huq6;c&ck9-$V98d|*5)MSU&x-Zjtg^A$%i$? -yS1YxrfyQJG2mNUMRa)3080RtyPO};V_1W5g8|kqA1kflbwh;|CO0&v>aQmlrQ~r2on@Cb{!~d`7*9w -}4ul5h&-dnEw6nzGsMugvv&Fxvij4&mSe?#eX~cpbYpryror~`RJy0*=Sh+Z4NJ|!>9j2Wg_{}n%DZ} ->aS49>9IBeu80^F_ep@@RD(U?sJWqK#t05(6{K-SRORe@=qRwLHQxe8*A2eaSAnjP6qDePhz@y_~sHJ -_Vuca9;LaGbELy*`Z~XaIHJ1x1Q*qYb%SNyT1aL`A8nUoEZ`>#|0QboIP%q>Dp5A=fa0<2WVOOH7P>H -(B0vkZMXJV{N4%k3%YuPVR<)Ehat#JW?VO5>pUoz7DpI8bG(91mOUAml&o~=3^W`Qygiozg;Y2J9FP9 -mQ-JYYACUYJO=U01hH`AgKLyK#gIjl3aTJgDT#<9$)d8B=Vwh)GIJq-npsO?z?Vg=T}o%ig-8Gm;YN~_+0bzEhp#YJpGZ2ETCG_JUXKe<;wfXbMj2_UVRlaLqc$sdB+lU8_c2ge`y -SDc1WaS(K=O&y4Ts1Nx$v@-6|FA%NaR?XT`fJrf2bjOVgMc<$PGX_~okJ_%qAq)0=H=bxVI}2YJn7sp -KA{`IZsx;Ee%io#xZ#mQ$iyb~m@D^isZu(T#8d+}r!Gw2$c}y#(4>qj}hu^v5fA^)S+Vxb3gk+4~kx; -ng-%;EDypzjnUbOZobx*Q%SQs7%CRChWdnPFah~6G=CDc}v&wvIc9O3W6Iw6$BgH#4sx#nxDwtt^D*4 -P)h>@6aWAK2ms(pnpOmG#0L`u000gQ000~S003}la4%nWWo~3|axZjcZee3-ba^jxbZ>AjaCy~MQE%c -#5PtWs7&$Lc5hs^ceW1#zgm4Yl6RCjo6h)D>*kjnr?7F+_5Z?M9`Vad{Ie*EXJzc0=&-oeK*m#E-cs6TWWoE%ueM{O6SfE!_Qy*k|f{*=CcfU#J^jm}dv!3 -mjsk_jq{DU^zqz%3AZg-Gb9-s!;aXspxRU|yoNSpatUK!c5Ps9FTG#Q){S#N%) -a1CmN82zwJ -4PC~fqO@@;WVSFA=Z*K3V@VPf0_eRsDpkHPnW2>11w$KxVa1G`;_A5ch8eeah~aZUFSzfG!M*)Z_B%SFy+F%(^e~d_vqY2 -!bRRB#?Ewh-boLiwH-(tA4wR5{6-KMzs-%1Kx(poE2ji;4O!9i8dnBio?$gA!@HBx`j^tdWspuaYC`< -xMeZVI@DLhCbmqa3*kPuunnj0VWxFnQQ=QP!Gi`ERbq>!x#EPfO{D^;o(VME!BE)JDA?>Y0oqM?ZN3p -*t&gFr^#OV?q4g^Qn8M|zymyMa=wS=p*{rh`e9#^q4z+pgcx4_R_bcebZD4jK$;px7FY~cCy`Fvv>(cTH!8vwv4TOWm)O%)NE7ZQX-2%^nI7i;7Gyt&-179C3SP<0q-yAy70UK -cvYB&U98IGjAx)!?wBrLn#1J_7;mju!!0@pPq`jp_L8P4=HmDS-74zj6027&KV{Nb*A&;^48AI>kJYV -T_7OwICEL*KKRQ6RetcSLM@=olBg?k7yX`j(Vf(dOzvSC2xECY%7f?$B1QY-O00;o!N}5(y$tpjo0{{SC2mk;g0001RX>c!Jc4 -cm4Z*nhmWo}_(X>@rnbZ>HQVPtQ2WnwOHd6ia8Z`(K!z3W#Dl#3K7N;a28UAS1saa&^xXAwIovW6kh( -n#i3CRLKEqkq3ceb{pBqPsd+B4;@B-kTxm3mD6yQasxjxV`!9cbMc{V+DUR@l84x&INqoF$#?dlp;X| -W`i&)SWK_h62LPm&82|b@CH2V;I<~$e@_uAS;Cf8Af$m(BZc4^Ql2B=Ym9{fE+CfMBIiuR2s>^zb(%I -vNFiR@5OQr8c{B1aXq5K-fSDTb#+YJoeZAZ5LRJF}rOK}J#z|j)nT{v3`Q(bg*6vRtN3B8O_mV53xvq -c}ge7KcLYT81NChlYNH!xa)}7*pi!1;wQ?p|VDN4e%QG8vRBcVEE#JBH2QZWJUXb#i43wNXWbRJNQuh -Yfnho=R69X&pdW{c@$4iAqoewf`)7t@CsjXuI?_5y!SXZHah$wX=JwNMs6f#g;~OsrmW#3KNyYyjy3W -1jMuc!{iJ8A2w1pb|s}3RGLJZ6P(mODIatx7;vO&zz779fuN1Wk6TD`!rQSp&Tbwatj47!srKzM5@rB -U@Og#jhRf>|>VabE1eXWFwVeiR^qb6vQ%ZX@!fIzb4W6^JGj -F_%v{Up8l#ZmLe{dLSec9A4^kGe>f3kduI6phWl7mfzM2NZfA0R$8qAEQ7souyiOmlFP7irO)!Nh;)0 -tf@-*ftb))4y0JlwGso54@F4J5xvkF=;%b66oTDb&;=!NyF04^`TQ7315(BT`2%7?2DV7;4^_R%GEiR -Xv=)ZIG&;6h-UsFb08JGJc(n=O_~mb7^g;KF9Y0q{&nLPf0?uX@yCf=}^}!Up?MD$WoM!!YRJKMCsEW -jpwU0u`ewEf3@Z=zn)bIH}QqjiAdZ2C9RJe+G~t* -{SU@w*mOuLhN%d^q8!?v02;`{w>8{t?CHEvWv}#gX{4>G#lj8sK`;NX_w668q3y#p7i6Ks-AiO}*v^NIP)N5YHq%c1xW_{kBk+L6{?uddes)+7^NZ_l9SW^M-RJBIm!!D*QZ& -941q8R;es81B?!%~TQ*}qUr0|XQR000O8;7XcSNoduqt_c7DSRViY8~^|SaA|NaUv_0~WN&gWbY*T~V -`+4GFLz;SbS`jty;;q28@Um_^C?jDA*4(WC3)=wQ%Wr@%dwn|oRZ`yE|rP}4nY$33@{7KnBt!D4tc{o -NxlZ=ml{%X>|Gvg5@nL=Wygm{um1b*{~RA4AF=mYB!yycxcaQK&a*8l_Fmgn#@Rb -=BE8<;elf&9Ke0=`VefP_7pC(JB)`Z|C@bbHQ&?i@O0Y@7L;RQT4A?(~u~I8`92~M95p?sdZvW5Vu+b -Td!Bpv#WmbTNv}_?G!Nh$il9WlsLLDcO2N!GQIsZ`4Wv -wD%Pxe?$pmo_zWmZc3t6_P>UIsr_@73)r}*!fkLy`Eg1Uk$+H=KT8IhmY6nW^#Esxwt+*yJ8p}jyh5usej5PGR)#+QOE^;cmO)M1G -*v9#n!3-RXQ63JMmJasD%lnOc>T&PXT_$(~G8XVMd@hjaVVBF~}jE-3%lVJK)VBZ9(P&}0BhUJ9QER~ -T3!$p23xc>Byv+3!(vr{Ph*Kvp8^C*`~k($jZkD@CGEjpb}7;#u;&1E{BaVvTdG?=_T?R$RRZg(<+Q+ -Sv%+Gd`dOhrc+ZKYx^P7Nt7|`Hf8Jf+3+uH5 -ow-!S?H7C_D+o(pU+EXntTm5r7oU>|Bc+4NhP`!E8LwK#p=6tM*aFV<_Y)YPWh-13b)Nm2X*4RN`z;~ -*Dr|tlqDKLMY)9Rq4bZlD3u9*(>YtE`z(`DIz)ciEM|*Lg%o%tKZJ%8j-8ya!!hxPP_V3ADs99q;RiR -;YBi*Qj(Boc9<5n~wA{85tp$a-3;T3#Alz%{bj?nh>X+IMigj`;fyM3Zwwvz;&9lzq17JvccX!te(1p -Ag^IplkiqV@|EN);Zp5}(*%$;F8)|pBj7|IxC6zN)^1PDN%55g*Zy~m}(C56X{*EmnWfEY|O+9u;V*I -#HQDz7?QRr10%#YsK2BGhVboeqr%`@XcOd#Sp)X*>lXd)4M%QCN?C>acw!)C~O;bkLl?KW7OO -)?;7uOF0jhyA8>9u&XPxBk#B=f+ZvVt&8Zv!L1GSh(#F`}}_Q{!yhU<(ksJ@|Ga*LQZj0Yb0R3zvmRc -Z$HKFf6wr#$^4x4{I4K)QJ)>KUaO$PRu26wPZwC*;_6es1vY>u9yxldx@}da#hC{c-MFe~`!f^}YGL8 -(YLFZ#@Ifu>+HOUuof_}jlsW3Uyx0?DZjnnDXEyk{`s%3Jj#TNi2CL3d6n-`@YMM^Zaq4 -I7Y!aup*ui{n?J -|uwGfa$lq1mc9aOvwpaRSj|Rs7#Cwg|(vagI)2uFai5$y`Af=T-~k3s3fAGGc4pZ>iA}GseC?eJ^|sIfzO -FMf{h;m8uWn%E{gZwc3ivdk;lPPK&ckjCpCq)h@Sj5*o!|6%0gL?7hiuIK!Kpy1>uSUuF8uK9tWtc@k -1T;YKA)?_BAiMdFTf;s*q}ZW{fuDEk@OI28L+^!5jz+>-V3Ai4QZOw~dt*LSFjEse3}Z`Av-~0uso%a -3jUF1l>AErip5U&kA*@4=0$5#av=#UzX>15^8PcQgNE8K9cv;0oO;cc7ta@Yy;qB4o?6;HzD-{TeMg! -iPogsB662#W5Jc1T#H~CurmTyC438m|JT}laU)`a=};Spkx(#`er`biHp6S>y+hzG3dd3#m@!5G+Yll -OYMSyl3GSLjdP!rnG=GH9gxiisBfho)kNIy}1$cRmh|G?-30E=|A>u)dYSIsL>4y+$=&^s~*`1Y>BBs -MIGuC%<`2@l>e{SZ!6evJctelg<8U*C!qTB>~3gOd>pf7-qm2dd+DSs|baansGn1|Zg!$;e$Ag|;)IS -gJp;3H%wcl+pNSZ;mNG(M2x0dQonuNEWZyvIm0Yd}HOmoO -&Ti+cXA2MW@eYa`tPm3{635-`;M6C^_jiRZ$UU>i8^ki;aK)euXg{FbWURoNdV*MK$r{YMhOY)jLxMf#ERM_UEkgu)5saNft-AsePOMz|w<;P`L$@rlUYZq5Z^# -`;@Rd^Ba=Y`7Eg^xE#jZUk*McVyN{2x$D0|XQR000O8;7XcSrm7|V7XbhOi~#@u9RL6TaA|NaUv_0~W -N&gWbZ>2JX)j-2X>MtBUtcb8d0kM;io!q;yyq*5c-aLFnxn9XU?K+M0~}#J4P(;kU@{XrlU?`kccPxW -bQg40byttD-=*J^LYHJZn&cH3r_Y*rj&&}A(Q~}iH7#uW$NF-0g6?jPcpA?jl%ZN<)!%N~kn!}FQ3Yq -Q+b_|ZiWmwDYaHuS?<^y^Fj3phs8AVbyw(4toq>$36#>3zrP)h>@6aWAK2ms(pnpOh7j -%kb*003!N000~S003}la4%nWWo~3|axZjmZER^TUvOb^b7gWaaCyZ%*>c-RlJESAYWRU<1pktJ?VQhUo{+OJn?2BZ^ -_>&V2N%;m+W!PQ`PX?Td(2GrzC!OoWKj+1Rkn3!|1WcehDHkc^rT2u?ug-=aYO5&_(OMn{d^((_-+s9 -J%j@lhI^+KI*9lXCF_8XV#O8&*#64F2&E4m-$OKi`}`G@hn*J(&I4py|Ctal&@wy>9x9w6pOomaG?B? -m!$kd7<(Cfk3n$5tJCq=J)K;hu@eT}{=}ilI{q^01YNd(p$J$IvBZmRdFRb>x6A%jYIbz|mu|NO<9fk -^YzZS7FBtqyIfE8}J@UhR&e6`CHyt}Hjq_=cT?|1>I&qiAJ5N67n7}sTa%CHXYN0*tTA^O2}8behZpbNi_t$3Av9AR{ -$=rwoc}Te_5H`_zctdLftYE1FZF}K4S5C=F=emi1nkd)+aSZ=&VdVX5XAUmJQ*V&5>yGcjofKNuU|*M -y&wO5JZZ+hRJ>b+>?dr1;_x11#$EM}zJwr@aWvhDG)Xp6 -JbA{^StChtxS{&1R7vuCg_t(FhJQ__j|+>hsclq7M|`7bZb#nJ8kpIyWF_t0KXH8Iqh@ -G!EF9-9$lwgBhF;@R)uJ%|EqKLdz}zMpU)q)X4TkPct?HV%9uDaYc&66=3Nx-oNd$9Dsbm2A%dIj{8}>3fn!_PG;@y7e~YF3LY=wNDQ#h1`=! -9Ni8{^7~i{w_*0O7I$$KoZ<9PKP!#{+4cO_=heyrhAm=KLJ~n!VE`g -fr;R9MA5Xx5`p`@f^7yZKk-F}$%*%{B;Dd-$aW9*ZHKMaG#Be8=>sY9ChG~Ou;_d0~x+!0uMOjtQ=vy -O4d59xcHBi|qMY@KJF3!Y|t{vKHGbbIVW=-sBBuIRG_<-te^yf3tuYGMcy9d7-7R*ioNd-34pWEd&lw ->d-XfwxJUONujChFM+lWNU?`cd&*x((goP#zT_auLkSnqwoJs12` ->*zzksUZIf6kMH>7PhZhk!AJy2`7QVW1c{oA`Vs~(BRdd_z!dz-@d;*(B)P1*ZBpvsf2!X}gEWQ^`=Mlv@G}Ei@AMO}%>vE|DZSkk$NKdNJF -?M2$R0#FuYdqutN8OOyb~M=mqx-xoiOwV=2uTn9?S4_Yk+K4KrM>UZ~|d4GW>q`v^m9|nJdT>yOq)#%vF13MO|8m^>_lq3P2&`uYXx<=$S0v@J( -M|i01Tj71%X#D_uy(;k~9BG;_7Qq9byAWX*u$*xu0t#&;9m@>8k=Ctj98B`WD-G1@|5jTr!}4H4Q)i> -T?@axnZl=}cX6v;;2@Yef9M#EFj6yhTPSdLdB@V%L%(SqU@bK#hh}*6X8|=;)E$qz=vK7x(~hXDe -@w=8`7;94$oplQx^F86uoRBAGG|eE({dXJ{b{`^q{&MBG3y>^&k+@;9~X3RC*w^5g%EF0@bA5J41R^N -E-xWS=t*W|%*q84fTp6*>=zDM-l&^bt6T81mypLMg(x90LsUY|b?yo;oajj56;*5HR}f)7khGvX_g|) -r4ueVf^K~K@?=J+evx2pwJ2}g%N$iMGadf!oE1T7Fs)d-hTI|Cj5xxSlTI}r -t?&eWo(zmC@^jBCKzBYF+qC~0mQWy%1w>;`NW$6>*A5$6vN58vz}0`&Ya#W_O8??CKI1Oy}ydWclk%1 -rj$S87r=I6WMq#u*5W2Q#QybIWg}AO|p~p7)bDQlwaGBusRd&Hhhlvmstrx+7is8F_goQBG-=()=vcB -1qjWlOJ_qU~-MjVq@Dc32#8N4)sNQmn4pbp#?)~E6MktLV_H-YZURswFkEhTUnr@ZB@+EMx2;$)oGFm -t)fh&Nn%b7Q_mW8Of#btqi%2%UxEh72YOHYMTON?367Aea`i=iJlNU4i3)%W0uU=|icAwJjaBMn+i&! -LgHjbjxI>Nk77Ta{Viu7r%DH2~=$RrH`mUe+SbX(-2uD(iq*GxIu}lghE1KwPi0u#tNRd)$iigx&Q=w -mA*fyD{GE|cVie>_cS0KiVeBQw>JxYGN_4pLngQE&uqO}YPnXLgOqE!&GD2X{R>bQbJ#(=`G8D9oKTD -F8|AR4Dz)-?ogge;W3)3DN72{5pqtFBQGWnv1{pw^jtM>Uuk_9bdvD)FMRApp%~jtx248u&AFoONswokv*^3bUdqZ%O!qdWis -YFXOeeFH|yj<7iMUXApPxTbIWRVR?G34SYjh=gQnR@%sTX(-DYeZfmewl<@2Nhdjc8=$g825wla0F5y -8CQRJRaf}kIgXUD8tw~Wc45cPv}9;Cm=fymEsFb5LkwA(n^(tK*cHV^tH(k0m+Xc7go%z#?t`IsO-DR -jh#sUDI*ORtL>LrJqYjAe5vYPwBh%k?I+8fMm4B*kSlRv#q?EPeG<0bWY=q;?&$XX(g^9dLCwOd=_v) -CJe%QXcQ#*I5EvUUemHXz9*4cv$WtWDoiRjm2|!7`)D6Yt1}Vk7>_llvsdIP(})#T$(wT5^ -aCk}SOsvSr7aI$|((MW_vLd)me&B#f$M(a#elGAUEqvf-3xshIr0wXLjHRry8AdTc1`zgb(qQ3bIAne -p0EBx$9T;Vbqb;hf}MG>GDRQEdz|fC`Q+#R8}oiQtW|*4d+o-as{0{eHis*+orC>)|T~&1QL~Lp-(y4 -F^8LM~tmgFzX>aikHDGKs69Moyz0>y=G8djQ;;Wgcit>@iw@9CE*`x$z^L_t5G3^#@n=h_gJ4IT_8qg&^&ps*x2AzP!sry -WNUpqN0|kQG)dM#x4yQ}*--($xkF!jyKFESSJmF%uO2T2VXlVgg1wePH#!ov84X1D07lp3gCGN4frR| -NT!mu+6%d=xHFXO&S4_YRA$$=mi`L>GhgseU%sWp;~MtY+uwnHCtm)e%-rJ`Qn -AtA&?%`LJdZnE<#y%>YZtoS=+5U=tZE{n^5Ssq3Je*A#WmA0GQ+_M6JSRRVjg+c5q61S -+dfmO)uFGa?_Y`bWf-QoW7D=b^I0V{F;p4tq|A$t -q7vBZv{tE|iISj@0NRqE)}1}WB{2by-XSk$f-i-ZW}mP@duNolN%?ro>t&>fg}(Py|bFAe+}D7)?Y!D -Xeu3yrcIMuNg7;Q%}KxYuLdSpzJ6x7ew2(SxWW%y5^V&XG(?$U)X-&JDh#OclDuI~a(6dg(x0)n-vDn}-HcZ06EQL7WsV^ck@k)vYf8JqbAig0T&$0wzqHrl^3r@9-O&E8%c*FHyn -7~^^;L33=*ifvWjFnT+WU^8!~s*2#wrHJh%8cVyCYBW|XepB%i&7!frTBLTgS?omZw65y&CPz~vhUcw -{Y!Fne+BWL+i*jrH?7cZgZb{f)%-X7i`xdnDQwd09(ql@kzG|wuG?${w8?zd7q3ttj=X^*Cu{kH&L2& -PL+Nq5~Gm{^5JWmR6u`;CO)R2Dcqtf`<)sQ`JF=Vxxt|7d@rkOHvEUUD0u7{u6Qskx-PYH7GsMIug+L -^mN^}Y3m;@pphm)F}u#F|%g6d{1R5WQ3f@px+5$75x~G!ja#3jm3zWl94r&fW53U6W{T3P)jde{mIGY*Qk#tX=J*%H(|+cg+Or3{&IA0^Zsu>= -cun%(zH8qMk{x^d^TyrS)OX7a5dxUw3B9(+o5fM4(!Pvu(Bk@q%Nky+VW0ybH+fT>zvK^u&p`LK+XUt -F9#H;TQ{XUZ-FSTST4T1-t$izKn?}Q2N!VZTk_chsOj1mtR!kGV40%-S+pHx6TVW -DgwM4SN&IqyKE?aj|`Q>{w6zFvAqqz{7r1_dBqDm(^?K&nZwS#_EsZmY{iC0q}$jy`*QI8${hgMLrvC -7S(01s}uAl=YQWa=S%@4f^iRi!YJ@xaQ~yKcuv<=}d0*N5KnTECQBEjwuX#rl9ry(uO=85#sd4q3|5*tEV$bZ?r{1lsFj=LvRV -hI2xq(kUaUMQ8}1dT@2Q8Xcx`%(6og&ag@I&aYDwcnbN5< -G(%vV#E2I(Yc|AV3n^}b{~WB&l1njne-<*>7L>csb$)f|B>^^R|jWd=Dt -PK^-gRHq$52H15@tNlJ4(#GW$*6G$SPiA=a8RNyTC{-F*=_kTbPxE=O5y1z7eYJ8p<@nLb;urXFWwuzK6R -prO*gk)OuBu3Kst<1pm6R`vV|zuIMs!s{6ZL_|ZJxjEAZ -N+O@!7_QMBCg3#jV6FeuL`f8vyp#vKe6zzUlafAoCcO2cLUgv7=nU{}uZ6$u6-T#B;ET<`7dRl>p}*^?V^e~cA( -q{%oLo00)O!7>uClCD-6+CUK|eKtF4y}vV0iCgn1yo#FC`H;)IDY{T~!9N&$ttAf@Ma23-x=2=u~M(fP?p{+ -?A2@KI;EC|_GJ7P_mSc7I#HagywDMs|H%Da;?!OOtsdAt?lHxC{N@2(Mnjx<(IeftS7fEM+swm#k^w- -IKu{xlcwbKhy=gP-j1&EI?4CB6(Cu&tAQrk}=$s%$+=gdLP~5TCBtEl!MRw-Pir~b{j@hPuZd|Q_OR% -g$V)SqkB)AE7iJO9}6_+=<)?&7!5^oSKu(TU_R%N#wESWb786dg_?nRu}6?@*6P*XF)d>~Q3mVXbB2K ->E=mbZ1ZAWSKo-6ooIcw)H`6x`p6Lszw)!zta=QPdd7&Wj^oew;^{EMFW7rN@Zf -#3fooNLN1I7v`%-#GO``x|4uL(*werh_hxE;<9!u976qs|3CK>lqd1`*|F{sDc?7@aGqdq=9_51-JM`?}NY5^v{_{U;vRlr8bcyLZPwzoVlpop*nE^Y(3}!O_vtTllBYZ@uHIvPxe3)S5 -a(D;XyqUXThV5n-|~28=HZG4zGZ>=$&coY*!j98utBDUweMu01fXzK7S!iHkew-cXUl#(9WqH*BR9UY -*INL)apaDE4;(sBD?jZEXv>{6xg=`m)Zx^bbe`z>xf41=R~fS}i3*kg_j@TmB*pQBjEz-RV+RnXM4Pe -I+Nu6M^hKOt8L4IcPKy{|Zh-KuSw+*vB>ak>F35?3u3jn0L0}qLvsmTmpkWpggzW4*9houb^R&#?b+; -Ifvf5ax|WL8kcUAm4g1q=(aFjkOdW!O}w{v7nFK7t*#nfH?FY?V_b|t$1%CztV`AN*#=f?I+r2JX)j-LWiD`erB-ck+cpsXu3t -eYU!+tLBxh?HVXl{^4i+G3gTyV0d4{4$l&w`34T>sa$NBF&zUj@`hGG7YkjJ~@-SgZXb%gG3KYnws^8 -}X_cCS)gvOLQ%4bjcj%s7(AmwACN$Yx9P<%-Sl6ARJE9|dR@m$=B$Z}s=@d5KFM#&mQQC72>;wVD-dP68faaj@;vz(Nb(n({6S-!?vgYTV2>Y(;-iVGIY -<&KnGxXa6oNHLZtQPkTH(ur#LR&7r{2tdwc*R~q)*E2XG7$WzX_|&_fVtQ{akF#xGIp~C$f8MSZy$rg5nACVp}H4;A9;*QGmt9%-w -}Gu%Z>p7kEf0A(?gRZL=tA$#@?8}aTgQN^!M`sl4;@r8@r>P;>1CD$?y_tY7y|`B3B -aC})Cf#c{yt3i~Wi(FIQn*w0b39#$kY07uvBysvsIZbrYuf;b9pNM^;$<}k3cgP7K778PI&cW&Tz|ee -zvkrk`RUe!(EE5kn;xo38Z*wL;{W-lmlxZ$e1Y0N0O4rS?&rZs71fELOh72w21A*m;OyNyHvp5Pl)17pp9-!1ID#lf-vrDz9GiQXkyR$%~Y^3O;aMv61Ej#;vb7>RU~TS5|YNN)JbM(+D|F6_ -lp<^kSe;QYXRlAwnUpbye3pH2_j($k9v1jDH>et;3h9p1%x1wH>YE^0ib6!h{8u@zSCQUZrCu~0%N#T -68V7=SVQ5f^zX0+TI4n|M7PsKnOL)w#tnjVeZ+MzV&{x$2A3c-t4ONIkU5%bMZ7tis7qDWRn5%XW29M -`D^bB1v0R<;$|Ks}2rtR|mr&Y$#}fn75>)-c*)t=$svyCm-os(1I?vG!(XIdaJ=f?G*^p1<;|RKzW5e -L0g7RG!(<@QVQs;;a$?4+d2v}hvTF|&^~ntO+HGX5S30On#!_;)+_$3D`vfQkm;MY%|mSu5iTl>e4WD -p={5zn3)MRYh0e2sYs9maMr_ws&ugT-LdNi(#$F}@Z+h0&K{p7vRlloV%@ULDS{AsLPWOh4sgw&O$M*XHep$?#O=J3QvM*kXFL;AkL1BvNl-P=W?*z7;b?rzkV$=a4|a`O -&&)JVxdlQ?lm<-NdwUOG@)m(&vfCRgH!B<3X|Y^kl$2&2AkIxI37hf|b7=pDn>{y>tsjkBn}~zS_h8x -A;5gS^uT;bYus4m-YG)(_zvMf2u1SiI0Y`^YtdsfUmqzw_+zp%WS?eO#5K0bR1e;BirsKCX(o$I>@(; -zW`860|XQR000O8;7XcSv+ojT#Q*>R{r~^~8vp2JX)j-Nd2nTOE^v80jlpW -eKnz6h`xSy*9nKC^Zu#uRRrZ4O9Zd=$qZJwd`jDcXk+-}6krT!-x!34Tf3k#2^;Gq#VrORTXu$vTdE=RR+^O~>?;tgK@2j_D#9jb?AaBr9k`Y}A>3hKHZTqmid# -OA&MP)h>@6aWAK2ms(pnpRJPASh}D000FI0018V003}la4%nWWo~3|axZmqY;0*_GcR9XX>MtBUtcb8 -d6ib{Z`(Ey|E|B{prVLfcuLm|!(hO`ye4gewyu%5+lOHgXz6Top+uFW>}Y@ejxS5jV@3TT(H-x8_uxI -4rfIV5%ud#DwOTDf@U>#9g9A4^Fgt~;{6Vt~LLuuK3&TmUky7w_JAn-sNR&39+oqAqOrX`MV52zJrRX -NW>JlocFiFYIM#&2DeAAj%VV(o8tPZfXmZCM7dpb#8z%3dmal=|+K*;Tutig`31c4g~Y%h5U=|Ucv8` -;)n3J0cYlGRxfu!C|WO5rvwV+A+gt>JJTme;Nc8!#>56hT$8V1(O -FEf2-t9wXubx}Hyj3Cq+oZdkN8jo~mY7$RE8Z|=@{Lqg$qWnf)_lckwxu)$6>H*?XH8(KS6}!WHM-@b=ITbThVL|A|62nu&E0paKWaY`B1UVK@w`lSmCBqiYY&L_ -%=hY>wKEuuBa{l(i{Qc$4EzB1e@WJwM-43$<%1gz7wKAOCZ$DN*Nde);uvLg7ynpkD|n$m -ALe+a`E#6a#nxrfUeCZ)<8NB5V1TP2t_ouYXK@b;7mNzf?*p57;oR6BHUfd29~*F>);XOV5JEzr4l2& -%oQH1eDk)ESL?`cJhG>K^XvrmE03A?Ll}A418zPvCpsE9MkqDyU*yVnV$wg(k|0357Qye_a!f#95t<% -TdBI)Mevzg=T9GTFQg4C?gZ{p%-(qJI7#xHwKM<~O{5v5^SV^n!IH{S?qS3nnKh35P4C#h@{rYN#wqC -uULduASNwFnvb^IQAl`5)STjO6w$FX~cou|k(kCWDJQ}p_ku_-GAwulX$a9?*iO^P&WM!FaLyf9(I~9 -ANC+1K*q9$N#fqAT}$bWVqMS<9~ksi*8$UB`w#HEW0^ExB_kIuKT{i_71?ydV2UvAfFtze3Tt-J;-Y%c*cW3uF7A!L6aySY7oy$?On3at2>CZdzd#9Zres)>}y&O -&8IsT051vz}UvvzaE~O?8K25u(I7!A(d$fHDal)$#vgIdCqHY@;qxgdqNp<=rKREP82nT31}2KZLYpM -34k~yb!O=nzisAP5`dx^QruBtd4GI-RKfpq6HYKj)k~h_Yjh%&X*BPsM3^!5T7p8)NnehbF6>$uYk2A -J%^Gu5g<6w;W1Wu210RR=5X_t$lgW=3$D^Gbx!W40^Rl#44}8%)^$PLwQ+P>53#aibcf(OQvD+!jGI& -dKv4*zEs3gVddxIqAG+aY3*_RcCuHjYHYV*q8G;12VB66v%1;q@VY|q@RrK!?Efyyvf49wlUU0Zr5TT -#|$hSaCvuJgb(PN=-j?1j?~-Z54B^`@;g3W`2xMAHuUk3xc}u%I}&uH3n%*GFC0rHPf_c(gOP>B6WbU -?vW%)3B8^|2MGi;zKS=jtfZBsuSpA9Hm}?a@fDJvInq}5dLhXS{z%m?fM_8=eaNoN_%hI#~h7I>#1#F -_e6Ncd~ol9{ipCBd2wC)mAMqm*df>ZQA(Tly?sfq(HxNaEj*6&1hj+$!X08mSMkmCJn7#vmLKP7as7$ -*B^?Ec$0?%fv3dGF`;TxRSoTBr;f5F;m-GP2uBrg??fL5w-3X>`iSw&}_7ByciO0X7D4gibIQb7yO9K -QH000080N_fRRvkYRasmwi06QuG03!eZ0B~t=FJE?LZe(wAFLiQkY-wUMFJEJCY;0v?bZKvHb1rasty -*nw+c*;bo?k&YC@gnvq3s^9KmZrl%WiLr+uasz7mGtKaA=86xRE7Qr2Mjn`|tM*NlB!nIO*Q`Lto_BR`&DRnXZl(XAG|mEl7$i6N#2Zu42AUnpHpZvXuGloc&yD -zRraEd?pTwC^dU$sD7xbq8jJ*7@trGeOC#d;`?UV$DfMierz+w&e?~I>rGK@7pfGA+{omD{Zcp{it!z -n8EtiD_$L`x%JQ=t(km4kSW4ttRI62_M7EiA59w86(OIATAhn~OGl;g*$5PmLJD$~et1F&}HBatGxt% ->^qxV%RDv^FK6YYp%tGQ3~F2^P^{Si8f%2Acrir{<}G;*Im|MM61R-@Qr~r=gq6ZLeA!nkE -{ifEX#(0F(G>`;v6ff_bO^q>va#fAtA^UnnT?uGCKq_Nz=65R`X_0EGF>Po*V)lBu@*T^N&8OOlh>Qy*oD<1b-ri|;$9IB!+$z&!XQ~QostPkz#dx# -L*|oTpc}~1td~`a6F|Yx%JnHE(W3R)!3C&Hfl`+d>_CqX@ToH=3UcTj-60^=U*n60K93dTYMNP>IZ9Q --?^gvLEf|WtOr6N0#Z>NImgl;xZPAc@6#6wBpk0DMtC7{c>F+T>?a}8U9R6H0rkNLuDHr6=JT_0Lnp%J45a% -^Tw3@iWXAQ*+`M43#)p`Wu;=ka#StKWhVmL)|r+FJ4?)Rz6DBb)g!Ma#TMJ4yd_-Oj+iT{bA*W)dCOWy*Dj!QQy`e0IiU*TJ2jY&Im-KfLFmzrmzJ6OF6f^%f)21>W4ox((=jM-a=>2bEaeD0Vda;0HsmY}w109KZZJ -@|x?3z5mrXoz?e^EAD=F}$!PXIW8{PFwWjF!r2A?S5mL&_fCv_|M`mCnf}|>I7bfqO@%jNORYT(aj~E -m^z7EMhw|#P{meQSiH8ZvO;Mm;Op0~n+!wM>ZRwbPePhT(@#P#E{oz`is_t9H$|~r^J@A4F}%D;TH-b -TWBH{%9EQ|aQwn^vg$4S{t-hNQ#+iOM9nyXJ;d8_B+B|JUn6sAsaMh*b{*&WwS33Ufd@zFl9R~yV=j{ -1&TL66EUzeB#L(|Poy`04@uO40x(7iW>cyuWFjbj`#AqjfOdV^;au$0S@BcJ!&ID4QEK!)q=z&rf`5ITffXmB$Otr6}|Q&QQ#o{rx1dug3rl)z%yamrBd|+meG^b0h@$((42YJQX=z;Mpq=V*owgP0ZvD1>Pfi2P{UW*^8o2&_gzJa#a=7d=Ms$uijJFF@NT^2X3-6uBJzyp^rI&i#>Hlgq1Q=k`>5}SMjjX -4|65CTbV!Z>UA<8;AHyEVjVm(AV#sU4-O0UKZQCm~I`Zy{^A}5i1w)NNecO=bmMGnV#cGcc$gO@Iwl`;diP|&^U<^`>ISrqQj5+=+nTS8bo7yWMQV>dV%Dz8J -M(NyeY8xZy*wbhH|@kUiP%rhv5r4dA;;&k|04#l?fPo8i9e15x^Ay%F0_s~XMf`f`4C;!oJVQ7mY5Nb -#+Y|nmzi7}O1P`*l+Jg}1NZ^;BDq5bjnhcF7wx`!;?}V}ZTX#7%|>*+-sfYnd?m`U!+$pvKU2{&HJh+ -!Eb0a}n3^JGwVK;;YdDGd(?WM>F+M?^t`&BWw|U(J{@@NWtV}yP6ePlt5^&DGFDO=XVbAIigFADTT9= -tOn1s8VO@m@cuP2;vT(fV8g?GOJTl7txWJNB*fp``^jC(d5jLL?p+odb$3i6O<4Agw)*(FT7$#T#a>K{XjRbXzd?%|n}df%jx}p(!mH>WP>z`C5II!e66rtBTR&) -Tz^`3;pYxHt$>$aclo-Zf>?vqexq36g(?emZBsx22hIMirM&~glQYVVNF>w_s6`YYbspBrNM{c&{`Vm -SMhhIM;JuwW=c-S1SNd(=EFOC6>%UeN)9o{?`~UhgAEk5N-F}%(ZeE)R62JuH_E#+#&5#>SOD-fg-^U%U~fI_<`$yA|Lqe^J*iMhCD-nEIzx`o>*L$Y1> -H=sPv6F`;=ed|$vicAMmWUS+H7OD#AH|N2N+T|y5DS22+<_AlSQo>X;H=9?}#wH@f;9db9|CI9%X1pg -5Y;-!?B=wO)LR(2Dg`N#u`IGF4!|gjgr(FWjGsrJAPnKFApm&+mU$j@_LlmdrqOVaA|NaUv_0~WN&gWb#iQMX<{=kUv_13b7^mGE^v8MRtU++ELKR%%t=)M(gj8NC8^0JsVN -F&nTZO{{w}Wm;eM_`!Cdk2WvNBQnfZC~@d~yIN``tyW_pIEN?ZU?O9KQH000080N_fRR_}vRJ4P1(08 -CE+03iSX0B~t=FJE?LZe(wAFLiQkY-wUMFJo_RZe?S1X>V>WaCz-K{de0olE3S(K$XjxYGvkg_fqZY? -W(rY_|>(uw$i-4Y?h`-NMcQqEJ0e)_PT%j&I|w&04XQw>w9-URPBo?5SSSZ<{N-kWxi!Wu&S%Nxu{R`(U8jYUu*_h97_1Pne5aA}vdl{s3U*D -+bNt%Z4++TYs_nUu4FlQPFT&_HTyvrOi{yjz#)l?aZl^ACGHCMr2FI-s^dh%|`utl}SFhE=(rAdr)MTO=uu*)FLz?E -3or&jSV@J!6p$==(RJ;P8@I$)?!u>#qY&L^1D-#!%as&8n(Qmay{leMGokr(w0q%k8l!c$BP?Xu>XX# -OV_b01BWl@{CKIQ5p(iVfOG#!-LU;y5XmQo&z~4Y6D#RY6EO~HUT!l3d6t0c`;@?epGT6#xckat2T*X -RSthS%fc-eun-(%geAbaFk?%u_`qXHVY_mg5l)Nd#RWj428W!d#>AYV-bdzTO-ez%`0b|lO_|^F>~&I -bJvFDLJ2i7&6Kl!rk@w9^3NDCcno3>>Q`}$iFy`fH5>;B>nFkZA@-m6SbPUD;wIyar#_pbuG_X5f3RD -pVD9{Z-pn7mkPlL=emseQ^@<(W#r4@4Jtu#sM)m~J5i=dk3k)fs<@%49SuY*_f+3 -EahOkZBlzB!+(mg_N#Tw6gpj+$(f4&3Br6|4XeFN-qCDoKVi0CkzB$?}<2fB7yEK~jLclw1he0#A8*$ -AbuAmHa2C8PO_Ujx -3j%x}1f#(KAq7h?Yte=S=qdYoh*onrVJ{w!89fX5^8ER;Uj~B*?CpkUB>g#P1DSr*kGeolB-Q0EOlyu --It1xNC$xf@uj@1{fjrC-WL0{_FDgOkgP#q8|jnjWq$&x4a!v#a0=hn3uqq%rr(;k -$nvfAQcy9{%UimtXn+2yXuOUyqN!4v+siJN}>dLx3}oifVf!&+$%UmXmlZtsM@BjVp*5=+}gROm2|Vz -VubT4dI4?2VmfR?vfao4t58GuMAPDMOD@jC^CUuf&&DH9*bj~L0BbAU}UvtX}ISlu&vs0SiC$1V*o&6 -mhl}tN!ufQX?kX0_z-89vRl62MO2%MBvYx;ooGNI@p7-M69QyKJ_4!Mpg? -Wn8#132(X@-*V;%{uc$avDK1c=sybaey_p*-Z5Vn@?coz+z*nhImddu4N`sBYA&QUk8A?7l0!g6VH#QynuP%q=z`V=!fPSPmXOW4d5O=#ztYM`{vlV@%rH(76-G;f=Fk -8RqYC7bq8Gz&gi)Cbq2euBJXjM*fFn52iTVv({;3A2V&wN~XvwR(%%l|w;!IEq=a*>g!GQSM9RG!y1* -vma`^Pf%I$#8@r4i7@UTc8tNY6d|j -BvJT`_KMd2=^zh7x16j2-E42 -6H+4h(K^DLugA=Nd(zbYZjmbbr)JfqjFha?Iy7 -q2pz{x9RRmJ|8cds~W~z(i(}!X-?0|TvCT+}D^&gEtX=Za>s^@)^>(<>4%#96ShE&D2Y+#6m0%H*;Fv -lU#%ny;KtQn3lv=GAM8greXssU2!D&qt8ZJtAp!e&Lm<{8*~Ojoo?iF2?7=x_lPykQCmNr;OV;#o9G$ -|erYu6FoEWECYZAW&@$gsc`Clr=K1M7g6)ovDrNRd~P_m#3E#_A>dvWDiwB##vzu6Y~N+MV=YBfc-kX -un1{zI4Hgk%iB)Q6iTL*yrwL$3oWdx92A+Onm%s1qCmK7r1V+R(O6X{3br{)ylep%b){UP;BckQ*9Z~2W(F1a-2u#B*EP-c@*lT0z%8SXtZJ{vcx6Bi2SeK^QHqVYLnoYC`ONd)AWPMmNZ$ -*(4IN21OZUs&K#z-#;(d4fo-YUG&=p*XxCNiJ5)Ru^BXv0DclV6}Kx%K;mLgmkp)_94)XdesB-W^!fs -vMCszhl#>xmiHr&>d}jxWMt#Go^b;YmIY?wgK{Zo(bH@1p++T*@svL#*aosDj@FcR(!S$=vpZ47MPQx -z)REx`cA=)9*U#h)gB&=+0oGd5u#Ra8x|fA3+|`F`kkPyEw4l4Xfzu4$^$OoJ*&RV2yg!~w7mxalEKKDuShk{@H)$2Xm#(*%I&ZUM-#dG&o$U`-=>k1qG( -+ZoWsUxgGw5hXO5cOXrw5Ac7rC@C{a13``SF@vhy9HrWs2bohWkeYkR-TFYWd5#*VmyoTSeA)nY2r|{ -IitFFFBP4Ig&f+HCD|I>^1UF3UU~06eM#RNi*lP3K}fqhK||$~4Q11@ZW^|u38y_?rENos&<^&bETHu -%mQ-2m)ko8`uW{U>pEgeo+>a`OL1m96Xnln#>f^(L-r_@kYu6%eUCVnvsUT@~BTNUQHQ1g9q)VAt0X^ --~eC~7>8pK?K02`@9b?5|xAl!;@&o+M~RQ~m8A-OlKtJRC)s52nt8 -R|1xf)5^ilNd&$cTXqpJG~(rAg4Md0>ZKk_nv~F5skVy^r)|3*zoV=-?MI1z -w(r0i`DtI%vWj=q@9-D5ZA+bR`7k_Gq&jekhK*gYU1A>q7|TXasNuK%dr&*0nh%Wr1q!Rh?v?9KTiSe$)7zkIVWfV8I!UGTI8(H!z|-eN*UUq%yStKr@)C -RuetmW(y+^3S-T+NiiS`%sPMXwKo5mwL22G(1F`rJuVnG&>a>{nb&^mM`)EWpftO?q)NIVjQc*v>aDj -s&qA+jDA~=lGP~o#Q)lVtfDq5QtuMlXu#680gbFhQ}9R4Ugu1mkHvRB^YD1fnGoREA3XcRAG`IFyvn0 -IrI3iUvK4cP)JU@qiTP(raiiy-F5TJ+IL%6h4@hNK!TX`29Xa#{Oo{R8K=i#ZYBge$*J&(sz$GqJn$n -4@2>gP1hRjL_?Of0D4HW(Rr4kJ41{oSe+B7Qxm0uW!z-=BN4y%?|ueDsls$^hp`o`V%G7@~ -jxf8dA`3A4|c;>Q(|0MTZRb0VI9g%33Yjx-nH#`!_V`U;t(bM^pE2NBRa4*1&F(>VoQ=j`W-z@!!m-m -{^}fjn6+6@D+0gPro1aLQwA5{B}Pa>~aW{bm8XLkJgDF -;4wn;Fn~H!6WL`~x3GR+Y1y*mYOADmu1$ns2L`6tf2>Ha`}IT{U3or8xnc+nr*j{kCR}YRbmLx=_C;A -6q)S$wfZY-bJeq$5h|b!>?XbM%1}L*L(%dhQN%oRMQvZLksnCMF1W_oHxIJCc9#z1ShTK6{-jhxhp#0 -(CN1JR{9;^+aL$MMjL9V(sX3^<-Po1wDT6D)70w@9upMrd~a!)1uRUSivHDdqGjI+xoX~tli3Vm_M$A -_Lx)ZWB#D38<2W7{x6NQ@YgNE7gxf{G -p0N0ZmIU1`nRB%!P{HNcyy9P`fXFv2v?b7icU5)F?W6-83SZ-fbXSEZC*CV$*h=D+81Mu`n+maZ2Ezb -!kgWCg53Vg2R&Q3ZE`j3xohAxpjAT;!od%dU#{nh|Zn4xLwR3qBk&bP@2oWDEBCNcsQC}UN^@ -G)dFKx1&j$M*z4quXXeJh+q}HRU<~9NsCFP2uEqKF-4om_pa=g6W-ZmG%y%qgr@Sb+w5!T48)NmsGCHDmSaCi@mR&=o4eCLmZv+#> -UX5`op)FY4pwkv{gn8D_Lz*fUvDKW1zZ}w&k9ghT1z+b?A`i6^ut%DW?P+_QO{_Qxd1Kc}4v|>$zmT= -6ivx7>K%c_9d+I-i|C+0h@~~kKAl&km9*~~YjYWA2gU&odCXgmkQl;`pbhbVQG(CVM3}Z=-hJA;YZ07 -d(m#zdIbR*iac9SN1NxJX*4>w8T*1Re>FR6sGOtP>9BLor26#cM1UUpBKCTY}9w99W}>+@`1$cw&I6S -%m%n0Evdy@1|wZtXXnTyD$-h$jUe2gKSuCqTol9^G@&V8ZfSG~+rZc?_F`7JKCkeRB=AlJv -`8)eYnFYIEMG{h;=wDJP@A -~jvKlAOhBl21{t7?@mCO6;{83k%!Q!!MPS@)2!DjWOECO`F8*bGma0Kw*fSV=_40&0eevXls&rBfbMo -lX8jMK2#M_mRl*l!I6D)>`N6)|hulukd^)cv4k_vw`)TxAC`)+EDpB^KGpL?zxTcfQO=Nhhu!ZPmHKc -Lj{_ih|z-xm6~6`2}VL{}EAL4>lu^kn3+Zp1))C*7(=yE9rOS>x`vXpgX;b6*piAyeOFKV`;iLjiEa%3^W`fuEt~X%6KS;kPE_cIZFtp? -&cA+q?r!}`qdM>Du36(51Kv|_uc_GOvbjtF?ugjYL|70*9PhEPY$O-EDHxW8fQYSJxg!Evj^n2VR_nL -nXdVUXj=<^!}J%^&2zMIg8H2&U*Mms|JYgK~*#VNg{$asgxZKS1t*XOb>SzU+<9M#r2`j5wG5V-?!q( -+kU4+}_+>AoAqPr&yy`DdsDo3q#Y2P2@1b)7@Oke31QV&V1dg1XSP0(mV`UOol(e?h(JqF-Umq1i1o+ -I)2#uzvSmRX5}YLG$Y~UI&b!yd7}3GH!pln$|t8PvklES9g-!-=%RbCZ+k>S0=8|6J) -5GRcgFCqCRCc2em3v-9cZmrSuQu?Xgy`+0k&2NRFIVib2kPoY=epU?6#8G7>$?(TKDgzAF*(kigi>8q -_+SuGc9jjC6%}+(N)dfF5vmGd7j(=M1Kq9nO96C@cIj$6GD1RH{SQ{UCh0FX=Cw@6a -WAK2ms(pnpXb#iiG_s007vS001Qb003}la4%nWWo~3|axZmqY;0*_GcRLrZf<2`bZKvHaBpvHE^vA6e -QR^u*pcXW{R%8qE|Fdevg{-?t6ELUu{ATQ^+VT|<4VoWB_ZOF#2N$`JR~!z>~FvQI&V;xH?yg!TVc5@ -5;*Ad>eKITESq|h%x25J>l-zjCB&)s*}X6@_~MV(*H=T=Eszt}uT{6M^VYO!x3CvVH^RMqC)cD&-xcKm?iKCKUYzAkz1^zZePoLZp<6pmaaaZPJ6m_ -%cGmT9qjaC6Dd^{370denICG*F!NgkC&6Y)}X4|?gunWJfKf$bR6=3F?uxPerH1Z#St+#6iKis=*Th2 -CFw^+~CfNxc{F@RqHSU3)VQp!2u{FFY~(o~;or$yhC`tFCOoF+3>E$Up&x~y5LeJy8I-E6Y5_=}>^Am -Q+@?0F6#((P%2^H(#tb#U;x!LyT`CkCfdzI1Q^>CcCIi=JTiP!lZmxkj@KdvT^o5Bo?8Te9QgnsR(2KH#YxYRdom?$}O%_ -$r&1U0PmCI=&xB*?CBY=rn4;(Mf8XMS)_-V2Nb}Xi-|fe7?Xm5d&>G>Y>_jjYF`W->}1CF5?lRs2w@P -r=kqW@>w!xP8GUs{Os;Rj>7DXHS4{&ahMdcAJ%Q>BfOWoi31(I&(inB8K3<&q~;$u7>W8dAqV|2eay6 -R7F-MmNSO~qbKdixQAd4`sC8F!3K0_@uaHUIlC<##=K~=n-T`IR@5XN1ha($OGM;)4JQWvbs0!C3DGp -<9cL#e>s7kl0Y9tKx>=np`1=VmgOhKv>?Zr>>8ZL|JUMw)+?=qm1?>;Zr@wuAFuN(?0uZzriGFx8{z~ -7{i|0Q)zkD-IhM1{^M^j8YW6Hl^Od#rvbYS=-c(W0S0v3W=jKK!G)z5%VXP -e;Ip}>Q5B&R1jTq7KoL$s2yN>^zzf{A7&K0KOCX;tBwqUve`N)tz1RY0HuFd`tNbAKd=*>)sXc(T4Q5 -+o$JhsgW^d!YwJ#c!XO5m_1oBm4Rh!7(lt&X`_gFrXF~N&ddey1so?RD}FDifL7jv<&gDrQ1n~_ZJzG -U1&ml(GCe1YnH&Mi<~BQa+*FtdViXpx{v?8Ym1+V1>xsyRqm3zy7>gBph~U?$&;rkp9`A40=j~$TdaV -F(g<|3XZ|vYBx1p{reSoC0?80yWX_CNWyr3oytpm$K69C{^bRX#K*73Y$+E1o4i^U&L4lAk6`lt|T1) -G#dty{kj42|~O${t$`XFjnu)Ng*nCsH4BQW8zxOv7xjYv{+>10))C=47m*}yUwU`yDX;}vXs#k8nvP$ -)r8t0hSpRGTKxm$;NTFlY!!)h{|2%Q|bFX#x>q1er3j!@sP&%XWw*d&b97j=vY1>~jmu&hEvVescqz! -(?582}s*!w@55uVPU-qg%uvRGAs4a^80&WlaFiY8XzqjrF@nIkh9yYD3K{mdGnEbF+d!dfz<=AECHfJv;jAGR*foEM%$ -tpR;J~=wg7ohEtl{JBEG}oKxtU?W!CK7DL`!n<3sXkq|UpH$tOVfcZ$|WR>zwnh>$FX!Bg8t-6H*kqg -v-E(fdq>G^5txGkgJ`EUHD>!%XgApv2$h{D3gtSET~RSi|Bq8U`&ao=Hn1)aPwkEQ+q&`MsjnRVb%d( -!6jA%VO0xv=n;AH#-zVNZX)+=s_U9(|Kf(!UfMVqQkN1_$I8Pet7o^1h#eEm$^n@LZKYA)CG)mN^}UO -gkqhF2)jP;r1-ziDp1Uu`9SZpXl0*67qmZFv*W4ofTZF5gK|!}9o$z8>OcSU@ngi0*{3^aM0rjcG?04 -3S9lw#bJzer_jrcdb<~@~9s(9O-MehTGmdIDH}rq6eltR@$|9A0j@2B00Ah+^TYzm~OdYW*&w>{Z$DhyhH`k%Pwge5Kp{ZEk)U%qM!{9azrl;MVK -{P=k6&=lpbcGdRDeKR-m6qjoI~!)$k7u#v`|~*1x7;!eX(~%IW1a^He*@!skXRGe5F;3BIo*kin_&&L ->T?-#Dg#Ei?kgVCD4K8<~b8Dy~n}uZKv|hziolYx8QM75zhI$R_e!sG=aiPcmr*jg9TuS(45Og58Ts; -VcM7rAP)WYZ$nQow%7;wx9#{a`5qZ6vRAh8_1mPaS+2=zU_@w`8c!0mF?J5~MXCt=tF*&J*>Q&Co-I^ -n{{DWL^-8yWM+(Tq9nAGwp_bYp3vGd-vP25#h$A5_Ro(Pt@=CUSvjvs5P5o(C{buGe+4JN{+`w?B=&l -?ixSrs_Hwf8Uf8G(KpF*lu0zx6|Y6j#)2vC;hlNDQQI2bH>`O}@|IAr_V_V2hEOH}vcvCjIMqa%x(X^(rM?9D8#bfnwVb -vceEqjdG;Y@uPflmON_D9>My>YY}uf(86bQ<}z8)0MAC>K5^hWyMs{ml6pMZA3d4X_H;yC)%51y(~Q) -mrCNrVX?pJun;EjhJN)~PAG_G$Oi6zeD;PF#@B)qK1}~;&T!F#V-RU3T&}5zp{jne!T979)mf<-Rvx! -kp99zL9^1J3xfO -rb@9>;|C7j(L~4~9~qHAbes6L7AH6EQ+GDB*2{>%$wEH>#5JJ*QBx*4WDl)tZ3xx~NTj1^E?AXO`hwR -EQ-Ao>lU^12hE1nN8$pNE|J17tz9(EXZ6NxJU)@MpyC_nPq+Jy7WifmeG;TTFH9 -n=jI91LBtXy%kd68VRLT0To}mj1pq);Va}Y`5T|acp7c5QW{tAM)W^5jtzGE}cZUByJ@)SoehP08#_WeW>yd0E2npQ70Sjj&_}>05a`K)Z9JJLv$QD7(0&)dv_f*ATPSKJ=i&yZd~;~O;2tz# -1%AQTjxedI*b5*mgxz9*kikg*ZgaUcE -$MYnnP=_Zlq0x?taybOQm|4-l%#vuzNE()KK|h5*t4t~6|F+dBy -!r0}?44#tK#Fp**Q5U~PZx8URD=;=O23gV&Yeyf@t5F9w>Fvc8u-c3RGsZ<)$?0`oEvUJ2Q(ugPyGlB -16PeWjI+_kAm-IB}?6sYpq15yj*pb-I+(5IL&j2x`iV`ZF@)y8G;sa%?b&ya;YiG*0Q2eI_%Z_l3*z< -A;}alNBXhdg;C@vx}_Cwa;k160Z`x6u7qP%tFfk`?kG0l9o2ZFvDq5YV$JR%;_kWyWOzi@5=Xe41p&W -1+*zT5X-b&#!7mwFQ+8P9iJq!=pL`9Am77)yQiiPJzPV=*9tjq&Ol9`LePU{OS#6@DQX)HzcDGv%qJ%><_KiIcHzWzf5SYHLfFgv4?gQ%9;xFu5c6N0qWO}mx16*fBLpWj -}R4?ky7PR-9qAa@IG=OIuLm0Y~CnaouGc?98TDoY@Nb(DIO*PFl=`lD-t|LD8fwFVSY*|7c7hMlHyb} -)$Jo0-{c{u#Qjg6!D8CVWuGR_{k2*@5eDS3tGelhMl2=g#4;oH}#$8Po*VyR}N$}l -Kp7eMik62V(AOMr}P_#6UIUOx|Z|>O?q3mZGkGS3#sKrs3>0c{VQGoc5I?-=^CK$c%WAk&VX6B8t7_K -Wo3%SuS&6ZBd=K<&{9mjbcvt@oq)XFx?v|p+xF`8$%jLF!OK)L6NncxT3muoU;!U-aYxBp;Q#IfRTM+*y022DECHXAo|MuY#0WGUw -A{~;6^B5*&q&%pwtl@_ZwM_H -J&W2R=yYP287TC9#3vDEOOw1v_(6t*7zN^Pf}p)V`@}em$zyr*6y$m0vQ-IeZK_|F4#?q-cz5uMk15g -MSkbfGP@ST`b!{?lF%2b4P%etPQ7G<36kDOvbowlWir$*AJNT=w|fvrV -X7Fhz{*H15!6(rWCH*CFcZuSYDIhL9fu(OHL&>``m)$bg3$Ly(J-j3un{>hkJhlCar_)`DZ7i`Icws# -O8|2pEb&Bt?wYqJsr0Ju5-2sz|BS!FoFQKXpflaTdblLEwZCvrQQQ#O&BapXF?P4^Brgx -%eossP{$X{POLEP7)e8Pa+~B(cNT=x9?A06;=N^XhsW4Z7$yb_~H8H+mCN(E5h}!t)v@uU9%si -U;P|+1KOcWmO{L0XxP1~Lz7iRgeEL=L*9c7=M2al{a#JtG-Uep!ev7~Dv4*?2PA1#Im_|J0 -j`S+?MkefO5z)AQ{%xu{l!#DHOtDk=+r=Lj23qn_j+Sbee0Xqp6`DTZuSkY|YrkY)*i^$pQm$Zx|MBt -`Pxp;-+WZvYNswzz4QTiXdyzHNqNO(zu)AT8?_v!)fh&Ox&o3Es#44^lg|pjZT^65I@_q+YV{`Gj=qBkNP;W7y^{ybRZ& -KFvCwVl3Oj0qYs&Jh$j9#q9)6W9Lpeo -%+^!$cZ@R^R}%p>k3%Xh_WeuKeA)k6YFyH2&E2+X2GPag#L~A&(T1Xiq1NYZrl^q;$IfA*Sm%*>0NMV -8{cuyOUij7UuaaSYSpa=!)l_FIhe>gjzDhORg7%|In?&N5sIz1Ol+^ptV4^+u{K4X4HJ+19YNn`MafD -jz`TcHtW`L{@w??A7v -{}!%(L%yosQl6UdY@adprCs60CpZ0PtChx{83Rd^|Yv&90V{v98gX;hc_jGbmt+$vx8o%0cXgFFZw;N -A@j5}0W$T{v+#1KwAeVr;i_q50lA{Cp{PMhBj}B=4))w4$A%NsTjDjUcvf19fBxt{xjH=V&0~jGPRJk -WL6PraGPIjT)?HX>yE=d$$=tv$d+lY=iOWWHju^B0sNda(esn?HMKqNYH0in%rb$t5$@=(cSDQEuO?; -$}Z7x-1ESvfH?%O6|RyyR+?zR`7SX=J}6~avW1H`=4BkOJ%#^_Jwo+`{AHc~?palx%!Pnsdff7+&cg(RugP -F&6z9DJv|M -M%roi{Y3}fgyR4#6=T^V+G3p!kAQ{)oqdcw*H%)t=-_~i_A?42p!%eQyWgGb%D;^U7oYO1INoYK}ACL -=PgC}!Fl(d+`^+Zh|lPPP?aS5%-y&rot=k9--kSkE39deu}Q-2fX<%n;4eii!Hj*~{04-0+R;4$0=b&MYgW*>ww@Cf-pUS?fJD5< -Jkt63TXwuaFZlxwJw12hUi2>t73*Qs{yOMU2^>QqC5i<3}{51s_iv3&vUR>!36dFi{(xTBOl8oEvDLv -vK$cC~4#r({tV13`|Tuh0hOLAhKWBRx5Ojpi&~dvt9RjbXyzW?6DNFx=NiD2SS;To?U-b~^*U>vRn+1 -yPqq&ex6OIY+6Q_<13Tnk;KpCXrdEGhsFgdIYplOk%(TkEPy){~ibf_o_0@9owIu7;=ST*?f-61X2`L -yFjBP=k20nQOx{A2t`NYhrTcrTO25*am?LF&7ll)4;(ov^8(E_RQdpvt=3teG@b)T1fkznFQ=J|!zwu -Ffup82xQWQr0yPs;w5wWDb4|}WT!K1dyJamAa6HR{03D;u0ll{p#);>OgDKfFsckiwML-o7d^_R>$Xh -|4oiuq~wzbK!rDf6R;TPjVi@FvC+6cqVEo;crk)A_o47d^onIEvH{oDieK#$-oTsux<$N1|FP- -qV5S;JbDcGRE_OEC#FC$-75C#O^R@2Nk}XHTBt)o<{>ZzpMTffX9e#1}Ony0~0 -{#974CaV6n+PRfRQXzPH~Wngui(OP1xF(Q>E2;4271W^Pr&U`+1djt}#16y=vP?&JSX}uwGIN|6v;R& -TA5funAObhEKj$cZm@8sf#={9#;&mP)nPxN>*uLN?%q!#FKo -=^f&EOen^_en|wRC}ctOq3$Lg~m(tR~@ACOd*YNWJBULa&ck>TeQYx^||??_GshkNnSMKP7M4jw=B`FJghnSUH={bEf4R%yOaH)okGJ)$BfAdS|u3j6k88r7g+Gj{y=@pQ2cfG=F3&V8qjoNP)?*uaW7Qb8dJN=QD) -D9nh4o=inOqVsO-7bvAU-Iwq%2*bfgLSE0F9hovQ@)0RJ99Yt1=4`vcquc7rZc>3sv`ptw<{GddC!$) -MG*}n7C2IO%n=?&-mAcKEf`kdgXocPl(Br3Gelfxs4JY78P)Cg47MC8nj&9xHA>nlVfDOVS+N*TP|$HabHE(Y7%I)q?T=7PQ0808Pgjm);&4=-EU8mpH -6=!iOv`Xhn~Sk|E{CPBwTD!Z%%{=n!g0MJps7iMV46H7kgms>@8|Im4tP9;anmV?kPI#J1T7rh^g~k> -Oo8g2&#G7JCv^#oClklYRo8H#4k6oQ%D+^KXa+Xw{PBDytu|>1P2(|B2i?jw>#FKgbZWdC|h?U!8($d -AwtB1i>Gvge|77nK~M_}ePo4jS&EGl6`~yu4v#L0a@$=RQum={-p3~Nyb(|k8KQ6XbnM1)%^80|dmyH -tl-dR%AUB}uk^qpwb|L@mls&u{>w#)xWhp4;l-RA~=tl8sS -a=YT_ni-By)5!)5h{MQjHUQ^FP>&1)gi45Z((*i@m=W5+}Hs4OfD%PGpr;NGdb0#<}XEL{nE%4Cd$8w -_=-o7`j+n`+q>1evm^U_RgmLTd+wHD<^sVkXj$Ymty-grFk#m`%32$$fDRhq@}%9-jz1WPLT{YoqsRF -`Z%#wwQ%S*#-+vB>7^Y+!vSLd~aG`YT>NK*04xjPh=rQ<_onDhDWH0U;yZG{X#*Z$t ->}H8_sz9)BuhHJ)Tl$%3u{0Ye-uSyX5Mst%4<{9QOA%ci3g5v`6vBg_pkN1XW!#87n1sgBE$zwFb^GE -misMlJ?hQuabp&mZ#kf^165O!00ng@qE>z-7n`HxFo)WD?xU}v>#h#c9`k);RGk~Wnb5U{wYHiN&BsY -;Oa7dU~UiUzdkEKZfYy;wzj|4^_mjl9*{L;0#@GTp(76kvAYH{>KnoP!G1NmJ4FgTWiZD4@W8})hg9r*xHgO3>vM0-Azw -y;goOrH;Py+QhF0(Vv0Wu;`By5bEC;cpr)W#BYf)&<3xD@3U~C5(m>%UUE%`kVZ*LMC-=XlZ89fTo{V -@BSC-Z8*RL*)aTBrx5Zgn>HggcBqRJ#ARj8>Z8;;y*9=Kdw&Ji{Rtlv4fo?I0IU%MuAzcQtr)wdojuJ ->ID~tdpM<3t4ee=WYj~DOWU%q`ad-LJ-A1>Yenxjq4eO`FgxS4G$twC2v=CIJ+k=K|ZCXHl-49JMtbFIKqhF_6<#Y(DP4tSi~ -_1Y&+wy4T=v!6EmTL7SRa}KolQ_MBaMTxshJ%ELaJT5j0BCv~so&hQv1n8D%`nm5#WyK7S&ML(YW^z`R@luX@uTPn33N95Qyn%ELCHe(WxiewP@N=uo2heNa -RF7*im$8!N7!~@i$rv7G<(k7 -G%5KpK(KOH5}0R5hnCdcD%celoXD!wMUPdBdITGd~dqa)BVTY)X<9J!u98?j4=0_R`zP8LpQ`<7|RZU -i|&htpkal2He@3l8ix}{?*8~n^N?N}iZIt-{)bBVVe+FNbM||4OJA9l@(wp*C=yo2;ZfqDMhuTykGusXZv~p$@nC<(@;F19jh -!tj*+9f4C!FYEVRVQT=5Y4IcpCG?y>9{aN-$p;jw;l644t|tCnYl^yN{T9Dm33LzXqz`d^T4M6iD;Dz -e|U6^9{wk*u8mlg=F4%(gpIx0OY_&c5<1tj)5{TE@T`^Q&_hPhA>x)Ild4s6i+3nBLYkngqm0&b>f0$ -3D!(4Lc0q4)W_KFFcW7KXG{oNx|hdbmZ45Z2Xf<*wyd~dp&#UVb -h%jF<2cvNDND|xmM2@Oj~+w5aZyPD5GsU5lA(H%ISFL==2&qn>Zm7m!Rue5e5a%Bcc%uUdSCw5xCfbc -QI=nkfXGo@G4v0;o}sd=`k^D}&mgBQK{Y|0J6vVQW8%rGL-ykQ&NWi!qyrkLM;yK3NQ62w5+(>0F~Tv -kybP`9euo>zvo``;PnAi+Q13g+L`xD}?wY9t%Fj@UK;Mx#*ph+t&6dKL?VJHc@ozU!RY;rd5gr{HmLv9?8HfY6hvg;6#w?MXw<7J00R`gPe>vf9Tq55Qx7<_zB7}0+w1lYKbj@sn%>I@10o}*z9T*8!f03Oj{zdDB(svJkpdan_Touvcksw-RIWi$Na1XBAp -e0Bkta>sV-{*G7Wg>Of9Me+aj_vXF-hrT%PH@|r{{N_Bj3XCtA>bDj7R{>LB_M6SlULDFRF)q~T#G`- -n$a8Pef -T7UNy&9+Ofq0Jx><>(6C&MMv&Etp3_j -R){`l&DvQ~RQ)I1&vZ47m;IzA6il -09KGA1Vz^2#d2noPdJ6giAul_vlf3leK+gew;2(N6; -jm2Qxf{5)+B#w`hNPeA*B@P)zE%RNf?s1o<8X1Y@Ne%n9StzRDS1np`1wM_a3uDfEG3Hn*F^ji~~P-f -lgR$1PE|l-1evi>@|x7@cZn2GqW3rdZzz>nTv3L@uw!(?EoxQo;s?dC8cz>=@GxRe$2CTzt;3c#~Vt? -7Q#2bHj8(gwnC5tGZr+#D>|IM-%ViMptvzNj676TwG&Rs&1%p@PQQ^ozjQ&TCaTt45!JrPxuLx_V#Nh -g6%_Y0jHuW>qB&M=t(~b*@5ve5PU-KD=--x&^NjzSB?oPN^*e{st|`UMJ$iBfstCo*!%kAhKEM~)G0k -wUIF8pFuv(dnbUF8(CgnRk?->A_IHTwpn2)a@6aWAK2ms(pnpR%SNww<<000>v001EX003}la4%nWWo~3|axZmqY;0*_GcRR$V`Xr3X>V?G -E^v9hSzT`%yAgfYuOJi{kqbo$dS3$JIzXs@k7awQ8F?QieQko&1!Tkb;x#FCc -e%<#Y>gs -qRv?WARyPKs2_VAhDH=OC>m^&i|QskW2w*^zqiPhTPPm)5Dbw6b~7(v3Du;0()RPAU!(G$_Vd4q|Ezi -P(Twq>?U*CRU`IDNUHNOjrvZ2paGoj?Qq9UD2FspfYFHku<)rb9Q0J?1D|&QZJj@jYx`EgjEfNZ`fDZ -MlR#W6p_jclWPl+P)#rbf=PM9qKHt6qA8o)XeFi$|6W$;-HLw|!a5IN1?95LR9t!;X$$OXhqWs8UAvUX6vfVQW#kz1*F8q -pkZI(=3<{UTzWh_klJ3#T*gWDI+OMd;c!$5Gh#LMsOZ`R?wRi|)?5$T}TALnuv+R%Zg)1K3K5ryMYbk -sZ%-p@6ew^3M3f_1*}Z1G%0u*qb>VK*cjy2d-%;XX^seKq_eqc5j9}qVn%D -VAv9bYS^{ln?9QV!Jlr0Ga;CoWH2008Gn*lkug1PXgDn}G6t_yn3jN2rt%xRuxzs6Wrn;kmy}5wiZ5%aO_%mlXN!mHOs -%b3?6}&B04rK{i0t070qtaOe{VWXui3*UpRUC#<0BJcb0uiXVk5CHlZ-I*tot -!+~9J7ZasX;pHbBWST;~1OsfX0nItYwoV){`3IbO2V3Oa$C#T?>$dHJ$aqVMWBab3ERG0f>fzBW=;UQtg -D1&g%ej1$mgX>e?~vxCf%vrvI01mduLI)`J`L`ftRclV&D8CQVsS1=%#{;Il940|)VSD(wz5D{*KRJ? -!2VJWY>mx%hc=bG!U{zgm77NZ89PcgMN~ctO7}^O-3iK@%REhFi@-7U*C~6sDumrZ*wz)y!D#%8WXai9?qL>2 -tyFp8Ua;X8H#XRCYF57ikQpLkXE-cYW-{d_)WHxLIm#nIdMxNk6lqY}pB%n|Sf3q8ZkYzkMK5=2?bf2 -A|55zTM$k4hiZ*|_j}%M=KZ5Fk{G9NT)BV@c?AqMM9bUTpSK8s({ -Q}GI##m0HFiwXSHG5v?_Yc8|A`5?uo1Q+|2|z^HGu*M7OL{{lB03qQEw3+RHQ7Y^h(66-1{B@zkTdip(LtVmFpKk_O;JYHbMM%1@vLoYF%^Qu+J*tGUj!7`iBR$L@lBsi)!<+#e*~mz+-=4as%*=v&Tz -fw1F#G^O&u9e1J4D$vb?4lstf&r1fpB)3iT+GNvjo}vR(oXtLmx@Vj=eHkzKS&FhOf%9(dr8ooIOI65 -$V>9KnQd{?c_3y7g4_(H(u_0%pMtX@a`T9vE+JXZ~uJ`rgve2bRi5Pt+4%VJf!C5n?0P1)N)`@1R!q* -I1SrehBtn5|iRKqOiZo<#TwpuZwH*rvn$too!XXrb2DOw^$adw+;dTTZ!t%q`aKDrdi$$AUAIURA_y0 -wDmp^jbX6{{&H-OP9`z9-G>KA{7&-p!B5+3Xs==bf%p$94@i!hsMO-ovkr#vLIz>#Mq6K->V;3M{hZv -8wQW5~pr-=bmzcRZy}}GPl;e(rE+ktY9rPZC6v0m_Wh=pSPf!V|a&>9J=}5V<9=dD<2X(4+(7fwj6Ch -!=56m(^D3zBd@AT5F2mNx=G>GT{ziZ`*16tdzv^tTdlgnDe%qswgWWePRIt@r#n3W6YV!(gxRE~bLSH -a}hc>4tLEo6=$@4}GB>i`&Xx1ZnR?UOh-arQS5D|*W|yfWL-DBdscCEZwY-(l?NT#|t2F0|Vv^Ji7f{fJ8mh#pIWhjjHr7^4=N~_O{J`FQ3JR{O0Sr-m70Bd<`fK?_cQ^Ix40v8 -v<51C7>&EkT1e66kURw671;cTqy{OS#kQZnxJ5F7+UpFoD8r07w6q(2k^Y`zu`NOXkzK<)hBDI4`+QC -fjZ>v3RmY}z(OhCM!)m{EO>4p4ZsGzD}e4N`G^~HH*>ZGqK`6|LiTv@JJ2$fjiJ2#_??JhjWmpS3;y| -MX$x36?Qv0VqbFWnffkN8dxLO=4yI?DaJDZQ9D(Df12><$YeY9dm-ot1BI>Gm?iMEx9j!z0YPQ?Q)kK -8f(Yt-p7@XiTGPIcVe!5nPah9vufqjJqN`t~&+dW!K#+BMwp}SRP}&Hi%z%alxQm)dk-4(4Aj-l}gty -<``NpFA~68gT%Je{tHk`0|XQR000O8;7XcS$0$oIAPN8ggCPI_9RL6TaA|NaUv_0~WN&gWb#iQMX<{= -kW@%+?WOFWXdEHriZ`;Tb|6iYC!5|Qslh(F;K?Aia>T~S70C5^5IkbgsP%CmJF{Vf!cNtqv)6d?SeUQ -tCe955?pn?I3%bnSI{N}Y@m-&u_;kuGl$-|H&yCN?oVJnfRmE@s*9*xX8-?1d6l}u7$mv+gH%YDJ?g_ -4g(Yh+6c7TvK87nZ9?9!8^4%-3X7aUsGe&m_-eh~)k{NqNS0d_rIYt5Uh}SW%=&#AK3ZM|mW -m$7HzWEaqjXv#KDgICZKd=m#8Sta^$g_0c!k|*D%~&lBa4yRHQxXG1CdhKR -+DpLm65+Ch6PFg+fR~2dnR3b$oif#~MuDmp*bD7vO5)rwneoVs -ugm{z_HI3;M|^Xe~aY?(Ptc@c0lqBfBJCs`g!>7;_d6R^NXvCHy_>u{b#kc@@}f*#Ku5*G51Sp_{g)A4P$Z{qy{I_SY{S)gh0|^==h*5&E%Y*@pWl!$eE)9XV^w6>Nj_-vZ+-eil&@ws798X2H@~vWRB -zMxn!5WU`==p!Cf-8X4b^L!-vsIB>YFYl0mv<=P%aW~i^V5{@lVduY(cdjYrKv&z*TgHnWuFp|5h`X> -m8sqUnE(vFD&Yu_)@Vm52?vhqAJgE`_6_%^5#2!SS1X$2x@~}VK^0X&@$rd{06M+P6PP -lTUO^!0OcK62|=s5ENgNdchsAiD(4Pt0JiebKS63MB`D%y<5-w-F@evQ2QlN!lXb-mL)0q_o4O`=x}MZe -3dGHk;I!t+I%4rA&zwz0*1^@rEQ^C;Y8oeYQ6d^DmoJn+oi{Zg7PUz29SZ*oC4KvabuaX4U)&z0hm!# -cgo|$;gCVw!uCTkiq&@H_6~hpE+dQsaf=yf~D@Z)Tk5Z^~3S&+-nS6sW9W&Z|prAgf6MpHSPFx8_PV6r$X)#v?yIaZQ$p9Rp51xzm7bahK8k|xyY8niPLuiytvaln=*_ -)SY6+N!Rp`cX#fZ@>i+Pz*v1e2>*R~JN82&2mVmX};bTKx)H*l?vaE6m~if$e~3J|DI4F<$5ScuvMER -*ol~H|&n14Di~=ZR%D^KFINejLkimKsC*)anPYJIZJDL;P24q1<(9uLqOqY><3*As8Q^&_`6~OwX$Ym -)@lwQTC!sse)O^6o1R3_kAXc6!mUpcTdPQylEtak)tu^^} -I_xR~z!o82QjY5m4KbH5|3=-m}!~KyfQ0GRWcc7E$FuRT(IidHyC7v@FsQ|1S4oEnD=g2zwXgk$eztO -yxj(XY7atnqJraK6bux@pISC@tR5V(??;m6_Q)U}dlCKXCwl{C_yfAHht>(8HfSthZn%iF^<(VDSu#lM;sm1Cd-MJe8T0IewT-RgZ -_*Iz3bl*tTgSR`(yY~i7{q7}b*ChR7Id)GUcdsLwTa5vR)}W6twQ?U|JZSz_*bLh27JIxt1hA-7UVX# -(Z5+Q_xS6q~(RD9GD$kqr7JG@f(}dcO4-tXk<4v4P0hm-^*><{e0001RX>c!Jc4cm4Z*nhna%^mAVlyvhX> -4V1Z*z1maCwzg!H(ND5WVXw1}YYi3Y$S1AShhyC1?Wpkfca@DVjo}q|usPid0BycYVpXXGl@9EqgZ`0 -fr@V=FQA|!(nT52Sw2iZZKFBAi7=~2fVUc4i1a)J4xbtB^0-{5Yu<98?5d0rESuBJfSC?H+zS6`!N~U -Su0RBcG~=eUk9}AonMRwJ+E*14bCQ3JS=t?Els;slH42N(7<)fgh{P$hdxUO*RFq0^M7Ccmn2DpEz~= -$Ef$p?RKv|a%Qp$olcs6-|2P=HuHwdUYlXUz`?aMg62V|Ed5s+^2dy^Hi4L9C(y|34I{}v)QP@qW -mq{afhJqh|JM~C1L0D(0i^eNMT9g7P8wF+~wc~BF6$%0gWKsRe1GAmaKy7rj|tJru;S-DMj@v%Fm8ZDJPvhdG7UKKOkrY=SfvtNUMekR!?S}_I<_6BPbtl4bfC3~IxK*Yay2)t>86IyufJ5ldqkJ{%q2SkLQ>_ztTEftSX77=}a_&47k7dtKX(GzZSzXe -rM`6F9&gLI@6aWAK2ms(pnpQC;SF&st002r&001HY003}la4%nWWo~3|axZmqY; -0*_GcRy&Z)|O0ZeeF-axQRrwLJZA+eWg#>#x|SqOg>wuuW3j>ocGNdAYO=nxsLT-r~wx&oOm -$a=O`oF*V*iVwOo!*^+*b;Ylc6PpJc9?Bb??s+(yS8goo(sJ{)J-eo+SFy&s+_-1CieNJE=#p(bzK?v -XxmkrwysP6psX)1b#*zJY!P;rM{6AT_iCf6wmkk~RPmy&TB$45*!i2fs(AVVpt==5e)#b2g&%nbBMW+ -V(SL}u^Yt+|o1NM#3sc>0)FHuOHWBdiy52~9{1;hv>Sfc^&4Ql4k+<(v+Z>}u@0$AdctJpasjjN}rW$ -!}x&uO21&{sm{&jD~+#+<4n=5&#JUT|-_C_*zlL=W_e!8JxJ<&GP$^To&WUmZ-4#y{hu#jF0*ucr2vvH -)s%TK-6#-w3@egE<&-`~|%KTb21_;xek{7y(X8{FUb=$f}xb;CAb5l2kpQajsmG5fPBH~k&fyo! -*d07gQ2?2|6zL3pjw+F2-qTNYkPFEIUtpw2KS{JGiZ4D#v9kpW5v|9+>8i0n+%tF)+&FHE^HRTcL7O~ -i5;=@jZz!}jQh6aPCZMqGpJ3|FjvPsSaRApgOqOwK-yTlg))`bB)+sI>-2Y#%pHau?iUe#R~L9DlBE$ -PDt9t^Wl@U$|?Y?i-(7tGjLcxyOD7+II~=4x!f)LpYtxhx8hc{7505Tencz~sSjByQtlEP2B*FNA}kL ->^BqWYHX5>!p-wXj)lql&H4?1~X8i7d(!nWmEHv)f(4E;{oVi-WvUz8e#5ENsv8zhyvIWhH_GJ9w94H -2)0IOEPAuPw!mDS;m`cQ;q6&1<&!Jf+lN9^uHdQeCT3%mC{-D9nMB(tW)~H$Y#I7C^`OT(sS -xR1t83Zc^YWf`AM1BWS#nKMNFnV}J4%9;)U5V`G{$upw>+nv!$SYbEe`LAWwCMwA>N8L_oCA{Yiz{S4 -utP1tY9t) -Srr211KbEOR~q#g6kSzDxB6OT1PR2XQ9viPV6IW%h63P^WEkw4W(CQi&8_DlNO%GiBw29`=1!4`S6gw -cJ8`4Uj)ZR~L9Thbwc5#R4Tg8&TpGcWWviMB$+LlQL9RjBaOG-6Qc;CaZnd%$IS1<@Nkp0YOlx~WEBy -cg1Vr5IR5d&Yx;b`+R1<~P1suT4Dha9Q-S8k_Jj8T-U3<3ibyzP-(Ya8z(8=HbBKglqZ7&hL -R@HcHaAM_yB4{ONQc8MAd^h79AMmR8vNUI;PIwC7c&oXp|=i -%BM>6t&HzK7FutqmR=lk%71qUPr&-H@-7Fr+bgTAeHjfD)Qh!Pq?B$WQhWx6dggHeDX`zvTvDgHlCa? -kHe6aMX|7O;~(c>kf#|+F*A>eu0>PH~_5#PuIn+5PCm&S$Js1Vk}CEoQhTQl4rl2~Ivh#`9e8Mn~FRD -()%)(S9t-eW@S)sP(`({h%dWqsK|f;yIDXkUOCBPT@LG8O+VEH~YPLw!KE}CdRm -NAG6Wpa@*@hB0}h?KWvnRShcNb)pfM-a?$*`t|=FQURYvIz=1%pN^*PIN-iO>7I&@Rh*4JSAXbkUT@>8jA+BRhIpvlP0}J)87>BT)38YO -k>9BR5yTKLQgpyyyKGG(6n6cn;$ -R2NP-ACB?M}C02xX7Js4hWQ|#6olx*eN5xw*itC2Fd;x;E*nitf>|maE3X&EBKPuE?!o?^pHDo*@4oxa)l5JXV>$9XTRxp -9({Z9*;_7R&vmai5I9rG_l-BdFzPhaIOYmo#djHkgzp{8Qb@}-Kj&fJmW1E+%nz^-fv@ra1;`M|+a0Y -Jev43FGpu|p7B9udv+vfSqsB*gq;=X+H^}knJZZOH@eu#Mj -2}L2kpWgiuRHJe2PQe9>EctVW!oev^-_M5(Q*ccwWL$yUSgY-0y&M3Ql>1pc0~k5S9c7>Ug(^V5L`j$BCA2#e4}9y(>1x>;sRYg-j@1u7vBhiM_h -L;r!0Q{T16*(%(bB{=1-`qr8=!}!4-S!AI{vf14t_u2Y9mCsDhceWDYKbRU?$cyX^N53M+Jf)NrHF$N -WP|TmRX!#yCzU7_)u~pveRi`9RuouU47c*wcab4~DMi3ihhG1Ppv#( -?!l_2A~Y>(`w}*UCTz3HskSo!8=t*z%};lKIP27l^7wc62&_215vA`C}l|Oo|;oIFubgvP2bjB^)?5! -(OV6mr->Sl8sePDkVjOTMW5%VmM3*aYfivyurT%yft*SYLD%EUUVj1=yiV@ps*wxv?bmmpMV9fCg?)O -OuX*B!fvxJhDAGl{wvXW*+Ur)Z0*_yd{QLE@cZ(7!=2(oh@33asa)zB$(<6*j+`qXLXu$!ZNzx{9YkQqZg`|x%yPyIME)2_$XieaXu8$A)GP2>vypX;5k4pGwH!RAwBoWo&z;=AB -Hje!^P4AW4SyH@;~ZEd?X&ql98Y~q(FGa@1?l7Nnx86TI?UfdzE!`X~j215STrW?xoQFliX4EZN-Z?C9))kB1fz{*vP1?I-d>ibncnNEIgWHOueF;{cKQJf@Dlr}# -gVIC-7ayC!!kB-=%ta%uXl22N!GcJ%jPA -kWgg9IzfZ~m3gACinR#*_zRACP(I!M#!nV+%vFt~wXsem>|&!r@!{%`Bn+8n)&kBBOZG)SU4n~ZZvSo -l5@DnNU)ZNNATu*+rMdg&Fwj6d)G2=(C3u7te-KCCjZV@ -tqLWH@FPQ8{HLwVQ==T|8IGLO0ZoY@+AAs4}W5pi#(>BNP0hW()a2mR -AA6>z9PVtlC{^QeN53cPkSzVeFD2`$PM5WX9)u=x?5_G;J@GZljgt_k*$6J3FWKokJ4xfa8QSQkKR%RHV*tOJmYN^rAw_ypVjV -nNwPWk^mGSCd-MphIh0)rwktczuCv!aq^$2K?}#-W}UrT|LEMkSs|TI_R+whfU?B!aB9&{=J7Y#5S|K -%a8wB`YYxUPEE#PWq)9?zRlkK?J0M}08Iw`%1-qyj%8ls?-tAk$~~nUEpBk*hP+5ykWCGhlz9lT!S~{fsjY_q)Jua8qFppo_|0Sv!H9C7MC1;Fk>@`Mp3~ -s{kOR9k|Hpef=ywkG%v1XYj+z57Wf2Q$OeuWQiLX-Ag -M2ifQA@f-^g3!Edt+q{V@x(To&HS8Z73ji~#OocID}9eh8}UN%>J{R{q8Zt05Mx*&J$>!83iN5U+E_h -P3uS2m7!ovJwnFYeB%7V^5*1-0C{`}#_?H+6GG&3R;yb$kU#60A*7@Yx(Yv%oZBb18OjbF(Ir6o=PGt -c1ZNn~v}+i&@G=qE2=PqRuf7ckeNvCr}}%N;&0dyyV7B^#71ZG}O46n3j23AVFE@F+9(pdn-B=kGU!^ -&c6Sc$rXlLvAOcI5YWR+6nhrd;!ok&r#+AR5Av#33(*GKt(_|69K{a1`(=sg4%nnY_>d{xXLRNP+Z0#5?PrO>Ue+$++4xGOBfhl1fXOUcv;zH7J{XpT8E@N9=N9>$_bE;!+a^a}0Z0diS->&C+aTqv`o3v_yaK -p{9>C%FzbF2XF+4Lf0BQg2fAWVL&B3Bp@N?VaX1bf?0O9eMpk%{i>9-OixV5 -qOKQLrUdNex}?{AU}~D`SrUaXngCG>&a6)ok`$-=)1;a0ZKq-@1%7j^c2Y|os*0H2^gJ(~ke -mm&leS+B%srTpi|31BME&f^SDyy5zvHo3N+w0zalJ4>B&OOZCn>63tySfEK1+mPj7UNMApYV7qg2mk@oQGOFb1 -|iea_KPj=Uby9Uq}bi@8FOB`TN*{NHqPT=-Jp3-<%)4!8{wRT%45cUfm`Y>W -}t)#83-K&w6@AKB%H3j~@boPu2&(Pa{rr2Mk&xgU)sFd3cQ=>g%`LpLiqTKi!5nY&;z=BHwYS`>!(bX -RN*azROGe8EMA(7chxx=ZsMFz~a`gu7BPgD@1pxw8gyvu?sj=QC1KDI;FICLhGXoLC;+uAvH+zo%M5S -WTpV-$2tnjT!~Qp%=P0KZrmQQKJx#`V!)A(qU6$ddPR9fgHmZIhM<_H|M%1^6ylkqcF!b#@ -Nv*GD%<}*P)h>@6aWAK2ms(pnpXUe?gFO=003bZ0015U003}la4%nWWo~3|axZmqY;0*_GcR&wadl;L -bS`jt#aK&k<2Vw&`&SgS2iqC7`mi?x!6N9+ZURg?!L$c^Xf$lvqGC=YQA<&AJdOPK{feTVR_1}h%oss -zk;P&?zIrJ!I-|`dscdEBWfch%|*9m-Hq0LH@6jrM;8(pyM+5I-AY*sVGYtZY=cfC% -L!F)r{~7g1~)$(D}2>75GZZ)QidqvXMJ4OFAAjU!KZL=FpZ_8F;O>5JVR;-%{pShg4SkgJUO3TDilH2 -paq|x>>Iua7&K6mChfuPPZiT*pZKEdG}7_u!Y%1Ge`1Z^s|Z~%T6A|vx0CeU?!ea{z!YBWjZH&DnOtU -;=9PyYJ1_z_Oe*+9i!tx?GNq@A8Du)CDXX}6mzzks#1CxJ{LHes6A|c3hO0riO3({co##FEveGUSjyb -7@+8ihaHhKmQW@zO)dypOkZ!K8K8E!1`upqk^)mX!+jlxX{juvWn8gL#g`X -PRR3$TN;Y;9tJRaXMir=-Mtc~2t<YAe})1NKk~n;^@p1`#BW9RUKRO?@FVWICnRO*sM3^Dt)HkWSi -Tx@MPYPdl(4e%9!n-Hd!D^WI+u+~Vu$b|d(IG)4@_kyx60%#E1@brU2&u|bi73^$)HFQUFZ8Gok}Wg&Qlx6HYX%aS4Tz-PZmYqJl88s4Kwz9%w-+H`!R#*&D%hIimQ|aZ}RK4vk#qM;K$HI)cUR*pK-NSN4^bfk)mDY&8ZTF2(0L&+CZ=19y<7;EI>C| -#g_~0|7e6c>xhS?U9)cN1%&R}>PK39hHF{f>tO`CKYb+pUQx*j*)QBC4yBl?i86&;!l>U!>*r(@5dP4 -?%{9l(#&K8*EoqId9h@iP@}I%&CWx3x6TW+zG{7F{Qn?Y0&f>xjtMM;CwA2Sh*q1hRRr7CCAhMHsVa% -D~vnD3to~n-T#!p;E5UUL@rOE)N-8a96)r8D^?g#|k1m*w -V>pJ!6tlB9S7=0N=?g-eM2-iU6G|Kc8knmKBC=r1%-eIKT7+-xxm@1i7O^H_oZ1BX$ev2Ekd8eSP5Rh -d^Rhu$RTR=Jma~2^dX#(#8bPoYe8m}jcZ4cwn8BnjFHEGN)d1{9qG|HP=LQ(YRVVBa+x1t6ZvQ<5_<+ -;0gG5@&-z*WE{m&C=9L;?@{LO*g3*4?JXn8RO&O~jrBC3)qbya)ZZ>0+Np0zF^NxPp$Cot8N6mVw!hV -JSrPrnd#m_!aX0(NlK&+i7S=Gf~Q9pI1VTP}JQ900sF#83v%(s!2>{41dEx<-6allG4Hq16<`fln_k8 -Zq96!w`hOqm1?e^QRZm5z7A}6tZo8I}FDis7GPT@xPq6x7$f$K!ydJBe1v(`R-1TRZ`{qZftpTzT0{k -W3C*2cIzush*PRXJY8N<4lTD1JgG!<&u!un&B?S7^`scJ$n0)zc(>=~xC9-gD}(P}-c5A!^Woi{x$fE -#psoF`&uPl6D}y}wx+Wau73q+haAoHu93)Dei(Pu^pe+*VM=fsfQBvw|*s6@nz19)kpx8Z2;|73CoM; -C&PmQxXM(Q!goo(T*wZ6Zq?4c+AXVg7(2Rst`@-EUoD_QeI>-mc2J -7MPG#4f^;MFh!$N%?nVU+g@jxp%&ssQuP_Il%*-NLwDbr^mzPy^dgsGArW6a*7Kp9QWA#?AYv7-m>v) -Ethj9BbF)?kMjLbg?yZpJJ;+Of8{{iZl^Zw$a1fv!~s7ddfmwC{2x-`-d1!g%#If9+(a1!$^c>gpmdm -6_8m{Vid$cP#eoTX=|;-94kAZMVJ#0OLGhmKA3J8M~}T^AEKJ-mT -$@xi1%P*zU$N%+CnIqfr)=c-#vgvay7V072j8$0ukE=?tP?XVlaVA3`m^`V~wsH$uyT-%d0ce)I-{6T -TcX?SkJiZ~FaiUPk4#{nBz?)A}+0m-Z&#USEH;<-l^lwg@;ccExse2IzWbW$#T)s;yE@eSFlGTwbf+x -$KZ}kq+GbbC;~=d?|vD?WuD%qnmb4{2C<+&X_M}W2wjG@LXcPA#94w#-+T=x8IUZE7bJgZGUp^-U(Uz -Pv?Wdo3c%daMlM-XQtp+3vO_JaAej7M_+14@La|}-k@oK_SM0zAK$=UU$xhBr1nlXjj~@@p3(kdC;hu -x;r|0rO9KQH000080N_fRR!|_gI%6OJ0I_!f03QGV0B~t=FJE?LZe(wAFLiQkY-wUMFLGsbaBpsNWiD -`e?LBLE+qjkA{VTBY>9I7CIkq!Tcic|mI30JBILG#E+LPu;lmyAFDN^Obiuz%H``!lt0w73xwzISQVR -dF4iv%u!i;Mfd@UqC)Vlr9QRb9x*L?r7?UQ{BUm3dlMa>C#D_SEwv*T1FtYL#Rw{k7bc`qyn-Wbnp(| -7V)a_Lex#JkKimxq|O{9Q9-!XYooF+^Wpy_p;J0WKraWh)Z!pk1z0Rs9lw;WnNcJ%Ugc1w>K+t7*d>x -cX=lFxNoGp)m4(JN0WJ;rgB~-c~>*B*#ra*G-M^ -99s=9NY^J@6fd%#Q%tF|B_9ECaOX}N)^OPDFam1-=r=Dm?x=O&)t!&aJAmdR)J1~DBK3Xp!Cl#}IVGE -egoK;k#uU{d9iJDAJf9uOMrog%krC95~^t1O0-NfxhxWJh~@d-F6dOTgALjVsAWD~9>(@32dwQ<~{QE -`iLGEU6}wVJXw4dX69b8cmi-QC5?x*uiMGMJ>J8i@1v6&1^96UcfN$9Em(yNZbxsLJ1FtFtKK2n0H)N -g&KS;aPHO=3JK>g6ROqFKvoSKNX-xm5YEd2lq^M-SM;=bXpMj`_Waf!0)idQl&n<_Y4E)erkF9zC@8#<_EoDbLwW-7yLddd)GVl2$^M(_1awqYW2|PkLhxF|2i@!`hyu7@7|SG!(=-65jTL>i{`AjeqYl;$(5P%q7Xf*Fd3|#`d3*8p<;690J)(zKw?AE6tA{u6^q -6_ZhZk?&Tz#0ldU5*#9-f4T_@!sJ6P3r`h-ab;o!qy??}W9!U4F -nI^dAV7PW0*+A*;Y%~b_AW^!@xjw4ksluTC!XO)4iJ8z>qC;)rP&;7xvj?g;&PScg{1X~cv;CpRCiL) -8D#yTgU~y--o{?5FJRxFUjT$d{OuL;#9yRoz6G4dNeaSEtm0w@!c)X^#83=sfJict!(s}tf&s)lO=MP -;L1^83X|gQs7@C4)yB6xF3r3SUyvoRN(wF2#K2CA|)E8s3 -$gdV|VIDQ19ralqgZ|D(jB;onu6)w#~^)7GWh6KgUe#rlCgJj=`*iEgZ;s%Lvl1tIwZQw2S6KaEup38Fyv8?V}cr}<<{Fet-|CqP|D(KRDiEvpMQJu{J0tSaw&i`kvXrCdr8pc7ic%ZtRJM9 -Ntuaw16Bd(M^!Fj7#cAG=RZa}VvKZViLz`#Y%i{wPIorYw?E(9f>6q2fd?@b=V*Cl)!~I|VL;uHfdJf -7rV9p`CM6sO1UKhSLIVZvgpczAd%zcv8uPnG=fi`rm3R(#N|C`zSgwx&6AM|k#QTDgi^T8|#jk!aTt{ -V9B%9%AL{krzo7sdpnw^)dfG}^)2Yp2iCGy~v!V^jWxEQNdgobgjY)_0t~Nf0N -giEZp{ea1FKlE?RHD&10XmO(h?l^pw{fv359h|Z7TW|k`zeiaI=utqJ7Uoq*#l0+tgeW_joCV#&cI-w -PGRW;Jk8;-ENJn(D+@T&hYPvJC)+#8=VLm>Eredcz&5g|c8EC?@@QB@0>pv>$BV|7X_*Uuz6k35uDZ* -CS}Pa;76oS$L_@JVD8(sY|8$zQs(tW^)ijFqJtn6;L)LV0wXm5@adyg47IVTlzdJuZ+l-!~h -83vH%IT&5L`5){D=ewtx`C#}%GUr2d%%-UW&g>zj&QA=F1vtt9j*0mPn&*@@ye4$nlLbnNWP0ZQrxu$ -m-IafzxoEOJp7s8<0P;1e~uY$9hM-n5=^2qwr7xdxRL*f4jX;c3iST+*I9-1tDjJJjs=Kyg)f@VrP?X -o(r8M>GBhCY{7R0b*MKCq-6U8dkm#)lh$g1dVb8<Ifkh$6INlMif9tBUr?~j`(4qO#a=NnW0_yhZ=eto5t~YeFu732GI_325HKF@T5g)9Yr@EFsW*b7+&6fXa+Tr1)$shGp`Z_A*;ds@ -+Bc(b6?C+%)pU0Ded%$I&RlX~0Bacp3oXT}J -I>~uLp`g3MLMc6A9b^7Kq4ULXggbb<%If()v2g}&*DO}3b9J~Sy#<8w$K0~!J%e4iH%>79luWOg#5pM3gIN&I@6nP -XMu>O{uBa79X^v=vJryY#Hc@{&3u4@tcHoJgO|0FfKWZODvjwnxANl*@HJbCD>xA79GA_WlEQB)8#8L -DW?TvaKwa!6+J2_4_R~VXJ%T0G5LexA4)67xeM_p@d_N>?a=gW5N3KU1_2^}5n42GeexWz~-nWlZDeK -kY#m#8JH*E7H?NE=dMz}QYxbS^xofYuiHk0^7ojEhLTjdySwmZ%XR6*hzg4dZoQXXL)o(!w@cPf-w^P -N&+u)@Q_V77&J~Q+robUPZOWlGx8lRd4T4DAp>m<Zn$pgFn)UXi`!WaeUX<8cIr5#?lFLrF80q8K-nOtH71DzM7>Se;DJ4LO&X}*e7irBFAlD6 -PlPqt_f0L!LmoaatKzB33zxz*~cj&K0dE466&PktssO?OBgvt+RVowNfIoSEy_=i=Lw=SKizE}lovqm -ziE&ItGEb5eLEB|jG`oYgE7Hm5b~(=J$g8{4k~kzYP_jp)^%U^su@SuP1WTCylNa-J;F(p_Uf0qD>3m -6b??0eCYhv?n;mDCr7%1|4I8zQ|Z2ul1?;>SPT6kJNsqsI1GZtO1oonsn~ladHl`0;wxaG0Cb@nIti# -4yHNMFTB4d8h(Vi4WT8QKJW`7kDJ)Rt@d6 -s0~#u5Bk>1u+}>g$3i35NX@TJbiJyVDT{_CLXhHez$p@G|f$ubeE%+(8_|wIUR|9vR2LDGb6G;)6r(Ea|YM((XtHXLjhu3)5 -(8H6=>PnJ1C6Rl_#V)Kp>;o}W@>Fw3<3&+A3F8VmBX0I#0$9vS&|MyYVPJ?yvtSF}jbX+o=Baia8t8r -6$|H^(qj~G)0=EikFRekfiR*_JIx`H7x6%n{`*6LZoiXe -CmNJs10!(>3&3I!@`UCLT*>JQ})^k}y!LZ*qi`V6rPiQHqhAb#NqbPX#E5@tCxM -WHyaGXiEq&Dnb*xpl(O6E*!7QInUBF7v4zPTb;EwlonsTw&bMH3Kgd*UI1Q$$su>Fm3!yDs$U|+2Di4 -Q&@&F1~3@ZN^y(pa8W*}MxI;hAa4@hNv&%DG=?zl@+0djenV -jJ%eG_WC1ti5g&`E@Dcx5YTI7g^A{B -1?-6}%U8FD_OqmqLjW~Kw8zJ$UcL)jts_Ypd0il7G}rBoo83Fc`5?SJ|9#W~@ -XQ-;`kUPwaTLf{&DY(hQnq4ZGpKY{&J9>Ga>G^ -d -6(GbFhe;`GJQjC3Dicc|NsLb?Z?1t?<#`WUxOX)8#=^I>wV -_Z2wLZd+gd+69MX~dvM~ewvn^kP-sJ0Iq|ycjcB2kmm}ZVJK>eB}-hDO|!a-=`H8oJ^sbWyZM7 -ZhhVTD+_5R`=9s-zMxhr)_Aq=|A0rkV@V{v?Bq$xEaP;x(-LNF}!P+WFw+x4Uaq{&y;w=n~)-Q*a^EGI4?xY=@YAQbY -&S}HdtoUBJG;y=>>%X0aT>2Oq=C>|V-hi6UqwihE9h-eLIkJRs7T5eRzMEAs -cOFZ#20|@u6H%$N0wn!=&DE6h9fT>KgAyoqtsp>f<3C8!DnClYDUV&!46XNc4DnJl4met%oFBSLEM)L^1tgMn0^%J}s8Tq(Dm^%PgS -~64N^If8EfxvtNO6Vfd{SWS>M5eMUa -^C(f}XPZK$_s}sb5%LK{afT0z~R2Z0+Xx;Z8tCO{VWqM-$Wxq9#;T6b{f)hAU-z4Q|>Ms>@KSsf0WhL -x39$&MjrAHRwm{_Y?AW%aP%y0{X^OG(e2XiaK+oYet8~4_U$*d -pnlW&*?%?JIKBaxKZ*mM#A39PbBy!qU(=C7t)YwDec~(bC^&j;%Wn@H09^8S*}jt7TrS4;9y%pNg0DY -PHivClrtmDOCEy9)Oldn3VY}R|%-4Igeo&9guZG6N=Sr5i_6Nl4Zu}17BKVLQL40o^$|h!&N7wfz45P5?pFu6S8^`NPCfp5EKZJ&Ps9)>19leJUuDFwqP$qKadrI7$@kxlVDJubTvUo21T3L ->2%~7~0%Ihjkgi)Gr*kJbU@*m+E4CH#5HLWXs!<#uyq`wyYgb38(W7*&KbjwO)CqOlM#@dxowak+4v^ -`OTOMYAIvmdUX{Zfz{1z)tUQm7jm8{al?&g%ay69Ln!(%xxmjzRo&Nw!;&qlr0gg>T#n6JM`&6z+0p57I4TRBFIek^=Vpx%TKz&C*p>j2plY#&&u4Elr-R%j0i? -%6y03{zBJkgUzW6xR-gM6gO0BlwBS{QzR}`$c_~Upnc&5g&LGrZa5XYxhI6SP{qz1eh9-51VvlODCTg -S^-HQV1`%ae`;Y=N988$?ZrWVNmhm3^~g?S0(jl@uH#d4zF&{;2i1rLdlGH4U4xOBG;xQ3( -Y)Q38l=Ix@?SvB$Jpemz3M1}rzMZ3vTZERd!>aOiW*sB3Q1jF#izHz9;@??vgUFDK)aVT89QD5Yscf{ -2-_&$e1WgfdP_0aBc(VbecDkyx5(+QnP?9{J<+|QNjG4a;DBs#@z_Fa})R4ShMciM25eN>$IhK{c=S9%6LRq -WeACsYw1jV^jo4cFno)&U8Bn)={&zrp0Z#M-rTz32^YPN$eMp=1!}N}^eMyWLQ{9NMMO8z>I)w&HS3A)Mb{re-Q4RE$$O}CAN;#4{8& -koBk?H6rvcpQH?|7Ja~M?-1@NLJeA$I}MHCm0NW2>~&UEI&)wQ0>bI$0D>+=gE6PDu@145MQMV`!;6$qc)e0FMR; -=&-oBxQiUw3e0OPGDor7&O`~>GfHR?phrR-Fi^aWVy{0gxF6S%aEywf0$Z8ytsw$Xk^&LyRzob5NYBm -Eq8?D}eNh>G%G9Xi4@80`>w`OD7-2v8|CoA-x;@{P1uEL2`c89*o$Lh?z@Y;Lj6f!y8{Kq=lcSBe=6L -mTiRX9w4C0B)&*r3Ai_}F5esuljDDz;{W-vdWD9(_D&imk%ea5&c`VeKSBfv(>?xo~n{*VXE3d)!vaJ -~jbpu$E_D%9pT|onYln`)_+FUV#&|xB3n?CskV=%s$kfEpFl$!}f*jbO(d~Nf|F?ljmq*FH}Kd4N3oo -RXPji$%xorUUESH{QAvnp+eg-Yf@biRtT4!H(!yk##R2{w{+Lb<(lF3wi0RDWBN}Hg`cd`!V8Vqp66K -$*uOf_-w4xBS|msl3gl1@p$D)Z(k~{&-*WB7m0(ZW75Rq0KOtY}$*DoT=|FMTn++672KxWBpWnoj-YT|^ -=&R#AhXQw_t0=XDWxbXQtl#r%vn=;P)a60wnpxN1(P>s5(#nI`xh+W(%w5J$I8)b^myU)QObFH&+IwO -7;D`j~ktm!OyFUvjYz3FDrqUa&<0h?yfIjw)pM9*`)s+@VC+~OfcXm-92ZMDjow-FI0LYYdn@}@={4+ -xacwelO)m`<428H<~0U)WY&>OwP+dv*LrVYj?vh-}Xjd$&o5r32X()Au>c4W5wxhIdU2i15j4APet#G -o}P0ra=xZ`rB2xiRs0OWy%`nx$tgjVcV1u5|rE4%1 -`#yf|-2CYRr<1v16}3Z4wXvjKlTpHHz+67)-5%SYBcbo=_WyPXI;HFe5lo=Ui(QY)&};ee@c2{Ix-+- -OVdl6WTNhueOZ7o>YyVLvQ*`vPab?h@Qgj4$8iz_=3S4yGj*8`^G?Lc=ARkA`=jH -(F7QD6DJ+b@j9z5fDGO9KQH000080N_fRRsaA100IC20000004D$d0B~t=FJE?LZe(wAFLiQkY-wUMF -Jo_RbaH88FJE72ZfSI1UoLQY0{~D<0|XQR000O8;7XcSDud}2wE+MCy#oLMF#rGnaA|NaUv_0~WN&gW -b#iQMX<{=kV{dMBa%o~OUtw@?Wo~C_Ze?F(Zgy#MZ*DGddBu}KYuqpph420qgD%~`VnZ&0Kn@FWLJr* -oXWJf1F^V*6i^>`yjh*hluVi)`XB&F0Zyt}nd3tXwgeZ2si7=2JErJg;8I9>3rHjA>8W|M>_Xr#Bp>~ -~d2BMbaStZ8(tDiSR~Od>q$ePc!R1eul(fqRppffnzFw9;fVELN{X)M^&@ -{clJUfEf&pK0UIssvH&bSVYo2z>hB14A`gJeSvj-0ZXF}u_fQIXTjp2T1?BtK+8NJjL|B;ob|k&U$(E -l->^yo?NnXIgf2R6SUXNeD&`MzNW24UvxgOgYd9v8T~$_ldzF>TJ2{QT>E{b|kr*aS;)EW*@JsN?96p -*%5UXOGQKV$C*l#idE#KM+RM;w4Yo$i(qMfI+2nqkEwnao2RFGd;hSl+vdx5_wczEKj7vDgggO@1p*Iludh^bvC-}kXJKc7X4f|U+boQe!Sa#+cdRU!|@syWx8gH{MB&361O;^C7-vk5{sQV-=_ -Z{?S9T_@$39UU^`4hT&(pi`hZF@>hdhUJ82^pzX4E70|XQR000O8;7XcS3htAMWDEcR94i0-C;$KeaA -|NaUv_0~WN&gWb#iQMX<{=kV{dMBa%o~OVQ_F|Zf9w3WiD`ewOZ?Q+qe<`&c6axCS&PFrt_HT2Tye!U -*hCEmt5RfnVU{~LqjAa;Y<=df|RXx+P}TKco85e#co>7B&NW{VjsVK0MKMIiI!U~Ng=W}XQZmdj%Q2~ -N-808QqYoaSWTKOZAdHO#d{$(KzLDAW(q~cYa>{ywJI)*tpU%e*0s6^ -e6YmoP&7WXJUNKrO5U&T%m%K>!KDj7C&!e!#95=qN!B_6aid_DSdIy+ad@$+oJP+QQAo=D;hcX541R& -2}53~bGaOj*gKV};fvivhpsOi{30GJjdm5_&~Sq)6{rbDFaq%OAIv#{`y9Z)+IFw{gvWZ<%bSC+{zpC -v$RQo$a~#1m-NatY(D5zuTM_yrB&jrF=3r{vKI$oISf%L&;xS(NHjdnI(#|1l*8DD0Q4krNJUl5#9il -_oNgJXdWTi3KSseRv^V%)MPK(nt%W~PnDc8>BMigHDg3nT7IN%B`-ITMW85$VF9Rp8I!+?mZY>qH<0r -*r&6BZ_PuyZ?s>Cya>tzpTzMrGvN>hzHA@@51F)7Dm3xx%I&BNt&@x3AOOlIngMXDKDs+H>;tf+kW#r -}gA&y>!@=-8PUC`VK`fnRC9u{uNYEM{6S2-BKzzSFa>l^({Xf6fW(p}H%=!F_=Uh`B9;FPB#!7K-eK% -9HrPl5ZX&mHlAD=IlCnC2d0VU1q=9ifBytn4g~?3O|q!7MQcd=S~9?*)++OZj@Q(6tshFhkwJsLIl}w -;*i1r$v5yYjc%~%5sM_>Xw~E(d(F8t&zXN -pF$hC?Z8FeQT$>qZV4At&Z2his0Kh1tbrxCQ2QEhpiMAmMcA{MKOVc2+;WKOMy+?Chi$~Ay;Zx*-CS;1W-eM7A1?K2z(1)jECb5Yd*juRGTCzX#psK3KA(ac6IMMrwydv!uWFP -`PCHO3g{2dQ}Rq5IF8P-#V>S?nS!Xszi&iYGL>>%tAyoYPz{Lb5Bv%P!J%=b`Y*p;kCw5F*RWC!ZZ2i -RXhy`^BnFe)2`gIAlVz$%0|4i`^hro$tKVQQ<}$}N$jy>K&zC||1d{=y$P8uhSfK3<_(5Z*k`NliHxqjFd;125h}3)W@T@BE^v$~@gso?{M*JtCV^n}!vYvWHH9FbA|6$**&?&A -J7#bYbw)xNIw(tmMJ9D6wHK`9D-OE`(|)K)aVONWnIAwQralnPviiIPdkVgY!_eR@<&Ejd(0`G878IA -U7BZwEA?ty!!O>jq$<{Y%f$lD1bpq0fqCPM@(~Idme^PFcPR7j}IAJLz?F$Z<1u{gp({^&%6E-u*+(> -z%0;>Vg}=^Kf0qi&j8X%%Ib!%F>u&o2_>>4v4Bb}hwio4i$lAPps>VYIoA3eNEQL5QuZLyi0ZRo)GLM -YBw#S>`U6|bVtfdfnYgWuG$HQR9BVaQaW}fmSutd*1H)yKi=P -W3M_6v72W58W()Md@U3>*qVK!DkIY}h^FRMJB%?}g*uaz+M%h9EXGqpJ&tg2z&>nr#A+robf}JQ^bUt -&N3WJNO`8ylV9xX2i^F=tnOE9M6b$)qkWV(cLma$CL5v;gutnB!^3LDrSy86toN+lZP=tFFw)J+;8NK -Wewn_x|XZSj=N&Ijs0t?uEct9`bqa4XII8U+PqGS0xXCDJm00#{*LdikPQDOsW6=~oA5i{bEW#G=7QZ -hFj^Z^eCyVR6iqOHfdqw>T6&!luFY(s&i)5|~ga$_4v2x$PbhWcz@&KaQ}cH#RQY9Q3Yr -MNCMJOCObNJHPzL!VL9wc@QnNjSr}SP3;jP2N^z14y_xM7xj>{?*V5jUX%_?#XoJ_G7oL$fTbACb-L+ -fD^6v-j;fmsFFFG|5rIYH(k*soTFENBs9UjYj;)S-6u%~XJNm!8AFJ2Gn@nd#w3o?0sxtv4;nn4TFxv -AHS#=J~xh8vUd1mCUZ5|$Qo5ePje30@DWS~<#RHVktedx1U2g;rpAw40o&-|8;UX4v)y`VLKQC6qa1R -RX9~FxyXqX~P9_v57ObYB$r#XCnu0@19F?`aLEFXZ2n%3^_Rxn4r5tJYJkWe!AOW#DkXJ{~T%x`!bAE -jQ5-PG0o&5#$m2Hy86OCjFZ{zf%!X5G@c9XC&-C94*^K;VH>>_ZLYJ5z8=7%MHe&O@ywP=jgN$`VZR6 -dT0!`PV2O=IFj*oxfco?TsVB2uqBN0gSWa!cj-{1(f9YP!ax6hSF%N_o3xJOK$)S5TCV-BkW6|>{z#a -nYC_dG0bR3|)9nX;9s{nljIKK+a!=Ri6+tvf=N*x(IqF-=XvLoy@2mUr$Uwl`!$hr%I>8xL@p_k2CeJ -=j~;u1iJeFUB|uknPMurd`HCO+CWqJR{Y!sc;5C#$wmeN&Gcc2NLIvD24TZnkz$98lvi6QDP7M2k?hF -w6|~simIG!c-614jDonHi}G!^(bTc_=0~MF7~T`ia<-bX7wZGw&cFxoxOfx_Tp0=U0Y9{NUO};BbLzO -v*rY^Anwea=RKbHmnUd+)wznc29WIZHFLUc%R814*dEi^hsB5rU@1f1vy>&l%rlr5%PQxfN*&Z)&9?#in&cQ1}-QR>jSLut3_y@cRxcW2=wKi;fhaQF8EXJ&pz>AR5X24NfhNQaE^eFXU0v -71)@4mY0FbVCjng1Kb|8MFH5V9DIJVAezvPTcGbdt75S;57IyWN%Kz!B)6=A(h}Y!z|#7EkK^tHBeMr -)irvahUb-jsSmcVo%iOcD>o)*u+r830@G`ixRaW1crN=>f2NQ{V<^(xhJuoBb)9G1bv%RwVipK$Bmgu@_)JrejPH2eTr!8myTbb=6)~@6aWAK2ms(pn -pPEQ={Hga006KN001Wd003}la4%nWWo~3|axZmqY;0*_GcRLrZgg^KVlQrVY;ACFZ)`4bdCgbfZ`(Ey -e)nH-QxVkeRK-bGU@%||LFy&J(zIw?^dSiZS~^>7BvB)&xY^MEeMeG1Ehh!`Ff1>j$m8+jcX!{>p689 -OmY45=l{&#(^N4AlZ=et&^&t|umV8xejA8W%DEWPaF-oN+%SWRNrAmYsM^hgZ;tUe4i`n5}Bw`FULTp -kDB9R>yhowwYzIt=W%?5QCqh>t)jmPt&>Bu7lYbi1a!*!`kiD3vlD}>a*R!XFFc<8=IqiTN3WKJNJ+n -0*X#z3wXH>fXZ2Ia^t=Q_>mH8ZZJgP@)~UoJmhpNc%kNOO^Yq?^|!1&i+4234T=w;&S_G%|M#qm&a@P -dFHjYJ7nij7LC!-ZDXWS@955yaoo3VfrOxA}&(|t{}!jB1M5HXL$@;o~E!ukZ8`2!E^3-4wW-_I1Z+? -oFY@`H?!m^7luOess*UBuvocES6-p3m&|x%9d>n ->3%P50rX%wYQDKN?15AJwRz$Y^Y+H>G9G6H9iD2f3L>O=uqKRV5C -Ti=pJ>)TUIJ2T7Emq%IEY*MIZy|x5`*W?-eZvnrT0wN#nr4#M$IrmX4)JD<8QA`L2m}$ABe^4laxQ8_q{PEl -0vt|l=lfa7LxyEmBQ;7siI@G-ELoZLp}Etm43(lz -wtK;w7Wth4WkW$c!-4IUK}21F`mdP|uNG$?mKP_>MfiSkeSLDa7!NtEN~%NYFblj-E~RP=GjpI{e@%K -U1XcQty|cyA^ZS8=E9w(_HkzEDyY18&4DFN`IPMuFu?a%VBR!U;tMB^g!F3KmX{JjH*C93=-JBb{4*I -;0{+%6==XbdX=f+1 -4~OAW5?f3r?T#9vG&26JiWQbRU4R=q)bm69y9A@IbVainZ2cAsjJ278$5NKx_LWm#h%;@ji^r=PVOI6jvgP-PbJe>~8w_`yy{LA!cSiie9=T({|@vEz|iv1aErJx5)^Y|qdsb9I?RzzSy0rcI+-&(_9toKB7C7*_YTo9JX%{t??D0QgJ?>hSeYL`3DVG3;hX4@;Hod@0bLAiFHc(!0W -kGx&3e)Q91z+Q(l%a!G*sZPIU!f)>H53bx%ntuRLO9KQH000080N_fRR!&;$JJA#X0J%Z{04M+e0B~t -=FJE?LZe(wAFLiQkY-wUMFJo_RbaH88FK~HpaAj_Db8IefdF5MebK5wQ{?1>4Qf?|#MrQ0}c4|($+FF -k-Z&aJuKHHh>Y$`=TA|!E45nO__tl8T8?bqD^NRXmrXZAkai>Ia{k&Q-oqr35R1M2m9-rf6Kwuy@syS -g8;rn;%Ju0`TcOnW?Zd2kHO!+fsW)SM_{cut -9aI$yXum1u%6%s;FS;LC>>5S0P&K<8!pOpKAiq%nJ3_IZ-co^i#(nM74INUe*s&BaazdGP)+rUp!Zl8 -M$x^QfIt!CjWe+X|6X&PioLtLyC&m+m#Bb|tD$jbU}>3R3^C58Qxz9tUaCT_<6p&e>aAr|CJ+@6e7s; -h-7*Qr%UKbx1*_+Rw^^2;cHr`QV#P{@6HljB;_1M|Bh1}lY;9m|?jqj~=>z`7Yf1oM_8@!!FOYe#*Hn -zFdQB=02QBIMiB3GuMOLs0O*YPRnb#6zTq)1HgoLv-K83zI1mg@V?Qmww0Wx31s%~`#8i36r78l@m;4 -Lgu0a2v*EWx3WC -0;}R^T6A)TquPL<)lC6D+s#j+0Ep`7?!$#c$$X&fR-s#X*^`BqR79cpVxZO -(OGpmo47_Un`u>;bHAQg`b|eb5FkF;HnTs&A9?54)CS@T){oV7-bCZ+8b21m16OZfOuXnMXW*MllS>-9{c!|)$V -qTaW9JD3Q|EYpOw+-qemnHENn&ZG{c#Js-Q-F?R**kLVP6Rp6D@H|k4fq-I?Q0QEVO}8rEAzwAfK&|R -3_$_s)to@)b?xg2p6z*$r+}UE?XVu`j)slEZ7JjNGj^dg1~NTwDQPU1(44Lj&au>KZN#0<%Wq|LLOe) -ub2?+$E~s-H#|>)NEs7DOqdsC5hq?t4Es*SkMQL{GfbLm`2f#)niuU}Iy?~>2oC8PvY(j&yzen!H-cl1rR1s;X{=N!hL% -T15-{Vde`$bv{pR~0j(Y>`%^=xQ=G)P^krTZ4lU7y}D9m~Zz@%jKX5ay63PZ^2kV8i7bFX7J>J3;=JQ -g_shY(F%J^$i)FL2|4yuaaFMW|8*-n-M=5TB0NU0w>L`M@*nK302xp4S#ABG}15${AQU<2hvOLgYt)O -hK=}3vKp*RIUh3kJvv*4O(V*X@_n;!~Y-NybV8$@7`UVYsEYK;K?zV!`*QYC(R-Bs2cH4@bm@lfUvdX -K8yv^Rilyn+g_iX#*#R!fRrckKPfPaZ8Iry -EEt0+Imh4R>nHQ=e0#^+o3>=17v048^wrAs;yYTYra@=%^pT;+ni=XMmph-WyNGg2)VZiSDRNdYW*aPOKz19c-oUfJN?_ --$TfToNnQv{rVm;{u5e<7$&8=MCe;isF)-8lU5{ngoDZYO^m!^|h&zy0Am&y#t)3^B69I*U-Co39Q5@ -HvAt4VlT(pjbiu7*-MX8+d7UonR@7_wZ5Vei){R3PTXvgUXt9VsPzGy$>?I7uzF9QBW<~1V%MmmBNk) -+C&IwZF3;#>9QfTC3dI_O_9!_cn=}T0m!fOSVNhLuT`WXYiW3pwl<)(U6aj$_mkW3`sb_b@g=UNN#o7 -IT@>1sT{}f(%a2eh!G>2G6w83wmYI69tEjYw+%;2|D;zS_Vfxw}J3hGAa0e(`2D*UK=m{HY5^cmoUSm -wz(-`3=3`1-O6)Om_${SuP+kZHsou0XTuwj9vGE{rOF(5v7t6Xjrn>t`|ij6C%Q}Hmz{9W_9 -YQt>3FiZvK}g$2B!?erT%Yq8Fq&fkzj~$7p(|Yl2-kqXboa;9%;?Ix%?8zCzzmkFxZLGiR%XB?qUu?) -2Wop^J0levkq0%sNf0ks)l_50!O3^DCGr`7O{)1DbqywMOFN6xh!8F;u3#b6ahe|*E1p4_h(@49jrF% -k3+#fydIDFwHbK2O%^K1!$6t{x5mD_nq6emd;Vcclghe4K{)Hu|Eb(mnKWTn4X}9%tEJmrK-J;qref- -*rL&zs!vO>Ww7hT?B&w<^RR70I6fM-+c4ANtW)`VKJy5*OzaTO!Xg7Cls^fcmmWSYHOy()q&fko9GF$ -)xE+n>2kkmX>Sxo~CS_@zu^Y;OVoTz76b7F&v1gGZ6TcTv6Er?+R535W${ZNNT>s*_CAkVuddv9RnUE -;crna5tnblWv@0S4mcKzs1HWHHs|5xi%esv=TnVoPE5zIQoJ4sJJ$}PM-?&y54@&gy989dQ0=4rqONu -tDrt^Q8#yyO4a=O#$FT3Yz!9?n`fAypoDW&i?rMuEZ(4oOUY58%3Ok9CDwXYKg~xkk6K}q4Y{fNILok -IX8nXd5Zr)yLOqY`ORhiR-;WYPV1o_xl}v=<;O(?BIHR#S={p&EI28~JV=MvXeVdHIb{qQ|*%h*^Yc#z9-sm~dZ -AJbFkflbuCVGk{fqB!|jPk|5h6vk3J4s5y5``xteNJ<(eK&rMXFi8v$-$G(f&VM^#$Ic=-3lr#A_IqW -qIQpTdXKctv*&26!1&KH0NkJgr&xC-j9}-L}WB-}Lm8WheqCOEBpcg;Hm^{ou4O2Rw!}lton-FMWqHA -m?;)uCPYhC9~*d||>@L?tj;Kxp{CyKlr`#{yI*vhw30`^eYhg^m|$6hqyh*i`)44Ym;;*0nms74CsuXTwu6;R3)6+4T1Gl -2x!SV5jQ7nFN70k#wd7Da?prw#qxGag+ukQHkX8tg%pgl~fG9lsw?Gs`{F -A?gaPUdrM^mU!G}=Y9dP0{#ZxQOz~5&W=V9>#W!UJWxf@4zkZ*+=*)ZL{pxZ`bbPva}O$luKxF+Iou) -nvq(kG6V&f+n+cZquS(1K-kL*U6c~>DuJS4n6)fZ_CoC6L13_F8#jp4Pw6yR%%957K% -r)e)^W6w(`9bPYqBxZLuSAP>2Vdy7IJv*Klf+GLQ*F>=j)3}T5pTfG*9i|v9Seq>PPtpx^wL${hFn-_oH~#R{y0IOsC -PvcZ8c1J%lWF7(Zn%FvK9K(m-IvTN)T}E2xj?whOs)EAhV*X$};1$o8;BT*9-EZ)dBj8Rw1-l5x)oHGMK+M -`~+LcM;sA;Rt03eU;5w~bgWA*8D4vYs8;1p~G*#8J{Wbb1NB_{|2D>J^j=yeoqW_@S9=62b{v=uQml$ ->*SAG3^`xH@$Do5+jIuHLEx+#Z%%xk*?~gx{`*o)=<4AN% -wjbvfxQbXJ9S>)yw3(`~$-VaceOCnV}lJwOwFGTx9UsVLNo^_?C6tk!ZG}o3?bvjz|(mYn$X+ko5(-n -Eds_7<~(me%)JG!d`k*_A~?Ux?>@#i}|<(;9ZxjQfe)MMy$_6%zt1f&xnUsSy0_iXgEZ7%vkvBlJ3he -`vUR6uD=)HSJr^A!DcD83XCVt;*{rG47v4)Djdg5=1jF~_o`a1ww3DSSQF1Ux)Vh_R)@BR+L57iz`xc -V#_1gC49|Zw+g+x;-WxLC_j~vY2$^D&p{K_OwzCg3em^+7><{q2P9CR8K_iD9#{ncuJ?x+L%9z85L-k -~P336FTsMPIUGd+X57wBrg#j(ptzHK;(?il>WkZF{Ozr|JYUY>Ia_{potmDrYc;Y@>#}mAQxrI~HHqmdwQpbTw3X=J3FB+VtA>&uYMVaw>C<#-x -J;)^^9l4&fZ!PkQp>{L5#Bl<~G-EeMnkNyPQU@3}irI}%KDERGEhK2b?U{K_pj0TL -FmOFl5%UqufH4K4FEtRi%>=Rty!wfMj_6WcC!sq9DK5DQ!ociX3;7`uOwx;cw_i1bO(e(b_yQH6K_?H -2*lAu#!csB8RXnqQ5sQ|UCcGj&qbLWT_*Lj?+z(s8@Rex({-&oOapwhYU&HDlV?jS%XrJi&P5*i|GsO -nGET>^oPAF5G$PU5 -G#5=G9UJ`+QEFadAgO?qFIfb;Ev>?Zs%UPo->8{d5^Do9qvVZO?g_TbSIKdt)WmY@C*t-t$UKxRkxCm -NEFUjJWlQM!vk%Jd$Dyq0e`Wyk$Kc!{#t23DK4JVTxs+5Ez`zQTaNpUY9Oc+Gj@y)8iP1H!Uq2;{-f& -SUUz9~f&oNBz&R6onwMF{mc$=x>MEpu70Iyb(u9C=4GJdIIPgltY`j$rfeZ5O`JzBx9ZzJ`<2k>6RzAh!H^32B4(;cN|ww`hP -F_N)Q$1wo@%|OHZonp6n`V6M79N1j=Z$chTp)XB~JP%W;|BXO{mAwiSqSqOlnQ1gFwzH4D{{m1;0|XQ -R000O8;7XcS#Vm0iz$E|xkcI#NE&u=kaA|NaUv_0~WN&gWb#iQMX<{=kV{dMBa%o~Ob7f<7a%FUKVQz -D9Z*p`laCzl@`*Y(q(%|pq}l>Er<)$N@tm9a^n(P%XKg>JCh?RKUzEHgRFf@G6sg~-bd{ku#vQD$)*%}>Qc6o|0cZDj6sIbFqno0@|&Qlc0zmq?lbzMeqKlj|>XHQ_N);U?1o!Zgv1C5jR12AKb~#I9bTA*m0dcM9Cc@0Ik!t1n7X;!-@CqIL(e -%(cMaB0#JI8SszAO5U_<@24!4`$wnsA=~bs#1wf5ew8;ryg*re_(n5s6hUN&EFH#&!!AIobX%g?mHrO -EsnatDpK>|3Q6g;{^S}`~#3`{hL3z;c0LWi=5U}De~G23J*jJ4LN21Tc8!2ppS^)lv2GFYfDl3wt_37 -E1;Jm^>fS(kZ1v&!WEDx*v~ixCvB^N#Mhi8h)BK^&)Bx!_5<9fbs%L4Uo|lrjIR^?BV!MjMRc8aM -2EPM&fcTj#5PNDLrb&@SbKs#x8B0&RFA;58hkS(_199wQ&qUHhI(jgP+zQhp)NXWyc+QntGl`>jt9*nM7jpVpBJ6))zSp3v=eJLOc>Bf0rSQTAZDAIs$&wJ6Jr=2P!Sn%u` -#_Q-gXr@lT=oM+Cqi_9KGiJo9)cABdUy3S{r7)A<-|HapxDK#V^q9thI~tz01HL0$yeBFce)um^KoY} -iRiLTa>3OPYoFg6sM|O%|^~dgNiY+W@^`j4a4@o){!TCLn%*fnfK}iOiZKSJ9dleI5t@panq;0PQGNy -x@t;G~-R4$skXYzFz+Yt#lbLkVSz!d9;8v&^#Na5A@eO1(`74X%PooB#uIvz~bNvzzdD<>l_xr^9bLzB`8heP7R7{D_SG*X6mroQ%S@7 -73RgjP2kZf82gy!sfX+zfc@abjQY0W)A>hEYCyB5uwn4^I2=Y7)qX1xnhzrX#Y_5Q|tAs<0xPC1+ -Ww{b6McFz=yOVj2g`8PbrFhATB_OU=E7sG?q%hrbsKmLy?Te-mcO$sVjt3%?e1iEVBfLX7*U5KtdXs_ -MZ~p%M=AAP7|1E5#j7|#Q`YLf;n&$&5L;fLE>Zf+-k8()krM0YTSzq@_$Wjy;h`8*TQ;&yO7`&mpb#o+p9@zePFqAy1 -O}O -uL%kk_QVP8&e#X#H)ZfE1+=c~c3xcPj0GntM6jSB#MJ-)uYg^@;|M%ObBMuul%^f&lJOg|2;u5dVlH~ -0)QxkX&XaB}nW?fApTnfN%lx){O3_ane?@cwGV!@&fHSA+4VzPK2C8hjX0uL(fnd16z>RDAh3!pAu70 -R9`!#*=HD(r|J;yM;gdFyq@<)&0wOI_itT?RW|(^E7WKFbt9ydQAur^t~Q2BqYDRO3(!V{yZJoI9-ee -R{(R00L%_vrwhj3G6O#L{bh-^l=heC|3H -R@2z+`yQ*C`$xy>We=DF@VOfz|jx+!1*MmASe?CRf!u*Zsh;6MuaF<2?FhS#GN^Fh+etnic62YRL%v% -Nnrqj=#LaqgGNeUfeyKMec;OshgQ2(eR;Wx>wJ0sRe_i0Tax5f(FCqBKnIxRH7nr@_Jx;|Rn#LjXMyC -F*4%5iwA%{=M9(7og3HYiP+N^m;{b}C3(t3(MYKxTQVMl%q<)#p0dNabQJ_7ZW -v8q9cb8(#}vL4I>mLuao_vY{m0?s{jPOy*0LBH|!i%!P}O2)wd=i--ciwOe)uM2#i1@N3`tDpbc>AVu -t>oJI0uJL0#&jsLu&DvtKGXTJAWq4d*Ys;bl13E%88X9G35Q1U_l}dIK@F -AF$uj3eiEm9D(;FkeE$I-on-)pl;JAnDRyt|8~i;9B)0s~t)EYOTqmIDzWku>L9xwKIr#i+4k>mOG_i -~-VJDRb~sU%{_mDkEK>-32x@8J2A8klaC!5`jhuZo!;K0c(4aCa(+B=MfDGu#m|4pSG~cLAxp>HO+H& -``C^|`jXLpmqJT0qgnrh%14yo=LE=BXpd-q{XfCjVNv9n7oNINnr$c(CR%W+-_`OImu1dFU-cN%R{WsETK(LC -X0)7*HMri(KXEpb6sLA{JF_2K<%Fj6z{Dx#46KOi`uzD)ocdC)RL2@@b?w6Tl!xYzN+ipzY^Gdb)+rE -qbUVhyKS7PI{AhUbafJV$4t%tv{K07Izx(cc|HJT;57r -?}y#Ji8C+~jHT>;ABuD358^Y*198pwh*4gbA+>)%YSem*&U``z{&i9`+TRr0N{qQBLYIJ=zH> -iHk#n$NhOfGur9QSp6Cht9Ue)~E;i(?)i>?JdM;k;fltEaR6)4BZx`|1UIs+u6Q{NWjGpNae9WPia*J -(nT&uPRyj?}J=f6IvlrpjDocCa%0lP^J&>PEiMgF`1ygCJQbQXo93m)Tekfz#%n(XAh`JtK))8fCVmL -1`ZDzjxxp|*B0aKD*hc5Iz;MKu+Wz9-eE{sAJ?GL)u$^bZ@nMB>G)tA7ipNrKDagOC;{i^E2zl-O~fE -YZaTteqGuE69vyrT=t1pN8m@F?|MKst -!-abU$mhv;r@rvye;CdPu_X!!YdG`k&KPj4_NtHL%mi2d!DrfuONm#Ci;@NL!xWl_Y>cj9bWCgIs{ -Ez9!TW3+6G937(M;r2D18X>E_6g|+gm1dU#=(ML0mm4y5ee|Y%?cw(fpF3Lg#UdyIe_k$^cz#cRfQNc -ltb97vm6@{)t_x|!%W8)lpKwrZI@5>RGA~#M<0u4dj&UAT^-={q=wz7VXx6AI#O14as1douaB8)S8_n -E^gm)(kn*c{uXN-;5{b3$BP7NP_7-2_X$Sebv7$=l>5LfNzK`v`#Z0Mc}*L7;ZL?URw3jjS@mgASVzt -&xfXe}{5(0~ooRPTEA1SueH(vC+(-bl*?p}aLfn{*}Gt}qI0H2<-IvE4z@RO6_KiHB+W(Vt<&W*^lLq -g=$~+aLnTkY>cjJ%glu4d|#H2u&}D@`|O106jWq@kWCWgYh+}8-zhomhMrf0Vb1cb;5hzT%Tiu8jYU3 -qfis6WSbv6yF>g@2K%4T$RbapGW_YfQ3OeFO%T|3Cf<{_BBc^6sQ* -bn{xwZ+fq|tvTAW~Woxhp)^7h!8^&oa7au@r$YmL~LYTu4_cibHaY@hQgd+?nJ80@XB0WBivt9!3{9e -VIiJ#FI;irE%7bb5tC)U25iM95wYc=M11s#tvZ%5P74EK`z@@9N9YA5NVwlI0CEzbsz -+iN7k{4*=oC4E)9FWKY&w&2_Q^NCIA#-#vn67(Ou(=(em6GxLh`8ukt7-#1`lsq|TD7NWZff|WgUi2I -W78P_T9xhgR{DpjVro5jw4h~a_Mz6bc9W(E(?9AcXN9SJm<5XmE-|QWN;cBRlzenEe!V7I$K4|92}pqOaTf-$u>Z+yQ74^8hstZLI(I6q} -U~a4+Qs86D3Xx0o@3u6PcRK>Eof#FP6tdXRMdOvl_H-o%ID>jjG@I@?sKxH4&IxRCN7f&%ktit1=T5a -{=FYO~4;1|XQPiO1z@xlS>w6%($-RwYt+o>#8mfAe7BiJxV#>QmR(IcHI%89aUu?>e@_tk++MQh+EJ7 -Py5rmw-agZhh2o^!=XhU$7DPx7%Z!DU1VlC28UFU^h70$ZnZ9e(RCq84 -S%V>=0Bx>?nZc2^!eV1mU`l`Y5zPVPU()Q{+{q%3NsmQ~qB0s~N%Ly;Pw{vorpwhI?1#&veUma7^7Ez -Ac)D9a3RTTq6DPBL0a1DG07CHHVTNh|}Ev#;?%G?XQYWeu5TIKL<-P(;Wvq4@rc&n_rzt-8EnlaZw0vjT$Ii6IE4+bwA -H3-pQc)g`*TkB*|p@8t@u)Ja}Ib99&s9`q~xl{qiA{FC5O(>97L2@fu#CU0D3t{^@^=B0!6NrlaIg7u -7<>Ex^7N(g>Hrs%tfE7}yP4ylMmW5;)u?)hZUIOCC02dKY12HWIla024PVffa$PGBTSMQH87R+EWR5d -s*y3CFEq2L|vwbFObHn;bm{JM#wFhb~@xD`@7-^_d4MUpfN?RVJ9h7w-&cR87N+WYSk`117raNd -*mc#vEqnP~IQY#DEtWWF#DHgT$WPUVFe;=O#g%Cw*IxRYW8z_iU4z4fv|7A@gD5_?)|xA7cNh1nZ$Bl -cFk&Qr$p9@2cuDuH3;@(Mylwua+<5M^m?N2O!vz*+lweBgVyITKg)3N6^fgNTmSL-2^>1$Sc8?J_ayTf6H%WCEm@5OK`uh -nyHMqLDt~+Q=rI2o?t#WUxPHpym^{8rv$>J0MY0Dw+)hO@x-S;g4PT|HPK}~dPczbK^rLbhNvbt^kQr4P6&bwt=Ox+~dzNd+;j1kgHI%XXz`I**K?NAGK~b%<9 -#M{N(LuD>AqPFsXwXE&#rv9PZc+A85h|?H -i2Y|>jHd%$S|U^LeJbh|YHCyk3Mm)!zW6(iod>%!0G-C3%c@N5Rz9uuU>SneM1;)~bNq4BAY?d0Y;TE -OJ}0WWKrZ@E?*;4{O0&lSwr38hm|rO)43^+NqPIPZi`>wK1pwHhnrSm=;A~!gL(}PZIN^unrn|Cc*Nx71->Q#O?56%{ -E|2p{UwlDZ^4mCPb^AEL+r1V({sujD5N(P%MU&xAqnUPA;gOHkVWZnV4dFm? -Eh81y%qa(fBtx%@dm4*$aE82J!A1sC7{tyWb6j%f22-*+n}7xD9)U_`ELo8hGK6iwaS^I)z}hAB70Zn -!I#l7A7v<A4+IR!G^IK^+h+EcPZMqZ0LCYS!qzy@NM=bAV -HmpLMZqh)@wA8|)(FW8=vthmIbDl`wV6!LA>GupeN#dOz7?ZGGGNhxRTQ()WnZc5|&f(rJBPH1?nlu( -%jrZJjZ?$Q)jnHI*z1A)>UE`F*5D|M_?SpX5#dpK-=Da;REUI+@2I%rta4&1qjnskh7v9R^ufPpWg0- -w)C_~(qty+LrPcg?*se9vL@U{8Sh-fw*-pgIvGk*iiwpnFCZj5Mqb}H|3Pl!yPT&r?4mgIP8PDPel7- -c2Muo5ixKo_;mYm>tcinG+?;!AY!=T)Se&nPlSmf1G@rE)ctOM)?>i0%xSM@7zpurhzZ#sJ-Go};jIH -^2p=5`P@o%{jscVpWOfT&WKOZY7(XXlH0=gldsXW2$6E+Xp~4Zse8IF&Zx7G+MO2ofZIbjXS@^(BJ3I -jwg5&axj$8ekjv-(<}6gXNMP<;vdxwG1Zc!>rJUbnswDJ@PXxbV(l=8XzXZtgjdnfJoti{RJ?oh=JZ4 -yQ{C#aDuxJRoZPNiNs6pwz$2HBPTQgcm<6v9QCYAU)i2?%7?EE_R3AZ?m*imY8k|5zTU*(sEw9v6&tV -1}r~_N{-O0EA@$C<%-+%ibwi!s-1*!u~z|Hn(3c?C_PyP0dI5{wY3-A~2^{es=JC8C~UHj~q6b$Hj3^ -HC;@rXbPSWyXBe5LBPd1GQcFikB3+Y!nQtwdKl)v4T(C|6Axqph^}6@ESASVJ -i%}w;-NWqkz#t_HNa>lDcTfmV2g1-=b^2=pKE-e+gqqOo{kCIa?Xk}@9Akr0NVgKK}P#e7b?L7bs4Qo -4iAHtq~B2=DQ%g1k20zb=>3g*e2QF#H8k>bxb~^z1z+9qYGwcIU7`|SV3+79nR(F{ojXQFEk*h44t*6 -fMBWT?U{D<6;es?MZ9mZLD*{AkLK+&MP0~q<0ZzMJIx=bae*s1F&#)KC*)1KyR2gy$y86jf&LuldQKC -=ha=9l8M=4aM>$}%b+_zLyNw*eFC?NFME^JZCX7~3J4BP{kmr3<=fI)a<=n`ux+buQpvC#ZB -p3B>3!#Kb-dnk%ZlT0>_2ngbA8Jm>Kd4s=B{DV9w6Xe)l|D>Jy(*pqW#=;VeO2|+Y-FtF`Q%R7S+;<{ -m07tFcELbp{FEZ25|1Mrket_C!@3C3SE_>ZxHgngH3`j@jB#INqUP-eD;JVUN#K=2cSaE|K33io18nz~sN)@wAm^qxk#D&f#lUo=R2{< -V5{PWByRW$gU@wJ+RH6~5F2rtZ4;2G5Cr?H9ftq=JHFC4QZBgFjCeWUWFB3HF#awTbS;r5t2k+tyf{8 -Qo(S824w4P0?(ZD?g&tknWnBjtcILfgV-2)(7=>ebNXnLcdSDi<((w3z#Rm@C%mr -`PjVL!-)uO2mVU~x^d|UbCiS0G_7-zjMPw*XI>$JcNrO=0ll~+lb&cOzm_G$s>Qc%%27TJQ^;86x^wU -rjO^{ynGb#Zf)IAAs)_rYO1ybQws>^{CHDM_X!kKKRdbToit+tH(NOeBhDEe^oFV$}~j5`~~ -9t*~A^rJEl9+iqc>VE$x^$KNoKc-k%;GhO2Okb#3o*|btYdlF18A8aOZ>z+il!JDO^Adjk!u3l1z05q -rLruK63~x5$QkpIIc|Nmp#zHI46loE}epO>tF$Z~7#>*e;Wps_wq)so^6-d7rJdv@0*B9BaEe -@DL5*vr;n?z*ipyt8l4M*YR(B^UV9;`2VPcK14?riwz-CDgf5;3`CTXoIDX>vJkBu{Ou&>~4h;ElIIp -u$EJ=j5Z%Rf`&qETb(bRwKhHRC`(efc@sLTWR=DXo#(F-&iLM6ojhW|5~4LH>=oW&%7dsw`VUsjYEbZ -JLipBK{Ozro(*kU;G=ZIh+^*jaulro=0k932IG16%UZ-^6V5%&#?QEpkRY#kUW4>r}sVUQqwqVgwkQe -l-iO9DWBGbXO6{I91b1gZ#8{pBcSYx70Na3NcXEq8!O(AC%bl+)i5`;CrD#f#0 -Ap8vzyI5@rfL$Ihsx++6(7SV{##PR(jFkI=8(kla;DVVzV^QJq#nD>8Ji8L)OVims_!d9go)VRXXJRd -klDgS8SNcjimA&O-;^hatr)GLA=pNpo{bkeyl^R%}{%~ky$`TonSkZYn5MVH!!W)c$(hs5u$u}|S+a8>v&vSs3uM}o?6P2P$eO%Jvww$_uUFzmo0sZbmlr*$&-^*cyu- -V_uVDj3cXyF&@x)ol*mTm=t!~(9tb{F4huBOf8nsNKhSfHc0iJ&a6t!SRUeis*E6i_6s=J?ghSkJcf( -oF9=xv(b|3y@B{^T!DpEFAS$7ie5hfer1=ez5zz;7s1^^rQ -vRXFiZ-Du&n@OamHuFzFCw03_7#k!FE^w_xNgfy{PfclSjY2QlYJZDbH@5E~Gx!ljp}LPa%P`NCp~hK> -Hk1Ip>V*4o&j0FS;DU_Pm>Q_2Ct0gLBU2d=q4MIsEhHev7}k#UiTOtnSu&ZD}1ruRlb=A9ggLQ9*MBM -wc{@)QQwRB4Bd?!cu)!@YTu5ccAP0=N-QauSI?hjoo%2%P|HZqF=bOGLat!{cV16W6V>W -N?B1IBO9Z&zE6FYcw;*^{A*F^n58TBh3P8?XLdW{fMpZy^=y?hAr{k#P(%9i%{e%w?);mbr2PqfF*!J -N2bTlvxVX7WyC&w>HY&(hO@9Sz6BVGpC~*PXr>8twu;oCgmDKD0H7f_1(hhm7atfTH{aYviqn*DW&=x -r;03*;9lxeco-Ewy|k-^n5_!deawN}t|aCNx+m(Y5RJb><1m{gCe%`>zg%`R7o^E&dR;zmDDM;2K8_N -pzMq7jjdZhsYtdw!7&X~|<&=;5X5UFASY5->?aaR&{rAt~+tEdB{wN_wb$3;>>&f*e9nF{&JFDet2O5FUwQec@txX30r{uXh-VF~<5tKM)r$VeNUZ -qG4pHKTf5yL?37bE1}z$gb)zfy7*$gqbrK=;vrKeVi7X_36$TXzW;I`uGZ@DOROy)pdpxLzO`WIxnN? -sxNI`%96@W^C|SKZ~;D0kAvxyAm=4y)>PZrPI7T=Ogbv>KLb6u -bf=uv0TRcf3v-SBnD=ut#5j-Ds>64uuyCx{K3ht7;gB>{SJQKOEa;)x+C+>E-w6v|OUYr!OeeQ2A$kp ->WZ-Tc?7fFG|6ztudafp@}9J)s-m(KC+l+-&H9pHm<)SqJt-W3X8aR<#gTj9b&l_B%0Yf4eqXvVF+2; -Uyx6>VYMN-xKB|o!;h%d`GPKtEv5Ky^!c;s?6)XWx!SjsH(=o53%zZb^U6 -Q`qi-jriiE`VG2nY0ASX5VZEOPcXx8(%XFE$P3(#<-URfvVK8jf&2@a*&FLXjMN5`})FF7v&{VcpBy; -1Q0RtXNQYz)8RFixat^0g5EcyH51VmpO8t`?QI#ba4{E9*kEZm#Xjri`{)5?EG`AJ`8uNx{1`Qnv|w( -jdav~`=c5x1G>_nN+lnvy|sm*TP1);#p&Ja*CiHmr&d81Sfu7?0{ieGQ#?a=wY}@=^D0Z~Kl?d~6AHg -&2AW)$I2G^IFQ;TX?DOysS;!wm0pC?e+WC5_jWuTd{lny0z@R@!BeYZ+qKX3ST#DD~iV-^ALmcIW2m2 -{tHk`0|XQR000O8;7XcS%TmZcSqK0Cxf=igBme*aaA|NaUv_0~WN&gWb#iQMX<{=kV{dMBa%o~Ob8lm -7b1rastr=@?+eY#`f5n19P|1+!w&xTFA}U(sfd+?5jg!+{Q3Ujg99cvtF3Vk75sLozo7o4seEFO<{9u -v0^Pbsxte>#;#hRre%gei%HEO^9C#?iw7zQ_oT(YCcngS4_R6H*wt7>td%UqPaV6v$yQ7g6=HQWCD;$ -K_Z{gi`b`&t~?DOZQQ44S$q^4&io=F_vN(%@aK?C+0k!Al086qLk+iM`!et{5+~Kz}?#Qi4IrcStBl8 -vCY9l@=*i=M@9w3pGP&6)y^Qecp=nqhz96Lb+sMB_Szs0od)WB)HpK;$QP9Km&l)D?e5R906@Wd^+g~ -Z{HxrnwNJ#;#zIl9=K|1kP&;M7%!v<`beTE#0iaV894Ab2-ck~Zg0t;=LCsvzS7cN@%ZvGilW=wWeYe -7Hv)TRG_Bz%6tI_Xw^L}(4s&>gNYUeSXg=0E33bVj7zOAtR&gm$qRym_64hE%lL&$+VkOEG#{pwxDU6 -UBQgK9EXOJ-^SR-54Xz9>DNXV{ebKr_h4?r9-+>p*$Gz8H~i2#ZMMxupL1g^9mXl+q6+MmcZ6D63iB^ -iyCh!!eyZ-WVVMjlR!90Or3^9+OM041G`5-2yVZygGJHQJla)f7#728#{e;#by7su4JK}NYxunZsbcM5 -%r3CrVE}!MV^*EjL6iZRmUUqicHVq$D1ZNh-d!JrRN+HPJ)2XCOoN)(`0KO`rnF>JS~_Bvj)-R4;8v; -flw*LjZquYbQ(Ya-&mEKR@F-%yrF5=uyvdHGJqFeK(X2vmL6N67(bMge?Ep;GLPUVB -y7qV55mcwM4Vr4duJiXwx9_L2_lB~)}O%k=!-AQ*Uu9ns4|FVWMz(G!}ua1{f?)g?*_l^oBaHlt0@+( -neAOkQVUpIYWb!D16LSwWib(IZ8H>EGu2h_Tn0D2}2gvY331n(7KY3`24Ur7DTeaHXooqmJTaB9&1tE -}^{qCi?cf=+h;Y!8+eX2X!o-XxpxB$?GUCSMBS_VrFZp|JFR05E#!ADNxSPKpvtX-0EfRuqil|A3-## -gS;^dmS_~Y14Aj!p!{@mbN!-SUFq*_w=hPmgeazwuW@HYfEI(<2(oZiOs&_7y@gYU@97#v#QVrgen$z -|P$2sMHcJi)Q+N@f=Nw4IYYBABCQgGaX3qldu?>5RWgrNGw7{ci@=GV%qObqb;L+)%-yd03U>aU4%-q -^4%(K2OI`&(#`<%P%Ws*YFQqnIO?D4GUWv-HBA)(l>*affeB>r4{Jkguwt>wo3DABQ)2y5;QGhk@JY7 -zD~!)1rsR8TJlTCOz3Wz-5VWbMgV!YLuGw2+=m&L;G{!V|qKa(O_N5#F~7*-0{ucJ3!VgGm0y~(XPAAJ*Z=Sjj;cc$tm -Q+l+?BdQR_VG)J1mwMb|ijF#0u$hPyBe+bk#i3p!{4hs=%ri~E?CVlBi%qgUgiZVN*selOQ*gTvaJOZ -3MgqG#k6&k{oW`Y{DLk8)4U+vBLtR|B_~~se1267%uIeTCe%RJ&YKf*-VusQZ+<92t4`V4lV-4BZW(-c -CCB9fQ#MpXji*uIW}G);UUGx?ZE%hn}x4AhJ|j-iXj#I`Ga51@%kV -)4X_(U+%&~9z;`Q3$ -_%Xj6yePvlLaS${?O^qN@vEBP+CrDJC_4&rkkaD_6AZmk-)l7c8pq?M0`8`2HiS$xY*9e2jL}JfP8k> -tHUnIJV@T8(KgYC|y-!m6X=H3g*9f6m!>vyKbXq2EiMUOHrpIJE=74gV#O$Q{#o!kJxCLF4G{T_GR*e -}LQ7Q0(~QBbEjU^*teouIsZJn7+t(xa~{hn)u&-fS@H&259@ZYkXG>Ej!x)tJk080}(6x;E9dy?Kd_o -^Rf1Xi2n)Ad}rWF;`R6xpu8B&6{C7XZuwjQ2LPDDbPPB#)jT}&{1sfAiAZty`tI2gLGX}f4OXq38^SI --+bMz9`Nv>g$J+~7o8b3l52Im%BQEb49(MyZHrdMWv?4|a#AZme0tZ5gGHhl(M=7lmqO{iema+!VU*) -*fFr%O2;;C{3y^sMIONdol5IBZ+i_)Z(ycm?Hin01E!9K@67)xsHlO0`iSYnW) -H_--(#4HITiY5x^o*8vF_c28I1pb^n@A=d2wI=e&goPbFnk1Zuh3Z^x)Ql(boX1ozCL!gbWC|`73Tu& -HzGBS+RCNx6@q%jC0Iy!z+&u&d1|H+`9wui^1p?q$g6F1XnKet>%**JtKF{6^W4`GoZo$08mQ<1QY-O -00;o!N}5&x00002000000000u0001RX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#5b7f<7a%FUKVQzD -9Z*p`mUtei%X>?y-E^v7R08mQ<1QY-O00;o!N}5(K&n->v5C8z+L;wId0001RX>c!Jc4cm4Z*nhna%^ -mAVlyveZ*FvQX<{#5b7f<7a%FUKVQzD9Z*p`mVrgzMn8E^v9p8*6XkNb)4 --5Cv;+_)lO3&A$e1ShVr-uudF-#hs&2R4?FTrsySmY626xxHtE#JC&1SQ)+}R=7dz;vyBo1jvtmw^$| -00j9ZFfUV^0M=wZymeVj(A(Lg&&daxgjy3+kzjF=|&;h2Hw75P%94TGBDlH_kyTPmODxwJ<}mO8cym -*>sOtrLFAm9ut|KJwy#P(%zO(m0CLn9a{M~jRfi{{ZFl~o5$6=R@ya0qZBN9+E^xO`IVFH9ZFLpL$O_ -{P_%79a44bSXr?L|AXej{<~hYlg{hww|ILEw+(`EP;!xQj^3YLnAm|KcP3bD1eg{ -`mqw|NXLt-(8nR|KfOa8tmw~bzK+)-jP3_Z&>fhO5_R=fvCFmcSu)^@;KTR1pPBf)64JB%DK+feX57%J=+-E7#s7%dw{fz5o -U13;D&Z%`J|?bv&pbK%s01TzrxABdF>ledG>V{h?)%2f2@wPT074gn7W^6NN)#t<9X0C3SjrxO_Hkb- -f6iVZp>E+(X8?#sdj4ICvVwsGJBYwisj4@}57|A$%;wjlYf=RnM%n&3Mdo5fAy0T -`?18XSn}#eKo`A`qL4f`j5`qn&hxI|xX0J#IjXk-=4zR0~iH7M2jc1OuDJYfj~EBFC*xjM-@UFj(khY ->@e4_H8`Whom_$;Jeu&598(S?0!iAVlkL5zmwUB45r`7&*SN^L-b$f3*9itY{AHl@8*-S4(;QqHn|^; -r(ekp;7(^tG8x~Emq2(qV@wlrW8FZ4cltuRh0npwcrspo=i@dSFQ-U*G+U4XnGY7rv35ThEXe$RF`pS -ah%p4x)A4k)08aXyK3#T!Gqe%?8+;Jsb}*SBJ4SDC51K4cR-(=3-xuSrw@Y$6n+$bmywO3z!OcYH>_9 -1+3;toP)}H62zuzJ%eq)we`QpoVqq9@-;dt(& -_#N86(^VwCVg)Xi0iQj4gY??6$lW-CG@r=5g*kSWOc@Oh)$MkD(|R%=0W`E<1td%kAziUqwqb8mV|2r -}FrxcboBZvXG>2vYvEBT__%jSLX6SklctNWo7T+0bP>ir_R&qV-DrrJ?m8n4fGcQjwSVpXCi= -lDTMvMu*mr1aZ~84zza!?!Zs4!(sXhq-hO1BMy)$@N}bf|vwM3F7xJ|AC&)=8xd*ODgE!$&LL;j5uI55w&)%ZLz|p ---l8wA}_2O;}pmyrXqbOSQ4Ezji6+qD1~FLsY7wHXCziekR;U6aYb>0jq2z5eQiXi( -jGi6)mjU$DCDylO6sETIBIOpJi2bA?PT|P)I{2`?P^&HH0Y&=>>yMqQ>(I9ZW>tzrp0?=2B`jKFg@z0 -{Er347hfr%R6TQI)1!)H@;lqUEW)2&0Mo=ee(Sh;FLVRJq{dtRrxFojmz20>uHsZDorWUd`r(lg{G8xE1u&izPfT0+7twv2~dMkapJwt!@CE#`?9Z)>Au -P%c?!RqLHYZCxvb8RPlT-Z*2=BT?qV1ehyY0W9=EyW+3|zVwq)vDi$Ql!avgHCNEcZ1U>5Q1>KxGKJuw>*#-Zl9(&D?2>b -)=>=w6aEFoq}Vv55frllAx-5rCNK1_ZxDL@%YPo2ONd4N -+WS3zBy@)mjF$y>yFQ?w+-+aVB1TPYt^YMYbwJ?af%ZIV+@Wm?TGL9N4W{7HWWn+bLrK -HAWLCwu5b}i=T$tFcB3!D5Do&{1zn(+A!M7u4BK7bUoKs8n45c!NK?u4{UxQGR_sxi*&(RhYTLv>K)G -NvP|+)+f$n@}Nme5e`toYEkd`*ZBmz)AOQO8F*)YO<}$I62;#*Oc;nU!KUL4B}|#L6=Prnm@~ZA{!i& -MJ8NVtkk8Bc!J`4<$`3S-r)m7Zx3l=3T4)xqPI%3?K?k3!sPY2i+S!GCdSYQynPq~s%E(*cO*5S| -M_Ad~C)2$P*C`+~%`5NtDXw^`znr=<04$6~NGm2ovxm{UumaKnL4az6Ca!G -22r|#m`#9t%7x)om<%sKY&a)xrz|DY%Qm_UD}72o3pKWI++=tb=GmLt}Qs+_px7R}Rrw>)B3<6Clm@q ->mHWDc3GnrW@%2a6`0nAk2&E&FAAMJ2{l$<-;W86*VMz_p+}km`jnU(ySCHl4Uo8OkCQhe&M66-Fvgv$hmpm6}fTVmGQ1sDfu11$m9mjsa?MA4ClHke@JsT7n2-@7Of~ -cW2AhBuuK7h00cr9Q^XuXD62xq>az2*jJfLa?62RI(I62r$^Uuad1>W~)i-&ORoPKq#-Vi`0H -l4)gWTl*4?jltVec&5;>Q=2JoH$Z|~0h(~FaNP{@Zx#l2BZW!f`H~&u3a*cR+oNn{e=+l3sAif!vZ4& -?gxA>GT66vda<&eRppCyx>bgH68T^>|Av5~%t6qOSkwV`r{FyXH>RBm~tz*0kbdQ2h3R~49a?o(_mAQ -evI3T-NibRJp}zfY*TbTl#t5A=6|8Ri_KYrCuTd|Rf_A|}hws=-4ocSIlAd --^xll{;zIMhlAf9djoL$^Oi52T}4z7HQm+AVA*Ft&@*4;W!x=yx&m4p!~??7>nblF9j4nLejo^NisS* -eHS;*^Y<0xX}h)z2Qpa&4Xk4LuXz;YOqU&B7Nk2Umr65}Nhn=Ypel=&oT`?YlhtE?$i9*&vJ&jRNjV; -F;g_73=>Jt?KcJVdVYB&-w(B%e_CG1}$CP>unQU{(~>RaiG~5iPnqDj5v*+R#A*%O -c5&h${HFCdu8V_bK$J2`#wGvgdAM9a3T7`_$c(`9+RMzL-8vuGU=5urRw8*8lm1$Pv`KIZ9wL8OzrF8 -Q)_$xs+7R%=IKW#*l7JC~~>mN#0VZ`&1fO{S~RmRc4VVMo;CPx?22-6pnK|dQ-19=WV*LF8Ue<3|4lI0 -tiH5J;S{{4ilU-J4{|^WU@{;#I_?FDHq7biC%TMV{cBeV?O^dR}XR2z9RQjf_n{r@3p7OQc{c?0ASxY -pxdau2!Ua!~h^)lhbGV3o;L6EK%JilRf1KIv*<{C73rU9OSgBHCER%`^ELUX^+dIqhhymdJ-L~9>f&x -@_t{HfTCl&_KnrJ=roBpVNMC*Gk?9zPI3B>nCgq0iLC`}Gk%yZeC86NJLd40crHgR=H}h4wr1HQO<|C -Z9il&Xm_28!VmN`^>b5A*QCdi<{btT6}Y0uHPB-zcF#(}ts~QRU|<3Kq6~ZlMY@v%yetEp;dqPN?w`12X%MK}S06t^#7SKb_-6D5X0xZH^Gx -bwC*_;30R+%C7T6aBfT=h2B76JB0s5B(fWaEwlcQhCg8hO!^cwDCWn+#&pJWp3L2Ar( -*p;V!|C!{I(9eCLl+J0oy~eg -yA@|vMHb@>Q-_iDMd~&tJFMMGd2N2A>(6bT*{?5e2_pV9)htvvy79@&Y6#3zolamd;AoqMclJ>z?UCY -~_C=ZNJ!elNv>0ey*VE8|Vp|j#FR!pW9p3PCdEe{!WrE9}m9se~3D|{)r8tBIA^x|^$Rl8dmw}Z2*b4 -+-zTJKcLAuW!gob?X#>7QN+B)}JZZVvG&M;TS~(QXIu_q4Z~&nDmdXT1vrRU3S+;&u%2Dn+bgj9%~as -2ZU}D?reXkCJwyQgNQVW^CJ4SyY$1DE@%R!zAe^w|N*Md0I<1?0t1vI(S=FDf*Gc<(DPB_;xx(*hk -0V6JkME=r+PnDfT}08mQ<1QY-O00;o!N}5)#DyO_z5dZ*UHUI!Q0001RX>c!Jc4cm4Z*nhna%^mAVly -veZ*FvQX<{#5b7f<7a%FUKVQzD9Z*p`mY;Sj8Y-M(3Y%Xwl)f;VZ+qn6=e+AFQq4LcY(w7~I0NIeH>0 -Pk4DdKd+&?^L5rej@XQAbK~y}cM)H7ZxuO0&g@H>$zOYkb~lbDIj-b}Nc1FWUv|E;cJ&DlvzxS3)mE=_whVX`^20wpvK -UNvr`TATH!w<37~_M%EfOS<6b^sI{sZf-Q1g<;nmNMFl$-R;=}+E!7B7ljU05M!;O42`FM+UUCi**20jJlCcGKG2ues%2XW3Aout!p0$UlyU6I^+KhiF$k(yvlOINKR@$td9$sR^> -0O^Orv$#4e0L4DF0+_**!L<%^UyLsCB(8fZWm2=(R|_yoLLI_Ua4-+)PEx-YF|e(QHSf2f#*Pn^8AyD -UDE{YlFN88NetIObT#g|w<)Q?7GkD3)&abX#+10r?0f1?)*EJxQj0F75$B*#m -#rZE6Zw1b~cy)1hdVNl#zg0>4(_bgQRrGfL_T|ou@f0Dxyu3br{dzPRjYbQ#6j{E^5TgvK&*s}k*@XU -Y3~*s`OdF#h@b@ppovHxoe!^7bMv-iRQ7?(I`R}0of|yy5h5-}eZ|l}JOpt;vR|@n7nKa*$BIL3xl}V -$GjcQs`4MdPK)H6bWIfOrhNw;UOPRml~veD+HTFSNrS%w6ZstPG4I1zUWvT-m^=26quB`}G99bixi%8 -l}MeuC%rysA+DbzYEj04lm2Vyc6kZShY98iBaFjYl-)f%t&_!>Jg%j$oa*Ra>^mJ6X2MlHQS-D`DkY3 -2hdh*EID+B+bX8PwWk8rrQl?I2bhN@qszOFb`-)TGwE;SHRVuhLlZ`pKwtJq2K76VDK`>nS(0RE&C3| ->E=2zqXFK&9~vMy{lZ2_Rgc);)b3-lP&JE^zX9DW~ATBoew08w+$DMZ#iBl}= -o!LY&hLdJZ5L(Vf;27+Y|p5|G;k|wJ=%)AEhtR3Mo4lKA2MYB5Nf$x+d?h^2q9X+mLsOJ@gA^83N`qg -vK&Ooym%Z|Z>6Z09?WYQS9O-kF`&qM5G`oK-RX&X5&)hR;m#XuX~LkhIuN)}e3L%?{L&StOAjR7mhR7 -Msh_agdMG2zcq{OYu4zBOt&bP>)j7z1w&lYafAdn%Tct -uYnH(FO+jB;HV3Lo719`4V`T+#|{S3N?K%!^nb -;#gBF@eiVtCPKIU<6M}re8F-_!wkj}DO~~;N?3|S!OijG!S>9h#V$}OnmlLJpJ=$!SXQLu1#Mq&NsVI -40djAI|69p#qm4;Xgar}?AAU9p=hHDW@v~tXK5QIZt92LU0%GsKE -Fyj|IKSAF6cTM4|?ujRO4LsJ1~GwPy-C6U-rd;D+Ud5TLN+DqR&hn4Ta<6nX*1W}jcWoH=D?@15(K%CWOZ#r$TFECsHh6A+`A66(9G#QkG-b_@9- -T_{rhaoa2(Js(FF!!x|aKnR2KEUR=z`kc`JQ)m9b-7GI*$_ef^G@+FO*G)mp+alT#X0y%8=nciO4h|9 -kQ=w)p_yh5#(SZR)&|x}HIXMwW$AJ#uP9q=wXiC-*?`ysk9?pR6B!D+qyx%CN8IC@phoC^pUAGOp{XN -cOunDjEl8cLHds^Hs&I|+wb+_+{XvgE8zz&^ud^wvnvT3bzee7>K=EMTpHL&4?lgQJ$B%JhhFf(Bk`r -H)tgPbrIShZRw@Gs-C_)rN-A2EZ%<|_dcS;nND -h>yKjqdrJF|M{6SK%h2Xr8h>mb@F&Jp};|7$dRa_kS?*a(SX+rm`i{^d6`r5%I_Q4#GW|%RtuvsSAnU -;vdAge*;?iBq86TrUbNquC4NhW7-Wavn;A|*7W7zunFn7?zIM}P6b*8hnhhwPJ*@UjqbAYG-tJ5XVt? --F79YwUzkz}wPDB6KOTI72upyJ|Y<-`Wj7L0L93yeqE4sA@Ir6RCn72i_V4^uc>m+&*m)+F4(;_DB8) -%6#z3c6%%|F5Up+r -a@^Lz_Kgd0^bm$^pGXTlrn<`DSOnw>1X+PQCPAXuAk!QaHZJsUz=7D1>%O{Mc+5V&fd50FF`aNnWE3D3Ml{-IS-T^}p7V!9QZX$}v_hrx|1}&MXJJZ3;5=Ss+9zb{rmVzo8>4 -W5cD<(4Tyeiy~vtuN@S^1-tj%rRU=yVFtYdHJSRRe1+HtPpT&ie{nNz+y!u5vpKcVdSRltbNVh~s`g+ -3|@*<3O#Ige_R8=#){e>syPM;VOIu{Z^GSMLv*HDlVXUQgShMur}%;i0ekXBdD%L*)Qu!WU(Wd3ftXo -E2l!=^-- -cKmq`6lmjR2E#(c*jv}C`%dT<6vLvC$b)bKb*q-#Ev`UFgSNv7=TPIc*+NSGv0;L0^4gak3|heK~BU^qKtjeCl8AtDA!y -;)j{jWxT({XMATQO4;b8pu1PmgOU7nCo?t(88P*^h;;btUmQX;-MY6Zl=x5#Q%oKm_lca|juqKBieHu -6HsePpe>6j%ba$e6TF#jol9w^d0QV$TglTV;bl#h@d^!D+9i|+pz^(h&Sm?l -LBDi4#Bt}89+Xwp~W>|=#oOYP6*5ujo3Xpu;Z$DaZph`5T{*(#|J!sj!* --YC3u0S4!8XHXEO+cjOHpguQ7y5Q@*igSbkAeTT@gSv`>J&Vj2UbjlsVx^(r0j0px;N#9|FsP2HvP4V -WLN3WYsUL>sk%LL>Z9Ef8u8!UF ->w8s3)a5AFwLbg{pl3xD?1kC?FTIX)vL4P0?5sT|)kQ+wR);p(VfI-OKd!BK{D)99pyZ -6muI8VYz7qV;;MfAKZU>Y}Qxw7jW$4?lihWB4y!>TwM(!Ddeoh!ay;!eM+c0GqG3hV~)gDUPg -2Bp?py{Qx->!0gISG2db@rZ -S?2kTeGy?O%5gn97pO%N#mTXo9upCjcw&emIT#0TCrf|ziR{?OP+zc`qG9t_z_Gyu8f52`JZE(@ -Xf!pEY2gVg0i*urTJyKt|5EjS6-<)|c#3AxikFT=LWQLo8Cf*??9u%&rX0xsblsBi^34 -pdDZa7`J2QSRb*hY7bH0L%^EaaTQUVeQHs57e*a*XPssQCGyfg6|Qb%pU`*t ->4b!|X2u_c919`hG>0TMDUuqv#A&%poLEta68O_=r~vslR|U(gTu1Umz?~xq9FL2R%g=t%w76r8Zd@T -=Cr><9)46?qCmctUjxN6c)3Jc$3|enl1qf<`WW8%8jwgy9I^mHaThTY5vhF>u!!5q;KKg$1U%@W~ -(7?w>eFeJjjE;~(er(!27w&5lF$bR9vJ>}OgrSy>{m@BU=bzVKQI4In&_H}s!8K7(0#h^%rtGhmkbMvf{|oLNRAK;&h -0pctS@!Pg^7``Z@^$w2^Q+m#<=Yvk+rK!;hxm2(WPB`=qp5h}Bus-(aq#I>9Qi>2bobZ|K8^-cKl~&f -e&U9o!tlR+4MxV2HKonk3TuTb%Vj1@td+rC;~$s|%C8r=0JQ;t3YrMq&9Qrr%)|7N;fS--!4*JdvbFq -u$`52?dztak?fc2KM&T7aQnrKwvxGHApO2oKutW5tW=fz!w7iuhnYxohDOWmqKzN_Irz9|?-#$)AIJ=rPIq`S_1jLwpYSoPt9kk8KTt~p1QY-O00 -;o!N}5&x00002000000000e0001RX>c!Jc4cm4Z*nhna%^mAVlyvrVPk7yXJvCQUtei%X>?y-E^v7R0 -8mQ<1QY-O00;o!N}5(&lo_lhApihrhX4R00001RX>c!Jc4cm4Z*nhna%^mAVlyvrVPk7yXJvCQb7^=k -aCyZ&`*YhilfUb)z$w$Ilq$T$PJ4Hmx>Lt-8r|pD$xhQ=z6?!?kj0uJRX%L1-+cf3?E?V8r(`*I=gCA -Qu)A0+b{C5WfoI|6aB+Wc<+zIr}5Q?^N&{oASQ=rSHFw%_u}yEck#FJ*}IWA{_SFNe0eF(CqQg`dT}y7hSc%d(aFbmBOvvDe07F&-=9y!p}07lT#b)Do*YiZ# -mC9T`Q{42bO%MXVqCs-IzJNyWBm>`$p==|dM$@rHKSK`C@$-84n -e0vPs9lkv|=E9(AM<<8l(~)?0czXEDF=3qp9jqY&GLPcZhht2{G7sV3(bf3;3@dYVes(p1*Adipa%GS -|jW3T!;&3v)M6tY|oS$MfQLun>PGkV{?3n4G(93NDAo%|A^4O3R?~V^ofZ8P@b44|{)9dy7{f}7?g2s -VP%t0yc6L=;)^d)G52bP$lT7XwsgXu+LkMwRI5PQ9O0t)ZC^E}HF>AE6Vq8@?1rf~?yROm#v4eyWrZgDQJjoapy-ZL+fUN~XP@>v}oxkw9q&qF-});>W2<`gukCI&pIIQy2VxJh_uI4gG5d96 -{+qoo;->>K*dK}4LlD_q0O*^ZfIoCr(Tz(I0Neq*kA{>JfET}!Ns$E!Dr**kS1vN}LFHufA)^fBBTFc -48bn^Q)~VBVhO)+t)5G5`$Nzn-SYCP$Y4Dfq$uO18yiL7Sa#|OQB8;P(c0ReWog>V;g2y`Fc@&_AHt> -!$;)3VI@+$N)XxpU&zAnj9>_7(nKfF7yKja$V-!t)_tleIC@2ykpLsGH72c)yqF;ImppbmqJPjrK`h^FM93>df2P6XVF9-VlV(q5*=w`#BNRp2DZ4gs;VR4LqzMO;gg -%Xr{0DacHl8t|f1k;R!Vzp=Tvt(Tc1}cN!2E(CAln*nx%EUQn=^Xl|<0OfbGRiZM&T+UQ -KfK^H(->g3?zv~NmRa^_;b8^)e56I+!lSy1j-97%8zBxuj~U5IW5=*31 -D=O}T5Cp`44fe*$}?C;QLptB^tAi;5w3b`Tp)x?=Q7Xp?%l!M4y%7XfsIp@5QYEtyk*imz;@aEwEC;= -2E1In2x)YZgYrrWdhf^3>7q@OYK3-H4#=bm_ft>4LXmXvjmbq<2UOex(+Slp5rA<@A!s3HFJEW8_8pa -EGh^p%APF<%~LXv0Xth1WQ|lY^l}8pN9sN28*gkwP4j$whbZEf}xsrdXEKuJIUKLGT3sJhXF>--HkA6-VYKC{1sSvfn@>YOtNsXG4 -WnkLx6hcP-l+~$d%kD;mHVI)&5Xt)kRD8QlbLf}{7ER`S=ol*HI@rCJl?Iei-blResxVV&jGasp0v*L -XdEeneEI_D+rFB}5DlSsVtzvqb%CMrg*my=*_+n8~xE+dn=Y=`uD?$TT8#7U=>331eh*5`Ct|_%_tg5 -lO>*N>eJGZu5YGaGkhBoH98fT_nm1gS=)H^DyBzF9t`w9aF6Yz*d!Sk02+;;$oPwZbXWWzTc+; -H(r)KJ&crjvfD%8ke{QxFH|Q(_m~MGB+J&=-K7BmqUf0b5v&B=Y*DY-Yw(A7^Q(1Y~XefGJoE*&e5x* -Je{Rg%YdV5$;r=$}qQ4d>^T7^dkTGr&SsTmsYdU)YV8lhkfrs6v#-*M#PaXI@Hk)*e(0$u!p08rVFtlBM99oxO@}Ea4Y5vh*QHg9v9-XL3O1YsJfzp*fR -<|C@rvdcQ+}N@Gm0Rd|=Cx+;UNh^1uXLF%r&*{yfe(E{4ZlVWCjg -UD%~eBRv509V9Ha@ZJ4tXF9L+*-_mYwWH^|D7?>nyra4E4*c>TRK{I?lYm0WnKiK1Itjbco+Ziq20r9 -@DiR_c_;q-vQgn?Lg)!4;Lj7A%UybZOGJneE^X^<3ToMh^YfnyoIi&92=`Ah|TolbITAP<4=AihjyVO -UzhiebwK@Nm_xtZV^fVZEMfqJ@LzctZ~ZtgwVkYMjYsYL8T`kOULSxnNHZ -PJ+UBty-ps*NsoXJc?)OCATOZ)o#dLQ{Yd?m6*RjyQKNf@i`7%N-sf-|C^NIs1bi2giu?8*Yn}{GR+| -!913L=FzTt9R-va1Huu1n)F_uot6(KrRG5wroYjJDTV=&UTQEMRG -IGb5nguW}u6IZlM29!3K-#Z0 -y;3t?C9dpxH^I*0Xdc|GaEXuH=@GqO@OuM7Q3p%>t~Z_aM~zu6$qr)ZB`JI1Pp|py50x#|X*E}4wN9i -`i`Cl2=O#FRx^!J*Oa=gZ~V%@z<$__hq%(#r^qlKGJY^B-C;Wg<=7FS2 -X}!A*P{$UnSog#Y!g_N}eA1lad3+gg-ahW(%xR^liYY2->ieo@pi4@BD;p+6{!n_gss# -Q}J^I-rbXpT!Y=bR=?x%7h2T?PxK0SV0Na0~j6h|#(Kxo}oObMw~DXmg)0lQ57s+2-h38;w>w!??3tBXsS+_6H`Q>dX+er=+0^vk%6 -P)pcE;gW_kWt^t8O>|}#!R(f!4C`^lPfZAa<}xRk|DuN`kVLK$rSbUK2$ROMTbZQ=@AQ7z&Zu!aqF+4 -e#3qF7mV#LXyHbxGV6Go{VN8zvoq1Auj>_vo#~pSBiTChUCu6~MkxFL?_C3B<(@XWPl~j`}!F3WOy(q -Y2J*o3og6krf1r+IB@sCEw)K0AImcZ4I#)8)_EC>{6cU;O1S$fqpip0(qj(nz}9!%>-oeBgTgmE%k#I -f@K+3gXg9N8(F4-2xJxqLg}@lps5$ds|k)?Dk1YIFBQxZ12sJA`rLqUK(`?!zJiUrm@nFQ -+|INm$b!#>aJE*d$Ze}^*2vK@JrmW1EQYSpviGs8*wTS3WIz5E|L&)xmGKr^g -R)jT`SH+l}+C=MN878Zl72t4!a`^nx733)Vw9;+;c6u_oI4U|WMX2byzTnnS-xv2mGkaO?ix+Che>ZRC??8yBZ1l}Q|vb=&sXzagXR -fqGf(H(%T$cfXBEInepAY@hkLSk?b70-zB-Tde$}*Ij~5FM%5!}+t?Lha&3sX=W~@K7R_bY8j+f{l%e -75zm&rt0_0fx)Wdp`(#$Ks_?Pn7y-k;EB9%USxoq|2l0Wp8JJ32G_XZjS}a2I5NfnieO-Ry|`M;t^uq -T29}#Z6J%JL2ZiQ%cUGoy#_pXvV8=kLIqzJbgTF9_?7DLfoy`VyvghWU)(|n>$F2M2XufV%O{@(2)_Y -t~|b;)R-{FN!B~!X2x_Li7<@Zyz>nl(=s(YhoIW0Np+k$`Mb-VG#hDad~c0o)~k4 -Y~*5je5TUAE5R$ja~3>WVTA;hoB{3*?>J!*}K&IoP_o+!0kD0u44lUbUg3m+=HPAIgSrrju~l>!&b6bN5fI$OSlr`#AAWZ@vnRPeHa&?KP2JxZH{6;WW(>Z#I=G^?MiKn)KJG;Mbu^|D(A$ilMONEd0i*9|28_JH4q6!8(Gau-c347LVr}m0*@Ly- -S2l?vV|%NZAQA=+#eS)+mKj?#t%HRvm93z#o4ytJjVi~gvkkx4yt`&xw!~ADM}( -(3u`Mx8U#W1}=(k4J?uD_7w%V3}tsWb{1y`S$eD0g+aI<;A^xXKU9aq`Jzw~y|^LE|t<5xnZ1X54rpK -0ImVsrTz5HG@0jh6U1Q? -HfGwU0fPA<1BOC&yW6uuw2-nAAz*;*@Ebf#5YM_d?TpVqan(}{(#-ZFUVZ{TmTPpa_Px+`&J%m73bj- -=5Z!LV)&CMlJnJzL1zg3Vv4ijshsEY^hnD2`mGFe6UI|7R3PdFA&SrX%2f!K^w?Ab$im0A3fS*WH83x -2RVXF2)WLqoUfSq`=ilMh5f}IGAYo46xzx0q9ooY&K?I7GbjSEq|#V(J56#2lAIm%pa<0T{R`5bIhY@oJYQ^PX -rpMggOT*gVEKed5o*RoIFs6W1Z3~c7e4|`E+TFp$;sXg=xJs%wqI$(TW_jDSdrfH5{efH5MBfY;2HfT -?<(HuQ+gI_yj4m6vF3lAckrUYIiND`jK2%Hfe6dSzK001ASHp!s<@2*Q(3r+$n-+YK0MY3ctvVPm)xL -0#C`LkEGT4V{6?e1_V0`)L81hsq%&-YJob6j}C?a5c(j~IIf|MrQB6J23HX=bODwdYechMTNRVNTL&5 -dRB$Y(*N&%wD!7F&Y)4fvjrNaD>sGGQ0Uqe^{Pw=d;{hSxAs~Vnma%D<#b$g3)+w9;0zKQp&qTFLhs{m*pJ(B-8LZ&VxfaUW9j;*~u-%NsE`9}nJKV3Yv=a~;$% -KUtDP(7;JiwuhVL_%u#Pb}s2>(EsUef9T-gS(O!PJbXozJ;1fK1|_dN?Mr>0s4pLAE1nGpFbHa-ssZr -XW;2MHMg0vhg2aw~qpY`xs&mwfVHfc6(Zy54lI#fj)9m=q+zT;MuBLH7-SB1O=T~3Ej|bwFwZ)ooCv? -)oMBd1Uf}oYS>enzTumpALWwV9es%Qb9#Z`EnQbs8sK(ZxoTe0>CmikqX-K@v@EVoZ_a_c1=-{9HSnH -Tw92oao^g1V&;x-B*+xH?jHkUEK6h2BgKlK$WS-X974frlaO1|=9*rZaCPwaplt;D@RWU{X;FrR0NY0 -}FBDL;B~JUu<`8^nEbR=OYocpyl(=fyT2fztI>M;}m{tWq*XC8&5o?_!;XaLUO$!yjq?*r+oYfu9UB4f+{suN1i~e)wPsW0ObkFC^uQvfr7DKg@@1c-5!`_- -=&f|Qq{pl)CD>l0z7#5@MeZf%3bhW(dRA -LsFV)1UO`uwbvhV===03d5T&G0j7As+IHTs#O7??SgGBQFMVhTc$r#1-4+cTz5X{$f2^2FbY<3;hX^zh#kBzqhu9+sk0qF73E --I+^HFrjJ)ZrBLns>D;2i|~Bz17dhl2*0Q)OyUE7W3f4t9XlhczHN(zIF^RaP_feC257v|q3J*#;5NL -Rf0)7V^Z)W2sT7S{3FRuk(0aL%Yvc?)2Ll0Dttj(W=KtQ7AJ20G1XM>T&NyIE5LgX}tG%(3r_gWmP93 -rB*+5FLGszucl;HqX1~pCUpr^__<2*a$}I^uIMb0OiO2g>pyl0IE$>7wvf|ho@RJbEwYL??|ACkjJ|c -~W8_zAF6p#@TFoV?+*UOQ(63!{BDrPFk<%?|4ux>Fn-&T!azO-+Ht=!w2RAGWK*{-}V7!b8z29J1CX2 -k=m8^sf$WC%Ykw>lcx-bEzOPJdTRR2vA>D}6lwlfL-Jq#l2#*;z+?@_;OX}q(+f)M?#!$b>`NUD(%P- -rl=y1KEs5>|tX*5O&n6$3>-1Pu|4bX&*>S~c-9l6YG0K7s~CCO-qrl;y(7K&43LBw(W}O8HS8$fXu*x -nn(0UGgKkXuE#}x82#l&ci%iRJ&tL19)FAAM98%Vrtyov^xv%&;&>;t!B8Z0>u&UG+-;l9+j3< -)nz8bX5qaor1x6ML0z&zCj-j|Za6KF(tF&DgKuvzYqP3`0};uYZ$EtH}D43k?i#~SCHNlDd+|_+&dR3YMLG2u;UorbIZaRSPD)Fqe_BbBxp7c3Q2#O99 -~=;Pu#=H%keK~cuCr20k61h0RMRL?(phZfmRME*Bk0|X=Tl;jhXSUdPj!lymChd{%vtZ3jWPvXn?5Jt -2JE~kd_KfS}xzPYo_E{LQ~fY9%&1>OPz9${_eQCea(dQA9?GbLs`)LNkHNbUXyd>DpTJ+ -!NT=A$Wi~Bhy4qqugA`8~R5NN*-ZbIEruD@|G0wlNLNB7Lr{0hon&P)kBJib${vQIQrFV;^(5Z`xmZ4 -92jR9IH?_@~VfvPPo>V8Od&n9i1q^a=~FLJu1X)vOM -qM4QIjjXAMCzOUDNc=+I{Dq_N}7#5Dw$LHKE1}FT?Jir^Yqdjp89ylPMiccjDgqdK%w-!g@>$hTSwG~ -%tJ#D%*9+561HP85d4`W!^^@IU08vddAKjHSs$AB)?l%Yjmv0CfISNmONAJE+i^4kw+;Suxu5CbODUh$F7xfWkkDH`QFPxIx^E;2mL&oz -xemQo{>4wGdh-r#u6_Fc>X+n{#wUTi`FeIYWz<0tSsFlR#bFkUk2K=THJ_ZE*9u#r@2@_is2 -XHzH1I?$(0ob0hozpH{07C>jd=U#*ZLhB=3E+Lnsyfi45$@SwGAj0X7P%Q^zhd5F^K~|XwOPfhJxHW@rd0VY$dMPMXE@qcf -3`Z;#0B2FO0lfEBL47vO>h}Mp8R}ngihvuf7SZ&7?r0ovZxKc8k{Ay_Q|l`)ePI8a6kujvo=STzO36k -sJQzBt8k*fo41#|}%%g#dc0Mp^M63qM!aoq9x19PO-2?PSUtnaY01J9gA$yRL*CA4L-}+IE$F62lU0; -lceVQwh)D`P$ti~GyU?|43ggAQ~&($?jeB%_lpB3IMm9KP?`UaJVP_S=-!=Nv=uc)eh-={`@yoU_Og? -RrUsun)K{{9tV5HcZ|Z^!V0CBB?W?EmnC_<17f{8;~xCLge7IAN-G9Dty7P>#33L6}(&!F8TvE=zP%= -_RuTZ8xCXAq>-sH}Nx?Au5IctCs}y@xU{oJ{AK@1PcXM-EdhW2K7NiA4kfyU`1OcG2ky#N410(0j&iF -p%D!nfDlbY@MpgK61)T`XZ?~aDAt)}aI?rPf?%$5s1uLqXu~1O2ucA4!DZ -c(U4wm+xfWf*5OsC7kh5E?iAB#8S8ErmS*-Tc6v1nTAzdhM5ra$#sQekCmK3>HKbX&f$tbfuq4IiV$3 -@+XMjjexLZ=!xUDH)|S`;Pek1+XK%)(BJDYyD3g{3C^9F&KU#flki!Y$MQwCFu=@fhLgoMdHRLP|cSB -3Xf_A2_{Ifexv*KQJGV4txItP)h>@6aWAK2ms(pnpOY+0006200000001%o003}la4%nWWo~3|axZmq -Y;0*_GcRyqV{2h&WpgiLVPk7>Z*p{VFJE72ZfSI1UoLQY0{~D<0|XQR000O8;7XcS-ne74NCE%=i3I= -vG5`PoaA|NaUv_0~WN&gWb#iQMX<{=kaA9L>VP|D?FJfV1YjAIJbaO9lVQXb(X>4UKaCvorV1tSo`RSW7<^*iE9u$E#Lb3X(i8ltAR+&lmiH -p5o8+02lR2?vs}Q^*Vg16tX93IPUk`xAF2_x4z1;yTO -VqJSsg9_`$pE&UU!xkoW>o&3h?7U!gxjk| -`zRRJ!1zK__OC}TwR5wLgYx{PUF$h1a#=A^fZVRXv{QwK-cKI5~_6K$k7AToyM45Bx_izJKuaal(b-l -EeyOv05%UDi)Q-cQC_VWl15U8>Sg1#k`Sx{vjap#o+j2^a8oT+C(udA|5`|K)CddB0f9Z`QZV@AFeYQ -49%jG=i1K?eRfqMZjPQ+E_yy4Na?UHbwx=j=rI3m2kE^y8-)tmZvrca5%meI)wtL)NF~amoi -TmapPsegVpWe5T-auzKP$O#6ec4i=^6$N_R#&bx^HxAE_{;&#K0--3oVyS7D$6N`KODMPNDOi_~|Jmi)wk$U@DYMmEk?o7 -+w#;|Me&SpO_FTwsS?S*4KR3nFS|kUJ>fezJsXlQ3B;B47s!{b0*?TcA4s$&F% -pe|iW)GwBS%`*%rKoE&x}O-vcO86y*FMhv-~QAX-TkkNaT5OnP)h>@6aWAK2ms(pnpW(p?X>2cJZ*Fd7V{~b6ZZ2?nomks$BR3L#*H;u|1a28hduB3 -m76RtMnRpUoC$UFyEopYK>j%r?rLLz=6}>Wg3q`SNTw{1qfY{dBIAB -YwW#f1ezK=$6-Rkm{DjnosN?tpml}%?q>ypvJ6El|I8KX@)Te -I?&t$BCSiZ5|%&xA{>5BguMo#QXzK56sp?eb!#K*x%eHihA=8jVI3UxBa%8mo9oI*ZC^w6w}-X)*)2f -G5cuUfF(YYhH?#C`W)lCvpX#3nW9K;IThC?q7g+r7GOjTevx{(zu@r=}#SNX^bnbpj&t-m+( -3x2Vb%-Y#v<6NDWQgG$+U*_|tkDc@d=;dGdXO!}w9iIWZ40SZwf)uYDZtMEa$9{_Dp+$QkB`~>Xtp(% -lhsEL(la?HX2>PoDi~VREOVE* -8&6N>ns#`Ubi5WhsRUvHhAn^{sUNt2w|o|85lgnObd=%EYe0ep2KZbp%kYv0u~E*tr+nNDbNZ*vk0OK -9k^hTqnJmyF(e1Px8n*)q~x7@Ilx(Q8H0D^fO2CjVI|N;e+D7CdIcf8A+%l=vFCyB=o}%Nn2ANuB+#W$Y}spyb`Q_MUAGEIJ}J7q1nLabAm3n -NN@@L#$7fQ3*86YKxt_cIAH9i4;Zb>_SlY`mJ;vF+aGPxW$9U3HqgVbR9WtWE{XfT%!;HZ#!gtVe0WT -eDc1$9Zddgu^>OHTDH50{(ZG~*JNn#%wGWZwo9(5M9OsJKn-esf6hGH)X;rk88D~7z?Yx4?ZEmiw_&j -{Gdw5jYg)PMI4Bev9TlSgTD0<;lGpopFmM(9~{&|59JkVFPa!4C@N8Rtf)9mdBGOIKGs8;eS@@t_U7C -_!6+`Hz_$XQbRPVR=E}%(`v*Ii0k!W_{P@q}dH&no?XL&$VXJV!wKewA+GwYzP%?!fNA|!yhA~8a-Gw-23``qD^59U^96qu -$s-jQn=YonGH+G^TE}@c+H7fZIV-*=YRb|43TIT~X1zs$MBpLti`idOlq-=O{auVb`#vrq7xS61dXL>Iqn4?>q&`7MuhZY3Z;HO51Nsj{Kr@ixL`(ZDeoZ -TFd5sD;DXC?Y-qU~@rd_6Qf8y~V!#{w#rlN8or0f*Pe*Wr+GFiQp{fTe-koXmt3rwK01bDm942s!lGJ`6Mp(-a(JrxEG)Q}Ocf{B-v*%yV4>q6x!G@Y6xfjemkL -Pt}$)gERFia&us8nn*mEC!Xz^SI4!z%KL}Ac?#+;x6j4>)9*KZl+IiTHjWOU8xEx$ZkR1Zy}R)Y*N5% -g+c3_YNMf`9)fLQ4o%yUb^FqnTg+OarlMQN -(pF0n`IRd>%1+1^_2XB?s__>1NkOaqD{Lh^~FAq`(FDfJhjKT<ApigXaA| -NaUv_0~WN&gWb#iQMX<{=kb#!TLFK}{iczG^xd3{t(kDD+Mz4I$Z^sq!iTzXq6r>NalsTJ^F)W@$56C -Y3kqaXa`aTHZ&l}25gHF1UN$gq2SkM^9HNe_4>zZ!+xZPUF-dQ^&;{4o_j%J4}ahP%pk{#?r~<_#6eN -ao3pGuhYLb;xc7k3I*{iEjcY@%b+;Ev?2wB76el&7?np7G+%S~Ub_N!C7m&#U!O71(bFUoGR*MS-zrp -VYj`&0fN?RC=R67tOgPcup6eqBn50K4c7f0SK_oNX>1FkR2&Kb{H9oeI_t%vsE`A9!5b+E)}CkWY8W)h&df@0Fi$0dsg; -^9HT8kaLL_vv@X_=v^V{Fb$(Ym2br -?%KYfLS6u;G%MVQp|hhBt|kN!PHB#XRv7hUVT-7o(?Ql)!}jE+-6vzBR9vKwn85PEy*BqSqPe_tv1QT -sBA=orJ(f53V>W#S|3z{;Id0j`LS9Tnbl@a?e8%El9I{TrTFN5!Ii#Hybs01stEG$Ud5R*6TmLM;591 -R#C;tIZO9KQH000080N_fRR!#%i3r8JXeFwLZ$M#ZN$NxQVDfk62F3H5=;2|9KTyNTF~Q -g-AXv<_|e-d<3EW{uF-Z%QXj_x!PnhKLcBBAey<`K>-ENM{ExnE<*9(SYSKi3|c-o4N(q!_ygF$s7I@ -4QI@HNv>U8Kj@OPw9H|xKoflwG)>PYI&5Ye@u51G~yITpNVSC+}cCD_S1y@zY}yD0(w&w!Nz*Q+4{F`;|( -0r+#gU&0|XQR000O8;7XcSH;!%bs|5f6oeuy2BLDyZaA|NaUv_0~WN&gWb#iQMX<{=kb#!TLFLGsZb! -BsOE^v9JSL<)vHW2@=zk<+E*v4$N!-`@skfKiNuEByNSkiqN3YnJ9F&l~0NGgt7^nc$S^`aEJ-NOiCi -@f*!?xBrVIg8^>X-f@p%tT%&Z5dx1m6aCa>NyBDM7QP!UcGE+)~{ZIOjHW>Z4|*{0)-Vynug|s)UXpW -&5BCvOc^)I*in3kO -u7d&yZJ2p;j7BS-3@o^j(rFPO8F>lOR}}oh`3#V{M-W+G0(&UoLnjiQ+HU|6F2sFH)Kxi%<&EpJR*rP=v(iw(CTp?AG}J1 -A=JbPPqvNP$=qFqVd%bZwwRQpw1#bzW~dJ|ce&T_R|&>8iHrhAJ}girL_;t$DU}k&{Xt+6^xf$4HXjPmP-rlCLl1WAB-M~(dsVU>m*|!$lP -!vGnZsglw@S`Ron>PE^Ya(ctFWiB%e)sel_84(qM(u^O_Jw;EXM4VPV3OQq>qSKY4Mp?nQ{WLw?v~>9 -#I_3+7NvI)dVMJ_CE~iLH*mHB#IeA(`uE?nN%}(GC<|>k>^DQ^Lfz9dj0x!zplNKCKXe^Xv0%(b1t9% -6uk&1t%xsPNsQ)fCkcwyq5FhUy3WdcJ -(rj*`EM@%2ee0u=dclfEw2Lc8()Rd=TM1?zKpLluI*Sd{lS@srS~v+qQO^QOj54HJD$8ixwy819;CM}=Fu>7H<#YzGoJ+i;9Cu8@@tD@M&uv)vXXnd~O8s-xj%u`~F9Bi@$Rg9qN$(0CeB`X4 -_<#==jiQ%r>P$XNo~av|FUSEgKRk#j9@opwtHCB0e8G^7GyfqNTm%4n1pFj&$^dKcPv7>`*d?x9{)D* -)D8xj}%#eV-kXN#=ACt{d>tn*x&4H=0a@TU-bam8bw<`2>$;tHZSB=sT7RoI(kiL_XJu;Xm -C^61q}?<-Ju))IMOoPi-xodnMzIk^;a9Q({U -&*b(SDL2Nqihn6Vu_0tY1{2gBI)9LX-IF -j%a@s_6~So*COo{mE4e661u>(c}~uiZC&pKJ7oH^`Sn+CWe$7NIocZe0kNbIp&>gW1Kc*Rk`cz1ENl}wuTm543s8&E;0Lx-0qW2$B` -CI&C+$$z;Dp*D8g0&xe@{?9O$Jzjs!w(Db$vmmyy_71BXva7YPm7a80w$kr9mqEel$E95q>HdU~X%D+~M>KdxGoXH*U9y>p6$1Qy{!cc}&_<2)6A!DNP -}6Ayq6m`i#3eV71k?AKjMLh97Fr?-4t9Z@yV}U&MVrBTZx;+(9Vxgdq?a)5y9`(ijOK?e-N#~O$bBoB -%WhhW --EC&7t6iAz9VzS(M0+`O*>5kTn%Ljh})6>_kNW+c%@ZBP>rD{Mu$7aAh+F`g?NaOb;CI-~JpOb%#LG2YqxbvCqfMB$-~O-`Syq%Y(P+{{GtWcHvDR|D^ly`dv24(--hG4BA!|m^P*K_d>!x9Zx82E)UIMYyNwwTed0cB;l&2X5tRU7H47oSCR`(tny|AV;Q8M -3t8FfiA_x=-KD2g_(uOVR_5|j7R?hP)h>@6aWAK2 -ms(pnpQeU%aZ&S008q<001EX003}la4%nWWo~3|axZmqY;0*_GcR>?X>2cYWpr|RE^v9}JZp2?Mv~w8 -E2ij62}~%Ml9S7YwY)^O=vZ}jSMjs=lQ8%}tWssILWAPgSzj&-=K@pi|jf<4nsuP5H -7)@~l)-W$~7;s(P1l(Iu&PQRR86J5=#UzTYI!E;@uEzgzO110?7%_`Jxo44}_o`n;~DMUfXnYPiU5<1 -|^l;_-^hS8w9GD_#}%ROzwI;pc|KctuadILi+fmsp}Qbn-|f*KviE(MVUw@mv0oP{{^N)tK9p5l)g?X^e3cYH^(f7kF*2q9p(k* -dU7lZ#f%fe7lE -P-BL+pp%QpZdsP1=sFea3K+7c3#c@ztHvoQ9*2p6uk#T^J;p2aW#E0i(XC7 -&Zk$`(eu}5FaF~(gtQy-Ba`%M`sVV_Q$5Y)FM8@nm)!2DJR$BzzDt}BGvW~h`yZYkU&e@s1phf8efjc -b^ych8|EPppARd`?F676RT?@9PjrGQtN{>qa2l4v{AXW#Jj3o7b0$VDKSF1=H4uP=&2GS~^7lAMqB&G -WOKD`A?G+QS(bwNuB1^uV-awF^|76b9OJ1}1n{bj*{JYY*@d@q1X3q%+z^=?JfqqPBN%ABBqiFQv$4^ -Xd+*F3!k*mcQQayA5%fN?0h0F%KQ0v?nw(Mp;+X!pfz2j=j2+_PngMouJ#OJVm;z8gYQyqcWie_@qPz -B5$aRMif~yai});w(m^Q$m`^|F*aalNS2puu$5U!O_pt+0l?4;mh&Ur~EG7f(02a^X=24fmq>X!C-?Q -%MmO9+a1UX!c!E%~3WfuP{#n9pCvY02mF$6Ey -flq(?Dpk!({?TdJ~6T4|lvO1ps6-?|jSv<46o6vDm=B&(71?;jqtIE(&^q -S)gKp)$!j&ZHvMKM@7K{P6&6Y@xaU4y5J!;lK=q$n%p2{lJZ&f^zJOPU?LH -rTWCIZ-Ogvq*0$IiN{Axf2cfUgdkXjk9~z0vv#yk&?dPLMDg=q*F3$akCBhdc>hb#kY-tG$fLOa&X}9K{0WMblbRE!blBfJ{PSKF -mlP$q^$IkA5Wf0L4Fa!LOD0~)1~#=Ry`C`!tbarq#_fhhA}iiG!z9C+}3TnO>Q=oIe#8uuM)t&({9Dj -#TtgvsR+Xpp)|obhtsw?!hLj;=OCaf9wY3Mn+-amUAm-`N<%}7r_T7@4i<@L!0Lw6XH}*8H%ihR -}-9R+4Iq(eTWCm~Yl_lwV`Ia#)ih@ZCwzfJPG1nLm;H3}rm6lsOY1id04S0z=zkXYb=s!K4;J+};fu -9NWeU&9dzNta93E+M|+8CwTJDTD-+2L}^CNQkWneF-5TDyB@5Vql4Puy7RJM67%5Y-}le)CI`liSB%^ -fgzG&pgf#x)vAUcRH(Mx5=W4r%IYVHQWmI7wRM^U!f0{k>vgn_msMWa1d}aHw2&0-@MK!>YR`G5+{V& -UYbA$W0r(X68cwjyfgHBo!pl4*R&GI5ka!659?xSvnwFi{pole`6&RBDunDB+AOxdKIo~0td?EehF8( -w7ngyrqYxw)gnD?aT)LHkL9kUbVL($fw)s!LXM8wS{6cTw9o*>166ytTBEywea)-$)(=BUE=qi_T#=q -Nm;zu&^&FbqFvg36V^jM5j+INGNm{b`=vSpEP=YSyj^tN=onh$za~QWBIxO^gPvh%CTWWeq!I%zoW)J -U)j?>TQ=v8FPuT2>9IwT(b(jHdH$Z57_NyrI-*g89Iu6W3B0?iVY%8wr6*D02XL;X!+7eV%K0F}c(reL$Bn>ML;9g^(rL64Wr9Yx9tRlD%mL?)tDmdWg=H_iI1?plJj?{2O>L=PzzSHnbil~q&>MjCE$7iIiM0Y&=oHM`#rZgaDpI -uF7SN|2Ay_`+2qU+h&?A>+r;_`fYJxA_?vD9%ciPKB2v2^y5by5S`6jE5r)sNP<%oL62%3?zY -?WZl5d=GSoFE~a#;XQv5IdnN5O76TzVfZkPz4hOZcoNcB`1|pMD`EEa3ATpuH&vdSp?Yq#sQ1U#B$&F -F}#jR*Po{|{P*@9{X3t&p3bKDboq96arw(NKF+SrUQGKRXz-x1O!t)c*V^2JB8=9-X=kfqACzIO2f#hiCl(G(*Lzmfyro?()@ -_waw}Eb#((-|Kibe~Hs`B7mThK$LGNh@jyZR=%2W?=PP;glJy_Gkp1{uXA2YBo_++P!s{TaOxG68}{5 -B$h{&H^NW9eHycwIp%$xFa8fBM{abaVW^ONpN8ohzpU{5w2j3IUs)l&4B~w&4EOfgkkOPq#^GPiT}+ZZpM(C!|f?26@I!q|S32MF?ynvkERj4Ehuw5N0?oPrdP}p>ZF%4Zg~R9yG -q^W1yQGQCtfXqqH?n)+>y^ajc1QMmFWbd*gQZ9J+~j9(c=cL9g+yV~FOB_r~qM(ba0&XfK3G@8j8hk` -Ph58hs!K#Ja^E!_WIoi1aLi0a-B{)H2<0KIpLnV^3s!ACLtB&iKc@mC`4R8Hohut2eE%G0e_!RgSVZ? -Cmr3WEN}>y?y*Pd9*sh>GqL_yd|A(yD(17PHP)&86mAw?vC*+lNNCu9^QPDcA@PUWh3albVn%5#uiwg -o}I?a17hdH>9m#}*aJgf?C_%tH1U{0DY$1h$t`$LAi*ez=-T4}zu&|d=oW2Yv|F3>2@Xc9K{UdEjEmS -W)mDJ!tScH%X)N$$L-s2s|Ch;%TR;{RpT^v@bWroUkPa|rDbW>cF$bJNA_0g}MQh9y>^aRRiw(4;&;o -|UbDxy?ja{hg)zyuvQCeFzyBQcBM8H)JYMG89nf}>q)BzJ%Wm@2gw!y_99JR6G!%rylzV_o -Ab8*KQFTbFo(D$gN8wN4D5A4n)aBS)Nr{3HXGx7cLO)(`}%%@_jUiACy2!-#~C6o;cPflG -B769mYMF^@>Lcynx%EO0z3D=;;5r?pHft%xSkXOVPWA!0@3)@4$#3r1o!m8S`1zap<_vXdISlsQY6|8+g92&$O19iV)!Du*ue~s3Y( -fC8JL&QAc(pUsOltG7JTcC~w2BhH!&QYkk|A~#dHpr;wYY5rq9wTjAUt~qx^WBY#(OqT*;zcKS6IoD&P3`7vF--_cH={o(`g(-$?Ijm0n#iZ5reOy -@E*`{XT0^(~k!YbI*TB^Z6;awjpd(ejZyTsghP86XlyH`;I>X5}YNNe=WuYL)_~dSXO|64?3S)VuguemH76eIcWHaItcRrWR<_l_##p&k%y6PDrSha#VT)EVttneND -Hb}dK>1%yNhwE2pM_>C)_U-!O93+l_6{sTjIG@0210n^wh-Rh?mHe3(|OcB;`9DqxH8(Q@YiBII8716 -td#R&^#%%#3f3~$W%cK!$(RFJi9WZ%H=l{RXD=bY@8HekCrtRKgX3_t-ONc7deL|=n0jQH_8O5d@!k0 -t%AIgp)0;zT3e`F&Iv4XXk7^QOc-dzGomQKSW0e^EKUW6{-*W;w%l3vXojJgFQOKag~|$Aswy#%LWL4 -Ac|j>L5hW1>F*`>X6+VR*{01anmV~3nkyPy@>%cN-T%2}qTMs;(r8`f&!D<1Cxp?g&|6;?JA4^J>$S{ -;$=xF#YysZ_hcUYLR;ya$L2$Qwpw=CUQru9mMGmr#b0R-2B60x+GRPwL~X}!f=FZ7L!s^Aq7tP~Nt2r -L?y3hO}jS$7KPiH>q%C=LBGRALk!qni@7E<>Zj(FMrLM?`8_gWI$9=Cn$3|44}GpD%CsP-c#Z(aD>pN -74bIGhEb?;FEXZ;W?zz-C&@igq@YX_;D--@1?OVaCebHF~*R9HdGOLtOpsQuCR|4d6CK4br+?5ggvzj -H1($akp<6HWS3TtC*UTWYK&F1->urz}z5JsRqOag|$G3$sD*JjW-qhT!t$fti% -%)VEJ*)0dlCA+H!!7Ltn`+}ba!G4`3Ofz&WDt*CG!WrKA{xMM+Pp{rQmpjGE2YgvkpJGM<{Hne3!QW{ -1@BdbW3l#vasBD$-JTP4qW>1qy>!E$#JPJ7tOY4rD`w$UE6;n7vnWJieXy`#$vTViu(V4Cbj&cj@k`_ -VfcVR_=}8fb?uQVg5#Ta$Pl`MX1DyRLj)Tc&Q%wQh>kt&qmMD5lukwz=@Xqc|+G_@~yjs=oPDkQx09>H%E^y)PFt%4L?1A-bv;Nh(82|KrL-%^>W^eT=;v=A3fn5p+r#0Qb!KU2ugy-E$uzzNd&|9S#~WR@4x~vk>@ul8V30f(Y1CS}=|Vlah~i@{?n1Vso!bSI -?Q@APEt6>lW(R3xpwScGpoJB3!*#L4RIVK&gX~4Cvs?6rtMc5thwQp(Z9DBDTwHTQmw%~IQY{?tuAZ< -9bxu{~^Yz>5i;I_P(V-{>u|S*Vl!FSkhgJmAfN -hH5ptaCR<=XYsSa8=o6ekA?>AGv^4wTOwuAH-2)mA#!QZ=V4%^F2!Zhl3h8#?}q?+22~b?%!5WZv4OM -wRYJN+-DKamz#l)1BH!t1bt(Iwu+l{RoZ{y| -F!z(OmOc+PUq9If54`t&{D?UGNgF<&tum2Mj>Yp?38j25zI+}ScmuVoU~v;u1~epzr20KO1R8-7#XD9 -Kkr%|ypm(yUE3u6Z!j#Yi82lYg3@R^FB^PrmxdPCZ$!(m<-%9}ek8e-HA3#*D>`Sovr=p$>dVd2@O9 -KQH000080N_fRR-}^q$EOwm02xC703ZMW0B~t=FJE?LZe(wAFLiQkY-wUMFLiWjY%g>*skemnv7yuN-Y&O6Bx_cg&0YTYYmk*~>S$OpH -^z`(*2VNBUnnlrKTWt#wMNF6@uHJbvO!VJ9x-i+;5&QuFYKhv8^^Go -DVP$^C!7kA~OR4}Xjv#sP!dcW}|^0OnDiRpO;$SL`;=1U`8zcvcbu{p{m#8Ubl=`+=vW=uD>3{g=D@@ -ht$m52xeN=ZEp*!|--`fA{ccUkz{WZ=?H%yT`lH-OUsp|EasGs?FJXc;5YUr*pzS@lDC9m0+pJmeq>o -3&vR@VSN>=a=6~)z?FF_Xm8kJo5jd>wkh&t8v~zUuq^cmB=_To&$pxK)9@Z9`}y)>pf>T{+kxK5_wNR -JGk@uHI*C}YD28pU;NSIzgX}3((Hz)}oapg@&HDq|jc&I~e@6RvL5fVQzWrB@AnA;q!jKKRlo|lTvbT--{hu;bnv3!dl&%>uy-&_@xsCW_bbA{{zswE6C?3<{ -wwwtxZTQWAZ{rtUR6a8wK`y3|9v<3$`18AovPRm7&~E)h!0nU;<*qUjY&!L7-cC_wQ5utxG~R1@Y*+A2ROa!Ms5(m3*@OT|85ILIye!qstr(5w097A(iTeGYzY0|dxGJlT8mX(IU%_U1VocF -#xe>8k$aui+_tgq?=rVlYO1jb4=<#N%q}DzG0-i4}Vaq(2W0cqxy*i7=2~0Yi_!}likYfaVeK_1+yt0 -cfXf(Q+jBg*0uC@iXN$V>!-Q7pGchTtX)BOXO?aAG3pdS(0?#<;<3XTl`GTy$Nzonl5E-%!jGsc;hfC -<78A_et08U11W2)?ysJV``?#^Nio;MtxH$J5gvN1wH2&2X*enac0HXce -@dQ|h>|*(GtxwhFqDF8<0ZJIkS4jkdmIl)^3KD{#*Sd50IP+VErH!B^6hd(F%Iq#Z71w%vEZ?wNwd5H -a|TflK+pGVr1h(}7u9e2L?Gf58Lo*Sv}WiCVgCl+@@Fnn1PD9V;}65nH;>V1a{qDsfab0{=!SpEWu^k -wKUq83rS1O?I0!uN2F>TAk3;yqc%k4zcU@1T4iGaWd9=7{?LJ_Cnqn&}he2x~S{}qRQVX33IHIkXEqNrDjbP-@gT;*||MrcPsxS -cqSk%py<(7=EgG{HUK6ZW~ZHkUo~bc^;D*UeGxQ-}1!Ng%RvBLln+hDj!NibwMQdOf00Bcoi -o$O1ZpST1c@&ERB43@D9024x9m7cTa5M~E$W$C1{Ur9UzBd*?zxVbb&3Qt^Me&M*Ua9RcQwB`qZrcxs -E_3-BZThNZddg6ONqEKSrj@Xo-3mv?g8^Hku%WR -oVD`WTRe2$W8fepCj3x3EbVmz&+3mN?iA4YUIdRapPlik_1?;BUbHhryi^!(8a?DDI3+ZEZ(h7}L-N0 -WJei)_Eo1~wX5R_bz5;Z0^MUD_JdIzlN4j}^H3fDj>J7YLl`w0j$;2HScXYfcR>mK6T7HKNym&yu2KD -Llc@Pm+lW2(hBU`{rL1RtF4$w{sGo+&@wf(u0pG=+u&s!YU6cOl_l07W7Dl5b&j#mwEaus5lU^4=s@*a<`Q@6SnCEhhXm#aI8rlm!ZthM0R!_Uc3)q&Uo^SF-&s0Ey1@_ -+}DEc1S2}LQI3BxKd)Ad%unCDdjfPzl(e4@r_&~)JMe7B;j~?2Zw#chS1q907+6q!e*|k(h`(A`$H=# -U18S?9ZDtqPXZ@_;0TgBhLE)RjH#zie)Q$ztWo>e_uWx$*#&H4 -~}z!ELiQi4Lckg9ScRLu+RQ7XY4Awu-@pg+1!G}!Qhujxgt^P?IJ(`Bj^X_XG$QO^*&ali0l@deGzZP?DIwOy8(k&4qFR*8N -dm%JAC~&yy<5@?m#}*t0tF6?MssFHIR&bQGjMqTE0-CBHZsvAy8-+8?JwO>SqP6N?Ho?nPXeqE@I+)W -2z0LxyaTI(X~AZHdGT*-mlv?_Sf1QpkQv-uUWQF>MQY!!>f*CIS!i(UNlBw@rOYgmM6e&K=RFOo+0a@ -o>p6IWLu&d*dFCn88;5~dbWLbN66uhQUm#vZ=h{U+25bqhx<8)-OWzo#9_X|~NMNe+E~)(^X3!{SA;` -{0*6#E`gn=$@owU)(2L-7V5A=Jx#@tIe7Pu~CZ0ofF+pT20GTMOkG)&!cRnvmujxn(n>9e%}*OMs!NX -iWv0+_vRs!OuhDw-xQH^7i&FtahQsXWdU=)@QfZq!tg&jvz(R3ruI!bvE?&Q)#LmYcz|!o4yGKmpA&) -3h*1hbwL -o$Fq$L~VkSd9#vwA5`23!G*ga?nd}^ZweN*AmB`Xtf+m0w+yR7vXnGC7%+<>z!ms~Z>MYx>$4>C91mYyBcG^NjMg@-733HF$VzyP5S^eQfWfxLaLT3v4 -G?l2%mR4~NVkwS719|Nb&Op>tF)8l3N>C8z6^e2uabN)s8cO6!5g^=VPmo+FG3T_Z!4KPouJ5$h;1hn -ABRWwyWfPjMTdX6V*j9#Zk3*(zgP-u&ezLuc*A<-c3xJp0wQ6rXEUcHKbxr-0&MAQM#yI~ZRJ_YAuvc -~2BvkMKa0K}KRVJ`YYX)tMF|!)v1K4;k|-b!vNoL%?j(q%DFbN-h(FDqin7xLoeA*!mRO= -<^iG0j?h^vs)Hi$Fd3R9EdR(Ha705l&SNh*Q{|uFY%~G^Tb03SN2-Jpoa==Dt?#lm@l7FH*CLJgnbBf -S@RanBCnP%&0|LCmPC9I*3N-vx_aM^I^eZ2SI_3Dlp&CEYYa2`8{Zs6piya@!NH@PoOg~uNwWQ^S5pg ->`$ -V@cXbN-pt83sn~M49-}6h(((eU4#VBz$=yGlzMW!dlGvrNah<+02hw4P`8#nm2-fMrP10oR(^Mrm(}S -CmR_zngui}QkhWE~@>G@Z$B*pf{Qc#-kllYA0^J%}CSuqbUhHWEOrA&_55gFy5~T&zsfnDJq_Kw`vr_ -_Ps*v+-9btRY_3u{z40f}Ufz+AJ4Z@_iZVHAYy@W&d%-dazHw3 -)s89YLJ>7pc$?~LVz0|*^Q5IZ@NL<^Xa$u7K~iAj0XFM=d+Z2VXmOt&5_>)>p2MzuG7n0481j({$Nd^ -M_gSA`RXB`3vV(iVuA6%Fe~3>-WCTSOmVtRQ2!QgrAHeHQDgx3EE)(6oe<(obK7s1%5QnFhLJ~FgpNA -o1$Jk2zA_gWjbM;Vc986Y+dZT-!$YYttvQ`INVXJomwX{kms?&WZts=6h-2b;=DtLA)yVuAu5jA}my9 -dyT%O(CKY}$M-sqr`OfZm$xTyzWkb!?m#fv@7u)|Hs-c;-f9oJ3=ux&?*D9WA-jM5X04Ag>Rp1gqud5 -1k>2_^{w>dKai7U0@eU=LKH;|6S@&G=u{#6#WiySaWLfpp`DUJw8VAA@fL{gyd>W1r^Br7m@&-7U3OC -kOK^IYn79ibn-L_AHA$qXOYGFC=2oDBl35{xJS>bNAzi$<6ppU|gC$Ye;_4G}Tzos^IUx>w|7Q -$qf_hO|{n@b<1mzz=i<;;(+W38!}`8`d*Z(-s+}sUWS@rDvx(P3cFtI#2Y$j)y&4kDt@d7`DGFvuB#$ -RqcEYXBXF%E0NsgFRS+Abwmfo5C+eB*HaU-4yQS^b7=^;Axzuo){KKiDL>A6dpgh8oBY3=|4cPS2)#E -BH!7oMdN40E&PNU%FS93a|=`Ux8~f`qZ{FbQ( -INxmXbhXT_V%*QR}$o*(Jiab=9Kw0PP1#`rf)+ov0Ufx6$#hd1cI_Il|& -5743Y&zQ`dyy#=o`>wf%+sXh}GGROqOy~Tz^)%sx$lhFL4QYDVBbHOFLR`r_X&#HG;e@LOb6k1gvU`G -<#S{8l{GImNK=#BNugEagE?kk9~DcG39tTBB<5u31xrzuTs{1|ZxLNh!>nC0LbG0JnWZFS4n9QS~v47 -=kPG?tJfrio4BZ5@Vq3R4wg4Jw%}y=0NH{zTLXT)oUARaVD@JGJz>aIXK>Jx_a936n6#Lb|t}Sb4|N9 -h#2pxjpXSVh=prwU^cQyf?X1-|euwDP8nY?3x`5ztbx8l0>Rpb=25&V)9|AKt$V$J)P6&yYd06MIl5m -AjZ~|2-0+{cLKx&B9)(HmgKvV^-S4RMKD;R!(k)DZ?1luW4tC9y2<4hKkM) -r(BYcUFktM5lc)ai62%2&ckV`$I35NlGb%nXpY0f8IN5FNUoT26C)?oz^iP$G}7?1Ly4F!|3w+ckkI$ -9h1XSH{k%tsLZ6BMmGsTu|>QfxpJe4={11*wp4@1&}zp8=*z>EWyiZHIyBD`qzZ`X9T14*=gS|DFJaoHVa?BnC({nXZEv9K -@~nD;|m8?gDdGBUt=>U$G*ixm2&2D_6i(JbvdQUZdY`ybxPO|;tNWjDG46gJV>GO#K%_&pu0aqFUo%s -}QaETwrGNSsY~Psb>f#93WB1+ws)yVfI|4V>mg=RfWE=0EZ1=Bvjxk9@1Egwx2BQ3Suegn=KZM$|}_@ -$=@?7bnV`>&j&vYaSjJZqt%lQ+%8LRU(eg+jmocgGT56o_(=~#pb=&WF|{n)}qd^(NA^K$(YRNcW4;k -?|WlBL!C93CX^_>*P>J<^*^GUo?MrWgtjW|Oau1O%!wWN7Y>nu@Ysf3NDimD`q8H95rTFbK9(@3}wD6;b6L -yp5PXuvaPT9~US_))jyKK$ou-TV7EsucGssN;}_Wpft85n -p(=-T(ijm_1%#QcLVjsQuEw@OFq*6zZA55T|n+geQv3PR$Ch~fjN5vv%b+iYTv>-A6&R=2qW!H)af@6aWAK2ms(pnpQt?x4P* -F004d#001rk003}la4%nWWo~3|axZmqY;0*_GcR>?X>2cZb8KI2VRU0?UubW0bZ%j7WiD`etyud{8%Y -xW-G4=CP{f#+A;4`mXB{h{gzO?^feXoAblIHMp6S7zjJxNi+Zf+pe_wUaqYZ45dk~43epG!`_0^-DB+ -0vlq@{5AVzw~WX|a^)n97yToidur#w_V-;}-aQoZ;Vuq_t8zB`R7kq^6Zs`i8Er-(*RWj7B?jVVs=Oy -M?k;s!9_6U+F?NilPB_T0rky0{L9zU-*bD$Qe4yo*aRq*G|Q&4->L7aQJ!lr|fv-Z?z9ozr$Q*cR1+Bhn7z{5X{bgM?wYf)Jl^zG19Aed)%2>9{7-DoH7rtOJJmTn1 -aC$!hdrBFUsP9Qk5b){U|>}I>;7C_?>3|mQ-gsn~pcKxZ3&jQL=V%RvGehS!npJJ=Kp5fESVCKXl{|EG~WPF87juoAV&uY4k-lg%U&PV09`iXW{ -GNp1UMzTLQZX1ov1X+l9_dRLOK3y!EIyD)3c2G{0>h%Pr$Sfe2owP;}gHXFh!I -4>U%y5IL40j1y`y@~vVtjmW>KB1Y>Q%dM5^wkZBKJKNAJI2^r0_3XZng~-U7tp>wFoWcne~*Ntr6E{? -Y9Skx^OKW4pSrb9+aIJ0{#?x!svI3=?MZGFd8Ob^y8h+z{hL>Garusf!=c)H)F&?qs!=F#ialL$rzjO -731_SqDqoDca7U5O7oril!zq|tH}Ez}9aUm3t56sNJNOP0b>9=+Z)cq=2L7WM?Ikfc|HfTvcW;-Ax#$ -_iTvX1=s+=$(Ja(^EBlp=NF2b(jqBw}^>DaGvO~^!DOI@VN$A4s>p0=4Is|ZyFz9RS5$}Q65PVet0sQ -AqglZV@}0pASKaTcBapTZQ$L33~9AH@l-l*_sFy^LWax(LweejBq`&iih$D81V6u`_O7&92vC>2B=69&bLISWC#~Ma>>x{}n -HCuAZcKwbT6#wCu;?$RUBVw?Y&)WTN-kH962GUxj3?1$!8R`1KJ~VQIeccj3BglYfyeyO9oExZ% -sd)t3@Z@V!pqUKXNz^y2V^r+gRcV8*KA+Jmew4NvW|n9v--iz(u_xrt+d#n>IN#R>w2?oS?Eef>=0pC -ly$yh2XXrAAyK$fDpd(5;jSrdrnK9~4`}X-5gRHku;*)H6)&_vW3@A^}F5c*>dF3lexI3vR2)_H|~d^ -}c2q{1?AlR&nk4@UD(OUCb^c2CN- -Q-x<$`aW!Xe@^JZizomcmZ$ud=JGI*hSF#%97nfe(bKOO`-`~sMWB%UfM;J1<}(SL_yT@Jf;%^0)q?Q -@c`;3|s>09FRYkt!qW)t{<=4EniXR=AtROU!#v?$lPibH3ye*G-**`QR_nkVRKn}_1VfwAu{)*NTX{^ -+|5e;}-hY6&Y!L4k-Wxej{7W*E-<+1S);xWil!s=VOb<1awUumDX(F@YT87Dq@xZb46c2!3E>PjM4g) -ee5poWE(a%JLIidzE<6PaeKiJYU!3CzJP2kcNTRMiWf4DJQD!}gWIo0zKV|-I -AFZri6fLlBmVC}_AmHwA|@0M(QP;wmj6x$9RT&J2;X`+KOK9-R9swhz%YNHup^~hFIr`?G${X~cNJKHzj^L+z*@}LcM<6C%0wXF(6*%O=46H13~uK1l0M)0MmQ-1MJdeq}_{Pg -GF?Tayn4flQ<_ZHM`Y)_hdh&s_9pM84t5%pcJ0p;QH#^9yS-)juc!Jc4cm4Z*nhna%^mAVlyvwbZKlab8~ETa$#y)#2fCM_u& -^ux9OkhR5`hx7iTmDNrg$D|%f|IO;+vvBP%TaHF+qbrtW;<*qzC$+LHoZcJ#e0(gnq7t8!t#|lPtQz_ -qFFx~)XsNAy9*rI!Z}ZFByN`c(y!p!&o3ppS{mt*bAB{#u$*pB@x-eW>r2k>W;4>bN>EFdxB&Y0P_|7 -t}n0S`fNwo=*!=n`w*70R2?N$&8FtS1`B?=Tj8xi71t(@WJ$ed>PN4M4L4T)NUHp+3NWO|Lfj|4np62 -Qw+A1piS8rh01mx{oux^xm)+2Zywy2=98M!2mo8M|?SzvITqqAs~9kF2(0U6)L*2~P>J0&;?D#UQ+cb -X%$LYY-ic;SCmyZds+RLvi7*#t~Nu_gEtsK`BLgPEtt1PFjZnMa>|-1?bw!E?wpCuFk|BeY#f;+FhSgB_kVtuKF5ziGY! -~i(xE1KPBv&1rlk4k<;WT-CR29U%3=$aKx>Zs!A=f=Q1>ao-gRlG$rDjp@&Bg^-*Z_)%40Bqm(;fkqI -)kQz&^cBaSyRAU7nvrwW3_lLMF{v;%h6+UYL9f8K-z9=09sCW|WDbg3S%zY{V)TdTr+mQwxF|NR*F8K -(d7rb*gRL=o+e6$m7~#bsI{UtQQ!?&!j4Jg}ifQ$o?oQZH|{Wcav#Kr)#&-{d6f|pN`1X^Z1O>Ycg-T -%h{w$gd -alf)F1BDg&#;wS)&aJ5kcnovJe1p2`HbsjO$Wksp2m_+z%Sqi0J01sBr0%61oQMU>g!O{Hf#k=okY+0 -|@!ca61;N|2KGy?$uYr~ab7yAzOy5t)>zld<5F49Bxt2w(!>xr)=f8u2=u8h%UGRB1dr!YFOU=^lDjI -BgL$0$o|v~=}&`byEyM1}(3bdcNYG-GOcbi#)G{^e94Q6fFy9xoA%HWM!u_P8@w;U^r<(e{(ZH_f3av -4th<1KjAfUOSTYJXw$Ltxzk_B$yHA2>wgiE!-Sgt$-4W73ZRTf@2i4cr0#vDGn2qZ_2o3_-jUgvw~YU -8DEa+IjWiC<5Wmq1!%HyLz8w%Xj#yUybSLHN4IP4vF1^xg7_z>zY^aMf17p~Jm5ETwoi@zKeBj|Y|y$ -CK+V5UEe}RI;YIDFY6Egou7aA1_3OMbS9&GpV>51o5XyhZQvuCk75zk|njBW*P)g-H_DgNKT?e+#?TS -+3Oj+YZ+lWJ%=x;`|Xz;gCR93N#{D0hv;`r{K{R82Gr7Z3kxa9aQnOajl3Wc#jDXRWgWq>Y0@ -y)(3Y_ypZHLFLOcdX?0tcOv02&kC4fpM!MLPTvZ3rtEx(Zhw`)7zS?^@v|XznR{KWG0Un~x9pXF2}&m -tsjOS}4d}>}$g&epH_^$hTz^R?{*2n$Z=rY1El9Q2bB=*J0=(MHDgK)^KXtQwCcCiX2#5V%U@fn7ZKs -s&k5^RJaPxQLFA<{6Oe%nph{`og2Xue?yYR`n{$9bUbI@4luqyFCH1<3wFM8g@8Vf;vxJethvMZ=$ -jtH2a|b*_JkH`LSMkQo4Y3%tabq23{6e_ZAx!jb*BkL7BcEAsp&>MKed2b;p}!k=f2!zJWn*4`02S1B -jinIyxs`66T%c==VmM<8{ylKYJSbZCqrYmmmvm-SfeXoH?dNy7e{!H)lkM7$=w#r{$<`kn2c#9lzmv# -c)3$KER{|dx_kxH0AnAt`Y(~y5b%~mAm?5g`x?ZQA-0^ZXkC4s>0|0dQRieOVD}8svB%;x5L^+lCriR -C#(8;@i-_Yzb0rEW`MD>Ox?`QBKXiy=q;yMax45C@&<&J~my;8*6WFNI(JN+p3-S1POQjwManWfOB7^ -FpG?{3mn*syN^1MkDJTbzXy83fR5Tur;M`1y)OylBP~2ZJI3Lhh*e%$UYk^_Cuj5Lqvp -pG8FHtT9{AVw4a-pf{UQ<50g#r{+qFhF_+Ebvo+AKV8;4$q`Nx5Y(*BV!6fWWKe6XE^MSl5R%^ZB>$( -=U0VI<*YBF-eV*S9y}}*q_GaGz1Sa~VXS;Nx{{T=+0|XQR000O8;7XcS{T7%r<_iD-xF-MrBLDyZaA| -NaUv_0~WN&gWb#iQMX<{=kb#!TLFLY^bWp8zKE^v9(T3d75xD|f)ufW*ju{6V_-A&VNx$DlRNjA+)c9 -WSn+eZl^Aqfpda0$?g`q1Cra}F*9L@IXDcBa)sB9XwsxqRmeuRFD4i^aM(eJ2(RCU>ps4C5=U>fVTj{ -e5=ko*TInXJ;4eZYx+N*1WF`)2jR^>?_rqjP+VnY;|B;W7=A-m{CkNl`Odt%xt+~jq;1xp6lF?>H(YKc -m;~on|F(*orI*s;C&q$%C2Ks)JvxQgvZ>^t~)ZQTZz;OGW;y8Sl4$yg_Nb -^Bd@GxzHeF0l9=9Pl%5_(oWXVdJg)KP>HpZo#6c9Nd+6;Rxo6tb`_0#uDRilzIL*p}&T+%&Y3wE9!SQ^Z5zONR1dF)M)`|Z#InAwPll -cd?$?PG@^I8{6#flxqKYojar|9283tL06A`;et{?$`cf;$#p8=6Zg7j*)0z_K#IJOvXDq_ -l$1P^aOaNzKJS{J_y<_kAPN}8jpP_(#I7|td)?skKuO$#kJ{LN^c>C0h=KfIeB;su~t-huqboUhroblbFT_>XoXWUDlB8`T5&@x;j+XQP -NLWvg6;Sxx$Ad~?^F*OP;0BfnQTC-u%ps*Jaf;b4;qdP1e`#~X%!c8*w&%y;k)k3Qh*rj?M_;BC&;$q -djE{Aajbi1TYb=Qj^B~7wo@x`paWat+f5C>0=7SR2Jdi_`Td5F{;N%j*b0duiT%ZaE1$xEl#GKwv4;mC9_x09X39} -cX!Q-St~7h`%X?g`YINU9L -4XDhq1q9L5Lr>xA%+EVs<8&Ns$*~AM;8R4m>Nq%lK7NOa>%Bv`)aW9R&KWJ`MVDc^ahcVe(F7MZO{Z< -YzX~*(@@3)TfoXaypXDs<^bXUUewvZUdI%%v=Uo>4{LO!3djSzswBcZ8=#4C+cFx`k!k>nJHa)S)BE9`7LZf9(?9L7XWci(f^=_Ze65B#{?zp6qUzEJpB4T -VX54XtBHe~`YvIB~%gF#c;9igD6qSoepX}9ru&kuTt&!`BlAh((Y)iP-s`n-ai$4$Rvq8lA^9_(5cKIy(1FgXQ_6 -i2EbkSisU2FhUPEN!9FuL46eMKWf*YTs+ap+2eo^bfg$27mJw|^*Xb7c6F$)N_~6fDpUV+UPRWY*ZIO -%2Dk1v@Fgo~>wNj?%Uo!!+_&@j5ed@T$^G~iHsgQCJFOp{+)1xtEB!w@RU6)!i2WfGSPh{CoQ5KyolB -oz>QKL5c1}n5#j5hMo1e2wHVfMbN05XpxqPu`AR#XnS+XEe=+rAx#rV0EGdy>_%>~E+PP7LoP8b954ra*E+NzW5ta|39~tdnJC=B{`?ryq -ShfKeukw9@F6qgDj7qSM+|}gJ>QD*qs@nW=nxDO>1;0_+ -h_(->MkGR*PHavCAS~u7q#rQC3mmjSF4P(tdp#6Lh1I$})>E~~6e2u+g@CHD?se>JBnD%WC8mNINV8w -@G0k)e46>5U#aYwuL?=t9ff|@Vl{T2=A>LueRtf+A5S^mhi{!`3%;zC2;EbT8kXC4UY_;$maAVJe{XR -Yw$x#k;6OcNaq(TKHoEaWW?3_HoM&p>K)UtsP)0AT7@VByaj$}6~HqvVvFi74oSmF)p2zybYB)GQ|du -`aRhm3YU-i^zfsOAj{P1g>w(R7EDMcQUX7*^S_ADi8Q^@#B-65{J+v}(W9Gy=Q?&s||iaMD>(CS;tF4 -udbcnREX6k+i494QTk`mfaMi!yXofSbAo=Nav?eV1P_fbLB-t2N(-P6wJu%ZluCvKRdPg$o<&O0~)bf -@!yy?PFLPTB6UrT?<8FMD2ZW=)CCD$EFIU&p+vVuCuPELJ`U)iZs_Bl%S{HBOZQ -~Cj0#cwv~Ylhy}`5BeN#r0aQyf=q$OZe)3n~g4m(rx8;)~CD4l(YY^536`#>jTL$6d?7`?}XiqmR}la -GVcT~wv|LHbZc4f!s45j;;HWrod=5Br&!Mn`#@0wQF3vKcy$9Xn03K)R0+tBhfL -R5%@HPmj~5j772#Y96rHSNWWi2bF+j(ZP{9+u75a8w)aI+D3)Q1WL*`6`uPu)kqv+FTj*8zP@qLbPnNwI`Ud82Y%78ksNQ!i#Zc) --Xi9pR2~@qu_lf?gwRM+>Ro~f8HbfIY{*29OYd<&DiZ1-}(M?~0*%MmtK!rsgOoYUZt+YF9C`8tZ<_G -u=OVb*KKAbH0rg}G5KBBKrl^!ELXCV_=PLK(AZo*9dV9yv|CC=u@hMw3nm<}2t|8P;c`@#tezVgwSW= -x{yEm{t0%Tl;OO-&iTz*JT&lf#x%Zu!!YaC1ICm&r#iNzwJcf&&npd6C^9JB0*#cw&ezM8o5eFfKEmQ -+(MBv%!?rBka=D&7Xml?vgy -i?vEiynq-gu8?+zW0LGTYsCFc!Jc4cm4Z*nhna%^mAVlyvwbZKlab#iPjaCxmedtci~lK=Zt^onII1tasGjBX -f0f|GDZfHg3?8*qedwXrs`>zRW_Wov!S6|&X84U5^zDi9KXabU@nM{JcT*l^#-P<&VgKMPj>0+n -;zb$DViv{8)C+^JoB^YheF?G&^CI^C^77ogu$bUy10uW*gW)y{qA>?yuKFheI?h2=5{{Xtal|d8JLGJ -VWiz{Vde;ANcyj#l@byX0y?FD!_n~(IQ!x#EO%s6c6dni_MLZ0rFem1PA&bW>oA8t~m{rCTP~sP!aOU -$QxaU42y#W9qwUhB^``4FyZ8nYlJme0sPn~Y}4us5y_9&iqXLFD@TA$2kJn2e=)_Jf0rgwVj_In^!!V -z#5gxpMw)oX8ke7OF0WBu2`x2^An)e`bIfPOL$9Dx3Mxc+e{@_%)jzJGwHSN^uGxTW1 -GeQ@2Zn?Lux{79{&aKGJy?NP+MDZ7G@?P?9KhfL)Pb{N+Bou8qa((+eRX>L=Ip4)9`VP~+2!HMNv8$N -aD4v9j(dK1i4r5`H7Q}Uv;FfSW1u&DxdSgxF1EMSTcGo8!XLhizmMO7+5OI -U%dp3|2{RK0_a&_k!*}~i3ajO&`4Er5Hv^yyhZS%}m~L;ufa3GL<=%Tq;E6K_XNG3F!k+l-nQXGT#|+ -0{7DIA`g3_*{Ojhbx-}b(*n)u2}rS6tdG#nta+f31MDl~WNG_Mz^A(erkx$~Tq*1-b(ohJG(Hg!50{q -3dnb)pB$m~A&Q+gieG>xYU0dhEkUXJwC;7TW6?VG;!Kl&Z+!7#c8L?sm@{dM>xRvG -6uU1Q_<<~HPc^4Zcir%bikino%VYdz5XA)qrz4kzJ7Dmd;9MF@qhl;$%oUk^S}2mF0cOh$3Oq|(Ho9@ -KE9g-|Nb0Kqj>gbl4kk+mxuY+jm@p?o!z}(UjAykH|zgxp!M0)jE2G1nDJ=X|Bi#mynbM-Oqc_(8|(o -*64Q?Sz(Qa!g&)sOd+za(MrL(u_i@!iV}=A5WCx_d=Nwl9p<_PT%grgzf2xNv`x!1b21zBN!}lx}O7W~1hB2BZo1{n^E(dw$lxl-dVQ=4$##|Dg(lWARH996hMUcv0f2Or0fe*s2__H}4Po7&oOn6B7NO4;r2` -h-j`}yGOl~;|~=M#$W#Wx3+1$SnK@9J_au!#PR9dvjV0j*dtpc^a!rnF}}B8hVM(fDj|e;J2OeA_>K_W{E)HK5T!v;)9swML1wxCsaFh~0Z(PDn({8RyZ+xt(Dw?*hkLo4t-9godD0#l&9Zvk3*Xz^n+ji6 -}tLahOOA5pU$Bd_9Ojlr+d7#%11U6em841wnQH?Hh(Mt6j{89$YsK<1B^L1-7>(#$W@$c*MWBuGla58 -HH)5_#wpG$FRE`#H?ar2xVUw!dzo<$g3ez2C^`wk`ZlKt`2^JG0`EFMR7(y>@@R|EX7pAgngnxE4FCe -yJ!ROhfYf_K#&qK4FKHs)Gu&?3!AYY9*ZxX|Y3!>yWNGBw9ykq*Ex -NARyQ5)hvmDRW>hH5J}+9Hd7vswW-6>zlCi(goN>nm-y*AnilYX!ypW@xya&RH`2DWA?Iu3)(b|Qg~4 -YI+s?~ubsF@E0uviqE)yr=FoQIMjUF^ebSM*Mu_!?_3Uje>;VjV1@zB9Qg*A{On**E)4Q2(4*{Uofz7 -zzOE+vv#gMDy-`=CT{iOYwP`7_al9(26vSACsM0sk! -4zumlsNTG_}tpSayQ6cJim#fdyX{)0D%dBG4T+kRM6!Fl#AAkrkFxrANr6>!^VLn2|1YAB+es$9hPt= -Hkh=1wr>0`CwxJ2uypW>O}#lS-H;El3yE^MTS7LqI>fd$blhfLoGYgf>z^Xaf*p0OZPVj|H$^8id -UoGLaHq|sQK+`hBP6{H0@QQ~03(2G9Py1_^ovWW-Q)&ZfX@jdq~yVOkY!JE#oqTo2K%2NLR`|s=uc5f -k=*~X#+)*RyaE+mKFoq9poZCiCj8`ZCmE=8{6Dpu_dYv(CX&_*~j@P)8ZeH_G{f)wES+9Le&DDV%%W~l3BHBE=?q+_I}RXLHo=w -qJPfAkLgWZ1$Hzz!`~deIhi%$hyMo<2h}9zI$?Zfg0m8^2!(S+rBc5&}vvu2O -OdXtTbM6x@$QnPDhI)Dd&)Ww7sj4MPZXJSHU)$qqv5jF1GXnMU$Znq1|Y1p#I8G<%0;M^{mM9LL?Emm -CbeuV_9Fy8D`uqt`gBLFh*CIckumEK<{7w~J~qzP=cN-A^I3iMW@9GWv<~>5wOd;!_(iVBS9WLW=l9F -S+A&sLFCrgUAj12e3BCtr#LueGuvSScVWpw0M?~Q+pglzUfyE8NT|BZB#e;D8>vV=aukBNdaqy9MK&M -Wci{>qLdl_*4`-5eZirbx*Dp8rw$DyYqD0~YU$(Gjzk;4_P$mm*4QRMT;WgVEV&3&>+m1A|N=iA-w -SCY*r!TmjtRi0u)w~mMW|1sDKa}DiQXvqhmvAhkd4uKV;>Mc -Uh~&QUl#)Y{xB?pL})d6!IA(n@1=nIlk3`Wb>eY{0Zv+YHwLA~x*$49QYpxFj$|lLojZQXp*!B@b8e$ -6|chYq8UO7?mkh=uL;dCoGyHzU(^)IA`Vt#3M6Iz^sm@S;Ub#gOJ`Ol>q&6*@S$i+%K?eLFq|+2ZkGi -7ek!IAayHJf^zqpdTCfUXplom5rl?2+%?#UUbLJjSfWAky#M6H17nl4C+_ -zCGaR90(g*O5ybKfHv=Aoss`uO*J4}jZ*03Dgm6rg{5pW}Hozk}sKB@o$N?PuHSuS~N|_BBLhmDJ!$e -UHXfvwGa6$Grwz>7Pz_5Kzi(;WBDkr?mgsax9uG}@D-Db176wQXi#=!=oyr2OrW1C7y>w3!>sQqHuU& -o++bF0{OmQ^uyb<%QDYP(p<#EDG8#X!mRQIG|~ -AR#){*)gI40vK?k>B%TbB(!q3OPaXSioCwZ+jd(8AtN}L2oxFYN-k{4)Zu -q^&P7Cz-BaTV~IO0`5s1d$_9kd!b(U4ve*z%l&K`;2tMVYB%qvHvAIHx?O%}XB42@E3p%C*wKOS?aV= -m@SnbniAS40u!VGutTgo+yXCzGMY0>@)2*WFtBoa>WZy3eS{-wlN3{5gLnTGKLlEc0NdhiVo!qcJ>J>O>--B3NFl -yF7G>v$Xh#A8_k88?o!W!kMK0V^q{0CTXZWDU!1)y0*IUdXD-Jzd$o5@3aqDC)s3rg5gM0#P<8Y0EUQ -QX~z)DZsR&5my)xR}6#5OXhAipYa7NN@-*z_`tjmN3Ck1O(we$Yr3>ir3sE9nBDII*-BH#Cf6-#SK!A -ArAkMx=Q)rIQ%?k2g>Rk-1qXgddzWgyT%q3a$y;0pvle5gd3+jLOjk^~uAl=%Mk$(Pkm5oaNK?wlipi= -3&ZzhR)^^IwhoV_05@vgzD59S%9c8aA9+$$X6OxhXvr)Y9`U%5bTXs>yEmxo$v;~GgO!4(pO+YrTn1ICi5_@2{P -T*BUUzSM=p{2Vj>(|QCU{{Kp8S)@X?jl`H<>8f#_LtZnL9uLU3nay%8Aq1IwKln>4$>3FS1Cx*8!Jn% -Qr!YTDz@xo!2b)yPgUZ~u@PFhK*I2uL!Ef%*1k%@TkRgK&0d4v*ZFuXs?tKA5Xggj7ZJ8NJwb#CRmd} -O57lOG10MQfLbD{k576yXp9TVSoS|^B)U+ZB2~J=2$H}ND?@vX6Fz~RJBayhm3FEt9Bs%mw#E?NXz*5 ->3Ll5UR;of}^Lg*V2I`sm5j3xt-Qr+IlEbaDI9(T#e!2n{4M-wOIkcrS{OgY$6#R(E{%CJ>dZ}fuc5l -uMY=-jGa@9onC+@ESxVUtPT5m3D*x(d)PaoQd2DuB2G(3W&M*k`hqaW6?YFE^Tb3YyC}zTD_&R}P-!) -g8z2!O%;dWg}-%n~*4Fi`xuX(AMXs6$Wvu;xcR5S+B@6v;&9CW!#;{Ian%JcC=*IO_D0E8mmCDJdyYj -I7XK)J``P#ir>)tY;h7~^W_aTaXVQWG-On@X80*H71^>cI%BGCT)joHERAT$IDYI_hK^TEsfsE(imq5 -sm*Rl^64p+z_YvUnHjP(?RYR4)IG37>D%+H3p!K_5T0BN98+4~hE$_Byx~#`=QkG^nAm&)TNLAw`h`899dK3}FB?5m*=t1ki6~&HKy+-Y68-NYhNT>oMOX~63p>%wM*(yeZtY18%b?Tz18>gJVs+SI2 -Jz}J&&2PB=4>?zZCLNpc3PEg;0k*yYgDQCnL4k9^JELRq#z7{V7;LnM0fne^K96P9OjcRx8Ltsah|9C1Gl%tQ`-lqQ7i`XgAj5=vpO;B$>wclSEt`Trv|rCR)YZ*7;|U`mVame -}E=|Z6;9!@D-GU--i%XI#&rVD$Xi<2H%a0AR#cGyJX)#Kxchg$+Ni2m2`O13&iU# -n46tuP%A5g-wLy8=9!hljK^`U=X@WJ~!2Wfp4?p*2+IAASYz|`MU>c4OslP=JdL*4>OvP_FtGj#wOu^ -KLF>Og8x!l`r&@&{pF>q)~=ab1G0($??GGF*7>`PDw_ta7W0OuMGxnJr@kyeugH8QIKMcO~(e{=we=0 -8mQ<1QY-O00;o!N}5(y)K=BM2LJ#Y6#xJr0001RX>c!Jc4cm4Z*nhna%^mAVlyvwbZKlacVTICE^v9( -SX*x!#}$6(ub5H~qFjnrYXkvYvw;gZsF74MYz2M@3}U!@mYi~SXEQUa6@mWvd}l7pB}F;zTT9sDWzPB -L+%K!@)>tpd+Qv*&{NhMc;fHT~H>s?tMb$NhH%2>=PFiWbl6o@ncK>=J@CtNZ)s#tU(-?0WRZQrypw^ -4`;rDme8v6`O_$=Lsb+TGXtye3t6u(Yy&1bp4#~#8z#Wl5GtKlE04ntqu~CW -V&HiDzME?}DJpG*?l;7UW>N5dSp2a9h*qQuHJkS(rw+!0LXOT!7?$OBTZ8zweFk`<9$Am3aH%y%T%Wi -9$A_b0i>908q_lgz;MVEzV?9?15FAk}S@=^i*{^f@rlPL9NmH5^!+4TZn&jo~>&dy%+RAY$iy9yRyBdaIl)DB!`gr7np&?_@!ws{lIl3VbppK&S0<;Q?U_b;X8 -y{H2>Hh3-QTBuSZ-~AR2XcCE!f9?Cfe0g5cKlbFoFRl!2w#8UyMz`JSjbaIvtF?FVt!u#lzVu#;N+(x -^vr^TBbT-XbHQI;ffrFd-zzPGOn{NCz%x1WVL%hlqoroMs^)SS6Ka%V=*l1g-5n1m9L|w%1KpuMw}Ms -1)p3k}Irgy|FIFNNW_7h1sH%LIs~!>JfN+TQDSUPSUcjt)+^NtpU|OtEMzPD11l{;4~(K&L9i~*Cd@6 -ANGC=z|xRoC$`o+sFI_vx3X=?0*-}O{tCg?`5?um6L&uyV$Y1O8;q9$LoEBPa%|aWP5C#`YNW$q -wDBe(1>63Xqx`*{1heOOrj@^A9^d*hcM3gKeK0_<*3@e2D#hL>Y#vQK2^@SYh*<{Yt#6h*TW`{6>8EW -M?6&90;s<=uoaHWI%E7ep+{Cz2Aujb;rRK+gDzhXU!HlD|LvE;2n#DJUa;KX{5IH+W&ec-}pv0|eAD& -TrMtC$z*W;&ms`30H|;8iorXOju*oiD#b(PXnE>7x*C@!wsds{A7x)wc0i|=yWE@&W0r%UnI -#rH=@sj1Eq-ZASHcTsvO-G#WMg|r*@>&=%-L>fvpDk0a96zI5dZTxnSk{ve&eu4L!U?8a+Jvn*mpTWw>?aPD5uE!ob%QOm?H{#|z@G0mCY|cb`7(~sb^YuD8R0zLRI@iMFuQ)fN -(ztf4-hSr_8d&mQcMgn|%r2`;+e~vX5>L1PiX{O&Jut%7iC!_RmmWh|fGll!gnpgoe%aTH`d;@dk#RB -RpIfUOm+)aB9Pi)pbR|4S&5)IJLBaE6f9NpkNu~TGL|Ow@kO$&J&6o!2|#*6B-&XQf^9lf|Pn1N_{KQ -yoBK-=8H;Ip-U1^L_i2SW*LG35?UU#hJ1u-aYR6ap2aB+xv);5gTBo(W5=x={Vu8`>x_oBhh7owS2b` -?n%-wAv*X)5d1sz%pWl3I>&CQ{>rf3+XO@Napp>h&d>Fz^p<$!6rGXe908`507c -(LpGQ<67&{Q2!~+Tx4?!KCKx&wp|nbk{1&G$ -p3xmw4rh45iK`+M&zT$74Ta<+#Ur#RI||cc9$`&WsZD2N6X$9Xrz|wc9qn7`3(oz77WQpa4J*Us7Z*y -Nd^P!(8;cbMAL3wkG~0YN@c4D&tRwHv#Z4s41It^F!4o4qrMV@I8c!$6klvB?XgWy8oPNn8-{$`duE! -;5xsQt(7hcSE#g-pGXsRjCLdoh}8g$&tm38UqL{FDC*HxaIsSIVl2+szv^{KFyj-F@abp=krB2Z)bio -05>`DXA=iL%2pJm(b04wsz`SMy%+V+XkZ#H&ZqBrD{6LJBe_86aQyb)(H1UGT(Gxd=TU()>DM;s$c2O -eaqP4GXJ;lV`cFOyh^?S0T?2K?nD~dVLy8w`&^M2SDZhJpVKho@}BDJndUQ{ -PPw|o?#-m3!yD|Whhh>RXKd61Mn8FJE72ZfSI1UoLQY?OOeA+eQ-qUr(_Yqo9OJjFVh@E)g5B9i=hqI6>sJxJv?RMX -oH?)KcIsE$fN~d5r_^UM^2^Gy6d6^$5JyY -{s}=6Y9Zx=cP$57l|P7hmw~YxyU$4maCL48JAQh@HLwgxnN}a)3f8tpS~w!BaR43c}(+I33NJTM7c3wrlP5zWK=S$7>G)#O6s;^V&$A^7!+9Z#oP{BtFv}$=cmmq8Fij-OX)1a>vw%+{Vfg -%%&R8le)A{kq_~JFAe^m -RG&PhL0yaU2Otn&|!zckHagoU6hV6#tJ$3$3llf>GD*h#v(E{BLv14Tr4I|%Z1L^@tDoPB%RAfrOA)$ -bF;08qG01FIW?I5N2>10B#*=C*Pu_#rI*^R$`q?C( -buKzF%zuu%NG8H6{2ki}65p^Xja!UL?^%AAo|uNCMdT$XIv*PK?m=`V0ahL?##@=yE(e?7Ad~O0~b{0 -tj8PKr4%{qoX5xXux6NozUp*#V|;rpKUk3u!c3W-rMV`NT+RDht|<}P1itff>kql%6Ni+u$?*7u+)9C!n(vk%$ -Ld2B*D&9dua)mJbz!EE(8hb4tQ*to(&%yK}<7 -{fpQt)e@t+_Qv!<{c64XQm?2Hp@bl8F_KAOXJqdVhcayP)<#%QDp@KC48u!m7YH&svamo$Xd!NDO$4ZCJ+Tss36JZ -Bfwn3S?pCrD#NLgdmAE2Xh?`#mcxY4vyuf|&gueIs9VhCD#5qpidu`59ZzKZpRqm0m+S&}Zz(JX|0+}{!1%OuoZ -Rlep-UG^tUF|6ftnY%nzI-}5&~;ozMg)e2NGQ81Raq2bDrRGQ-zRABWL8KP1S$lp@_tI8VMrpH>NH{Q -9F_VV0-S76iow1LG%r9-_btXs9F{B;;25XLtOVbC6Sk-Lb_U|>D8v_DWP*9Y0fmM*XIEHs@@WHTDhNT -zM22Bsuyn3-Pc6JF?<0Y4GMBPXZK0i8oYU)#a<P@W}rjaZwo)29+TTi`vY;P0ucD7F_NEIj!3eB4-j@NLRqS+Ab7S7)s3O-#d*@Kpg7cuvz4ySFm44G -F_o5r-ZaAcdmpH8R^1#gD!Q>a=k+FlkH)$KGJJk(R<;Z|%BMzpyRuS+tfBCROi`*+F*~N}VZ*Gia3I= -Exvn-QWpMUOe|}*;kz$oVQu2xKZDMm;7o^pCI;tge$1r3%?Lz~r+-5lj(dov6fXLN(Ht5qu-%lE_Qx9)2e0ZYx1(jtk$}8(2UWxB_9AYpeYpD5Pt_{KqG+Aah80_{+sHl9Wc3z*DM*snv0b6fU)19mS -K|*0yvV*+@qkoWA529;P_wkS-;!mX&@AX!OTGw644b(J$UBvpA9 -BfIK)V3}8Y0Da7sm~hwl9C?l1^(80~H4yz-33tVIeWq|%Ev#&z53LEyD&}CQF@GC27;6Pk&GYI7RQK( -$He;wWc6Cn3nO;%>8!Fcsk8<5ar@Dp8+qJQbHN|_yIH)Q!~973HDNU}fGE-=^(l#&R9Y?E3n~6gQO$|6Hh(>t>z=e4ew8`gbWyd|%K=0?wd&`CS{nWYZSWhy!r<_ -W!@~X$@>x-#M`s{yY1`KYOS<1LRXfwB1|x&kY-Vsrgv=+4F)*gw_pls6I4SX9fNUi-Q -8sYb;f*Sgll4#La7EVH>X+>r#q^j -(3Av2*LUqcsCKoDYz^ICn|X>Q+If&>bld)$i6KZCH*DlFd8EdNcnIw$3nhcqm`Yj)cMXSCMAmg~n8Ar -wbt3F;^+pKp7MFwWEs3SWS6$=4q^d;L6KV1n%7auce-0N!e`4gumjNS(;>ucFI?|{{|it{0|XQR000O8;7XcS$E -^s91qJ{B6C(fsA^-pYaA|NaUv_0~WN&gWcV%K_Zewp`X>Mn8FKl6AWo&aUaCwcIO>?t05P56$C -CXS}KJ1wu`hFZbllGDx-W!9lVk^er0o*w4w7vX%dbKeroxkI(FW2fN+Cs+?5^sS1|GC;5EiHc5W|EY$u`ZP?fQpUhbbhiyOEt2*TwdyUU3yV0p -iWLC-z`||qjiIq~am*2jA|Ks&Ld&>*9lU1zJvR3`r82&T+@#6>kma{CcnB1xAr&{#qL6z)HrIOXZ<4c -vF;z}iPntrmq%w!Q)a@Q<}!;4TWdOFQGDfUl=PtZ)Q$Z2@;t9B0_rfla_e6!0EQ-SL3CM!*qF -fJ4AnWWZM_;49jh6%4poPJ>wC2)MEZe1+mT!^RGz1Kxw_YCPa8Bj5-oz#-sC{SZj&gTA?G0KFd6E>jv -klo^lq+Jl){S;FJN%y^c}K+v0GV>H*s4x}^FgK-gWVQ_S?Kf~kll=EO2+H5or`$ptTaw`y^ngO=C)~z -K#nVjN!$5<=eN4fUtI1(V&ycq}8B-m7s6HG6SO&kHybD9F9xn6f5{p2DtvoEAPA}|1%u~yFjrg;^uoo -P^Ca2iBy69H-xGCToFp(Tz1OkrS2Aq0a-ulvl*u(1Q_6!u_w$s&1)KsX7o->xCOuR~lE2e~ce2i&ebs -9&a>2~lQ3+G_%&w`&Mf=+4lHR~`Yag&U&G%vibu=`*|s|5D{8PG`h%NFjaVhV|KnBT1fT8k*+&=8Xuf -PohI<_@n`Kvjf*R`X3wFq|&o&34_Ec$4C<-$&`BAqDkoX4BzSQU7%)LSXyI53R_z)@GF6!TUmiRPhn| -<5Giausv!EhHN86S*Mv7sVsMNUwvJ8U25WNlbUjfagh!U$p*?qxxe5!o)dI>vibL8c?#gQsFY;5Ijjp@POCARBEoJecvR(dhyM!{T&nYY<2F -FMfB*{vZ+;^5U?9@f$b|z=xcu?g)wikg?^9B;Va!N0WwxAd@KoAB9+5iCz5OxE4G|oyDUESvu7i+)YJ -388rVd64Tcn^|jyF4E4&}b;|nL?xeX-d|gjy4lJtd>UmswQg{qV3pdIS0i`N70dN;UU~CTRYTfnJF|y -1!zZM^zG=SU9{ac~kXjPT&wuqK1sDffc9$IGG_6+km46c!U8SZGZ<1fFm{vZ9&|qYp7 -2c;L`^9zyLU4aecx0lXAz?sB8xR5m;2ScHHk}w8-9oVeUyenrGS#BI5rGf{56wrXLEr(HNp!~Q=#KF3|{ENUTt -Ki{G58(hkSuAIUE)RvaBbR2_g^Vmo=QWuSrNm(A$TlKEYaJIszk=|dE%IFwp@38$qTr1!}osElTa1gO -@_k+R}@4Cl`yK+h+=GxRA(MxobkYh1Gbsc*CQfMt9g1T>1{s*XUEzBpo2_5r78gHK@R7OeE*u-_C#-O -zoYJD3IK@CNi0?<7wC!2qM5dIdN=!4k6P+)K36ksW>ZNRSlQp$qwO0z2{d-HSc&#fdO%`PWRd~Ab!^u*0#voXef^OHu~d7k -BPEXg=8fk)&tNdfGVtSoYm}9$x!l^K`6<{Mg^fFZ|20z3cif_6hB*Yc!%L3D0FA2m0*iznS4y7@-|pN -P?z<`6e)@b1>l4g*qa@6k<}#rLuTWYX!`=L01QroykN4AW^C@hUff^m-!g}gKD1tXy83)f+$;_G4I8t -nkYG7}K;A?0B{!eL?86GRt4j$v`)EH&1LJEVw_GsPf&@8KQ1I$`9t`zEkhFWKQ)p?>wJCN33GHGW;g6 -0up(Cv+EcUnd-CI&I7Pt;OrW}JlyED0e`sn9F8-u5a5d}SKC2xzTwD!9fCNY?xhhu*_tv495!QaQkyy -LW!+$BtXraDm{zZ0}UV9Iu!Vr(TXar0%X{p-)*h`*Js(&AlwYGq1}ko~13yOBH{^pa!*}7d}N)o);nr -uPND+eAMG1;yam^B7DUB9p{q -t4!0F{=vYI5o==*JC#wW(*s&BSy%v5({j4qf96gGj2aXh(pD$a1M~AYeeM%BuLpvT?{~kR_0z;rJ3-Q -kfpk2a`a88z|9QpOp-%8H34#~+Ma?vJ)6wiuF8bP^l7rueA3^ZjK8jO@>!?-L<(zcE7Do6W%B0J~w_~ -xb)tgsrZ;;>`xuq~9?-kh5$*cj}20Z>Z=1QY-O00;o!N}5(@IB=)A1pok}82|tw0001RX>c!Jc4cm4Z -*nhpWnyJ+V{c?>ZfA2ZbY*jNb1raswO31T+eQ$+>sKri1f&87o52y%s3Y-g|TVOZrPX`y!Vw>tRQ*OmaEjH;mWu5nw@`~T+Anudr3H^Ap>e@^eTz(kms#Zo+iZe5WQQ+2}fx}!35%kU{ZoZrUiTEy&J~y*L -2-Mv(xcpHtztfknbSrJzNFOGmG*;zmYatpYte4$Q_9|4$q``(y`ZMD8$;A%jt2u)oLxt3Sq`b!o37jM -wm-B0aN?DB_G>qjiFB?(hgj -F=WO!lH|g|Msz9-29`;Z#EI*i(Itp-{q_y(Ip|HU%D5@A!V9qvT3qdb@*Jt?yN=90r`?P29YH52NH5f -he%V9xa=NQ1y!kGYXg5)`NEVThU+^8d!3IPbx`-np_U*?9eha5Z2D#T5;m6;KD7bb{=O53{(fzGBvuu -q6q7Q31mUAU(n|Dv6Wqi-NgQIsxwN_FVcaM+X4ZDNAU?Ju-+7B{2y*$4-K#Q=<<*MAczTbQK6c}DPO0&gFJL%*FX0PsIJjl&0usCpeB5jaaYku8?LS!rL3CjUe)oJ36wDj -*j6pMZpoxVK$Bh`SV?LHrcn@TF^zC|a+##03{qB?EYXF&!4eJWWjj^bq9(zLAqE8b7>3AnYa|W;LpUM -m8xEm7tMo%Wj`IYRhXfLU5$>uS?169!J*eHTWTQ?wfys}TxY~(MBdJX#d$Guy_BN9|vT@{X)^`@0$#k -(9kKqf~;D^Nq55ZYSGdk^URHjoq|NOoeuF%=9uJ?u-z57Ay#)N~=*+5~Ttqsu`Tx_>lS}!)oeGx2EX; -pps@0UOF5|h1aKgCcHK7=XXbk$rHhuqF$*WF4WhpWTk4rT$RnE}5(+8p{_6G?p*7YS=j66aUWDd?W^T -QvUssnwuhI)N{c_xp>p5#gzbWD{VG8B4t(Giw(%(m;$el+MW0WP -FiOjtf}K+-zs8eoac&^Wy;MZAr-;Hmh_=$~$dh|^K;+9|nr$O{%EL0*Zu^&)Jl!gbCC~Iv)g0`4r-I= -$3+KhiDiSX#p806)%Qk@UdQXUNL3E4@t=pRLbnL`CYuV$m$9MwMg-atj8LnWk^>OgkGh>G}He}OdHj) -&l$VQ6N4^x=5dOyW9GIONuX1#H;6Wd$tI6HvEPu4C1Ds>;c9tD21iU#&!-7PN%TCLEa -$5c5sh?5j+!=lV1%=DD$+U~eLnTg_fddzH5GQeNT<{3*`6vKGc3!S{GT1JXS-DLc!Jc4cm4Z*nhpWnyJ+V{c?>ZfA2ZcwcpMWpZC+WoBt^Wn?aJd8L#?GDJy{lHCz?!}ldi_!-v6r?ILt*lTVyn&yp&}+&&Aw`a!TTQXSLW4FDCphy?WY6%@;Q|y_}X -KapXfW=tl#Q+=z>G<`%k;i!`tA&Qe8rK_l__;i#6{j$FL@lcQWg!pi)T+Jn9Q&PXh5nwRa?YJ+Xt65B#e-MJH~akoAa(O@XZog$Y!5d -G`ZgMPo$X>6Vg*Y>*2tykCmerp{@AsmEoH-ryExEI3x5FUhZ=)=+nc^FJWsC;O{H433whf%0B3YA8o( -kN6Kg-WAPX%s4rLZ#6#gmDOE2t&1z3ZV{Rs5kQU3g!pQCUcAVA#se8B87cbGlq -CrsZg-zncF-y`23-yPo?-xuE$-;ojXQ|2S)nE4s=bLJP!L*`@V5%ZXN!aQYu$^43W#{8Q34f6@}Tjo> -dcg%C<_snO^3+8j?56mB#FPJ|ue`fx|eCZ$cD-K>W-!Lc4Uzz?K`9tJSkUu{D?D&Io$(%A%=5Ng3nHh -7&^l#UkxnTam^siUJ^snWT`6u&=dCk0G{>A*8`4977=G*l8%pWFM0QOo -o`mm`F?#OcW*>6T$?2V)Tj8Cq|zbePZ;9(I-Zq7=2>&iP0xUpBQ~&^oh|YMxPjcB>G77k?14QN1~5JA -BjE^eI)uw^pWTz(MO_>L?4Mh5`7Z%Nzf-jp9Fmp^hwYsL7xPD67)&XCqbVCeG>FZ&?iBk1br0xDD+Y2 -qtHj8k3t`XJ_>yl`Y7~K=%dg_p^rizg+2;>H2P@t(deVmN28BMAB{d5eKh)L^wH>}(MO|?Mjwqn8hr? -T2z>~B2z>~B2z>~B2z>~B2z>~B2z>~B2z>~B2z?Ct81ymdW6;N-k3k=UJ_daZ`WW;v=wr~wppQWxgFe -Rjbn1VvPxu2wRR8xjHoxV<*N6YIN|tG++qb_>{{v7<0Rj{N6aWAK2ms(pnpOdJ9~Srk003nH000jF00 -00000000006du00000aA|NaUtei%X>?y-E^v8JO928D02BZK00;o!N}5(98{@xi0ssK61ONaJ000000 -00000002Cfh7R|0B~t=FJE76VQFq(UoLQYP)h*<6aW+e000O8;7XcSeg`F$&;kGeqy+!~6#xJL00000 -00000wt>F`003}la4%n9aA|NYa&>NQWpZC%E^v8JO928D02BZK00;o!N}5*9$G|nf0000U0RR9D0000 -0000000002Cfx-p=0B~t=FK~G-ba`-PWKc^10u%rg000080N_fRR+hDJp-}+<06hW#02u%P00000000 -000Jedw2LJ$YX>c!JX>N37a&BR4FJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcS3?7JMTMPgI11JCh8U -O$Q0000000000wt+MW003}la4%nJZggdGZeeUMVs&Y3WM5@&b}n#vP)h*<6aW+e000O8;7XcSbkB`Ck -qZC-y(Itu761SM0000000000wt>eL003}la4%nJZggdGZeeUMV_{=xWiD`eP)h*<6aW+e000O8;7XcS -mgaebHV^;+*)#wE9smFU0000000000wtc!JX>N37a& -BR4FKuCIZZ2?nP)h*<6aW+e000O8;7XcSX^Lvwun7PF`5OQL8UO$Q0000000000wt)#x003}la4%nJZ -ggdGZeeUMaCvZYZ)#;@bS`jtP)h*<6aW+e000O8;7XcSc;#0fxe5RP=N|w7Bme*a0000000000wt?|j -003}la4%nJZggdGZeeUMb7gF1UvG7EWMOn=WM5-wWn*hDaCuNm0Rj{N6aWAK2ms(pnpWuw`(R`Y002T -R0015U0000000000006du>|+1`aA|NaUukZ1WpZv|Y%h0cWo2w%Vs&Y3WMy(LaCuNm0Rj{N6aWAK2ms -(pnpVzt>NIEo004vl0012T0000000000006dujBo$|aA|NaUukZ1WpZv|Y%gPMX)j-2X>MtBUtcb8c~ -DCM0u%rg000080N_fRRzQwlr3MH902CSk03!eZ00000000000JecIaR2~tX>c!JX>N37a&BR4FJo+JF -JX0bZ)0z5aBO9CX>V>WaCuNm0Rj{N6aWAK2ms(pnpQzf^soU6008hG001EX0000000000006duc6k5* -aA|NaUukZ1WpZv|Y%gPMX)j`7b7fy+Z*6U1Ze%WSc~DCM0u%rg000080N_fRR!w)w)H5Ie08VuP03QG -V00000000000Jed)g8%?c!JX>N37a&BR4FJo+JFJob&YX>c!JX>N37a&BR4FJo+JFK}UUb7gWaaCuNm0Rj{N6aWAK2ms(pnpO=q8c*#4006KD001 -HY0000000000006dugT4R&aA|NaUukZ1WpZv|Y%gPMX)kbcZ)b94b8}x}VRCaWaCuNm0Rj{N6aWAK2m -s(pnpSEamB}j<005Xr001BW0000000000006duu)zQTaA|NaUukZ1WpZv|Y%gPMX)khRabII^ZEaz0W -G--dP)h*<6aW+e000O8;7XcSsmxi)o(2E_{u2NI9RL6T0000000000wt*Se003}la4%nJZggdGZeeUM -V{BbYEXCaCuNm0Rj{N6aWAK2ms(pnp -T+ArJrnBme*a0000000000wtV>WaCuNm0Rj{N6aWAK2ms(pnpR>@!Z{WT0037e001Wd000 -0000000006duz48D6aA|NaUukZ1WpZv|Y%gPPZEaz0WOFZLZ*FF3XLWL6bZKvHE^v8JO928D02BZK00 -;o!N}5)JO%33i2mk=T82|tu00000000000002Cff)V(0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*WWMyJ?X -D)DgP)h*<6aW+e000O8;7XcSzp=H;*aZLpJ`?}|A^-pY0000000000wt?^l0RV7ma4%nJZggdGZeeUM -V{dJ3VQyq|FJy0bZftL1WG--dP)h*<6aW+e000O8;7XcS|Fh!d!2N0HWn*+MaCuNm0Rj{N6aWAK2ms(pnpV4MDg_lB001&@001EX00000000 -00006du^dJEMaA|NaUukZ1WpZv|Y%gPPZEaz0WOFZRZgX^DY-}!Yc~DCM0u%rg000080N_fRRzCxmoI03HAU00000000000JechJpll4X>c!JX>N37a&BR4FJo_QZDDR?b1!UZb963nc~DCM0u%rg0 -00080N_fRR#&d`FJcD(06`W203ZMW00000000000JeeINdW+GX>c!JX>N37a&BR4FJo_QZDDR?b1!pc -VRB<=E^v8JO928D02BZK00;o!N}5(xAVkH%2LJ#Q82|tt00000000000002Cfq78@0B~t=FJEbHbY*g -GVQepBZ*6U1Ze(*Wb7*gOE^v8JO928D02BZK00;o!N}5)Sp>!kW1ONao4*&oo00000000000002Cfp% -E|0B~t=FJEbHbY*gGVQepBZ*6U1Ze(*Wb#7^Hb97;BY%XwlP)h*<6aW+e000O8;7XcSgX>b1DhB`nv= -{&Y9{>OV0000000000wt<~q0RV7ma4%nJZggdGZeeUMV{dJ3VQyq|FL!8VWo#~Rc~DCM0u%rg000080 -N_fRR?~G2E;|7L09pe804D$d00000000000JebyW&r?jX>c!JX>N37a&BR4FJx(RbaH88b#!TOZgVeR -UukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpTvaa2N*y006}V001KZ0000000000006dugl7Q&aA|NaUukZ -1WpZv|Y%gSKb98cPVs&(BZ*FrhVqtS-E^v8JO928D02BZK00;o!N}5&|m-%-~0RRBm0ssIg00000000 -000002Cfy`+E0B~t=FJEbHbY*gGVQepCX>)XPX<~JBX>V?GFKKRbbYX04Wn?aJc~DCM0u%rg000080N -_fRRzVi|@ZSai0A3jY03-ka00000000000Jec$YXJaoX>c!JX>N37a&BR4FJx(RbaH88b#!TOZgVelW -NCABE^v8JO928D02BZK00;o!N}5)}>)-)XPX<~JBX>V?GFL!8VWo#~Rc~DCM0u%rg000080N_fRRzp8a&L98)03HAU03QGV000000000 -00JedqbO8WxX>c!JX>N37a&BR4FKKRMWq2=NUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpPxk*$K%L004 -ME001BW0000000000006du19braaA|NaUukZ1WpZv|Y%ghUWMz0SV{dG1Wn*-2axQRrP)h*<6aW+e00 -0O8;7XcSZ2uE)ks|;A@sj`mB>(^b0000000000wt)(X0RV7ma4%nJZggdGZeeUMX>Md?crS2aV{2h&W -nX4#Ze(S0E^v8JO928D02BZK00;o!N}5)eMPlUc1pok?82|tt00000000000002Cf!?eE0B~t=FJEbH -bY*gGVQepHZe(S6FLQ5oa${w4E^v8JO928D02BZK00;o!N}5)JB1p0>5&!@NJOBVA00000000000002 -Cfe5n!0B~t=FJEbHbY*gGVQepKZ)0I}X>V?GFJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcSb)*io5eW -bQ)E58%B>(^b0000000000wt;uW0RV7ma4%nJZggdGZeeUMY;R*>bZKvHb1z?HX>)XSbZKmJE^v8JO9 -28D02BZK00;o!N}5(cqo%9S2><{99smF(00000000000002Cfy>ST0B~t=FJEbHbY*gGVQepKZ)0I}X ->V?GFJE(cb7OCAW@%?GaCuNm0Rj{N6aWAK2ms(pnpUZvMN)wT008_60018V0000000000006du-q-;E -aA|NaUukZ1WpZv|Y%gqYV_|e@Z*FrhVqtS-E^v8JO928D02BZK00;o!N}5)DBT?aD1polJ5C8xo0000 -0000000002Cft=j|0B~t=FJEbHbY*gGVQepLWprU=VRT_HUtei%X>?y-E^v8JO928D02BZK00;o!N}5 -(dZ6D*(0{{Rc3IG5f00000000000002Cfj#2^0B~t=FJEbHbY*gGVQepLWprU=VRT_HUutu2ZZ2?nP) -h*<6aW+e000O8;7XcS;9veW`xyWLyc!JX>N37a&BR4FKuOXVPs)+VJ~TIaBp&SY-wUIUtei%X>?y-E^v8JO92 -8D02BZK00;o!N}5)Ij@R{B0{{S82LJ#o00000000000002CfoKf^0B~t=FJEbHbY*gGVQepLWprU=VR -T_HX>D+Ca&&BIVlQ7~Z*6d4bS`jtP)h*<6aW+e000O8;7XcSBE&_;vMtBUtcb8c~DCM0u%rg000080N_fRRuwRyPk8|V0Nw)t03iSX00000000000J -eeXBmw|%X>c!JX>N37a&BR4FKusRWo&aVV_|M&X=Gt^WiD`eP)h*<6aW+e000O8;7XcSJEw&_bYFFHY%XwlP)h*<6aW+e -000O8;7XcSV(5)yXafKM*a-jtCIA2c0000000000wtlOe2fk^-W8~^|S0000000000wt<8=0swGna4%nJZggdGZeeUMZEs{{Y;!McX>MySaCuNm -0Rj{N6aWAK2ms(pnpPVe^6G2>0080w0015U0000000000006dusZRm`aA|NaUukZ1WpZv|Y%gtZWMyn -~FLPsPWo>0HaCuNm0Rj{N6aWAK2ms(pnpXJde8Ff2001Kr001Na0000000000006duQBeW_aA|NaUuk -Z1WpZv|Y%gtZWMyn~FLPyKa${&;b7OCCWiD`eP)h*<6aW+e000O8;7XcSih`)-&jJ7da|ZwbCjbBd00 -00000000wt@Rs0swGna4%nJZggdGZeeUMZEs{{Y;!MjWo%_*bZKvHUvP3|W^*oZc~DCM0u%rg000080 -N_fRR#62c!JX>N37a&BR4FKusRWo&aVbYXI5WprO~ -d30!RZZ2?nP)h*<6aW+e000O8;7XcSX#?@S0R;d65DowU9RL6T0000000000wt*2~0swGna4%nJZggd -GZeeUMZEs{{Y;!MnXk}$=E^v8JO928D02BZK00;o!N}5&bYEXCaCuNm0Rj{N6aWAK2ms(pnpR9^*Z*S`007fZ00 -12T0000000000006duzGVUcaA|NaUukZ1WpZv|Y%gwQba!uZYcFASbZ9Pcc~DCM0u%rg000080N_fRR -!m7DT}}f40AUCK03HAU00000000000Jec#djbG(X>c!JX>N37a&BR4FK%UYcW-iQFJob2Xk{*Nc~DCM -0u%rg000080N_fRR-!8&==}x&0MHiz03iSX00000000000JeeVegXh+X>c!JX>N37a&BR4FK%UYcW-i -QFJy0bZftL1WG--dP)h*<6aW+e000O8;7XcS^{UMQ*9ias)*S!c!JX>N37a&BR4FK%UYcW-iQFLPycb7^mGE^v8JO928D02BZK00;o!N}5)*w -HpV)1pol)4*&oj00000000000002Cf!e160B~t=FJEbHbY*gGVQepMWpsCMa%(SjbZKmJE^v8JO928D -02BZK00;o!N}5(JuX|s*0ssL21^@sb00000000000002Cf!D190B~t=FJEbHbY*gGVQepMWpsCMa%(S -mZESLIV=i!cP)h*<6aW+e000O8;7XcS000000ssI200000Bme*a0000000000wt>#D0swGna4%nJZgg -dGZeeUMZ*XODVRUJ4ZgVeRUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpUlV^2;s;0006M001EX0000000 -000006du60rgRaA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFJowBV{0yOc~DCM0u%rg000080N_fRR^~jS+ -%*aS09Ymf03rYY00000000000JedDw*mlgX>c!JX>N37a&BR4FK=*Va$$67Z*FrhW^!d^dSxzfc~DCM -0u%rg000080N_fRRtQoG<8T}R05EI-03!eZ00000000000Jeej!2$qqX>c!JX>N37a&BR4FK=*Va$$6 -7Z*FrhaB^jEVRB_IaCuNm0Rj{N6aWAK2ms(pnpOY+0006200000001fg0000000000006durQQMnaA| -NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFJg6RY-BHAUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpUNb#`J*&00 -1Qr001ul0000000000006du@7@9caA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFJg6RY-BHDb!lv5UvzR|V -{2t{E^v8JO928D02BZK00;o!N}5)F@PA8Q0ssJx1pojl00000000000002CfxYAc0B~t=FJEbHbY*gG -VQepNaAk5~bZKvHb1!0bX>4RKZDn*}WMOn+E^v8JO928D02BZK00;o!N}5)HCoIZr0ssKQ1poju0000 -0000000002Cfn(4RKZDn*}WMOn+Uu9%zbYWs_WiD -`eP)h*<6aW+e000O8;7XcSGPDpbG6MhrmIwd{>5eL0RR9q1ONah0 -0000000000002CfuZdJ0B~t=FJEbHbY*gGVQepNaAk5~bZKvHb1!0bX>4RKcW7m0Y%XwlP)h*<6aW+e -000O8;7XcS*Qcn*J^}y$i3I=vFaQ7m0000000000wt>*^0swGna4%nJZggdGZeeUMZ*XODVRUJ4ZgVe -Ub!lv5FL!8VWo%z%WNCC^Vr*qDaCuNm0Rj{N6aWAK2ms(pnpQ_lgCGF}008(4001rk0000000000006 -duT=D_{aA|NaUukZ1WpZv|Y%gzcWpZJ3X>V?GFJg6RY-BHYXk}$=UuV?GFKKRbb -YX04FJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcSUbgC>3jzQD0tEm7GXMYp0000000000wt*=30swGn -a4%nJZggdGZeeUMZ*XODVRUJ4ZgVebZgX^DY-}%OWNCC^Vr*q!Y-ML*V|gxcc~DCM0u%rg000080N_f -RRt==d!N4E@08?uK04V?f00000000000JedI`2qlNX>c!JX>N37a&BR4FK=*Va$$67Z*FrhX>N0LVQg -$KcW7m0Y%XwlP)h*<6aW+e000O8;7XcSy}5(Hivs`vvI+nI9RL6T0000000000wt?y-E^v8JO928D02BZK00;o!N}5)_z_J+)5&!_=KmY(C00000000000002Cf -l(d<0B~t=FJEbHbY*gGVQepQWpOWKZ*FsRa&=>LZ*p@kaCuNm0Rj{N6aWAK2ms(pnpSSRiIQ9t007WM -0012T0000000000006duoiGCcaA|NaUukZ1WpZv|Y%g+UaW8UZabIR>Y-KKRc~DCM0u%rg000080N_f -RR#-?5Ej%Is01kiv03ZMW00000000000JecNMFRkEX>c!JX>N37a&BR4FLGsZFLGsZUukZ0bYX04E^v -8JO928D02BZK00;o!N}5)Vj?o@P0{{Rj3jhEd00000000000002Cfv#r*0B~t=FJEbHbY*gGVQepQWp -OWZWpQ6~WpplZc~DCM0u%rg000080N_fRRv1kPWzrh}0A^qS03rYY00000000000JecGYXbmqX>c!JX ->N37a&BR4FLGsZFLGsZUv+M2ZgX^DY-}!Yc~DCM0u%rg000080N_fRRsaA100IC20000003-ka00000 -000000JecYhXVj`X>c!JX>N37a&BR4FLGsbZ)|mRX>V>XUtei%X>?y-E^v8JO928D02BZK00;o!N}5* -X8_TKx0000-0ssIY00000000000002CfrEzw0B~t=FJEbHbY*gGVQepQWpi(Ab#!TOZZBeCb7d}Yc~D -CM0u%rg000080N_fRRsaA100IC20000004o3h00000000000Jed^hyws{X>c!JX>N37a&BR4FLGsbZ) -|mRX>V>XY-ML*V|g!MUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpOtSCo(b`002N<001ih00000000000 -06du3yA{&aA|NaUukZ1WpZv|Y%g+Ub8l>QbZKvHFKlIJVPknOa%FRGY<6XGE^v8JO928D02BZK00;o! -N}5&x00002000000000l00000000000002Cfrg_40B~t=FJEbHbY*gGVQepQWpi(Ab#!TOZZC3Wb8l> -RWo&6;FJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcS!vG@RNCf}@WE21ZD*ylh0000000000wt>~70|0 -Poa4%nJZggdGZeeUMa%FRGY;|;LZ*DJgWpi(Ac4cg7VlQH0b7d}Yc~DCM0u%rg000080N_fRRwXTs&} -9(-0I*2_05Jdn00000000000Jecc!JX>N37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#9V -Qyq;WMOn=b1rasP)h*<6aW+e000O8;7XcSDt&gR=o -c!JX>N37a&BR4FLGsbZ)|mRX>V>Xa%FRGY<6XAX<{#Ma&LBNWMy(LaCuNm0Rj{N6aWAK2ms(pnpPe4( -Bt6)000&Y001ul0000000000006duH0uKZaA|NaUukZ1WpZv|Y%g+Ub8l>QbZKvHFLGsbZ)|pDY-wUI -a%FIDa&%>KE^v8JO928D02BZK00;o!N}5)JtT5f|1ONa|6#xJ;00000000000002Cfnx6i0B~t=FJEb -HbY*gGVQepQWpi(Ab#!TOZZC3Wb8l>RWo&6;FLGsZb!l>CZDnqBb1rasP)h*<6aW+e000O8;7XcScKT -1jY7PJZ5-k7#F8}}l0000000000wt=7Y0|0Poa4%nJZggdGZeeUMa%FRGY;|;LZ*DJgWpi(Ac4cg7Vl -Q%Kb8l>RWpXZXc~DCM0u%rg000080N_fRRsaA100IC20000003QGV00000000000Jecv0|WqYX>c!JX ->N37a&BR4FLiWjY;!MPUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpXEFl55xn000*a001KZ0000000000 -006dul>-C-aA|NaUukZ1WpZv|Y%g_mX>4;ZUut1;VPkJ!bY*ySE^v8JO928D02BZK00;o!N}5(mcsW1 -T0RRB^0{{RU00000000000002CfvyPz0B~t=FJEbHbY*gGVQepTbZKmJFJEkLXD)DgP)h*<6aW+e000 -O8;7XcS19C#bmjVC)fd&8o9smFU0000000000wt>A11ORYpa4%nJZggdGZeeUMb#!TLb1z|VaAaw6b1 -rasP)h*<6aW+e000O8;7XcS4;ZWMOn=bZKp6E^v8JO928D02BZK00; -o!N}5*Cw#AN21pojm4gdfm00000000000002Cfj=4q0B~t=FJEbHbY*gGVQepTbZKmJFJxtKa%E#-bZ -KvHE^v8JO928D02BZK00;o!N}5(Cj`dyb0{{Sq3;+Nr00000000000002Cfy*BR0B~t=FJEbHbY*gGV -QepTbZKmJFJx(QWn*+-b#iQ9Xk~10WpZ;aaCuNm0Rj{N6aWAK2ms(pnpP|NN|z1;002e^0018V00000 -00000006du|04tdaA|NaUukZ1WpZv|Y%g_mX>4;ZWoKt!Y-w(5E^v8JO928D02BZK00;o!N}5*28_*X -H0ssJ!1ONaZ00000000000002Cfl4O?0B~t=FJEbHbY*gGVQepTbZKmJFJ*3HZ)9n1XD)DgP)h*<6aW -+e000O8;7XcSJY;3*(F6bh_zM64A^-pY0000000000wtjwY;0u%rMApigX0000000000wt=QD1ORYpa4%nJZ -ggdGZeeUMb#!TLb1!CTY-MwKb97~GE^v8JO928D02BZK00;o!N}5)q)lV&00RRBZ0ssIY0000000000 -0002CfzUPt0B~t=FJEbHbY*gGVQepTbZKmJFJ@_MWpsIPWpgfYc~DCM0u%rg000080N_fRR#N3XRWAh -q0459o02}}S00000000000Jecc!JX>N37a&BR4FLiWjY;!MXY-wU+E^v8JO928D02BZK00; -o!N}5(`YVO4#2LJ&66951m00000000000002CfzLez0B~t=FJEbHbY*gGVQepTbZKmJFKA(NXk~LQaC -uNm0Rj{N6aWAK2ms(pnpW3;5u>63000{U001oj0000000000006duDn$eUaA|NaUukZ1WpZv|Y%g_mX ->4;ZX>Mv|V{~70Wn*=6Wpr|3ZgX&Na&#_mc~DCM0u%rg000080N_fRR{3)aly?mP0B|h;03HAU00000 -000000Jeb_M+5+HX>c!JX>N37a&BR4FLiWjY;!McZ)ay|Zf7oVc~DCM0u%rg000080N_fRR-F>M)-f9 -Z0LWGV02=@R00000000000Jee3R0IHUX>c!JX>N37a&BR4FLiWjY;!MdX>(&PaCuNm0Rj{N6aWAK2ms -(pnpQis46t_r005~30012T0000000000006duG;jm}aA|NaUukZ1WpZv|Y%g_mX>4;ZZEs{{Y;!Jfc~ -DCM0u%rg000080N_fRR>4fIqtF8Y06Yi)03ZMW00000000000JeeVaRdNxX>c!JX>N37a&BR4FLiWjY -;!MgVPk7yXK8L{E^v8JO928D02BZK00;o!N}5(&`C(i91pok35dZ)u00000000000002Cf%J6*0B~t= -FJEbHbY*gGVQepTbZKmJFLPydb#QcVZ)|g4Vs&Y3WG--dP)h*<6aW+e000O8;7XcS@r{%i#|r=e@FM^ -KApigX0000000000wt+Q#1ORYpa4%nJZggdGZeeUMb#!TLb1!psVsLVAV`X!5E^v8JO928D02BZK00; -o!N}5*1Iuuml2><{V9smFz00000000000002Cfjfu<0B~t=FJEbHbY*gGVQepTbZKmJFLY&Xa9?C;ax -QRrP)h*<6aW+e000O8;7XcSJAX>MmOaCuNm0Rj{N6aWAK2ms(pnpS?Hju$xt007?x000{R0000000000006dub({nM -aA|NaUukZ1WpZv|Y%g_mX>4;Zb#iQTE^v8JO928D02BZK00;o!N}5(pw&sZ+1pokm4FCWk000000000 -00002Cf#;tD0B~t=FJEbHbY*gGVQepTbZKmJFLr5ibai2DWo~vZaCuNm0Rj{N6aWAK2ms(pnpW--D5y -&Y006}i000~S0000000000006duMWqA)aA|NaUukZ1WpZv|Y%g_mX>4;ZcW7m0Y%XwlP)h*<6aW+e00 -0O8;7XcSFRk9iF984mR00419RL6T0000000000wt>p41ORYpa4%nJZggdGZeeUMc4KodUtei%X>?y-E -^v8JO928D02BZK00;o!N}5*v3Jidy1ONcP4FCWe00000000000002Cfi$fI0B~t=FJEbHbY*gGVQepU -V{004Fr0015U0000000000006du`^N -+TaA|NaUukZ1WpZv|Y%g|Wb1!XWa$|LJX<=+GaCuNm0Rj{N6aWAK2ms(pnpW&XmM&xt007Y~0018V00 -00000000006duEzSf0aA|NaUukZ1WpZv|Y%g|Wb1!psVs>S6b7^mGE^v8JO928D02BZK00;o!N}5(iy -V$aX7ytkpSpWbd00000000000002CfzI3n0B~t=FJEbHbY*gGVQepUV{Mt -BUtcb8c~DCM0u%rg000080N_fRR?_w4&jBF-0QH6d01^NI00000000000Jec9`~(1SX>c!Jc4cm4Z*n -hlX?QMhc~DCM0u%rg000080N_fRR>Li9Lj_F$0EI{a03ZMW00000000000Jecw9R&bzX>c!Jc4cm4Z* -nhmd2nfNXJ2J_bY*UHX>V?GE^v8JO928D02BZK00;o!N}5(m`wQ4H0RRBp0RR9N00000000000002Cf -tqRs0B~t=FJE?LZe(wAFLq^aWN&gVba-@7O928D02BZK00;o!N}5&ybDXyj0RRBe0RR9b0000000000 -0002Cf&Xg-0B~t=FJE?LZe(wAFJob2Xk}w>Zgg^QY%gD5X>MtBUtcb8c~DCM0u%rg000080N_fRR?c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eUt?`#E^v8JO92 -8D02BZK00;o!N}5)a=}f=>1pol46951s00000000000002CfzxjV0B~t=FJE?LZe(wAFJob2Xk}w>Zg -g^QY%gJCVQ_S1axQRrP)h*<6aW+e000O8;7XcS5lF+qT>=0A{{;X5ApigX0000000000wt*9N1pshqa -4%nWWo~3|axY_HV`yb#Z*FvQZ)`7PVPj}zE^v8JO928D02BZK00;o!N}5)tHL1E!0RR9B0{{Rb00000 -000000002CfvZgg^QY%gPPZE#_9E^v8JO928D02BZK00;o!N}5( -*7DzGZ5dZ)nKmY(H00000000000002Cfj)W#0B~t=FJE?LZe(wAFJob2Xk}w>Zgg^QY%gPPZgg^QY;0 -w6E^v8JO928D02BZK00;o!N}5&(fxlfz1^@tR4*&os00000000000002CfohBe0B~t=FJE?LZe(wAFJ -ob2Xk}w>Zgg^QY%gYMY-M+HVQ_F|axQRrP)h*<6aW+e000O8;7XcSN_1|4?F9e;IuHN=CIA2c000000 -0000wt@JP1pshqa4%nWWo~3|axY_HV`yb#Z*FvQZ)`7UWp#3Cb98BAb1rasP)h*<6aW+e000O8;7XcS -9*Jjx7zqFX!5aVoB>(^b0000000000wt*>`1pshqa4%nWWo~3|axY_HV`yb#Z*FvQZ)`7fWpZg@Y-xI -BE^v8JO928D02BZK00;o!N}5)j5k_J%0RR970{{Rc00000000000002CfrO$30B~t=FJE?LZe(wAFJo -b2Xk}w>Zgg^QY%h0mVQ_F|axQRrP)h*<6aW+e000O8;7XcSjsAzepa1{>@&Et;D*ylh0000000000wt -@Gf1pshqa4%nWWo~3|axY_HV`yb#Z*FvQZ)`7PVPj}zb1z?CX>MtBUtcb8c~DCM0u%rg000080N_fRR -yaU7m~96D0GAX104)Fj00000000000JeePqy+$QX>c!Jc4cm4Z*nhVVPj}zV{dMBa&K%eV_{=xWpgiP -X>4U*V_{=xWiD`eP)h*<6aW+e000O8;7XcSUefd&!2tjO2?PKDE&u=k0000000000wt<+e1pshqa4%n -WWo~3|axY_HV`yb#Z*FvQZ)`7PVPj}zb1!mbWNC9>V_{=xWiD`eP)h*<6aW+e000O8;7XcS=R5?gQ2+ -n{UH||99{>OV0000000000wt=Ot1pshqa4%nWWo~3|axY_La&&2CX)j-2X>MtBUtcb8c~DCM0u%rg00 -0080N_fRRxco};hq2h0RI3003QGV00000000000JecMuLS^bX>c!Jc4cm4Z*nhVWpZ?BW@#^9Uu|J&Z -eL$6aCuNm0Rj{N6aWAK2ms(pnpQ8;zh*p20stX11OOfY0000000000006du4zL9PaA|NaUv_0~WN&gW -V`Xx5X=Z6JV_{=ua&#_mWo=MP0Rj{N6aWAK2ms(pnpVh0nV-r8006fT000{R0000000000006duhWZB -paA|NaUv_0~WN&gWV`Xx5X=Z6JV{dY0E^v8JO928D02BZK00;o!N}5*NNtf2i1polO5&!@n00000000 -000002CfrOV0000000000wtc!Jc4cm4Z*nhVXkl_>WppoMX=gQX -a&KZ~axQRrP)h*<6aW+e000O8;7XcSEG^V_p$Py0Fed;2CjbBd0000000000wt-4R2mo+ta4%nWWo~3 -|axY_OVRB?;bT4CQVRB??b98cPVs&(BZ*DGdc~DCM0u%rg000080N_fRRy5(hA;1Ix080-504V?f000 -00000000JecJO$Y#RX>c!Jc4cm4Z*nhVXkl_>WppoNXkl`5Wprn9Z*_2Ra&KZ~axQRrP)h*<6aW+e00 -0O8;7XcS5#q;SKnMT;EENC%Bme*a0000000000wt+WN2mo+ta4%nWWo~3|axY_OVRB?;bT4CQVRCb2b -Z~NSVr6nJaCuNm0Rj{N6aWAK2ms(pnpQcpD}l)c005K@001cf0000000000006duxmpMSaA|NaUv_0~ -WN&gWV`yP=WMyZfA3JVRU6}VPj}%Ze=cTc~DCM0u%rg000080N_fRRc!Jc4cm4Z*nhVXkl_>WppoNZ)9n1XLEF6bY*Q}V`yn^Wn^h%bS`jtP)h -*<6aW+e000O8;7XcSg;B-=Zvy}TLA^-pY0000000000wt*&M2mo+ta4%nWWo~3|axY_OVRB?;bT -4CYIW#$Na&KZ~axQRrP)h*<6aW+e000O8;7XcSA=kVX;{pHxlLi0)8~^|S0000000000wt>}U2mo+ta -4%nWWo~3|axY_OVRB?;bT4IYb!~GlaCuNm0Rj{N6aWAK2ms(pnpW5o2=;CT005>B001BW0000000000 -006du@@NPEaA|NaUv_0~WN&gWV`yP=WMygTaCuNm0Rj{N6aWAK2ms -(pnpP*_s)bwy003SO001HY0000000000006duNp%PSaA|NaUv_0~WN&gWV`yP=WMyvJ_7&%*#-arA^-pY0000000000wtc!Jc4cm4Z*nhVXkl_>WppoRVlp!^GH`NlVr6nJaCuNm0Rj{N6aWAK2ms(pnpU3|J((I4007B -2001KZ0000000000006du(fpj00000000000002Cfh-dV0B~t=FJE?LZe(wAFJow7a%5$6FKTIXW^ -!e5E^v8JO928D02BZK00;o!N}5(mR1xl6mp=ml0N4fq03rYY00000000000Jec< -bqN4)X>c!Jc4cm4Z*nhVXkl_>WppoUZ)jm+aB^>AWpXZXc~DCM0u%rg000080N_fRR;%8m)9Dld0Iz8 -P0384T00000000000JeeUcnJV-X>c!Jc4cm4Z*nhVXkl_>WppoUaAR(CcrI{xP)h*<6aW+e000O8;7X -cSb4qF4UmXAda+m=CDF6Tf0000000000wt)$b2>@_ua4%nWWo~3|axY_OVRB?;bT4dSZf9b3Y-eF|X< -=?{Z)9a`E^v8JO928D02BZK00;o!N}5(lLtEjW7XSdXfB^s{00000000000002Cfv>9x0B~t=FJE?LZ -e(wAFJow7a%5$6FKl6MXJ>L{WovD3WMynFaCuNm0Rj{N6aWAK2ms(pnpRvmQl;7!005MK0RScd00000 -00000006duk;4f9aA|NaUv_0~WN&gWV`yP=WMyc!Jc4 -cm4Z*nhVXkl_>WppoWVQyz~b#rrRVQy`2WMynFaCuNm0Rj{N6aWAK2ms(pnpR_QtW6#p004H80RSWb0 -000000000006dux*ZAtaA|NaUv_0~WN&gWV`yP=WMyc!Jc4c -m4Z*nhVXkl_>WppoWVRUJ3F>rEkVr6nJaCuNm0Rj{N6aWAK2ms(pnpS5I$$JP0006xg001Qb0000000 -000006duL|h60aA|NaUv_0~WN&gWV`yP=WMyAWpXZXc~DCM0u%rg000080N_fRR -++Y&k~#$d0D}$y044wc00000000000JedTWC{RqX>c!Jc4cm4Z*nhVXkl_>WppoXVq<7wa&u*LaB^>A -WpXZXc~DCM0u%rg000080N_fRRzJEWEu8}Z08c!Jc4cm4Z*nh -VXkl_>WppoXVqa&L8TaB^>AWpXZXc~DCM0u%rg000080N_fRRw-8I@=*=|0JnAk0384T00000000 -000JeedZ3+NzX>c!Jc4cm4Z*nhVXkl_>WppoXVqXb8vERVr6nJaCuNm0Rj{N6aWAK2ms(pnp -R3HZaLNu0000w001Ze0000000000006duoskLvaA|NaUv_0~WN&gWV`yP=WMy&H&Q3wD4IUxW5Bme*a0000000000wt=~!3IK3va4%nWWo~3| -axY_OVRB?;bT4&uW-&H1GH`NlVr6nJaCuNm0Rj{N6aWAK2ms(pnpXcm`?y~O008_7001EX000000000 -0006duOsWb1aA|NaUv_0~WN&gWV`yP=WMyAWpXZXc~DCM0u%rg000080N_fRR-W;lL%9 -F|0Q3L=03HAU00000000000JeeZt_lEfX>c!Jc4cm4Z*nhVXkl_>WppogWpZc!Jc4cm4Z*nhVXkl_>WppoNY-ulFU -ukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpUW_Hc!Jc4cm4Z*nhVXkl_>WppoXWprU=VRT_HUtei%X>?y-E^v8JO928D02BZK00; -o!N}5(T1ya~85dZ-AGyni800000000000002Cfu^+z0B~t=FJE?LZe(wAFJow7a%5$6FKuOXVPs)+VJ -~c9ZfA92XJvCPaCuNm0Rj{N6aWAK2ms(pnpTxwk4VM<000UB001BW0000000000006du8pjF%aA|NaU -v_0~WN&gWV{dG4a$#*@FJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcSQrWGBiUR-u+6e#v8~^|S00000 -00000wt*hV3IK3va4%nWWo~3|axY_VY;SU5ZDB8AZgXiaaCuNm0Rj{N6aWAK2ms(pnpRYMtY!vEaA|NaUv_0~WN&gWV{dG4a$#*@FJW$TX>@OQX>KzzE^v8JO928D02B -ZK00;o!N}5*8gOr9w1ONd23;+Nk00000000000002CfnV4P0B~t=FJE?LZe(wAFJo_PZ*pO6VJ~TJX> -@5}Y-w|4E^v8JO928D02BZK00;o!N}5)>JvhnS1pojg7ytkr00000000000002Cf#uu^0B~t=FJE?LZ -e(wAFJo_PZ*pO6VJ~-SZZk42aCuNm0Rj{N6aWAK2ms(pnpQ)tN7U^G007<_0018V0000000000006du -{Nf4#aA|NaUv_0~WN&gWV{dG4a$#*@FL!BfbY*gFE^v8JO928D02BZK00;o!N}5*v#!nGV0000>0000 -c00000000000002CfhOt-0B~t=FJE?LZe(wAFJo_PZ*pO6VJ~!Lb98erUtei%X>?y-E^v8JO928D02B -ZK00;o!N}5)bMV_qh0ssIP3jhEo00000000000002Cfw$@k0B~t=FJE?LZe(wAFJo_PZ*pO6VJ~!Lb9 -8erVQzD2Uvy=2bS`jtP)h*<6aW+e000O8;7XcS7Haq2Hwgd$wkZGrE&u=k0000000000wt?&I3IK3va -4%nWWo~3|axY_VY;SU5ZDB8TWpi|MFJW$TX>@OQX>KzzUvy=2bS`jtP)h*<6aW+e000O8;7XcSV|XKJ -<^=!%RT=;QEdT%j0000000000wt;T<3IK3va4%nWWo~3|axY_VY;SU5ZDB8TWpi|MFKKRRbZKF1X>(; -?bY*jNE^v8JO928D02BZK00;o!N}5*K7i?(j0RR9>2LJ#m00000000000002CfuH>f0B~t=FJE?LZe( -wAFJo_PZ*pO6VJ~!Lb98erX>(z8ba`KNWpi{caCuNm0Rj{N6aWAK2ms(pnpQx_GVy=`001`x001KZ00 -00000000006du(f`Y9RL6T00000000 -00wt<5N3jlCwa4%nWWo~3|axY|Qb98KJVlQKFZE#_9E^v8JO928D02BZK00;o!N}5*6H+b5zFaQAY$p -8Q!00000000000002Cfdn!O0B~t=FJE?LZe(wAFJx(RbZlv2FJxhKVPau(WiD`eP)h*<6aW+e000O8; -7XcSDv}@B@e}|6Vo?A98~^|S0000000000wt@3v3jlCwa4%nWWo~3|axY|Qb98KJVlQcKWMz0RaCuNm -0Rj{N6aWAK2ms(pnpVc(5KS#J000-u0018V0000000000006du9(W4?aA|NaUv_0~WN&gWWNCABY-wU -IY;R*>bZ>HVE^v8JO928D02BZK00;o!N}5)9rZs155C8z%IRF4300000000000002CfrzUM0B~t=FJE -?LZe(wAFJx(RbZlv2FKuCNX=Y_}bS`jtP)h*<6aW+e000O8;7XcSmm)w!1_uBD!V>@h9smFU0000000 -000wt+Fc3jlCwa4%nWWo~3|axY|Qb98KJVlQoBa%*LBb1rasP)h*<6aW+e000O8;7XcSK-pa)btM1*d -7A(L9{>OV0000000000wt;iQ3jlCwa4%nWWo~3|axY|Qb98KJVlQoFbYWy+bYU)Vc~DCM0u%rg00008 -0N_fRR-L`ofUpYy07NPP03ZMW00000000000Jec8=?egGX>c!Jc4cm4Z*nhWX>)XJX<{#OWpi(Ja${w -4E^v8JO928D02BZK00;o!N}5)Sn{?EU6#xLXMgRaF00000000000002CffMx$0B~t=FJE?LZe(wAFJx -(RbZlv2FLPsZX>fFNE^v8JO928D02BZK00;o!N}5)LN_i6MyZ`_IegOa*00000000000002Cf!zuW0B -~t=FJE?LZe(wAFJx(RbZlv2FLX09E@gOSP)h*<6aW+e000O8;7XcSoCtaWPCfwu0LlUY9{>OV000000 -0000wt)c13;=Lxa4%nWWo~3|axY|Qb98KJVlQ+yG%aCrZ7yYaWl&220u%rg000080N_fRR$OHR8I#Na -005=|02=@R00000000000JedP1`YslX>c!Jc4cm4Z*nhWX>)XJX<{#QHZ(3}cx6ya0Rj{N6aWAK2ms( -pnpO>^6j00000000000002Cf$TI70B~t=FJE?LZ -e(wAFJx(RbZlv2FLyICE@gOSP)h*<6aW+e000O8;7XcSEkq02^(_Ga0FnX#9{>OV0000000000wt-9O -4*+m!a4%nWWo~3|axY|Qb98KJVlQ_#G%aCrZ7yYaWl&220u%rg000080N_fRR{rp!E>6V&0052w02=@ -R00000000000JedB7ZCt(X>c!Jc4cm4Z*nhWX>)XJX<{#THZ(3}cx6ya0Rj{N6aWAK2ms(pnpVVTw>T -Us004Tc000~S0000000000006du1l%a4%nWWo~3|axY|Qb98cVFJE72ZfSI1U -oLQYP)h*<6aW+e000O8;7XcS9aOw&JOBUyKmY&$9smFU0000000000wt=|_5&&>%a4%nWWo~3|axY|Q -b98cVFJE76VQFq(UoLQYP)h*<6aW+e000O8;7XcSlL`lV6fFP%vcLcU8~^|S0000000000wt+DT5&&> -%a4%nWWo~3|axY|Qb98cVFJx(RbaHPlaCuNm0Rj{N6aWAK2ms(pnpTB)x~Loh002<~000~S00000000 -00006due>M^TaA|NaUv_0~WN&gWX=H9;FJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcSWia+LAp-yaE) -4(x82|tP0000000000wt>|*5&&>%a4%nWWo~3|axZCQZecHDZ)9a-E^v8JO928D02BZK00;o!N}5(hr -w0ze0000%0RR9R00000000000002Cfh{`{0B~t=FJE?LZe(wAFKJ|MVJ~BEZE#_9E^v8JO928D02BZK -00;o!N}5*wI2yp=3jhF?G5`P=00000000000002Cfh9Z=0B~t=FJE?LZe(wAFKJ|MVJ~BEa%C=Xc~DC -M0u%rg000080N_fRRslBCm>wkn09UO502}}S00000000000JecVND=^WX>c!Jc4cm4Z*nhbWNu+EX=H -9;WMOn+E^v8JO928D02BZK00;o!N}5(29Dq|H0{{S72LJ#a00000000000002Cfs}0$0B~t=FJE?LZe -(wAFKJ|MVJ~TJbaG*CXJvCPaCuNm0Rj{N6aWAK2ms(pnpQRZD8m;3000#L001BW0000000000006du@ -Ng0UaA|NaUv_0~WN&gWX=H9;FK}UFYhh<)Uu0o)VJ>iaP)h*<6aW+e000O8;7XcS6_mWCoSXmv%O(Q= -9RL6T0000000000wt+=)5&&>%a4%nWWo~3|axZCQZecHVbaON|WMOn+E^v8JO928D02BZK00;o!N}5( -fGBg+T0RRAO1ONaZ00000000000002CfgBDK0B~t=FJE?LZe(wAFKu&YaA9L>FJE72ZfSI1UoLQYP)h -*<6aW+e000O8;7XcSJ3F1ztpNZ4IRpRzApigX0000000000wt-C$698~&a4%nWWo~3|axZOjXK-O-Yc -FMZV`Xr3X>V?GE^v8JO928D02BZK00;o!N}5)CSNR$J1^@uR7XSbn00000000000002CfjJTr0B~t=F -JE?LZe(wAFKu&YaA9L>FJ*XiE^v8JO928D02BZK00;o!N}5*pNYAS38~_0Dh5!H`00000000000002C -fo>TS0B~t=FJE?LZe(wAFKu&YaA9L>FJ@tEY+_+!Yc6nkP)h*<6aW+e000O8;7XcSM&V-~W&r>Il>z_ -&A^-pY0000000000wtMmPUteKjZ*_EEUoLQYP)h*<6aW+e000 -O8;7XcS6|It>^Z)<=@c{q;ApigX0000000000wt+i1698~&a4%nWWo~3|axZXUV{2h&X>MmPUtei%X> -?y-E^v8JO928D02BZK00;o!N}5(1Dmr6`4gdh)EC2u_00000000000002Cfo?ey0B~t=FJE?LZe(wAF -K}UFYhh<;Zf7rFZDDSCY-w(FcrI{xP)h*<6aW+e000O8;7XcSopdo8Fb4nt8W8{hBLDyZ0000000000 -wt+WD698~&a4%nWWo~3|axZXUV{2h&X>MmPUu|`BY;0+6b$Bjtc~DCM0u%rg000080N_fRRxqRTl3)P -<0G9;-03-ka00000000000JedsPZI!eX>c!Jc4cm4Z*nhiVPk7yXK8L{FJE(Xa&=>Lb#i5ME^v8JO92 -8D02BZK00;o!N}5(}{OUh@3IG5nApig%00000000000002Cfl5&m0B~t=FJE?LZe(wAFK}UFYhh<;Zf -7rTVRCC_a&sc!Jc -4cm4Z*nhiVPk7yXK8L{FLGsZb!l>CZDnqBb1rasP)h*<6aW+e000O8;7XcSHIncK=o$b3o^=2KBLDyZ -0000000000wt+Zf698~&a4%nWWo~3|axZXUV{2h&X>MmPb8uy2X=Z62x0384T00000000000Jec)eiHz2X>c!Jc4cm4Z*nhiVPk7yXK8L{FLYsNb1rasP)h -*<6aW+e000O8;7XcSLG$P{&IJGfXb=DZ9smFU0000000000wt*;+698~&a4%nWWo~3|axZXUV{2h&X> -MmPb#!TLb1rasP)h*<6aW+e000O8;7XcS3o;9(?+*X~NjU%jAOHXW0000000000wt+I1698~&a4%nWW -o~3|axZXUV{2h&X>MmPc4cyNX>V>WaCuNm0Rj{N6aWAK2ms(pnpWpOGB`hU002y@0RSZc0000000000 -006duU#1fPaA|NaUv_0~WN&gWaBF8@a%FRGb#h~6b1z?CX>MtBUtcb8c~DCM0u%rg000080N_fRRw?o -d1DOQ?08>T)03-ka00000000000JeeQ8WaFc!Jc4cm4Z*nhiY+-a}Z*py9X>xNfUtei%X>?y-E^v -8JO928D02BZK00;o!N}5)AS;*IO0RRB51ONae00000000000002CfxI9T0B~t=FJE?LZe(wAFK}#ObY -^dIZDeV3b1z?CZDDC{Utcb8c~DCM0u%rg000080N_fRR#zMP&Vd8~0M8Hr03!eZ00000000000Jec~A -`}2{X>c!Jc4cm4Z*nhiY+-a}Z*py9X>xNfVQyq{Z)s#MaCuNm0Rj{N6aWAK2ms(pnpQ0doc^N)002rB -0018V0000000000006duGba=PaA|NaUv_0~WN&gWaBN|8W^ZzBWNC79FJW+LE^v8JO928D02BZK00;o -!N}5)q*If&W0ssK;3IG5h00000000000002CffFqh0B~t=FJE?LZe(wAFK}#ObY^dIZDeV3b1!XSV{d -aVaCuNm0Rj{N6aWAK2ms(pnpRm0SC#h$000;r001BW0000000000006du+%FUWaA|NaUv_0~WN&gWaB -N|8W^ZzBWNC79FLiEdcrI{xP)h*<6aW+e000O8;7XcShBLDyZ0000000000wt*2h6 -aa8(a4%nWWo~3|axZXfVRUA1a&2U3a&s?sWpZc!Jc4cm4Z*nhiY+-a}Z*py9X>xNfcWG{9Z+CMpaCuNm0Rj{N6aWA -K2ms(pnpPbeZxf&d006fO001BW0000000000006du-#-)paA|NaUv_0~WN&gWaCv8KWo~qHFJE72ZfS -I1UoLQYP)h*<6aW+e000O8;7XcS-!|}H=>Px#VF3UDAOHXW0000000000wt>Aw6aa8(a4%nWWo~3|ax -ZXsXKiI}baO9XUu|J&ZeL$6aCuNm0Rj{N6aWAK2ms(pnpQuH>@&$1004zt0018V0000000000006du< -V6$!aA|NaUv_0~WN&gWaCv8KWo~qHFJo4?5axQRrP)h -*<6aW+e000O8;7XcS4fiyVngjp}6 -B9|`~f9smFU0000000000wt=CH6aa8(a4%nWWo~3|axZXsXKiI}baO9oY;|X8ZZ2?nP)h*<6aW+e000 -O8;7XcSWhwb>OauS`01N;CAOHXW0000000000wt+g36aa8(a4%nWWo~3|axZXsXKiI}baO9qWoKo0Z* -X)jaCuNm0Rj{N6aWAK2ms(pnpQ%%_zi#r000yW0018V0000000000006du#FP{OaA|NaUv_0~WN&gWa -Cv8KWo~qHFLPsIZf<3AE^v8JO928D02BZK00;o!N}5(lY6e-52LJ%#8UO$x00000000000002Cfq|J6 -0B~t=FJE?LZe(wAFK~HhZDnqBb1!pnXlZVEWq5QhaCuNm0Rj{N6aWAK2ms(pnpSodM<1XD0040q0012 -T0000000000006duP@xn6aA|NaUv_0~WN&gWaCv8KWo~qHFLQKxY-KKRc~DCM0u%rg000080N_fRRwE -y(n0f~Q04Nv$0384T00000000000JecEs1yKjX>c!Jc4cm4Z*nhid1q~9Zgg`mbZ={AZZ2?nP)h*<6a -W+e000O8;7XcSdMJEAwoCv3)Aj%WApigX0000000000wt?WU6aa8(a4%nWWo~3|axZXsXKiI}baO9tZ -fSFLa%pa7E^v8JO928D02BZK00;o!N}5&*hqrUp3jhF?BLDy#00000000000002Cfz|vJ0B~t=FJE?L -Ze(wAFK~HhZDnqBb1!vtX>2ZVc~DCM0u%rg000080N_fRRwNX=^R6EN0K%OB04M+e00000000000Jee -T2o(TuX>c!Jc4cm4Z*nhid1q~9Zgg`mW@&76WpZ;bUtei%X>?y-E^v8JO928D02BZK00;o!N}5)aemd -SC1^@uS5&!@z00000000000002Cf!HV&0B~t=FJE?LZe(wAFK~HhZDnqBb1!CZa&2LBbY*gLFJE72Zf -SI1UoLQYP)h*<6aW+e000O8;7XcS^R&FU`2+v}2oL}OD*ylh0000000000wt+w|6##H)a4%nWWo~3|a -xZXsXKiI}baO9eZ*py6baZ8Mb1z?QVQ_G1Zf7oVc~DCM0u%rg000080N_fRR?p%0fO`Z00P+j~04V?f -00000000000JedGG!+1FX>c!Jc4cm4Z*nhid1q~9Zgg`mW^ZzBVRUq5a&s?YVqc!Jc4cm4Z*nhid1q~9Zgg`mW^ZzBVRUq5a&s?lbZBLAE^v8JO -928D02BZK00;o!N}5*Bqscq|0ssJ{2mk;s00000000000002Cfk~hh0B~t=FJE?LZe(wAFK~HhZDnqB -b1!CZa&2LBbY*gLFK}UQXK!s`a%**PE^v8JO928D02BZK00;o!N}5*G!|iAO1^@t-6951v000000000 -00002Cfs>;Z0B~t=FJE?LZe(wAFK~HhZDnqBb1!CZa&2LBbY*gLFLHEdE^v8JO928D02BZK00;o!N}5 -(LhzaGy2><}68~^|&00000000000002Cfz_%N0B~t=FJE?LZe(wAFK~HhZDnqBb1!CZa&2LBbY*gLFL -QQhE^v8JO928D02BZK00;o!N}5)y=w|av1^@s;5&!@z00000000000002Cf!(wf0B~t=FJE?LZe(wAF -K~HhZDnqBb1!CZa&2LBbY*gLFLY&cZE0>{Y%XwlP)h*<6aW+e000O8;7XcSBri9B?F#?^=`8>NE&u=k -0000000000wt;cG6##H)a4%nWWo~3|axZXsXKiI}baO9eZ*py6baZ8Mb1!sda&2jDVQexrHZE{^P)h* -<6aW+e000O8;7XcS%ZsXBc?MtBUtcb8c~DCM0u%rg000080N_fRR*3U1{QEfo0E8C-04D$d00000000000Jec>)D --}5X>c!Jc4cm4Z*nhid1q~9Zgg`mY-M<5a&s?VZDDY5X>MmOaCuNm0Rj{N6aWAK2ms(pnpQHWl7<8;0 -02bM001Qb0000000000006dus16nYaA|NaUv_0~WN&gWaCv8KWo~qHFKlIaWpZ;baCvlSZ*DGdc~DCM -0u%rg000080N_fRR;5yfKiLET09y?J04D$d00000000000JeeeITiqLX>c!Jc4cm4Z*nhid1q~9Zgg` -mb98xZWpgiIUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpUCxziMa=007e?001EX0000000000006du4L= -qDaA|NaUv_0~WN&gWaCvZHa&u{JXD?r0X>MtBUtcb8c~DCM0u%rg000080N_fRRxe1KsYVC@02&zp03 -ZMW00000000000Jed&OcnreX>c!Jc4cm4Z*nhid2nHJb7^j8FJWVJX>V?GE^v8JO928D02BZK00;o!N -}5)QMmPV{dY0E^v8JO928D02BZK00;o!N}5*5HXwA(3IG5MmPXk~10WpZ;aaCuNm0Rj{N6aWAK2ms(pnpP2Bt ->^(6008}B001BW0000000000006duH(3_|aA|NaUv_0~WN&gWaCvZHa&u{JXD@PPb9HQVb1rasP)h*< -6aW+e000O8;7XcS+wnENTMYmJS~LIvAOHXW0000000000wt;qX7XWZ+a4%nWWo~3|axZXsaA9(DX>Mm -PbY*jNX>MmOaCuNm0Rj{N6aWAK2ms(pnpS%Cw0Is1001K@001BW0000000000006du4}cc{aA|NaUv_ -0~WN&gWaCvZHa&u{JXD@YbX=86>WiD`eP)h*<6aW+e000O8;7XcSEl2)r?gsz>l^Os59RL6T0000000 -000wt;Jl7XWZ+a4%nWWo~3|axZXsaA9(DX>MmPb#!TLE^v8JO928D02BZK00;o!N}5*C=~GM<8UO%=T -mS$m00000000000002Cfs~UM0B~t=FJE?LZe(wAFK~HqVRCb6Zf7rKX<=t_VQnv8UukY>bYEXCaCuNm -0Rj{N6aWAK2ms(pnpS`3UzqCv008R&001Wd0000000000006du@U0gBaA|NaUv_0~WN&gWaCvZYZ)#; -@bYEz1Z)?y-E^v8JO928D02BZK00;o!N}5*PYjPN60001r0000c00000000000002Cfgr -CJ0B~t=FJE?LZe(wAFK~Hqa&Ky7V{~6=Z*OaJFJEJCZE#_9E^v8JO928D02BZK00;o!N}5)N7S+gb3I -G6*E&u=|00000000000002Cfyu8I0B~t=FJE?LZe(wAFK~Hqa&Ky7V{~6=Z*OaJFJEbGaBMDcc~DCM0 -u%rg000080N_fRR;cxgWE24a03rea05bpp00000000000Jed9x)%U&X>c!Jc4cm4Z*nhid2n)XYGq?| -UubV{YjZDOX>MO|a&Kd0b8|0WUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpWiWG{hnc006Hl001@s0000 -000000006du;JX(9aA|NaUv_0~WN&gWaCvZYZ)#;@bYEz1Z)BWpi^cUukY%aB^>BWpi -^baCuNm0Rj{N6aWAK2ms(pnpO_Jyc2i_0024^001BW0000000000006duR>v0raA|NaUv_0~WN&gWa% -FLKWpi|MFJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcSYxh7i0|5X4vjG4ABLDyZ0000000000wt)=K7 -XWZ+a4%nWWo~3|axZdaadl;LbaO9XUv_13b7^mGUtcb8c~DCM0u%rg000080N_fRR#!mv2YCVj0Cfcb -04D$d00000000000Jecp&=&x3X>c!Jc4cm4Z*nhkWpQ<7b98erUukZ1WpZv|Y+rSBX>4;YaCuNm0Rj{ -N6aWAK2ms(pnpS}6p!#wY006^N001BW0000000000006du4$~I^aA|NaUv_0~WN&gWa%FLKWpi|MFJW -Y1aCBvIb1rasP)h*<6aW+e000O8;7XcSC!YGyTLu6C=@Fq7XWZ+a4%nWWo -~3|axZdaadl;LbaO9ZaA_`Zc~DCM0u%rg000080N_fRRycQN-FyoG0Lv!;02}}S00000000000Jecr? -iT=XX>c!Jc4cm4Z*nhkWpQ<7b98erVRdw9E^v8JO928D02BZK00;o!N}5)j{=flQ0RR9$0ssIV00000 -000000002Cfe88+0B~t=FJE?LZe(wAFLGsZb!BsOb1!3Ma&&VpaCuNm0Rj{N6aWAK2ms(pnpObGiWpl -0000IB0015U0000000000006duock95aA|NaUv_0~WN&gWa%FLKWpi|MFJo_QaA9;VaCuNm0Rj{N6aW -AK2ms(pnpQ7RtdqSH004kU0018V0000000000006duGyWFV?GE^v8JO928D02BZK00;o!N}5)O@>(vA1ONah4*&oh00000000000002C -fm9b50B~t=FJE?LZe(wAFLGsZb!BsOb1!IRY;Z1cc~DCM0u%rg000080N_fRR;__Y7-sc!Jc4cm4Z*nhkWpQ<7b98erXm4+8b1rasP)h*<6aW+e000O8;7XcSWkA -^Jx+VYs*ogoD9smFU0000000000wt>DK7yxi-a4%nWWo~3|axZdaadl;LbaO9lZ)9a`b1rasP)h*<6a -W+e000O8;7XcS500885001BW0000000000006duT}BuHaA|NaUv_0~ -WN&gWa%FLKWpi|MFLPycb7^mGb1rasP)h*<6aW+e000O8;7XcSvUJuifCc~nix2<+Bme*a000000000 -0wt=c=7yxi-a4%nWWo~3|axZdaadl;LbaO9rbYXOLb6;a`WMy+MaCuNm0Rj{N6aWAK2ms(pnpRN~Ou1 -VG003YM001HY0000000000006duY;G6;aA|NaUv_0~WN&gWa%FLKWpi|MFLQKqbz^jOa%FQaaCuNm0R -j{N6aWAK2ms(pnpWwQ`@%OV007v50012T0000000000006du2XhzzaA|NaUv_0~WN&gWa%FLKWpi|MF -LiWjY;!Jfc~DCM0u%rg000080N_fRR$_k-57qzx02u-R03rYY00000000000Jed7oEQLbX>c!Jc4cm4 -Z*nhkWpi(Ac4cg7VlQ7`X>MtBUtcb8c~DCM0u%rg000080N_fRR!N*Di0Phw603!eZ000000000 -00JedTofrUcX>c!Jc4cm4Z*nhkWpi(Ac4cg7VlQxVZ+2;9WpZ;aaCuNm0Rj{N6aWAK2ms(pnpU<)z$! -HY002P-001KZ0000000000006du3Z)nTaA|NaUv_0~WN&gWa%FRGY<6XAX<{#OWpHnDbY*gLE^v8JO9 -28D02BZK00;o!N}5)CT($@K6aWApPyhfU00000000000002Cfq357yxi- -a4%nWWo~3|axZdab8l>RWo&6;FLQKqbz^jME^v8JO928D02BZK00;o!N}5&x00002000000000f0000 -0000000002Cfq=po0B~t=FJE?LZe(wAFLGsbZ)|pDY-wUIV{dJ6VRSEFUukY>bYEXCaCuNm0Rj{N6aW -AK2ms(pnpPXvE@xu^005i-001xm0000000000006du$-)=_aA|NaUv_0~WN&gWa%FRGY<6XAX<{#9Z* -6d4bT4CXY;0v?bZKvHb6;U%V=i!cP)h*<6aW+e000O8;7XcSVS}l~00;m8$`=3t8~^|S0000000000w -t;%X7yxi-a4%nWWo~3|axZdeV`wj5UukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpSOn%=rHc0015#000~S -0000000000006duw96O(aA|NaUv_0~WN&gWa%p2|FJE76VQFq(UoLQYP)h*<6aW+e000O8;7XcS-@|| -wHwpj%a3=r&AOHXW0000000000wt?-}7yxi-a4%nWWo~3|axZdeV`wj5V`Xe?Uw3I_bZB!faCuNm0Rj -{N6aWAK2ms(pnpS@u3831r;a4%nWW -o~3|axZdeV`wj5Wo>V2XaBN{?WiD`eP)h*<6aW+e000O8;7XcSL+eR2FarPpGzb6yA^-pY00000 -00000wt?bR831r;a4%nWWo~3|axZdeV`wj5Wq5FJa&%v2Z*py6bS`jtP)h*<6aW+e000O8;7XcSNz}L -7n*aa+2>}2A9smFU0000000000wt-Sv831r;a4%nWWo~3|axZdeV`wj5Wq5RDZgXjGZZ2?nP)h*<6aW -+e000O8;7XcS?ZLwqhXDWp9|HgY8vpH831r;a4%nWWo~3|axZdeV`wj5W@&6?Zf -`Ddc~DCM0u%rg000080N_fRRs(c!Jc4cm4Z*nhkX -=7+FUukZ0aAjk3E^v8JO928D02BZK00;o!N}5&{tL7WG0{{S-3;+Nh00000000000002CftP0)0B~t= -FJE?LZe(wAFLG&PXfI!EZ)aa}Wo~3;axQRrP)h*<6aW+e000O8;7XcSx)16eB>?~c)C2$k82|tP0000 -000000wt3W@&6?E^v8JO928D02BZK00;o!N} -5&|p;s-11ONb+8vpP0000000000006duhI1JJaA|NaUv_0~WN&gWa%p2|FJEwJ -V{0yOc~DCM0u%rg000080N_fRRsiXjWYh)#0ALjW02%-Q00000000000JedibQu6}X>c!Jc4cm4Z*nh -kX=7+FUvgn|X>TrYc~DCM0u%rg000080N_fRR>m={R9_AN0MAVT0384T00000000000Jedudl>+5X>c -!Jc4cm4Z*nhkX=7+FUvqG2Zf<3Ab1rasP)h*<6aW+e000O8;7XcS=1~*U+yDRoUjYCB8UO$Q0000000 -000wt+;7831r;a4%nWWo~3|axZdeV`wj5b97;2Yc6nkP)h*<6aW+e000O8;7XcSVA>K~c!Jc4cm4Z*nhkX=7+FUw3k0a4v9pP)h*<6aW+e000O8;7XcS4r@hGjR61vdIJCe -7XSbN0000000000wt;x5831r;a4%nWWo~3|axZdeV`wj7Vq-3Fc~DCM0u%rg000080N_fRR*0o;!>9- -V0Dvd}02u%P00000000000JecTs~G@rX>c!Jc4cm4Z*nhkX=7+FVQgtc!Jc4cm4Z*nhkX=7+FV{dGAZEkZeaCuNm0Rj{N6aWAK2ms(pnpXS^ -YMxkC004V~0RS5S0000000000006du)$JJoaA|NaUv_0~WN&gWa%p2|FJo_Rb8l>AE^v8JO928D02BZ -K00;o!N}5)SOwvi-0RR991pojY00000000000002Cfo4M*0B~t=FJE?LZe(wAFLG&PXfI=LZgX^UVQF -qIaCuNm0Rj{N6aWAK2ms(pnpW!;F5Sij004Ov0015U0000000000006due?=MqaA|NaUv_0~WN&gWa% -p2|FJo_RbYW?3WpZ;aaCuNm0Rj{N6aWAK2ms(pnpPbVJ0b7~008D0000{R0000000000006duflC?ya -A|NaUv_0~WN&gWa%p2|FJo_RbaHQOE^v8JO928D02BZK00;o!N}5*I^2FW`2LJ$)9{>O%0000000000 -0002CfvQs)0B~t=FJE?LZe(wAFLG&PXfI@CW?^+~bYF9Hd2D5KE^v8JO928D02BZK00;o!N}5(VN3Wi -~0RRBZ0{{RV00000000000002Cf%#e*0B~t=FJE?LZe(wAFLG&PXfI@GVP|e{b7d}Yc~DCM0u%rg000 -080N_fRR^SZ>Mfd{%0L2La02u%P00000000000JeegTp9pyX>c!Jc4cm4Z*nhkX=7+FWo>V2X)bViP) -h*<6aW+e000O8;7XcSB1j?A?EnA(f&u^l8UO$Q0000000000wt*mF8US!4U*aB^>Wc`k5yP)h*<6aW+e000O8;7XcS-vH^DLIeN+%n1Mh8~^|S0000000000wt)_ -18US!4V4X?kTYaCuNm0Rj{N6aWAK2ms(pnpQ{jA~8V=003|$0018V000 -0000000006duifI}EaA|NaUv_0~WN&gWa%p2|FKB6JXl!X`Xmn+AE^v8JO928D02BZK00;o!N}5&%`U -+4h1pol36951h00000000000002Cfe3XP0B~t=FJE?LZe(wAFLG&PXfJAWZ*DGdc~DCM0u%rg000080 -N_fRRye^}$cqF30JIDM02=@R00000000000Jec?dKv(5X>c!Jc4cm4Z*nhkX=7+FYISgVbY*fbaCuNm -0Rj{N6aWAK2ms(pnpUx4%--(}006f(000^Q0000000000006duEq@vSaA|NaUv_0~WN&gWa%p2|FKl6 -XZ*_DoaCuNm0Rj{N6aWAK2ms(pnpVo7xYM-`006-^000;O0000000000006duRE-({aA|NaUv_0~WN& -gWa%p2|FKlUcWiD`eP)h*<6aW+e000O8;7XcS_O^!vFa!VqQw{(C9{>OV0000000000wt+vK8US!c!Jc4cm4Z*nhkX=7+FY;R|0X>MmOaCuNm0Rj{N6aWAK2ms(pnpT@bVqW_R000Ic -000^Q0000000000006du{H_`RaA|NaUv_0~WN&gWa%p2|FKuCRYjtogaCuNm0Rj{N6aWAK2ms(pnpXd -;7zAtu006lZ000{R0000000000006duFS!~3aA|NaUv_0~WN&gWa%p2|FKuOEb9HiME^v8JO928D02B -ZK00;o!N}5*bhu;h11pokQ6951k00000000000002Cfz-Yl0B~t=FJE?LZe(wAFLG&PXfJSKWMpY>XD -)DgP)h*<6aW+e000O8;7XcS4#pLNa{&MVJOcm#82|tP0000000000wt?`(8US!E^v8JO928D02BZK00;o!N}5(U06t&41ONa;4FCWe00000000000002Cfttn|0B~t=FJE?L -Ze(wAFLG&PXfJSKY-MzGWiD`eP)h*<6aW+e000O8;7XcSCS=Ms@d*F`PALEY82|tP0000000000wtOhi~s-{00000000 -000002Cfwt8e0B~t=FJE?LZe(wAFLG&PXfJSbWps3TE^v8JO928D02BZK00;o!N}5)i(`0^OE&u>J=> -Py600000000000002CffMx_0B~t=FJE?LZe(wAFLG&PXfJSbZ)b94b8{|mc~DCM0u%rg000080N_fRR -^Zr}Gz$p;0OcP503ZMW00000000000JedyBO3s4X>c!Jc4cm4Z*nhkX=7+FaB^>Fa%FRKUt(c$E^v8J -O928D02BZK00;o!N}5&#aOYX&3IG5nEC2u+00000000000002Cf%hyM0B~t=FJE?LZe(wAFLG&PXfJS -bZ*6dNE^v8JO928D02BZK00;o!N}5(!nETT?0ssJS1pojX00000000000002CffP6!0B~t=FJE?LZe( -wAFLG&PXfJSbZ**^CZ)`4bc~DCM0u%rg000080N_fRR$aob*L45@0Hy!{02%-Q00000000000JedLIv -W6RX>c!Jc4cm4Z*nhkX=7+Fa%E>}Z*DGdc~DCM0u%rg000080N_fRR@c|jQxpXN08bGB02lxO000000 -00000JecNI~xFSX>c!Jc4cm4Z*nhkX=7+Fa%FIGE^v8JO928D02BZK00;o!N}5)ZX#;IV1pom05dZ)f -00000000000002Cfqp<60B~t=FJE?LZe(wAFLG&PXfJYgY-KKRc~DCM0u%rg000080N_fRRu6^sD|7? -^02>Pc02u%P00000000000JeeoMH>KcX>c!Jc4cm4Z*nhkX=7+Fb7OCCWiD`eP)h*<6aW+e000O8;7X -cSKQ;cYQUU+~HwFLz8UO$Q0000000000wt=Kd8vt-=a4%nWWo~3|axZdeV`wjPV{&C>ZZ2?nP)h*<6a -W+e000O8;7XcSV^uN6G86y+w_X4M8vp&%)<5&d%0P_$402=@R00000000000JeddVH*H&X>c!Jc4cm4Z*nhk -X=7+Fb8u;HZe?;VaCuNm0Rj{N6aWAK2ms(pnpT`BF?03=002o5000^Q0000000000006duDrXx2aA|N -aUv_0~WN&gWa%p2|FLQKZbaitsaCuNm0Rj{N6aWAK2ms(pnpVCzJfo}@006;h000>P0000000000006 -duSZo^raA|NaUv_0~WN&gWa%p2|FLQKxY-KKRc~DCM0u%rg000080N_fRR`Cj^P}Knd0O|w)02%-Q00 -000000000JecUgBt*FX>c!Jc4cm4Z*nhkX=7+Fb98xZWn?aJc~DCM0u%rg000080N_fRR>ENz_TV1?0 -8xnm02%-Q00000000000Jechg&P2HX>c!Jc4cm4Z*nhkX=7+Fb9rubVR$ZZc~DCM0u%rg000080N_fR -R%Ru*gJd5700f%=02u%P00000000000Jec(r5gZnX>c!Jc4cm4Z*nhkX=7+FbYWs_WiD`eP)h*<6aW+ -e000O8;7XcSIwRA+{sRC2Dh&VtA^-pY0000000000wt@S^8vt-=a4%nWWo~3|axZdeV`wjQWpZt4Zee -U+bZBL5WiD`eP)h*<6aW+e000O8;7XcS!%D2J8z%q&)v*8o7ytkO0000000000wt+dx8vt-=a4%nWWo -~3|axZdeV`wjQWq5QhaCuNm0Rj{N6aWAK2ms(pnpW&&p^nW2006-b000>P0000000000006duitrl%a -A|NaUv_0~WN&gWa%p2|FLY>SZDlTSc~DCM0u%rg000080N_fRR#A2KP)7g&0A>IH02%-Q0000000000 -0JedS^&0?iX>c!Jc4cm4Z*nhkX=7+FbZBL5WpgfYc~DCM0u%rg000080N_fRR_NHy=TaH~0HkvO0384 -T00000000000Jeb*_8S0jX>c!Jc4cm4Z*nhkX=7+FbaG*1Wny7tYc6nkP)h*<6aW+e000O8;7XcSKD` -&3R|)_C(IWr=7ytkO0000000000wt<=u8~|`>a4%nWWo~3|axZdeV`wjQa%E*MaCuNm0Rj{N6aWAK2m -s(pnpTg#>IZNY000e8001BW0000000000006duCmS39aA|NaUv_0~WN&gWbY*T~V`+4GFJE72ZfSI1U -oLQYP)h*<6aW+e000O8;7XcS1|!8~|`>a4%nWWo~3|axZjc -Zee3-ba^jdVRLzIV`*4;YaCuNm0Rj{N6aWAK2ms(pnpSZCATLM*005E(0012T000 -0000000006du5jq?IaA|NaUv_0~WN&gWbY*T~V`+4GFJWeMWpXZXc~DCM0u%rg000080N_fRRz+h#CJ -_Sw02&4W03HAU00000000000JedYJsbdVX>c!Jc4cm4Z*nhmWo}_(X>@rnVr6D;a%C=Xc~DCM0u%rg0 -00080N_fRRz$^xy5|D`07MA@03-ka00000000000JeeQKpX&YX>c!Jc4cm4Z*nhmWo}_(X>@rnVr6D; -a%Eq0Y-MF|E^v8JO928D02BZK00;o!N}5)tY_ikb0ssJK1pojW00000000000002CfeJ+&0B~t=FJE? -LZe(wAFLY&YVPk1@c`t5Za4v9pP)h*<6aW+e000O8;7XcSQqa4%nWWo~3|axZjcZee3-ba^jwWpr|RE^v8JO928D02BZK00;o!N}5&#aKr}_1ONaI3;+Ne00 -000000000002Cfdo$+0B~t=FJE?LZe(wAFLY&YVPk1@c`tKxZ*VSfc~DCM0u%rg000080N_fRR#wR>K -dA!%0A2_H03rYY00000000000JecqQyc(rX>c!Jc4cm4Z*nhmWo}_(X>@rnbZ>HQVPtQ2WnwOHc~DCM -0u%rg000080N_fRR!L~ptgZc!Jc4cm4Z*nhmWo}_(X>@r -ncVTICE^v8JO928D02BZK00;o!N}5)tswMpw0RRAu0RR9U00000000000002Cfg)iX0B~t=FJE?LZe( -wAFLZBhY-ulFUukY>bYEXCaCuNm0Rj{N6aWAK2ms(pnpOh7j%kb*003!N000~S0000000000006dubY -dI;aA|NaUv_0~WN&gWbZ>2JX)j-JVRCb2axQRrP)h*<6aW+e000O8;7XcSb?lQdegpsje+vKr7ytkO0 -000000000wt+f%8~|`>a4%nWWo~3|axZjmZER^TUvgzGaCuNm0Rj{N6aWAK2ms(pnpU@*E#008~~ -000{R0000000000006du?tL5paA|NaUv_0~WN&gWbZ>2JX)j-Nd2nTOE^v8JO928D02BZK00;o!N}5( -rgCHns1pojA4FCWi00000000000002Cf$V-90B~t=FJE?LZe(wAFLiQkY-wUMFJE72ZfSI1UoLQYP)h -*<6aW+e000O8;7XcS9X}It0u2BFJ1PJGBLDyZ0000000000wta4%nWWo~3|axZmqY;0*_Gc -R9bZ)|L3V{~b6ZgVbhc~DCM0u%rg000080N_fRR^8V_uRs6*06+i$03QGV00000000000JeeFksJVUX ->c!Jc4cm4Z*nhna%^mAVlyvac4cyNX>V>WaCuNm0Rj{N6aWAK2ms(pnpW?FQ9DK#002x+001EX00000 -00000006duQ<5A2aA|NaUv_0~WN&gWb#iQMX<{=kV{dM5Wn*+{Z*DGdc~DCM0u%rg000080N_fRR{r^ -lg#9T10N9uS03`qb00000000000JeeHsT=@sX>c!Jc4cm4Z*nhna%^mAVlyveZ*Fd7V{~b6Zg6jJY%X -wlP)h*<6aW+e000O8;7XcSUd&0g>j?k=86W@vApigX0000000000wt*Pb8~|`>a4%nWWo~3|axZmqY; -0*_GcRR$V`Xr3X>V?GE^v8JO928D02BZK00;o!N}5*3C`&9L3IG6uApig!00000000000002CfkNIK0 -B~t=FJE?LZe(wAFLiQkY-wUMFJ@_FY-DpTaCuNm0Rj{N6aWAK2ms(pnpTIazoUKw004*y0018V00000 -00000006duo#-3@aA|NaUv_0~WN&gWb#iQMX<{=kW@&6?aBp*TE^v8JO928D02BZK00;o!N}5(NCReg --761TBO#lEQ00000000000002CfmrMu0B~t=FJE?LZe(wAFLiQkY-wUMFK};fY;9p~VP|D>E^v8JO92 -8D02BZK00;o!N}5*ukM07e2LJ$J7XSbr00000000000002Cfdm5`0B~t=FJE?LZe(wAFLiQkY-wUMFL -GsZb!BsOE^v8JO928D02BZK00;o!N}5(sAhMtBUtcb8c~DCM0u%rg000080N_fRRw{$ -(6}15X0KEeM05Jdn00000000000Jee7D;)rEX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#5VQ_F|Zf9 -w3WnX1(c4=~NZZ2?nP)h*<6aW+e000O8;7XcS3htAMWDEcR94i0-C;$Ke0000000000wt>MgMaCuNm0Rj{N6aWAK2ms(pnpPEQ={Hga006KN0 -01Wd0000000000006dud^#NfaA|NaUv_0~WN&gWb#iQMX<{=kV{dMBa%o~OZggyIaBpvHE^v8JO928D -02BZK00;o!N}5(qTI)N}6aWCZLI40L00000000000002CffGR;0B~t=FJE?LZe(wAFLiQkY-wUMFJo_ -RbaH88FK~HpaAj_Db8Iefc~DCM0u%rg000080N_fRR>drF9>6640FZ_N04@Lk00000000000JecDRvi -FvX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#PWn*=6Wpr|3ZgX&Na&#_mc~DCM0u%rg000080N_fRR? -AYzKUoL>0J$3g03-ka00000000000JecPd>sIAX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#PZ)0n7E -^v8JO928D02BZK00;o!N}5&x00002000000000u00000000000002CfzgB=0B~t=FJE?LZe(wAFLiQk -Y-wUMFJo_RbaH88FJE(IV|8+6baG*Cb8v5RbT40DX>MtBUtcb8c~DCM0u%rg000080N_fRRxZyiP3{l -?0N_Lb05|{u00000000000JecCg&hEJX>c!Jc4cm4Z*nhna%^mAVlyveZ*FvQX<{#5b7f<7a%FUKVQz -D9Z*p`mVrgzMn8E^v8JO928D02BZK00;o!N}5)#DyO_z5dZ*UHUI!Q00000000000002Cfo+x@0B -~t=FJE?LZe(wAFLiQkY-wUMFJo_RbaH88FJE(IV|8+6baG*Cb8v5RbT4dgcVBE}c4cfXaCuNm0Rj{N6 -aWAK2ms(pnpOY+0006200000001Ze0000000000006du9jF}uaA|NaUv_0~WN&gWb#iQMX<{=kaA9L> -VP|D?FJE72ZfSI1UoLQYP)h*<6aW+e000O8;7XcST$CBCCLsU-X@>v+BLDyZ0000000000wt;1+9RP4 -?a4%nWWo~3|axZmqY;0*_GcRyqV{2h&WpgicX?QMhc~DCM0u%rg000080N_fRRsaA100IC20000005S -jo00000000000Jee5$sGW2X>c!Jc4cm4Z*nhna%^mAVlyvrVPk7yXJvCQVqs%zaBp&Sb1z?CX>MtBUt -cb8c~DCM0u%rg000080N_fRR^GT{vq%B}0Eqc!Jc4cm4Z*nhna -%^mAVlyvrVPk7yXJvCQVqs%zaBp&Sb1!XSYh`9>Y-KKRc~DCM0u%rg000080N_fRR_2PCn%DsV0D}Yo -03-ka00000000000Jed)%pCx5X>c!Jc4cm4Z*nhna%^mAVlyvwbZKlaUtei%X>?y-E^v8JO928D02BZ -K00;o!N}5*es^kxv2LJ#i6951v00000000000002CfzZw!0B~t=FJE?LZe(wAFLiQkY-wUMFLiWjY%g -PPZf<2`bZKvHE^v8JO928D02BZK00;o!N}5&*&s+yy0ssI-1^@sd00000000000002Cfv(ma0B~t=FJ -E?LZe(wAFLiQkY-wUMFLiWjY%g$fZ+LkwaCuNm0Rj{N6aWAK2ms(pnpRE&_MiL!008m<001EX000000 -0000006duOW7R&aA|NaUv_0~WN&gWb#iQMX<{=kb#!TLFL8Bcb!9Gac~DCM0u%rg000080N_fRRyU4q -@v8*@0G$s203!eZ00000000000JedK+8qFJX>c!Jc4cm4Z*nhna%^mAVlyvwbZKlaa%FLKWpi{caCuN -m0Rj{N6aWAK2ms(pnpQR_)wEy*006cP001Na0000000000006dua^M{RaA|NaUv_0~WN&gWb#iQMX<{ -=kb#!TLFLGsbaBpsNWiD`eP)h*<6aW+e000O8;7XcSI!Mcs{1yNJ^Hl%?X>2cYWpr|RE^v8JO928D02BZK00;o!N}5)rlKaP}761SlLjV9E0 -0000000000002CflvJ%0B~t=FJE?LZe(wAFLiQkY-wUMFLiWjY%gc!Jc4cm4Z*nhna%^mAVlyvwbZKlab8~E8ZDDj -{XkTb=b98QDZDlTSc~DCM0u%rg000080N_fRRc -!Jc4cm4Z*nhna%^mAVlyvwbZKlab8~ETa$#OV0000000000wt>|#9sqD@a4%nWWo~3|axZmqY;0*_GcR>?X>2cb -a%?Vec~DCM0u%rg000080N_fRR#wzj)xQS-02>tm03ZMW00000000000JecCMIHcfX>c!Jc4cm4Z*nh -na%^mAVlyvwbZKlacVTICE^v8JO928D02BZK00;o!N}5)9&>wL!3jhF9DF6T@00000000000002CfhJ -8J0B~t=FJE?LZe(wAFLz~PWo~0{WNB_^b1z?CX>MtBUtcb8c~DCM0u%rg000080N_fRR>!Rfivc!Jc4cm4Z*nhpWnyJ+V{c?>ZfA2ZY++($Y;!Jfc~DCM0u%rg0 -00080N_fRR#1O2A4CEG02u`U03-ka00000000000JeeOULF8&X>c!Jc4cm4Z*nhpWnyJ+V{c?>ZfA2Z -ZEI{{Vr6V|E^v8JO928D02BZK00;o!N}5(@IB=)A1pok}82|tw00000000000002Cfn{MH0B~t=FJE? -LZe(wAFLz~PWo~0{WNB_^b1!sdb98eqaCuNm0Rj{N6aWAK2ms(pnpWEe{MMxe007ev001fg00000000 -00006duU1uHuaA|NaUv_0~WN&gWcV%K_Zewp`X>Mn8FL+;db7gX0WMyV)Ze?UHaCuNm1qJ{B008p=^8 -sL*002sC9smFU -""" - - -if __name__ == "__main__": - main() \ No newline at end of file diff --git a/tools/install.py b/tools/install.py deleted file mode 100644 index 3ea1189..0000000 --- a/tools/install.py +++ /dev/null @@ -1,290 +0,0 @@ -import os -import re -import pathlib -import subprocess -import sys -import tempfile - - -# replace python3 with sys.executable, we will do everything in the same envrionment -pythonCommand = sys.executable -print('Python command:', pythonCommand) - -tools_dir = os.path.dirname(os.path.realpath(__file__)) - - -def get_app_data_dir(app_name): - home = os.path.expanduser("~") - if os.name == "nt": # For Windows - appPath = os.path.join(home, "AppData", "Roaming", app_name) - else: # For Unix and Linux - appPath = os.path.join(home, ".local", "share", app_name) - - if not os.path.exists(appPath): - os.makedirs(appPath) - return appPath - - -def get_pythoncmd_in_env(venvdir, envname): - """ - return pythoncmd in virtual env - """ - pythonCommandEnv = venvdir + "/" + envname + "/Scripts/python" - try: - subprocess.run([pythonCommandEnv, "-V"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return pythonCommandEnv - except Exception: - pass - - pythonCommandEnv = venvdir + "/" + envname + "/bin/python" - try: - subprocess.run([pythonCommandEnv, "-V"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return pythonCommandEnv - except Exception: - return '' - - -def pip_cmd_run(pipcmd, with_user: bool, with_local_source: bool): - """ - run pip cmd - with_user: --user - with_local_source: -i https://pypi.tuna.tsinghua.edu.cn/simple - """ - if with_user: - pipcmd.append("--user") - if with_local_source: - pipcmd.append("-i") - pipcmd.append("https://pypi.tuna.tsinghua.edu.cn/simple") - - with tempfile.NamedTemporaryFile(delete=True) as temp_file: - try: - # before command run, output runnning command - print("run command: ", *pipcmd) - subprocess.run(pipcmd, check=True, stdout=sys.stdout, stderr=temp_file, text=True) - return True, '' - except Exception as error: - temp_file.flush() - error_out = temp_file.read() - print(error) - return False, error_out - - -def pip_cmd_with_retries(pipcmd, retry_times: int, with_user: bool): - """ - when pip cmd fails, then retry for retry_times - with_user: --user whether use --user, if pipcmd error output include --user, then remove --user while retry - - if pipcmd error output not include --user, then retry with with_local_source - """ - with_local_source = False - for i in range(0, retry_times): - pipcmd_copy = pipcmd.copy() - ret, error = pip_cmd_run(pipcmd_copy, with_user, with_local_source) - if ret: - return True - - if error.find(b"--user") > -1: - with_user = False - else: - with_local_source = True - - return False - - -def pip_install_devchat(pythoncmd): - # run command: {pythoncmd} -m pip install devchat - # check if devchat is installed - # if not, install devchat - - # first step: check if devchat is installed - # try: - # # before command run, output runnning command - # print("run command: ", pythoncmd, "-m", "pip", "show", "devchat") - # subprocess.run([pythoncmd, "-m", "pip", "show", "devchat"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - - # pipCommandEnv = pythoncmd.replace("/python", "/devchat") - # print("==> devchatCommandEnv: ", pipCommandEnv) - - # return True - # except Exception as error: - # # devchat is not installed - # print('devchat is not installed') - # print(error) - # pass - - # second step: install devchat - if (pip_cmd_with_retries([pythoncmd, "-m", "pip", "install", "devchat", "--force"], 3, False)): - # get parent path for pythoncmd - pythoncmd_parent_path = pathlib.Path(pythoncmd).parent - pip_command_env = os.path.join(pythoncmd_parent_path, "devchat") - print("==> devchatCommandEnv: ", pip_command_env) - return True - else: - print('devchat install failed') - return False - - -def virtualenv_create_venv(pythoncmd, venvdir, envname): - """ - virtualenvcmd is virtualenv with absolute path - create virtual env by virtualenvcmd - if env already exists, and pip has installed, then return pipcmd in virtual env - else if env already exists, delete it. - return pipcmd in virtual env - """ - def pipcmd_exists(pythoncmd, venvdir, envname): - """ - check whether pip command installed - """ - try: - pythonCommandEnv = get_pythoncmd_in_env(venvdir, envname) - if not pythonCommandEnv: - return False - - # before command run, output runnning command - print("run command: ", pythonCommandEnv, "-m", "pip", "--version") - subprocess.run([pythonCommandEnv, "-m", "pip", "--version"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception: - return False - - def extract_actual_location(text): - match = re.search(rb'Actual location:\s+"(.*?)"', text) - if match: - return match.group(1) - else: - return None - - # second step: check if env already exists - if os.path.exists(venvdir + "/" + envname): - # check if pip is installed - # if pip is installed, return pipcmd in virtual env - # else delete env - # call pipcmd --version to check if pip is installed - if pipcmd_exists(pythoncmd, venvdir, envname): - return get_pythoncmd_in_env(venvdir, envname) - else: - # delete env by virtualenvcmd - print("delete env: ", venvdir + "/" + envname) - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m", "virtualenv", "--clear", venvdir + "/" + envname) - subprocess.run([pythoncmd, "-m", "virtualenv", "--clear", venvdir + "/" + envname], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - except Exception as error: - print('delete env failed') - print(error) - return False - - # third step: create env by virtualenvcmd - # handle error while creating env - print("create env: ", venvdir + "/" + envname) - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m virtualenv", venvdir + "/" + envname) - with tempfile.NamedTemporaryFile(delete=True) as temp_file: - try: - subprocess.run([pythoncmd, "-m", "virtualenv", venvdir + "/" + envname], check=True, stdout=temp_file, stderr=sys.stderr, text=True) - pythonCmd = get_pythoncmd_in_env(venvdir, envname) - if pythonCmd == '': - temp_file.flush() - outputText = temp_file.read() - pythonCmd = extract_actual_location(outputText) - if pythonCmd is None: - print('create env failed') - print(error) - return False - else: - pythonCmd = pythonCmd.decode() - return pythonCmd - except Exception as error: - print('create env failed') - print(error) - return False - except Exception as error: - print('create env failed') - print(error) - return False - - -def pip_install_virtualenv(pythoncmd): - # run command: {pythoncmd} -m pip install virtualenv - # check if virtualenv is installed - # if not, install virtualenv - - # first step: check if virtualenv is installed - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m", "pip", "show", "virtualenv") - subprocess.run([pythoncmd, "-m", "pip", "show", "virtualenv"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception: - # virtualenv is not installed - print('virtualenv is not installed') - pass - - # second step: install virtualenv - if (pip_cmd_with_retries([pythoncmd, "-m", "pip", "install", "virtualenv"], 4, True)): - return True - else: - print('virtualenv install failed') - return False - - -def install_pip(pythoncmd): - # run command: {pythoncmd} {tools_dir}/get-pip.py --force-reinstall - # check if pip is installed - # if not, install pip - - # first step: check if pip is installed - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m", "pip", "--version") - subprocess.run([pythoncmd, "-m", "pip", "--version"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception: - # pip is not installed - print('pip is not installed') - pass - - # second step: install pip - try: - # before command run, output runnning command - print("run command: ", pythoncmd, tools_dir + "/get-pip.py", "--force-reinstall") - # redirect output to stdout - subprocess.run([pythoncmd, tools_dir + "/get-pip.py", "--force-reinstall"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception as error: - print('pip install failed') - print(error) - return False - - -def main(): - """ - install pip - install virtualenv - create virtualenv - install devchat - """ - pythoncommand = pythonCommand - venvdir = get_app_data_dir('devchat') - envname = "devchat" - # install pip - if not install_pip(pythoncommand): - return False - # install virtualenv - if not pip_install_virtualenv(pythoncommand): - return False - # create virtualenv - envPythonCmd = virtualenv_create_venv(pythoncommand, venvdir, envname) - if not envPythonCmd: - return False - # install devchat - if not pip_install_devchat(envPythonCmd): - return False - return True - -if __name__ == "__main__": - if not main(): - sys.exit(1) - sys.exit(0) \ No newline at end of file diff --git a/tools/install_askcode.py b/tools/install_askcode.py deleted file mode 100644 index fbdfbba..0000000 --- a/tools/install_askcode.py +++ /dev/null @@ -1,260 +0,0 @@ -import os -import subprocess -import sys -import tempfile - - -# replace python3 with sys.executable, we will do everything in the same envrionment -pythonCommand = sys.executable -print('Python command:', pythonCommand) - -tools_dir = os.path.dirname(os.path.realpath(__file__)) - - -def get_app_data_dir(app_name): - home = os.path.expanduser("~") - if os.name == "nt": # For Windows - appPath = os.path.join(home, "AppData", "Roaming", app_name) - else: # For Unix and Linux - appPath = os.path.join(home, ".local", "share", app_name) - - if not os.path.exists(appPath): - os.makedirs(appPath) - return appPath - -def get_pythoncmd_in_env(venvdir, envname): - """ - return pythoncmd in virtual env - """ - pythonCommandEnv = venvdir + "/" + envname + "/Scripts/python" - try: - subprocess.run([pythonCommandEnv, "-V"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return pythonCommandEnv - except Exception: - pass - - pythonCommandEnv = venvdir + "/" + envname + "/bin/python" - try: - subprocess.run([pythonCommandEnv, "-V"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return pythonCommandEnv - except Exception: - return False - - -def pip_cmd_run(pipcmd, with_user: bool, with_local_source: bool): - """ - run pip cmd - with_user: --user - with_local_source: -i https://pypi.tuna.tsinghua.edu.cn/simple - """ - if with_user: - pipcmd.append("--user") - if with_local_source: - pipcmd.append("-i") - pipcmd.append("https://pypi.tuna.tsinghua.edu.cn/simple") - - with tempfile.NamedTemporaryFile(delete=True) as temp_file: - try: - # before command run, output runnning command - print("run command: ", *pipcmd) - subprocess.run(pipcmd, check=True, stdout=sys.stdout, stderr=temp_file, text=True) - return True, '' - except Exception as error: - temp_file.flush() - error_out = temp_file.read() - print(error) - return False, error_out - - -def pip_cmd_with_retries(pipcmd, retry_times: int, with_user: bool): - """ - when pip cmd fails, then retry for retry_times - with_user: --user whether use --user, if pipcmd error output include --user, then remove --user while retry - - if pipcmd error output not include --user, then retry with with_local_source - """ - with_local_source = False - for i in range(0, retry_times): - pipcmd_copy = pipcmd.copy() - ret, error = pip_cmd_run(pipcmd_copy, with_user, with_local_source) - if ret: - return True - - if error.find(b"--user") > -1: - with_user = False - else: - with_local_source = True - - return False - - -def pip_install_devchat(pythoncmd): - # run command: {pythoncmd} -m pip install devchat - # check if devchat is installed - # if not, install devchat - - # first step: check if devchat is installed - # try: - # # before command run, output runnning command - # print("run command: ", pythoncmd, "-m", "pip", "show", "devchat") - # subprocess.run([pythoncmd, "-m", "pip", "show", "devchat"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - - # pipCommandEnv = pythoncmd.replace("/python", "/devchat") - # print("==> devchatCommandEnv: ", pipCommandEnv) - - # return True - # except Exception as error: - # # devchat is not installed - # print('devchat is not installed') - # print(error) - # pass - - # second step: install devchat - if (pip_cmd_with_retries([pythoncmd, "-m", "pip", "install", "devchat-ask", "--force"], 3, False)): - print("==> askPythonEnv: ", pythoncmd) - return True - else: - print('devchat-ask install failed') - return False - - -def virtualenv_create_venv(pythoncmd, venvdir, envname): - """ - virtualenvcmd is virtualenv with absolute path - create virtual env by virtualenvcmd - if env already exists, and pip has installed, then return pipcmd in virtual env - else if env already exists, delete it. - return pipcmd in virtual env - """ - def pipcmd_exists(pythoncmd, venvdir, envname): - """ - check whether pip command installed - """ - try: - pythonCommandEnv = get_pythoncmd_in_env(venvdir, envname) - if not pythonCommandEnv: - return False - - # before command run, output runnning command - print("run command: ", pythonCommandEnv, "-m", "pip", "--version") - subprocess.run([pythonCommandEnv, "-m", "pip", "--version"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception: - return False - - # second step: check if env already exists - if os.path.exists(venvdir + "/" + envname): - # check if pip is installed - # if pip is installed, return pipcmd in virtual env - # else delete env - # call pipcmd --version to check if pip is installed - if pipcmd_exists(pythoncmd, venvdir, envname): - return get_pythoncmd_in_env(venvdir, envname) - else: - # delete env by virtualenvcmd - print("delete env: ", venvdir + "/" + envname) - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m", "virtualenv", "--clear", venvdir + "/" + envname) - subprocess.run([pythoncmd, "-m", "virtualenv", "--clear", venvdir + "/" + envname], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - except Exception as error: - print('delete env failed') - print(error) - return False - - # third step: create env by virtualenvcmd - # handle error while creating env - print("create env: ", venvdir + "/" + envname) - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m virtualenv", venvdir + "/" + envname + " --python=python3.11.4") - subprocess.run([pythoncmd, "-m", "virtualenv", venvdir + "/" + envname, "--python=python3.11.4"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return get_pythoncmd_in_env(venvdir, envname) - except Exception as error: - print('create env failed') - print(error) - return False - - -def pip_install_virtualenv(pythoncmd): - # run command: {pythoncmd} -m pip install virtualenv - # check if virtualenv is installed - # if not, install virtualenv - - # first step: check if virtualenv is installed - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m", "pip", "show", "virtualenv") - subprocess.run([pythoncmd, "-m", "pip", "show", "virtualenv"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception: - # virtualenv is not installed - print('virtualenv is not installed') - pass - - # second step: install virtualenv - if (pip_cmd_with_retries([pythoncmd, "-m", "pip", "install", "virtualenv"], 4, True)): - return True - else: - print('virtualenv install failed') - return False - - -def install_pip(pythoncmd): - # run command: {pythoncmd} {tools_dir}/get-pip.py --force-reinstall - # check if pip is installed - # if not, install pip - - # first step: check if pip is installed - try: - # before command run, output runnning command - print("run command: ", pythoncmd, "-m", "pip", "--version") - subprocess.run([pythoncmd, "-m", "pip", "--version"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception: - # pip is not installed - print('pip is not installed') - pass - - # second step: install pip - try: - # before command run, output runnning command - print("run command: ", pythoncmd, tools_dir + "/get-pip.py", "--force-reinstall") - # redirect output to stdout - subprocess.run([pythoncmd, tools_dir + "/get-pip.py", "--force-reinstall"], check=True, stdout=sys.stdout, stderr=sys.stderr, text=True) - return True - except Exception as error: - print('pip install failed') - print(error) - return False - - -def main(): - """ - install pip - install virtualenv - create virtualenv - install devchat - """ - pythoncommand = pythonCommand - venvdir = get_app_data_dir('devchat') - envname = "devchat-ask" - # install pip - if not install_pip(pythoncommand): - return False - # install virtualenv - if not pip_install_virtualenv(pythoncommand): - return False - # create virtualenv - envPythonCmd = virtualenv_create_venv(pythoncommand, venvdir, envname) - if not envPythonCmd: - return False - # install devchat - if not pip_install_devchat(envPythonCmd): - return False - return True - -if __name__ == "__main__": - if not main(): - sys.exit(1) - sys.exit(0) \ No newline at end of file diff --git a/tools/micromamba-linux-64/bin/micromamba b/tools/micromamba-linux-64/bin/micromamba deleted file mode 100755 index b319de3..0000000 Binary files a/tools/micromamba-linux-64/bin/micromamba and /dev/null differ diff --git a/tools/micromamba-linux-64/info/about.json b/tools/micromamba-linux-64/info/about.json deleted file mode 100644 index 3bf082c..0000000 --- a/tools/micromamba-linux-64/info/about.json +++ /dev/null @@ -1,224 +0,0 @@ -{ - "channels": [ - "https://conda.anaconda.org/conda-forge" - ], - "conda_build_version": "3.25.0", - "conda_version": "23.3.1", - "dev_url": "https://github.com/mamba-org/mamba", - "env_vars": { - "CIO_TEST": "" - }, - "extra": { - "copy_test_source_files": true, - "final": true, - "recipe-maintainers": [ - "AntoinePrv", - "pavelzw", - "wolfv", - "SylvainCorlay", - "JohanMabille", - "mariusvniekerk", - "adriendelsalle" - ] - }, - "home": "https://github.com/mamba-org/mamba", - "identifiers": [], - "keywords": [], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "license_file": [ - "mamba/LICENSE", - "CLI11_LICENSE.txt", - "CURL_LICENSE.txt", - "C_ARES_LICENSE.txt", - "FMT_LICENSE.txt", - "KRB5_LICENSE.txt", - "LIBARCHIVE_LICENSE.txt", - "LIBEV_LICENSE.txt", - "LIBLZ4_LICENSE.txt", - "LIBNGHTTP2_LICENSE.txt", - "LIBOPENSSL_3_LICENSE.txt", - "LIBOPENSSL_LICENSE.txt", - "LIBSOLV_LICENSE.txt", - "NLOHMANN_JSON_LICENSE.txt", - "REPROC_LICENSE.txt", - "SPDLOG_LICENSE.txt", - "TL_EXPECTED_LICENSE.txt", - "ZSTD_LICENSE.txt" - ], - "root_pkgs": [ - "tk 8.6.12 h27826a3_0", - "markdown-it-py 3.0.0 pyhd8ed1ab_0", - "pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0", - "pkginfo 1.9.6 pyhd8ed1ab_0", - "c-ares 1.19.1 hd590300_0", - "packaging 23.1 pyhd8ed1ab_0", - "libev 4.33 h516909a_1", - "platformdirs 3.10.0 pyhd8ed1ab_0", - "libgomp 13.1.0 he5830b7_0", - "libpng 1.6.39 h753d276_0", - "gettext 0.21.1 h27087fc_0", - "libxcb 1.15 h0b41bf4_0", - "pycosat 0.6.4 py310h5764c6d_1", - "git 2.41.0 pl5321h86e50cf_0", - "pyyaml 6.0 py310h5764c6d_5", - "libexpat 2.5.0 hcb278e6_1", - "wcwidth 0.2.6 pyhd8ed1ab_0", - "jupyter_core 5.3.1 py310hff52083_0", - "libdeflate 1.18 h0b41bf4_0", - "anaconda-client 1.12.0 pyhd8ed1ab_1", - "python_abi 3.10 3_cp310", - "tqdm 4.66.1 pyhd8ed1ab_0", - "jsonschema 4.19.0 pyhd8ed1ab_1", - "libtiff 4.5.1 h8b53f26_0", - "brotli-python 1.0.9 py310hd8f1fbe_9", - "joblib 1.3.2 pyhd8ed1ab_0", - "mamba 1.4.2 py310h51d5547_0", - "lcms2 2.15 haa2dc70_1", - "psutil 5.9.5 py310h1fa729e_0", - "zstd 1.5.2 hfc55251_7", - "requests-toolbelt 1.0.0 pyhd8ed1ab_0", - "freetype 2.12.1 hca18f0e_1", - "readline 8.2 h8228510_1", - "wheel 0.41.1 pyhd8ed1ab_0", - "colorama 0.4.6 pyhd8ed1ab_0", - "libnghttp2 1.52.0 h61bc06f_0", - "lz4-c 1.9.4 hcb278e6_0", - "jsonpointer 2.0 py_0", - "urllib3 1.26.15 pyhd8ed1ab_0", - "python-fastjsonschema 2.18.0 pyhd8ed1ab_0", - "lzo 2.10 h516909a_1000", - "python-dateutil 2.8.2 pyhd8ed1ab_0", - "cffi 1.15.1 py310h255011f_3", - "conda-index 0.2.3 pyhd8ed1ab_0", - "attrs 23.1.0 pyh71513ae_1", - "pysocks 1.7.1 pyha2e5f31_6", - "_libgcc_mutex 0.1 conda_forge", - "conda-build 3.25.0 py310hff52083_0", - "conda-package-handling 2.2.0 pyh38be061_0", - "pycparser 2.21 pyhd8ed1ab_0", - "conda 23.3.1 py310hff52083_0", - "openssl 3.1.2 hd590300_0", - "certifi 2023.7.22 pyhd8ed1ab_0", - "fmt 9.1.0 h924138e_0", - "idna 3.4 pyhd8ed1ab_0", - "lerc 4.0.0 h27087fc_0", - "more-itertools 10.1.0 pyhd8ed1ab_0", - "libwebp-base 1.3.1 hd590300_0", - "importlib_resources 6.0.1 pyhd8ed1ab_0", - "chardet 5.2.0 py310hff52083_0", - "liblief 0.12.3 h27087fc_0", - "ruamel.yaml.clib 0.2.7 py310h1fa729e_1", - "json5 0.9.14 pyhd8ed1ab_0", - "mdurl 0.1.0 pyhd8ed1ab_0", - "jsonschema-specifications 2023.7.1 pyhd8ed1ab_0", - "tomli 2.0.1 pyhd8ed1ab_0", - "tzdata 2023c h71feb2d_0", - "pytz 2023.3 pyhd8ed1ab_0", - "glob2 0.7 py_0", - "libedit 3.1.20191231 he28a2e2_2", - "backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0", - "reproc-cpp 14.2.4 hcb278e6_0", - "dataclasses 0.8 pyhc8e2a94_3", - "referencing 0.30.2 pyhd8ed1ab_0", - "pip 23.2.1 pyhd8ed1ab_0", - "nbformat 5.9.2 pyhd8ed1ab_0", - "ruamel_yaml 0.15.80 py310h5764c6d_1008", - "exceptiongroup 1.1.3 pyhd8ed1ab_0", - "pillow 10.0.0 py310h582fbeb_0", - "libstdcxx-ng 13.1.0 hfd8a6a1_0", - "ripgrep 13.0.0 h2f28480_2", - "py-lief 0.12.3 py310hd8f1fbe_0", - "krb5 1.21.2 h659d440_0", - "pygments 2.16.1 pyhd8ed1ab_0", - "perl 5.32.1 4_hd590300_perl5", - "jinja2 3.1.2 pyhd8ed1ab_1", - "patch 2.7.6 h7f98852_1002", - "requests 2.31.0 pyhd8ed1ab_0", - "yaml 0.2.5 h7f98852_2", - "ncurses 6.4 hcb278e6_0", - "boltons 23.0.0 pyhd8ed1ab_0", - "pthread-stubs 0.4 h36c2ea0_1001", - "rpds-py 0.9.2 py310hcb5633a_0", - "bzip2 1.0.8 h7f98852_4", - "backports 1.0 pyhd8ed1ab_3", - "libiconv 1.17 h166bdaf_0", - "xz 5.2.6 h166bdaf_0", - "pcre2 10.40 hc3806b6_0", - "rich 13.5.1 pyhd8ed1ab_0", - "charset-normalizer 3.2.0 pyhd8ed1ab_0", - "ruamel.yaml 0.17.32 py310h2372a71_0", - "six 1.16.0 pyh6c4a22f_0", - "libsqlite 3.42.0 h2797004_0", - "toolz 0.12.0 pyhd8ed1ab_0", - "tini 0.19.0 h166bdaf_1", - "jsonpatch 1.32 pyhd8ed1ab_0", - "su-exec 0.2 h166bdaf_1003", - "beautifulsoup4 4.12.2 pyha770c72_0", - "typing_extensions 4.7.1 pyha770c72_0", - "libssh2 1.11.0 h0841786_0", - "filelock 3.12.2 pyhd8ed1ab_0", - "zipp 3.16.2 pyhd8ed1ab_0", - "prompt_toolkit 3.0.39 hd8ed1ab_0", - "python 3.10.12 hd12c33a_0_cpython", - "sniffio 1.3.0 pyhd8ed1ab_0", - "libsolv 0.7.24 hfc55251_1", - "watchgod 0.8.2 pyhd8ed1ab_0", - "anaconda-project 0.11.1 pyhd8ed1ab_0", - "python-libarchive-c 5.0 py310hff52083_1", - "libgcc-ng 13.1.0 he5830b7_0", - "libffi 3.4.2 h7f98852_5", - "libjpeg-turbo 2.1.5.1 h0b41bf4_0", - "libnsl 2.0.0 h7f98852_0", - "libcurl 8.2.1 hca28451_0", - "icu 72.1 hcb278e6_0", - "pluggy 1.2.0 pyhd8ed1ab_0", - "conda-libmamba-solver 23.3.0 pyhd8ed1ab_0", - "tornado 6.3.3 py310h2372a71_0", - "zstandard 0.19.0 py310h1275a96_2", - "pyopenssl 23.2.0 pyhd8ed1ab_1", - "libmambapy 1.4.2 py310h1428755_0", - "anyio 3.7.1 pyhd8ed1ab_0", - "conda-pack 0.7.1 pyhd8ed1ab_0", - "boa 0.15.1 pyhd8ed1ab_0", - "soupsieve 2.3.2.post1 pyhd8ed1ab_0", - "defusedxml 0.7.1 pyhd8ed1ab_0", - "libzlib 1.2.13 hd590300_5", - "setuptools 68.1.2 pyhd8ed1ab_0", - "conda-package-streaming 0.9.0 pyhd8ed1ab_0", - "yaml-cpp 0.7.0 h27087fc_2", - "libuuid 2.38.1 h0b41bf4_0", - "traitlets 5.9.0 pyhd8ed1ab_0", - "_openmp_mutex 4.5 2_gnu", - "xorg-libxau 1.0.11 hd590300_0", - "libxml2 2.11.5 h0d562d8_0", - "brotlipy 0.7.0 py310h5764c6d_1005", - "openjpeg 2.5.0 hfec8fc6_2", - "clyent 1.2.2 py_1", - "typing-extensions 4.7.1 hd8ed1ab_0", - "ca-certificates 2023.7.22 hbcca054_0", - "curl 8.2.1 hca28451_0", - "reproc 14.2.4 h0b41bf4_0", - "patchelf 0.17.2 h58526e2_0", - "libarchive 3.6.2 h039dbb9_1", - "click 8.1.7 unix_pyh707e725_0", - "prompt-toolkit 3.0.39 pyha770c72_0", - "keyutils 1.6.1 h166bdaf_0", - "libmamba 1.4.2 hcea66bb_0", - "ld_impl_linux-64 2.40 h41732ed_0", - "markupsafe 2.1.3 py310h2372a71_0", - "xorg-libxdmcp 1.1.3 h7f98852_0", - "pybind11-abi 4 hd8ed1ab_3", - "cryptography 41.0.3 py310h75e40e8_0", - "conda-env 2.6.0 1", - "conda-oci-mirror 0.1.0 pyhd8ed1ab_0", - "oniguruma 6.9.8 h166bdaf_0", - "jq 1.6 h36c2ea0_1000", - "conda-forge-ci-setup 3.32.5 py310h7a2d8a0_100", - "conda-forge-metadata 0.5.2 pyhd8ed1ab_0", - "oras-py 0.1.14 pyhd8ed1ab_0", - "shyaml 0.6.2 pyhd3deb0d_0" - ], - "summary": "Micromamba is a tiny version of mamba, the fast conda package installer.", - "tags": [] -} \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/files b/tools/micromamba-linux-64/info/files deleted file mode 100644 index 6c1e7bf..0000000 --- a/tools/micromamba-linux-64/info/files +++ /dev/null @@ -1 +0,0 @@ -bin/micromamba diff --git a/tools/micromamba-linux-64/info/git b/tools/micromamba-linux-64/info/git deleted file mode 100644 index e69de29..0000000 diff --git a/tools/micromamba-linux-64/info/has_prefix b/tools/micromamba-linux-64/info/has_prefix deleted file mode 100644 index 5925015..0000000 --- a/tools/micromamba-linux-64/info/has_prefix +++ /dev/null @@ -1 +0,0 @@ -/home/conda/feedstock_root/build_artifacts/micromamba_1692951636954/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_ binary bin/micromamba diff --git a/tools/micromamba-linux-64/info/hash_input.json b/tools/micromamba-linux-64/info/hash_input.json deleted file mode 100644 index f512756..0000000 --- a/tools/micromamba-linux-64/info/hash_input.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "fmt": "10", - "c_compiler_version": "12", - "openssl": "3", - "spdlog": "1.12", - "cxx_compiler": "gxx", - "CI": "azure", - "libcurl": "8", - "zlib": "1.2", - "cxx_compiler_version": "12", - "channel_targets": "conda-forge main", - "target_platform": "linux-64", - "c_compiler": "gcc" -} \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/index.json b/tools/micromamba-linux-64/info/index.json deleted file mode 100644 index 071a7fe..0000000 --- a/tools/micromamba-linux-64/info/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "arch": "x86_64", - "build": "1", - "build_number": 1, - "depends": [ - "libzlib >=1.2.13,<1.3.0a0" - ], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "name": "micromamba", - "platform": "linux", - "subdir": "linux-64", - "timestamp": 1692952522405, - "version": "1.5.0" -} \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/CLI11_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-linux-64/info/licenses/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/CURL_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-linux-64/info/licenses/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/C_ARES_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-linux-64/info/licenses/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-linux-64/info/licenses/FMT_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-linux-64/info/licenses/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/KRB5_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-linux-64/info/licenses/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/LIBARCHIVE_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-linux-64/info/licenses/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/LIBEV_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-linux-64/info/licenses/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-linux-64/info/licenses/LIBLZ4_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-linux-64/info/licenses/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-64/info/licenses/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-linux-64/info/licenses/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-linux-64/info/licenses/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-linux-64/info/licenses/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/LIBOPENSSL_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-linux-64/info/licenses/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-linux-64/info/licenses/LIBSOLV_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-linux-64/info/licenses/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-linux-64/info/licenses/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-64/info/licenses/REPROC_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-linux-64/info/licenses/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-64/info/licenses/SPDLOG_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-linux-64/info/licenses/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-linux-64/info/licenses/TL_EXPECTED_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-linux-64/info/licenses/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/licenses/ZSTD_LICENSE.txt b/tools/micromamba-linux-64/info/licenses/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-linux-64/info/licenses/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-64/info/licenses/mamba/LICENSE b/tools/micromamba-linux-64/info/licenses/mamba/LICENSE deleted file mode 100644 index 8ae98f9..0000000 --- a/tools/micromamba-linux-64/info/licenses/mamba/LICENSE +++ /dev/null @@ -1,11 +0,0 @@ -Copyright 2019 QuantStack and the Mamba contributors. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-64/info/paths.json b/tools/micromamba-linux-64/info/paths.json deleted file mode 100644 index 4b3f118..0000000 --- a/tools/micromamba-linux-64/info/paths.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "paths": [ - { - "_path": "bin/micromamba", - "file_mode": "binary", - "path_type": "hardlink", - "prefix_placeholder": "/home/conda/feedstock_root/build_artifacts/micromamba_1692951636954/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", - "sha256": "2548753f04f1353ac46686245942223d81e51212a2aa0cfccdab2b251b019f27", - "size_in_bytes": 13553856 - } - ], - "paths_version": 1 -} \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/CLI11_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-linux-64/info/recipe/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt deleted file mode 100644 index 8b24faa..0000000 --- a/tools/micromamba-linux-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018, Steffen Schümann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-64/info/recipe/CURL_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-linux-64/info/recipe/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/C_ARES_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-linux-64/info/recipe/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-linux-64/info/recipe/FMT_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-linux-64/info/recipe/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/KRB5_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-linux-64/info/recipe/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/LIBARCHIVE_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-linux-64/info/recipe/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/LIBEV_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-linux-64/info/recipe/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-linux-64/info/recipe/LIBLZ4_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-linux-64/info/recipe/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-64/info/recipe/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-linux-64/info/recipe/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-linux-64/info/recipe/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-linux-64/info/recipe/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/LIBOPENSSL_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-linux-64/info/recipe/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-linux-64/info/recipe/LIBSOLV_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-linux-64/info/recipe/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-linux-64/info/recipe/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-64/info/recipe/REPROC_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-linux-64/info/recipe/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-64/info/recipe/SPDLOG_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-linux-64/info/recipe/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-linux-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt deleted file mode 100644 index 679df41..0000000 --- a/tools/micromamba-linux-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt +++ /dev/null @@ -1,31 +0,0 @@ -Copyright (c) 2013, Ihor Kalnytskyi. -All rights reserved. - -Redistribution and use in source and binary forms of the software as well -as documentation, with or without modification, are permitted provided -that the following conditions are met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -* The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/TL_EXPECTED_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-linux-64/info/recipe/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-linux-64/info/recipe/ZSTD_LICENSE.txt b/tools/micromamba-linux-64/info/recipe/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-linux-64/info/recipe/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-64/info/recipe/bld.bat b/tools/micromamba-linux-64/info/recipe/bld.bat deleted file mode 100644 index 6a91569..0000000 --- a/tools/micromamba-linux-64/info/recipe/bld.bat +++ /dev/null @@ -1,41 +0,0 @@ -SET VCPKG_ROOT=%CD%\vcpkg - -SET VCPKG_BUILD_TYPE=release -vcpkg install --overlay-ports=%RECIPE_DIR%\libsolv libsolv[conda] --triplet x64-windows-static - -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install "libarchive[bzip2,lz4,lzma,lzo,openssl,zstd]" --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install curl --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install yaml-cpp --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install reproc --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% - -SET "CXXFLAGS=%CXXFLAGS% /showIncludes" -SET CMAKE_PREFIX_PATH=%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH% - -cmake -S mamba ^ - -B build ^ - -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ - -D CMAKE_PREFIX_PATH="%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%" ^ - -D CMAKE_BUILD_TYPE="Release" ^ - -D BUILD_LIBMAMBA=ON ^ - -D BUILD_STATIC=ON ^ - -D BUILD_MICROMAMBA=ON ^ - -G "Ninja" -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --build build --parallel %CPU_COUNT% -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --install build -if %errorlevel% NEQ 0 exit /b %errorlevel% - -DEL /Q /F /S "%LIBRARY_PREFIX%\lib\libmamba*" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\include\mamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\lib\cmake\libmamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% diff --git a/tools/micromamba-linux-64/info/recipe/build.sh b/tools/micromamba-linux-64/info/recipe/build.sh deleted file mode 100644 index 15cc563..0000000 --- a/tools/micromamba-linux-64/info/recipe/build.sh +++ /dev/null @@ -1,35 +0,0 @@ -set -euxo pipefail - -# Conda's binary relocation can result in string changing which can result in errors like -# > warning: command substitution: ignored null byte in input -# https://github.com/mamba-org/mamba/issues/1517 -export CXXFLAGS="${CXXFLAGS} -fno-merge-constants" -export CFLAGS="${CFLAGS} -fno-merge-constants" -export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY=1" - -cmake -S mamba/ \ - -B build/ \ - -G Ninja \ - ${CMAKE_ARGS} \ - -D CMAKE_INSTALL_PREFIX=${PREFIX} \ - -D CMAKE_BUILD_TYPE="Release" \ - -D BUILD_LIBMAMBA=ON \ - -D BUILD_STATIC=ON \ - -D BUILD_MICROMAMBA=ON -cmake --build build/ --parallel ${CPU_COUNT} -cmake --install build/ - -# remove everything related to `libmamba` -rm -rf "${PREFIX}/lib/libmamba"* -rm -rf "${PREFIX}/include/mamba" -rm -rf "${PREFIX}/lib/cmake/libmamba" - -"${STRIP:-strip}" "${PREFIX}/bin/micromamba" - -if [[ "$target_platform" == "osx-"* ]]; then - OTOOL_OUTPUT=$("${OTOOL:-otool}" -L "${PREFIX}/bin/micromamba") - if [[ "$OTOOL_OUTPUT" == *libc++.1.dylib* ]]; then - echo "micromamba is linked to libc++.1.dlyb" - exit 1 - fi -fi diff --git a/tools/micromamba-linux-64/info/recipe/conda_build_config.yaml b/tools/micromamba-linux-64/info/recipe/conda_build_config.yaml deleted file mode 100644 index e2c998d..0000000 --- a/tools/micromamba-linux-64/info/recipe/conda_build_config.yaml +++ /dev/null @@ -1,41 +0,0 @@ -CI: azure -c_compiler: gcc -c_compiler_version: '12' -cdt_name: cos6 -channel_sources: conda-forge -channel_targets: conda-forge main -cpu_optimization_target: nocona -cran_mirror: https://cran.r-project.org -cxx_compiler: gxx -cxx_compiler_version: '12' -docker_image: quay.io/condaforge/linux-anvil-cos7-x86_64 -extend_keys: -- ignore_build_only_deps -- pin_run_as_build -- ignore_version -- extend_keys -fmt: '10' -fortran_compiler: gfortran -ignore_build_only_deps: -- numpy -- python -libcurl: '8' -lua: '5' -numpy: '1.22' -openssl: '3' -perl: 5.26.2 -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x - r-base: - min_pin: x.x - max_pin: x.x -python: '3.10' -r_base: '3.5' -spdlog: '1.12' -target_platform: linux-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -zlib: '1.2' diff --git a/tools/micromamba-linux-64/info/recipe/libsolv/CONTROL b/tools/micromamba-linux-64/info/recipe/libsolv/CONTROL deleted file mode 100644 index 35801a3..0000000 --- a/tools/micromamba-linux-64/info/recipe/libsolv/CONTROL +++ /dev/null @@ -1,9 +0,0 @@ -Source: libsolv -Version: 0.7.23 -Description: Library for solving packages and reading repositories -Homepage: https://github.com/openSUSE/libsolv -Default-Features: conda -Supports: !uwp - -Feature: conda -Description: Conda support diff --git a/tools/micromamba-linux-64/info/recipe/libsolv/conda_variant_priorization.patch b/tools/micromamba-linux-64/info/recipe/libsolv/conda_variant_priorization.patch deleted file mode 100644 index cd1edd6..0000000 --- a/tools/micromamba-linux-64/info/recipe/libsolv/conda_variant_priorization.patch +++ /dev/null @@ -1,438 +0,0 @@ -diff --git a/src/conda.c b/src/conda.c -index 21ad6bfb..408a236a 100644 ---- a/src/conda.c -+++ b/src/conda.c -@@ -134,7 +134,7 @@ solv_vercmp_conda(const char *s1, const char *q1, const char *s2, const char *q2 - return -1; - if (s1p - s1 > s2p - s2) - return 1; -- r = s1p - s1 ? strncmp(s1, s2, s1p - s1) : 0; -+ r = (s1p - s1) ? strncmp(s1, s2, s1p - s1) : 0; - if (r) - return r; - } -diff --git a/src/policy.c b/src/policy.c -index c02d2373..d6354cd2 100644 ---- a/src/policy.c -+++ b/src/policy.c -@@ -833,6 +833,79 @@ move_installed_to_front(Pool *pool, Queue *plist) - } - } - -+/* -+ * prune_to_best_version -+ * -+ * sort list of packages (given through plist) by name and evr -+ * return result through plist -+ */ -+void -+prune_to_best_version(Pool *pool, Queue *plist) -+{ -+#ifdef ENABLE_CONDA -+ if (pool->disttype == DISTTYPE_CONDA) -+ return prune_to_best_version_conda(pool, plist); -+#endif -+ -+ int i, j, r; -+ Solvable *s, *best; -+ -+ if (plist->count < 2) /* no need to prune for a single entry */ -+ return; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ -+ /* sort by name first, prefer installed */ -+ solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -+ -+ /* now find best 'per name' */ -+ best = 0; -+ for (i = j = 0; i < plist->count; i++) -+ { -+ s = pool->solvables + plist->elements[i]; -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ -+ if (!best) /* if no best yet, the current is best */ -+ { -+ best = s; -+ continue; -+ } -+ -+ /* name switch: finish group, re-init */ -+ if (best->name != s->name) /* new name */ -+ { -+ plist->elements[j++] = best - pool->solvables; /* move old best to front */ -+ best = s; /* take current as new best */ -+ continue; -+ } -+ -+ r = 0; -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+#ifdef ENABLE_LINKED_PKGS -+ if (r == 0 && has_package_link(pool, s)) -+ r = pool_link_evrcmp(pool, best, s); -+#endif -+ if (r < 0) -+ best = s; -+ } -+ -+ plist->elements[j++] = best - pool->solvables; /* finish last group */ -+ plist->count = j; -+ -+ /* we reduced the list to one package per name, now look at -+ * package obsoletes */ -+ if (plist->count > 1) -+ { -+ if (plist->count == 2) -+ prune_obsoleted_2(pool, plist); -+ else -+ prune_obsoleted(pool, plist); -+ } -+} -+ - #ifdef ENABLE_CONDA - static int - pool_featurecountcmp(Pool *pool, Solvable *s1, Solvable *s2) -@@ -863,23 +936,221 @@ pool_buildflavorcmp(Pool *pool, Solvable *s1, Solvable *s2) - return 0; - return pool_evrcmp_str(pool, f1 ? f1 : "" , f2 ? f2 : "", EVRCMP_COMPARE); - } --#endif -+ -+void intersect_selection(Pool* pool, Id dep, Queue* prev) -+{ -+ Queue tmp; -+ int i = 0, j = 0, isectidx = 0; -+ -+ queue_init(&tmp); -+ -+ Id* pp, p; -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&tmp, p); -+ -+ // set intersection, assuming sorted arrays -+ while (i < prev->count && j < tmp.count) -+ if (prev->elements[i] < tmp.elements[j]) -+ i++; -+ else if (tmp.elements[j] < prev->elements[i]) -+ j++; -+ else -+ { -+ if (isectidx != i) -+ prev->elements[isectidx] = prev->elements[i]; -+ i++, j++, isectidx++; -+ } -+ -+ prev->count = isectidx; -+ queue_free(&tmp); -+} -+ -+int check_deps_unequal(Pool* pool, Queue* q1, Queue* q2, Id name) -+{ -+ Id dep; -+ int i, j; -+ int found = 0; -+ for (i = 0; i < q1->count; ++i) -+ { -+ dep = q1->elements[i]; -+ if (ISRELDEP(dep) && GETRELDEP(pool, dep)->name == name) -+ { -+ for (j = 0; j < q2->count; ++j) -+ { -+ if (q2->elements[j] == dep) -+ { -+ found = 1; -+ break; -+ } -+ } -+ if (!found) -+ return 1; -+ -+ found = 0; -+ } -+ } -+ return 0; -+} -+ -+Id best_matching(Pool* pool, Queue* q, Id name, int* all_have_trackfeatures) -+{ -+ int first = 1; -+ Id dep, p, *pp; -+ -+ Queue selection; -+ queue_init(&selection); -+ -+ for (int i = 0; i < q->count; ++i) -+ { -+ dep = q->elements[i]; -+ if (!ISRELDEP(dep) || GETRELDEP(pool, dep)->name != name) continue; -+ -+ if (first) -+ { -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&selection, p); -+ first = 0; -+ } -+ else -+ intersect_selection(pool, dep, &selection); -+ } -+ -+ if (selection.count == 0) -+ return 0; -+ -+ Solvable *stmp, *best = pool_id2solvable(pool, selection.elements[0]); -+ int cmp; -+ -+ *all_have_trackfeatures = 1; -+ for (int i = 0; i < selection.count; ++i) -+ if (solvable_lookup_count(pool_id2solvable(pool, selection.elements[i]), -+ SOLVABLE_TRACK_FEATURES) == 0) -+ { -+ *all_have_trackfeatures = 0; -+ break; -+ } -+ -+ for (int i = 0; i < selection.count; ++i) -+ { -+ stmp = pool_id2solvable(pool, selection.elements[i]); -+ cmp = pool_evrcmp(pool, best->evr, stmp->evr, 0); -+ if (cmp < 0) best = stmp; -+ } -+ -+ return best->evr; -+} -+ -+int conda_compare_dependencies(Pool *pool, Solvable *s1, Solvable *s2) -+{ -+ int i, j, has_seen; -+ Queue q1, q2, seen; -+ -+ queue_init(&q1); -+ queue_init(&q2); -+ queue_init(&seen); -+ -+ solvable_lookup_deparray(s1, SOLVABLE_REQUIRES, &q1, -1); -+ solvable_lookup_deparray(s2, SOLVABLE_REQUIRES, &q2, -1); -+ -+ int comparison_result = 0; -+ -+ for (i = 0; i < q1.count; ++i) -+ { -+ Id x1 = q1.elements[i]; -+ has_seen = 0; -+ -+ if (!ISRELDEP(x1)) -+ continue; -+ -+ Reldep* rd1 = GETRELDEP(pool, x1); -+ for (j = 0; j < seen.count && has_seen == 0; ++j) -+ if (seen.elements[j] == rd1->name) -+ has_seen = 1; -+ -+ if (has_seen) -+ continue; -+ -+ // first make sure that deps are different between a & b -+ int deps_unequal = check_deps_unequal(pool, &q1, &q2, rd1->name); -+ if (!deps_unequal) -+ { -+ queue_push(&seen, rd1->name); -+ continue; -+ } -+ -+ int aht_1, aht_2; // all have track features check -+ Id b1 = best_matching(pool, &q1, rd1->name, &aht_1); -+ Id b2 = best_matching(pool, &q2, rd1->name, &aht_2); -+ -+ // one of both or both is not solvable... -+ // ignoring this case for now -+ if (b1 == 0 || b2 == 0) -+ continue; -+ -+ // if one has deps with track features, and the other does not, -+ // downweight the one with track features -+ if (aht_1 != aht_2) -+ comparison_result += (aht_1 - aht_2) * 100; -+ -+ comparison_result += pool_evrcmp(pool, b2, b1, 0); -+ } -+ -+ queue_free(&q1); -+ queue_free(&q2); -+ queue_free(&seen); -+ -+ return comparison_result; -+} -+ -+static int -+sort_by_best_dependencies(const void *ap, const void *bp, void *dp) -+{ -+ Pool* pool = (Pool*) dp; -+ -+ Id a = *(Id *)ap; -+ Id b = *(Id *)bp; -+ Solvable *sa, *sb; -+ -+ sa = pool->solvables + a; -+ sb = pool->solvables + b; -+ -+ int res = conda_compare_dependencies(pool, sa, sb); -+ if (res == 0) -+ { -+ // no differences, select later build -+ Repodata* ra = repo_last_repodata(sa->repo); -+ Repodata* rb = repo_last_repodata(sb->repo); -+ -+ unsigned long long bta = repodata_lookup_num(ra, a, SOLVABLE_BUILDTIME, 0ull); -+ unsigned long long btb = repodata_lookup_num(rb, b, SOLVABLE_BUILDTIME, 0ull); -+ -+ res = (btb > bta) ? 1 : -1; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Fallback to timestamp comparison: %llu vs %llu: [%d]\n", bta, btb, res); -+ } -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Selecting variant [%c] of (a) %s vs (b) %s (score: %d)\n", -+ (res < 0 ? 'a' : 'b'), pool_solvable2str(pool, sa), pool_solvable2str(pool, sb), res); -+ -+ return res; -+} - - /* -- * prune_to_best_version -+ * prune_to_best_version_conda - * - * sort list of packages (given through plist) by name and evr - * return result through plist - */ - void --prune_to_best_version(Pool *pool, Queue *plist) -+prune_to_best_version_conda(Pool *pool, Queue *plist) - { - int i, j, r; - Solvable *s, *best; - -- if (plist->count < 2) /* no need to prune for a single entry */ -+ if (plist->count < 2) /* no need to prune for a single entry */ - return; -- POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version_conda %d\n", plist->count); - - /* sort by name first, prefer installed */ - solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -@@ -891,10 +1162,10 @@ prune_to_best_version(Pool *pool, Queue *plist) - s = pool->solvables + plist->elements[i]; - - POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -- pool_solvable2str(pool, s), plist->elements[i], -- (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); - -- if (!best) /* if no best yet, the current is best */ -+ if (!best) /* if no best yet, the current is best */ - { - best = s; - continue; -@@ -904,49 +1175,54 @@ prune_to_best_version(Pool *pool, Queue *plist) - if (best->name != s->name) /* new name */ - { - plist->elements[j++] = best - pool->solvables; /* move old best to front */ -- best = s; /* take current as new best */ -+ best = s; /* take current as new best */ - continue; - } - - r = 0; --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- r = pool_featurecountcmp(pool, best, s); --#endif -+ r = pool_featurecountcmp(pool, best, s); - if (r == 0) - r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; --#ifdef ENABLE_LINKED_PKGS -- if (r == 0 && has_package_link(pool, s)) -- r = pool_link_evrcmp(pool, best, s); --#endif --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- { -- if (r == 0) -- r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -- if (r == 0) -- r = pool_buildversioncmp(pool, best, s); -- if (r == 0) -- r = pool_buildflavorcmp(pool, best, s); -- } --#endif -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ // this can be removed as this comparison doesn't effect anything -+ if (r == 0) -+ r = pool_buildflavorcmp(pool, best, s); - if (r < 0) -- best = s; -+ best = s; - } -- plist->elements[j++] = best - pool->solvables; /* finish last group */ -- plist->count = j; - -- /* we reduced the list to one package per name, now look at -- * package obsoletes */ -- if (plist->count > 1) -+ Queue q; -+ queue_init(&q); -+ for (i = 0; i < plist->count; i++) - { -- if (plist->count == 2) -- prune_obsoleted_2(pool, plist); -- else -- prune_obsoleted(pool, plist); -+ s = pool->solvables + plist->elements[i]; -+ r = pool_featurecountcmp(pool, best, s); -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ if (r == 0) -+ queue_push(&q, s - pool->solvables); - } --} - -+ if (q.count > 1) -+ { -+ // order by first-level deps -+ solv_sort(q.elements, q.count, sizeof(Id), sort_by_best_dependencies, pool); -+ } -+ -+ for (i = 0; i < q.count; ++i) -+ plist->elements[i] = q.elements[i]; -+ plist->count = q.count; -+ -+ queue_free(&q); -+} -+#endif // ENABLE_CONDA - - static int - sort_by_name_evr_sortcmp(const void *ap, const void *bp, void *dp) -diff --git a/src/policy.h b/src/policy.h -index 3ae1005a..a79483a4 100644 ---- a/src/policy.h -+++ b/src/policy.h -@@ -45,6 +45,9 @@ extern void pool_best_solvables(Pool *pool, Queue *plist, int flags); - extern void prune_to_best_version(Pool *pool, Queue *plist); - extern void policy_prefer_favored(Solver *solv, Queue *plist); - -+#ifdef ENABLE_CONDA -+extern void prune_to_best_version_conda(Pool *pool, Queue *plist); -+#endif - - #ifdef __cplusplus - } diff --git a/tools/micromamba-linux-64/info/recipe/libsolv/portfile.cmake b/tools/micromamba-linux-64/info/recipe/libsolv/portfile.cmake deleted file mode 100644 index 7fdac1c..0000000 --- a/tools/micromamba-linux-64/info/recipe/libsolv/portfile.cmake +++ /dev/null @@ -1,55 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO openSUSE/libsolv - REF 0.7.24 - SHA512 a0975d3f80ae8c364d5b32df4c26bc7eb5abb3be81259595848f1f5f74b00e708af3153074041d49383547718e68cee2e82cf4bdeab6221dfdcc605812689d37 - HEAD_REF master - PATCHES - win_export_and_static_build.patch - conda_variant_priorization.patch -) - -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBS) -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBS) - -if (NOT BUILD_DYNAMIC_LIBS) - set(DISABLE_SHARED ON) -else() - set(DISABLE_SHARED OFF) -endif() - -vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - conda ENABLE_CONDA -) - -if(WIN32) - list(APPEND FEATURE_OPTIONS "-DWITHOUT_COOKIEOPEN=ON") -endif() - -vcpkg_configure_cmake( - SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA - OPTIONS - ${FEATURE_OPTIONS} - -DDISABLE_SHARED=${DISABLE_SHARED} - -DENABLE_STATIC=${BUILD_STATIC_LIBS} - -DMULTI_SEMANTICS=ON - -DBUILD_EXAMPLE_PROGRAMS=OFF - .. -) - - -vcpkg_install_cmake() -# vcpkg_fixup_cmake_targets() -# vcpkg_copy_pdbs() - -if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -file(INSTALL ${SOURCE_PATH}/LICENSE.BSD DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsolv RENAME copyright) - -vcpkg_test_cmake(PACKAGE_NAME libsolv) diff --git a/tools/micromamba-linux-64/info/recipe/libsolv/win_export_and_static_build.patch b/tools/micromamba-linux-64/info/recipe/libsolv/win_export_and_static_build.patch deleted file mode 100644 index 796077e..0000000 --- a/tools/micromamba-linux-64/info/recipe/libsolv/win_export_and_static_build.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/repo_write.c b/src/repo_write.c -index a73eebff..9e0622e3 100644 ---- a/src/repo_write.c -+++ b/src/repo_write.c -@@ -188,7 +188,7 @@ write_compressed_blob(Repodata *data, void *blob, int len) - write_u8(data, clen); - write_blob(data, cpage, clen); - } -- blob += chunk; -+ blob = (char*) blob + chunk; - len -= chunk; - } - } diff --git a/tools/micromamba-linux-64/info/recipe/meta.yaml b/tools/micromamba-linux-64/info/recipe/meta.yaml deleted file mode 100644 index 63b2cc2..0000000 --- a/tools/micromamba-linux-64/info/recipe/meta.yaml +++ /dev/null @@ -1,157 +0,0 @@ -# This file created by conda-build 3.25.0 -# meta.yaml template originally from: -# /home/conda/recipe_root, last modified Fri Aug 25 08:19:14 2023 -# ------------------------------------------------ - -package: - name: micromamba - version: 1.5.0 -source: - - folder: mamba - sha256: 0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17 - url: https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-1.5.0.tar.gz -build: - ignore_run_exports_from: - - fmt - - gcc_linux-64 12.* - - gxx_linux-64 12.* - - libarchive-minimal-static - - libcurl - - openssl - - reproc-cpp - - spdlog - number: '1' - string: '1' -requirements: - build: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex 4.5 2_gnu - - binutils_impl_linux-64 2.40 hf600244_0 - - binutils_linux-64 2.40 hbdbef99_1 - - bzip2 1.0.8 h7f98852_4 - - c-ares 1.19.1 hd590300_0 - - ca-certificates 2023.7.22 hbcca054_0 - - cmake 3.26.4 hcfe8598_0 - - expat 2.5.0 hcb278e6_1 - - gcc_impl_linux-64 12.3.0 he2b93b0_0 - - gcc_linux-64 12.3.0 h76fc315_1 - - gxx_impl_linux-64 12.3.0 he2b93b0_0 - - gxx_linux-64 12.3.0 h8a814eb_1 - - kernel-headers_linux-64 2.6.32 he073ed8_16 - - keyutils 1.6.1 h166bdaf_0 - - krb5 1.21.2 h659d440_0 - - ld_impl_linux-64 2.40 h41732ed_0 - - libcurl 8.2.1 hca28451_0 - - libedit 3.1.20191231 he28a2e2_2 - - libev 4.33 h516909a_1 - - libexpat 2.5.0 hcb278e6_1 - - libgcc-devel_linux-64 12.3.0 h8bca6fd_0 - - libgcc-ng 13.1.0 he5830b7_0 - - libgomp 13.1.0 he5830b7_0 - - libnghttp2 1.52.0 h61bc06f_0 - - libsanitizer 12.3.0 h0f45ef3_0 - - libssh2 1.11.0 h0841786_0 - - libstdcxx-devel_linux-64 12.3.0 h8bca6fd_0 - - libstdcxx-ng 13.1.0 hfd8a6a1_0 - - libuv 1.44.2 hd590300_1 - - libzlib 1.2.13 hd590300_5 - - ncurses 6.4 hcb278e6_0 - - ninja 1.11.1 h924138e_0 - - openssl 3.1.2 hd590300_0 - - rhash 1.4.3 hd590300_1 - - sysroot_linux-64 2.12 he073ed8_16 - - xz 5.2.6 h166bdaf_0 - - zlib 1.2.13 hd590300_5 - - zstd 1.5.2 hfc55251_7 - host: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex 4.5 2_gnu - - bzip2 1.0.8 h7f98852_4 - - c-ares 1.19.1 hd590300_0 - - c-ares-static 1.19.1 hd590300_0 - - ca-certificates 2023.7.22 hbcca054_0 - - cli11 2.3.2 hcb278e6_0 - - cpp-expected 1.1.0 hf52228f_0 - - fmt 10.1.0 h00ab1b0_0 - - keyutils 1.6.1 h166bdaf_0 - - krb5 1.20.1 h81ceb04_0 - - krb5-static 1.20.1 h81ceb04_0 - - libarchive-minimal-static 3.6.2 h2b6973b_1 - - libcurl 7.88.1 hdc1c0ab_1 - - libcurl-static 7.88.1 hdc1c0ab_1 - - libedit 3.1.20191231 he28a2e2_2 - - libev 4.33 h516909a_1 - - libev-static 4.33 h516909a_1 - - libgcc-ng 13.1.0 he5830b7_0 - - libgomp 13.1.0 he5830b7_0 - - libnghttp2 1.52.0 h61bc06f_0 - - libnghttp2-static 1.52.0 h9cb18e5_0 - - libopenssl-static 3.1.2 hd590300_0 - - libsolv 0.7.24 hfc55251_3 - - libsolv-static 0.7.24 hfc55251_3 - - libssh2 1.11.0 h0841786_0 - - libssh2-static 1.11.0 h0841786_0 - - libstdcxx-ng 13.1.0 hfd8a6a1_0 - - libzlib 1.2.13 hd590300_5 - - lz4-c-static 1.9.4 ha770c72_0 - - ncurses 6.4 hcb278e6_0 - - nlohmann_json 3.11.2 h27087fc_0 - - openssl 3.1.2 hd590300_0 - - reproc 14.2.4 h0b41bf4_0 - - reproc-cpp 14.2.4 hcb278e6_0 - - reproc-cpp-static 14.2.4 hcb278e6_0 - - reproc-static 14.2.4 h0b41bf4_0 - - spdlog 1.12.0 hd2e6256_1 - - xz 5.2.6 h166bdaf_0 - - xz-static 5.2.6 h166bdaf_0 - - yaml-cpp 0.7.0 h27087fc_2 - - yaml-cpp-static 0.7.0 h27087fc_2 - - zlib 1.2.13 hd590300_5 - - zstd 1.5.2 hfc55251_7 - - zstd-static 1.5.2 h59595ed_7 - run: - - libzlib >=1.2.13,<1.3.0a0 -test: - commands: - - test -f "${PREFIX}/bin/micromamba" - - micromamba --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" - - micromamba create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' -about: - dev_url: https://github.com/mamba-org/mamba - home: https://github.com/mamba-org/mamba - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - license_file: - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - - mamba/LICENSE - summary: Micromamba is a tiny version of mamba, the fast conda package installer. -extra: - copy_test_source_files: true - final: true - recipe-maintainers: - - AntoinePrv - - JohanMabille - - SylvainCorlay - - adriendelsalle - - mariusvniekerk - - pavelzw - - wolfv diff --git a/tools/micromamba-linux-64/info/recipe/meta.yaml.template b/tools/micromamba-linux-64/info/recipe/meta.yaml.template deleted file mode 100644 index 0c3950b..0000000 --- a/tools/micromamba-linux-64/info/recipe/meta.yaml.template +++ /dev/null @@ -1,132 +0,0 @@ -{% set version = "1.5.0" %} -{% set sha256 = "0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17" %} -{% set build_num = 1 %} - -# A strategy for testing the feedstock locally in mamba CI -{% if os.environ.get("CI", "") == "local" %} - {% set mamba_source_type = "path" %} - {% set mamba_source_val = "{}/source".format(os.environ.get("FEEDSTOCK_ROOT", "..")) %} - {% set mamba_hash_type = "" %} - {% set mamba_hash_val = "" %} -{% else %} - {% set mamba_source_type = "url" %} - {% set mamba_source_val = "https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-{}.tar.gz".format(version) %} - {% set mamba_hash_type = "sha256" %} - {% set mamba_hash_val = sha256 %} -{% endif %} - -# Used for writing generic tests -{% set bin_ext = "" %} # [unix] -{% set bin_ext = ".exe" %} # [win] - -package: - name: micromamba - version: {{ version }} - -source: - - "{{ mamba_source_type }}": "{{ mamba_source_val }}" - "{{ mamba_hash_type }}": "{{ mamba_hash_val }}" - folder: mamba - # VCPKG comes with its own (short-lived) metadata which can be already outdated in the latest release - - url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz # [win] - sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 # [win] - folder: vcpkg # [win] - -build: - number: {{ build_num }} - string: {{ build_num }} - ignore_run_exports_from: - - libcurl # [unix] - - libarchive-minimal-static # [unix] - - reproc-cpp # [unix] - - openssl # [unix] - - spdlog - - fmt - - {{ compiler('c') }} # [linux] - - {{ compiler('cxx') }} # [linux] - - python # [win] - -requirements: - build: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - cmake # [unix] - - ninja - - vcpkg-tool # [win] - - python # [win] - - curl >=7.87,<8 # [win] - - zlib # [win] - host: - - cli11 >=2.2,<3 - - cpp-expected - - nlohmann_json - - spdlog - - fmt - - yaml-cpp-static # [unix] - - libcurl >=7.88.1,<8 # [unix] - - libcurl-static >=7.88.1,<8 # [unix] - - xz-static # [unix] - - libssh2-static # [unix] - - libarchive-minimal-static # [unix] - - krb5-static # [unix] - - libsolv-static # [unix] - - openssl {{ openssl }} # [unix] - - libopenssl-static {{ openssl }} # [unix] - - zstd-static # [unix] - - zlib # [unix] - - libnghttp2-static # [unix] - - lz4-c-static # [unix] - - reproc-static # [unix] - - reproc-cpp # [unix] - - reproc-cpp-static # [unix] - - winreg # [win] - -test: - commands: - - test -f "${PREFIX}/bin/micromamba" # [unix] - - if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) # [win] - - micromamba{{ bin_ext }} --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" # [unix] - - mkdir %TEMP%\mamba # [win] - - set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" # [win] - - micromamba{{ bin_ext }} create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' # [win] - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' # [win] - -about: - home: https://github.com/mamba-org/mamba - license_file: - - mamba/LICENSE - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - summary: Micromamba is a tiny version of mamba, the fast conda package installer. - dev_url: https://github.com/mamba-org/mamba - -extra: - recipe-maintainers: - - AntoinePrv - - pavelzw - - wolfv - - SylvainCorlay - - JohanMabille - - mariusvniekerk - - adriendelsalle diff --git a/tools/micromamba-linux-64/info/recipe/recipe-scripts-license.txt b/tools/micromamba-linux-64/info/recipe/recipe-scripts-license.txt deleted file mode 100644 index 2ec51d7..0000000 --- a/tools/micromamba-linux-64/info/recipe/recipe-scripts-license.txt +++ /dev/null @@ -1,27 +0,0 @@ -BSD-3-Clause license -Copyright (c) 2015-2022, conda-forge contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. diff --git a/tools/micromamba-linux-64/info/test/run_test.sh b/tools/micromamba-linux-64/info/test/run_test.sh deleted file mode 100644 index 1a56f3a..0000000 --- a/tools/micromamba-linux-64/info/test/run_test.sh +++ /dev/null @@ -1,13 +0,0 @@ - - -set -ex - - - -test -f "${PREFIX}/bin/micromamba" -micromamba --help -export MAMBA_ROOT_PREFIX="$(mktemp -d)" -micromamba create -n test --override-channels -c conda-forge --yes python=3.9 -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os" -exit 0 diff --git a/tools/micromamba-linux-aarch64/.DS_Store b/tools/micromamba-linux-aarch64/.DS_Store deleted file mode 100644 index 388d44e..0000000 Binary files a/tools/micromamba-linux-aarch64/.DS_Store and /dev/null differ diff --git a/tools/micromamba-linux-aarch64/bin/micromamba b/tools/micromamba-linux-aarch64/bin/micromamba deleted file mode 100755 index c964324..0000000 Binary files a/tools/micromamba-linux-aarch64/bin/micromamba and /dev/null differ diff --git a/tools/micromamba-linux-aarch64/info/about.json b/tools/micromamba-linux-aarch64/info/about.json deleted file mode 100644 index 3bf082c..0000000 --- a/tools/micromamba-linux-aarch64/info/about.json +++ /dev/null @@ -1,224 +0,0 @@ -{ - "channels": [ - "https://conda.anaconda.org/conda-forge" - ], - "conda_build_version": "3.25.0", - "conda_version": "23.3.1", - "dev_url": "https://github.com/mamba-org/mamba", - "env_vars": { - "CIO_TEST": "" - }, - "extra": { - "copy_test_source_files": true, - "final": true, - "recipe-maintainers": [ - "AntoinePrv", - "pavelzw", - "wolfv", - "SylvainCorlay", - "JohanMabille", - "mariusvniekerk", - "adriendelsalle" - ] - }, - "home": "https://github.com/mamba-org/mamba", - "identifiers": [], - "keywords": [], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "license_file": [ - "mamba/LICENSE", - "CLI11_LICENSE.txt", - "CURL_LICENSE.txt", - "C_ARES_LICENSE.txt", - "FMT_LICENSE.txt", - "KRB5_LICENSE.txt", - "LIBARCHIVE_LICENSE.txt", - "LIBEV_LICENSE.txt", - "LIBLZ4_LICENSE.txt", - "LIBNGHTTP2_LICENSE.txt", - "LIBOPENSSL_3_LICENSE.txt", - "LIBOPENSSL_LICENSE.txt", - "LIBSOLV_LICENSE.txt", - "NLOHMANN_JSON_LICENSE.txt", - "REPROC_LICENSE.txt", - "SPDLOG_LICENSE.txt", - "TL_EXPECTED_LICENSE.txt", - "ZSTD_LICENSE.txt" - ], - "root_pkgs": [ - "tk 8.6.12 h27826a3_0", - "markdown-it-py 3.0.0 pyhd8ed1ab_0", - "pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0", - "pkginfo 1.9.6 pyhd8ed1ab_0", - "c-ares 1.19.1 hd590300_0", - "packaging 23.1 pyhd8ed1ab_0", - "libev 4.33 h516909a_1", - "platformdirs 3.10.0 pyhd8ed1ab_0", - "libgomp 13.1.0 he5830b7_0", - "libpng 1.6.39 h753d276_0", - "gettext 0.21.1 h27087fc_0", - "libxcb 1.15 h0b41bf4_0", - "pycosat 0.6.4 py310h5764c6d_1", - "git 2.41.0 pl5321h86e50cf_0", - "pyyaml 6.0 py310h5764c6d_5", - "libexpat 2.5.0 hcb278e6_1", - "wcwidth 0.2.6 pyhd8ed1ab_0", - "jupyter_core 5.3.1 py310hff52083_0", - "libdeflate 1.18 h0b41bf4_0", - "anaconda-client 1.12.0 pyhd8ed1ab_1", - "python_abi 3.10 3_cp310", - "tqdm 4.66.1 pyhd8ed1ab_0", - "jsonschema 4.19.0 pyhd8ed1ab_1", - "libtiff 4.5.1 h8b53f26_0", - "brotli-python 1.0.9 py310hd8f1fbe_9", - "joblib 1.3.2 pyhd8ed1ab_0", - "mamba 1.4.2 py310h51d5547_0", - "lcms2 2.15 haa2dc70_1", - "psutil 5.9.5 py310h1fa729e_0", - "zstd 1.5.2 hfc55251_7", - "requests-toolbelt 1.0.0 pyhd8ed1ab_0", - "freetype 2.12.1 hca18f0e_1", - "readline 8.2 h8228510_1", - "wheel 0.41.1 pyhd8ed1ab_0", - "colorama 0.4.6 pyhd8ed1ab_0", - "libnghttp2 1.52.0 h61bc06f_0", - "lz4-c 1.9.4 hcb278e6_0", - "jsonpointer 2.0 py_0", - "urllib3 1.26.15 pyhd8ed1ab_0", - "python-fastjsonschema 2.18.0 pyhd8ed1ab_0", - "lzo 2.10 h516909a_1000", - "python-dateutil 2.8.2 pyhd8ed1ab_0", - "cffi 1.15.1 py310h255011f_3", - "conda-index 0.2.3 pyhd8ed1ab_0", - "attrs 23.1.0 pyh71513ae_1", - "pysocks 1.7.1 pyha2e5f31_6", - "_libgcc_mutex 0.1 conda_forge", - "conda-build 3.25.0 py310hff52083_0", - "conda-package-handling 2.2.0 pyh38be061_0", - "pycparser 2.21 pyhd8ed1ab_0", - "conda 23.3.1 py310hff52083_0", - "openssl 3.1.2 hd590300_0", - "certifi 2023.7.22 pyhd8ed1ab_0", - "fmt 9.1.0 h924138e_0", - "idna 3.4 pyhd8ed1ab_0", - "lerc 4.0.0 h27087fc_0", - "more-itertools 10.1.0 pyhd8ed1ab_0", - "libwebp-base 1.3.1 hd590300_0", - "importlib_resources 6.0.1 pyhd8ed1ab_0", - "chardet 5.2.0 py310hff52083_0", - "liblief 0.12.3 h27087fc_0", - "ruamel.yaml.clib 0.2.7 py310h1fa729e_1", - "json5 0.9.14 pyhd8ed1ab_0", - "mdurl 0.1.0 pyhd8ed1ab_0", - "jsonschema-specifications 2023.7.1 pyhd8ed1ab_0", - "tomli 2.0.1 pyhd8ed1ab_0", - "tzdata 2023c h71feb2d_0", - "pytz 2023.3 pyhd8ed1ab_0", - "glob2 0.7 py_0", - "libedit 3.1.20191231 he28a2e2_2", - "backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0", - "reproc-cpp 14.2.4 hcb278e6_0", - "dataclasses 0.8 pyhc8e2a94_3", - "referencing 0.30.2 pyhd8ed1ab_0", - "pip 23.2.1 pyhd8ed1ab_0", - "nbformat 5.9.2 pyhd8ed1ab_0", - "ruamel_yaml 0.15.80 py310h5764c6d_1008", - "exceptiongroup 1.1.3 pyhd8ed1ab_0", - "pillow 10.0.0 py310h582fbeb_0", - "libstdcxx-ng 13.1.0 hfd8a6a1_0", - "ripgrep 13.0.0 h2f28480_2", - "py-lief 0.12.3 py310hd8f1fbe_0", - "krb5 1.21.2 h659d440_0", - "pygments 2.16.1 pyhd8ed1ab_0", - "perl 5.32.1 4_hd590300_perl5", - "jinja2 3.1.2 pyhd8ed1ab_1", - "patch 2.7.6 h7f98852_1002", - "requests 2.31.0 pyhd8ed1ab_0", - "yaml 0.2.5 h7f98852_2", - "ncurses 6.4 hcb278e6_0", - "boltons 23.0.0 pyhd8ed1ab_0", - "pthread-stubs 0.4 h36c2ea0_1001", - "rpds-py 0.9.2 py310hcb5633a_0", - "bzip2 1.0.8 h7f98852_4", - "backports 1.0 pyhd8ed1ab_3", - "libiconv 1.17 h166bdaf_0", - "xz 5.2.6 h166bdaf_0", - "pcre2 10.40 hc3806b6_0", - "rich 13.5.1 pyhd8ed1ab_0", - "charset-normalizer 3.2.0 pyhd8ed1ab_0", - "ruamel.yaml 0.17.32 py310h2372a71_0", - "six 1.16.0 pyh6c4a22f_0", - "libsqlite 3.42.0 h2797004_0", - "toolz 0.12.0 pyhd8ed1ab_0", - "tini 0.19.0 h166bdaf_1", - "jsonpatch 1.32 pyhd8ed1ab_0", - "su-exec 0.2 h166bdaf_1003", - "beautifulsoup4 4.12.2 pyha770c72_0", - "typing_extensions 4.7.1 pyha770c72_0", - "libssh2 1.11.0 h0841786_0", - "filelock 3.12.2 pyhd8ed1ab_0", - "zipp 3.16.2 pyhd8ed1ab_0", - "prompt_toolkit 3.0.39 hd8ed1ab_0", - "python 3.10.12 hd12c33a_0_cpython", - "sniffio 1.3.0 pyhd8ed1ab_0", - "libsolv 0.7.24 hfc55251_1", - "watchgod 0.8.2 pyhd8ed1ab_0", - "anaconda-project 0.11.1 pyhd8ed1ab_0", - "python-libarchive-c 5.0 py310hff52083_1", - "libgcc-ng 13.1.0 he5830b7_0", - "libffi 3.4.2 h7f98852_5", - "libjpeg-turbo 2.1.5.1 h0b41bf4_0", - "libnsl 2.0.0 h7f98852_0", - "libcurl 8.2.1 hca28451_0", - "icu 72.1 hcb278e6_0", - "pluggy 1.2.0 pyhd8ed1ab_0", - "conda-libmamba-solver 23.3.0 pyhd8ed1ab_0", - "tornado 6.3.3 py310h2372a71_0", - "zstandard 0.19.0 py310h1275a96_2", - "pyopenssl 23.2.0 pyhd8ed1ab_1", - "libmambapy 1.4.2 py310h1428755_0", - "anyio 3.7.1 pyhd8ed1ab_0", - "conda-pack 0.7.1 pyhd8ed1ab_0", - "boa 0.15.1 pyhd8ed1ab_0", - "soupsieve 2.3.2.post1 pyhd8ed1ab_0", - "defusedxml 0.7.1 pyhd8ed1ab_0", - "libzlib 1.2.13 hd590300_5", - "setuptools 68.1.2 pyhd8ed1ab_0", - "conda-package-streaming 0.9.0 pyhd8ed1ab_0", - "yaml-cpp 0.7.0 h27087fc_2", - "libuuid 2.38.1 h0b41bf4_0", - "traitlets 5.9.0 pyhd8ed1ab_0", - "_openmp_mutex 4.5 2_gnu", - "xorg-libxau 1.0.11 hd590300_0", - "libxml2 2.11.5 h0d562d8_0", - "brotlipy 0.7.0 py310h5764c6d_1005", - "openjpeg 2.5.0 hfec8fc6_2", - "clyent 1.2.2 py_1", - "typing-extensions 4.7.1 hd8ed1ab_0", - "ca-certificates 2023.7.22 hbcca054_0", - "curl 8.2.1 hca28451_0", - "reproc 14.2.4 h0b41bf4_0", - "patchelf 0.17.2 h58526e2_0", - "libarchive 3.6.2 h039dbb9_1", - "click 8.1.7 unix_pyh707e725_0", - "prompt-toolkit 3.0.39 pyha770c72_0", - "keyutils 1.6.1 h166bdaf_0", - "libmamba 1.4.2 hcea66bb_0", - "ld_impl_linux-64 2.40 h41732ed_0", - "markupsafe 2.1.3 py310h2372a71_0", - "xorg-libxdmcp 1.1.3 h7f98852_0", - "pybind11-abi 4 hd8ed1ab_3", - "cryptography 41.0.3 py310h75e40e8_0", - "conda-env 2.6.0 1", - "conda-oci-mirror 0.1.0 pyhd8ed1ab_0", - "oniguruma 6.9.8 h166bdaf_0", - "jq 1.6 h36c2ea0_1000", - "conda-forge-ci-setup 3.32.5 py310h7a2d8a0_100", - "conda-forge-metadata 0.5.2 pyhd8ed1ab_0", - "oras-py 0.1.14 pyhd8ed1ab_0", - "shyaml 0.6.2 pyhd3deb0d_0" - ], - "summary": "Micromamba is a tiny version of mamba, the fast conda package installer.", - "tags": [] -} \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/files b/tools/micromamba-linux-aarch64/info/files deleted file mode 100644 index 6c1e7bf..0000000 --- a/tools/micromamba-linux-aarch64/info/files +++ /dev/null @@ -1 +0,0 @@ -bin/micromamba diff --git a/tools/micromamba-linux-aarch64/info/git b/tools/micromamba-linux-aarch64/info/git deleted file mode 100644 index e69de29..0000000 diff --git a/tools/micromamba-linux-aarch64/info/has_prefix b/tools/micromamba-linux-aarch64/info/has_prefix deleted file mode 100644 index d92613c..0000000 --- a/tools/micromamba-linux-aarch64/info/has_prefix +++ /dev/null @@ -1 +0,0 @@ -/home/conda/feedstock_root/build_artifacts/micromamba_1692951652904/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_ binary bin/micromamba diff --git a/tools/micromamba-linux-aarch64/info/hash_input.json b/tools/micromamba-linux-aarch64/info/hash_input.json deleted file mode 100644 index 8392369..0000000 --- a/tools/micromamba-linux-aarch64/info/hash_input.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "libcurl": "8", - "CI": "azure", - "target_platform": "linux-aarch64", - "c_compiler_version": "12", - "c_compiler": "gcc", - "spdlog": "1.12", - "channel_targets": "conda-forge main", - "cxx_compiler_version": "12", - "zlib": "1.2", - "cxx_compiler": "gxx", - "openssl": "3", - "fmt": "10" -} \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/index.json b/tools/micromamba-linux-aarch64/info/index.json deleted file mode 100644 index 5bb3eb0..0000000 --- a/tools/micromamba-linux-aarch64/info/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "arch": "aarch64", - "build": "1", - "build_number": 1, - "depends": [ - "libzlib >=1.2.13,<1.3.0a0" - ], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "name": "micromamba", - "platform": "linux", - "subdir": "linux-aarch64", - "timestamp": 1692952489866, - "version": "1.5.0" -} \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/CLI11_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/CURL_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/C_ARES_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-linux-aarch64/info/licenses/FMT_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/KRB5_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/LIBARCHIVE_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/LIBEV_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-linux-aarch64/info/licenses/LIBLZ4_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-aarch64/info/licenses/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-linux-aarch64/info/licenses/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/LIBOPENSSL_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-linux-aarch64/info/licenses/LIBSOLV_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-aarch64/info/licenses/REPROC_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-aarch64/info/licenses/SPDLOG_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-linux-aarch64/info/licenses/TL_EXPECTED_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/licenses/ZSTD_LICENSE.txt b/tools/micromamba-linux-aarch64/info/licenses/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-aarch64/info/licenses/mamba/LICENSE b/tools/micromamba-linux-aarch64/info/licenses/mamba/LICENSE deleted file mode 100644 index 8ae98f9..0000000 --- a/tools/micromamba-linux-aarch64/info/licenses/mamba/LICENSE +++ /dev/null @@ -1,11 +0,0 @@ -Copyright 2019 QuantStack and the Mamba contributors. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-aarch64/info/paths.json b/tools/micromamba-linux-aarch64/info/paths.json deleted file mode 100644 index 43657c7..0000000 --- a/tools/micromamba-linux-aarch64/info/paths.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "paths": [ - { - "_path": "bin/micromamba", - "file_mode": "binary", - "path_type": "hardlink", - "prefix_placeholder": "/home/conda/feedstock_root/build_artifacts/micromamba_1692951652904/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", - "sha256": "7035ef19cb0ab8695c9d83bc981468a5eb9a0ff6a0965313a2c58c8555474655", - "size_in_bytes": 16164568 - } - ], - "paths_version": 1 -} \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/CLI11_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/CPP_FILESYSTEM_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/CPP_FILESYSTEM_LICENSE.txt deleted file mode 100644 index 8b24faa..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/CPP_FILESYSTEM_LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018, Steffen Schümann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-aarch64/info/recipe/CURL_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/C_ARES_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-linux-aarch64/info/recipe/FMT_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/KRB5_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/LIBARCHIVE_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/LIBEV_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-linux-aarch64/info/recipe/LIBLZ4_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-aarch64/info/recipe/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-linux-aarch64/info/recipe/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/LIBOPENSSL_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-linux-aarch64/info/recipe/LIBSOLV_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-aarch64/info/recipe/REPROC_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-aarch64/info/recipe/SPDLOG_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-linux-aarch64/info/recipe/TERMCOLOR_CPP_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/TERMCOLOR_CPP_LICENSE.txt deleted file mode 100644 index 679df41..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/TERMCOLOR_CPP_LICENSE.txt +++ /dev/null @@ -1,31 +0,0 @@ -Copyright (c) 2013, Ihor Kalnytskyi. -All rights reserved. - -Redistribution and use in source and binary forms of the software as well -as documentation, with or without modification, are permitted provided -that the following conditions are met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -* The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/TL_EXPECTED_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-linux-aarch64/info/recipe/ZSTD_LICENSE.txt b/tools/micromamba-linux-aarch64/info/recipe/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-aarch64/info/recipe/bld.bat b/tools/micromamba-linux-aarch64/info/recipe/bld.bat deleted file mode 100644 index 6a91569..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/bld.bat +++ /dev/null @@ -1,41 +0,0 @@ -SET VCPKG_ROOT=%CD%\vcpkg - -SET VCPKG_BUILD_TYPE=release -vcpkg install --overlay-ports=%RECIPE_DIR%\libsolv libsolv[conda] --triplet x64-windows-static - -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install "libarchive[bzip2,lz4,lzma,lzo,openssl,zstd]" --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install curl --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install yaml-cpp --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install reproc --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% - -SET "CXXFLAGS=%CXXFLAGS% /showIncludes" -SET CMAKE_PREFIX_PATH=%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH% - -cmake -S mamba ^ - -B build ^ - -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ - -D CMAKE_PREFIX_PATH="%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%" ^ - -D CMAKE_BUILD_TYPE="Release" ^ - -D BUILD_LIBMAMBA=ON ^ - -D BUILD_STATIC=ON ^ - -D BUILD_MICROMAMBA=ON ^ - -G "Ninja" -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --build build --parallel %CPU_COUNT% -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --install build -if %errorlevel% NEQ 0 exit /b %errorlevel% - -DEL /Q /F /S "%LIBRARY_PREFIX%\lib\libmamba*" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\include\mamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\lib\cmake\libmamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% diff --git a/tools/micromamba-linux-aarch64/info/recipe/build.sh b/tools/micromamba-linux-aarch64/info/recipe/build.sh deleted file mode 100644 index 15cc563..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/build.sh +++ /dev/null @@ -1,35 +0,0 @@ -set -euxo pipefail - -# Conda's binary relocation can result in string changing which can result in errors like -# > warning: command substitution: ignored null byte in input -# https://github.com/mamba-org/mamba/issues/1517 -export CXXFLAGS="${CXXFLAGS} -fno-merge-constants" -export CFLAGS="${CFLAGS} -fno-merge-constants" -export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY=1" - -cmake -S mamba/ \ - -B build/ \ - -G Ninja \ - ${CMAKE_ARGS} \ - -D CMAKE_INSTALL_PREFIX=${PREFIX} \ - -D CMAKE_BUILD_TYPE="Release" \ - -D BUILD_LIBMAMBA=ON \ - -D BUILD_STATIC=ON \ - -D BUILD_MICROMAMBA=ON -cmake --build build/ --parallel ${CPU_COUNT} -cmake --install build/ - -# remove everything related to `libmamba` -rm -rf "${PREFIX}/lib/libmamba"* -rm -rf "${PREFIX}/include/mamba" -rm -rf "${PREFIX}/lib/cmake/libmamba" - -"${STRIP:-strip}" "${PREFIX}/bin/micromamba" - -if [[ "$target_platform" == "osx-"* ]]; then - OTOOL_OUTPUT=$("${OTOOL:-otool}" -L "${PREFIX}/bin/micromamba") - if [[ "$OTOOL_OUTPUT" == *libc++.1.dylib* ]]; then - echo "micromamba is linked to libc++.1.dlyb" - exit 1 - fi -fi diff --git a/tools/micromamba-linux-aarch64/info/recipe/conda_build_config.yaml b/tools/micromamba-linux-aarch64/info/recipe/conda_build_config.yaml deleted file mode 100644 index 66fe19a..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/conda_build_config.yaml +++ /dev/null @@ -1,46 +0,0 @@ -BUILD: aarch64-conda_cos7-linux-gnu -CI: azure -CMAKE_CROSSCOMPILING_EMULATOR: /usr/bin/qemu-aarch64-static -CROSSCOMPILING_EMULATOR: /usr/bin/qemu-aarch64-static -build_platform: linux-64 -c_compiler: gcc -c_compiler_version: '12' -cdt_arch: aarch64 -cdt_name: cos7 -channel_sources: conda-forge -channel_targets: conda-forge main -cpu_optimization_target: nocona -cran_mirror: https://cran.r-project.org -cxx_compiler: gxx -cxx_compiler_version: '12' -docker_image: quay.io/condaforge/linux-anvil-cos7-x86_64 -extend_keys: -- ignore_version -- ignore_build_only_deps -- extend_keys -- pin_run_as_build -fmt: '10' -fortran_compiler: gfortran -ignore_build_only_deps: -- numpy -- python -libcurl: '8' -lua: '5' -numpy: '1.22' -openssl: '3' -perl: 5.26.2 -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x - r-base: - min_pin: x.x - max_pin: x.x -python: '3.10' -r_base: '3.5' -spdlog: '1.12' -target_platform: linux-aarch64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -zlib: '1.2' diff --git a/tools/micromamba-linux-aarch64/info/recipe/libsolv/CONTROL b/tools/micromamba-linux-aarch64/info/recipe/libsolv/CONTROL deleted file mode 100644 index 35801a3..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/libsolv/CONTROL +++ /dev/null @@ -1,9 +0,0 @@ -Source: libsolv -Version: 0.7.23 -Description: Library for solving packages and reading repositories -Homepage: https://github.com/openSUSE/libsolv -Default-Features: conda -Supports: !uwp - -Feature: conda -Description: Conda support diff --git a/tools/micromamba-linux-aarch64/info/recipe/libsolv/conda_variant_priorization.patch b/tools/micromamba-linux-aarch64/info/recipe/libsolv/conda_variant_priorization.patch deleted file mode 100644 index cd1edd6..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/libsolv/conda_variant_priorization.patch +++ /dev/null @@ -1,438 +0,0 @@ -diff --git a/src/conda.c b/src/conda.c -index 21ad6bfb..408a236a 100644 ---- a/src/conda.c -+++ b/src/conda.c -@@ -134,7 +134,7 @@ solv_vercmp_conda(const char *s1, const char *q1, const char *s2, const char *q2 - return -1; - if (s1p - s1 > s2p - s2) - return 1; -- r = s1p - s1 ? strncmp(s1, s2, s1p - s1) : 0; -+ r = (s1p - s1) ? strncmp(s1, s2, s1p - s1) : 0; - if (r) - return r; - } -diff --git a/src/policy.c b/src/policy.c -index c02d2373..d6354cd2 100644 ---- a/src/policy.c -+++ b/src/policy.c -@@ -833,6 +833,79 @@ move_installed_to_front(Pool *pool, Queue *plist) - } - } - -+/* -+ * prune_to_best_version -+ * -+ * sort list of packages (given through plist) by name and evr -+ * return result through plist -+ */ -+void -+prune_to_best_version(Pool *pool, Queue *plist) -+{ -+#ifdef ENABLE_CONDA -+ if (pool->disttype == DISTTYPE_CONDA) -+ return prune_to_best_version_conda(pool, plist); -+#endif -+ -+ int i, j, r; -+ Solvable *s, *best; -+ -+ if (plist->count < 2) /* no need to prune for a single entry */ -+ return; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ -+ /* sort by name first, prefer installed */ -+ solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -+ -+ /* now find best 'per name' */ -+ best = 0; -+ for (i = j = 0; i < plist->count; i++) -+ { -+ s = pool->solvables + plist->elements[i]; -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ -+ if (!best) /* if no best yet, the current is best */ -+ { -+ best = s; -+ continue; -+ } -+ -+ /* name switch: finish group, re-init */ -+ if (best->name != s->name) /* new name */ -+ { -+ plist->elements[j++] = best - pool->solvables; /* move old best to front */ -+ best = s; /* take current as new best */ -+ continue; -+ } -+ -+ r = 0; -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+#ifdef ENABLE_LINKED_PKGS -+ if (r == 0 && has_package_link(pool, s)) -+ r = pool_link_evrcmp(pool, best, s); -+#endif -+ if (r < 0) -+ best = s; -+ } -+ -+ plist->elements[j++] = best - pool->solvables; /* finish last group */ -+ plist->count = j; -+ -+ /* we reduced the list to one package per name, now look at -+ * package obsoletes */ -+ if (plist->count > 1) -+ { -+ if (plist->count == 2) -+ prune_obsoleted_2(pool, plist); -+ else -+ prune_obsoleted(pool, plist); -+ } -+} -+ - #ifdef ENABLE_CONDA - static int - pool_featurecountcmp(Pool *pool, Solvable *s1, Solvable *s2) -@@ -863,23 +936,221 @@ pool_buildflavorcmp(Pool *pool, Solvable *s1, Solvable *s2) - return 0; - return pool_evrcmp_str(pool, f1 ? f1 : "" , f2 ? f2 : "", EVRCMP_COMPARE); - } --#endif -+ -+void intersect_selection(Pool* pool, Id dep, Queue* prev) -+{ -+ Queue tmp; -+ int i = 0, j = 0, isectidx = 0; -+ -+ queue_init(&tmp); -+ -+ Id* pp, p; -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&tmp, p); -+ -+ // set intersection, assuming sorted arrays -+ while (i < prev->count && j < tmp.count) -+ if (prev->elements[i] < tmp.elements[j]) -+ i++; -+ else if (tmp.elements[j] < prev->elements[i]) -+ j++; -+ else -+ { -+ if (isectidx != i) -+ prev->elements[isectidx] = prev->elements[i]; -+ i++, j++, isectidx++; -+ } -+ -+ prev->count = isectidx; -+ queue_free(&tmp); -+} -+ -+int check_deps_unequal(Pool* pool, Queue* q1, Queue* q2, Id name) -+{ -+ Id dep; -+ int i, j; -+ int found = 0; -+ for (i = 0; i < q1->count; ++i) -+ { -+ dep = q1->elements[i]; -+ if (ISRELDEP(dep) && GETRELDEP(pool, dep)->name == name) -+ { -+ for (j = 0; j < q2->count; ++j) -+ { -+ if (q2->elements[j] == dep) -+ { -+ found = 1; -+ break; -+ } -+ } -+ if (!found) -+ return 1; -+ -+ found = 0; -+ } -+ } -+ return 0; -+} -+ -+Id best_matching(Pool* pool, Queue* q, Id name, int* all_have_trackfeatures) -+{ -+ int first = 1; -+ Id dep, p, *pp; -+ -+ Queue selection; -+ queue_init(&selection); -+ -+ for (int i = 0; i < q->count; ++i) -+ { -+ dep = q->elements[i]; -+ if (!ISRELDEP(dep) || GETRELDEP(pool, dep)->name != name) continue; -+ -+ if (first) -+ { -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&selection, p); -+ first = 0; -+ } -+ else -+ intersect_selection(pool, dep, &selection); -+ } -+ -+ if (selection.count == 0) -+ return 0; -+ -+ Solvable *stmp, *best = pool_id2solvable(pool, selection.elements[0]); -+ int cmp; -+ -+ *all_have_trackfeatures = 1; -+ for (int i = 0; i < selection.count; ++i) -+ if (solvable_lookup_count(pool_id2solvable(pool, selection.elements[i]), -+ SOLVABLE_TRACK_FEATURES) == 0) -+ { -+ *all_have_trackfeatures = 0; -+ break; -+ } -+ -+ for (int i = 0; i < selection.count; ++i) -+ { -+ stmp = pool_id2solvable(pool, selection.elements[i]); -+ cmp = pool_evrcmp(pool, best->evr, stmp->evr, 0); -+ if (cmp < 0) best = stmp; -+ } -+ -+ return best->evr; -+} -+ -+int conda_compare_dependencies(Pool *pool, Solvable *s1, Solvable *s2) -+{ -+ int i, j, has_seen; -+ Queue q1, q2, seen; -+ -+ queue_init(&q1); -+ queue_init(&q2); -+ queue_init(&seen); -+ -+ solvable_lookup_deparray(s1, SOLVABLE_REQUIRES, &q1, -1); -+ solvable_lookup_deparray(s2, SOLVABLE_REQUIRES, &q2, -1); -+ -+ int comparison_result = 0; -+ -+ for (i = 0; i < q1.count; ++i) -+ { -+ Id x1 = q1.elements[i]; -+ has_seen = 0; -+ -+ if (!ISRELDEP(x1)) -+ continue; -+ -+ Reldep* rd1 = GETRELDEP(pool, x1); -+ for (j = 0; j < seen.count && has_seen == 0; ++j) -+ if (seen.elements[j] == rd1->name) -+ has_seen = 1; -+ -+ if (has_seen) -+ continue; -+ -+ // first make sure that deps are different between a & b -+ int deps_unequal = check_deps_unequal(pool, &q1, &q2, rd1->name); -+ if (!deps_unequal) -+ { -+ queue_push(&seen, rd1->name); -+ continue; -+ } -+ -+ int aht_1, aht_2; // all have track features check -+ Id b1 = best_matching(pool, &q1, rd1->name, &aht_1); -+ Id b2 = best_matching(pool, &q2, rd1->name, &aht_2); -+ -+ // one of both or both is not solvable... -+ // ignoring this case for now -+ if (b1 == 0 || b2 == 0) -+ continue; -+ -+ // if one has deps with track features, and the other does not, -+ // downweight the one with track features -+ if (aht_1 != aht_2) -+ comparison_result += (aht_1 - aht_2) * 100; -+ -+ comparison_result += pool_evrcmp(pool, b2, b1, 0); -+ } -+ -+ queue_free(&q1); -+ queue_free(&q2); -+ queue_free(&seen); -+ -+ return comparison_result; -+} -+ -+static int -+sort_by_best_dependencies(const void *ap, const void *bp, void *dp) -+{ -+ Pool* pool = (Pool*) dp; -+ -+ Id a = *(Id *)ap; -+ Id b = *(Id *)bp; -+ Solvable *sa, *sb; -+ -+ sa = pool->solvables + a; -+ sb = pool->solvables + b; -+ -+ int res = conda_compare_dependencies(pool, sa, sb); -+ if (res == 0) -+ { -+ // no differences, select later build -+ Repodata* ra = repo_last_repodata(sa->repo); -+ Repodata* rb = repo_last_repodata(sb->repo); -+ -+ unsigned long long bta = repodata_lookup_num(ra, a, SOLVABLE_BUILDTIME, 0ull); -+ unsigned long long btb = repodata_lookup_num(rb, b, SOLVABLE_BUILDTIME, 0ull); -+ -+ res = (btb > bta) ? 1 : -1; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Fallback to timestamp comparison: %llu vs %llu: [%d]\n", bta, btb, res); -+ } -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Selecting variant [%c] of (a) %s vs (b) %s (score: %d)\n", -+ (res < 0 ? 'a' : 'b'), pool_solvable2str(pool, sa), pool_solvable2str(pool, sb), res); -+ -+ return res; -+} - - /* -- * prune_to_best_version -+ * prune_to_best_version_conda - * - * sort list of packages (given through plist) by name and evr - * return result through plist - */ - void --prune_to_best_version(Pool *pool, Queue *plist) -+prune_to_best_version_conda(Pool *pool, Queue *plist) - { - int i, j, r; - Solvable *s, *best; - -- if (plist->count < 2) /* no need to prune for a single entry */ -+ if (plist->count < 2) /* no need to prune for a single entry */ - return; -- POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version_conda %d\n", plist->count); - - /* sort by name first, prefer installed */ - solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -@@ -891,10 +1162,10 @@ prune_to_best_version(Pool *pool, Queue *plist) - s = pool->solvables + plist->elements[i]; - - POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -- pool_solvable2str(pool, s), plist->elements[i], -- (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); - -- if (!best) /* if no best yet, the current is best */ -+ if (!best) /* if no best yet, the current is best */ - { - best = s; - continue; -@@ -904,49 +1175,54 @@ prune_to_best_version(Pool *pool, Queue *plist) - if (best->name != s->name) /* new name */ - { - plist->elements[j++] = best - pool->solvables; /* move old best to front */ -- best = s; /* take current as new best */ -+ best = s; /* take current as new best */ - continue; - } - - r = 0; --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- r = pool_featurecountcmp(pool, best, s); --#endif -+ r = pool_featurecountcmp(pool, best, s); - if (r == 0) - r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; --#ifdef ENABLE_LINKED_PKGS -- if (r == 0 && has_package_link(pool, s)) -- r = pool_link_evrcmp(pool, best, s); --#endif --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- { -- if (r == 0) -- r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -- if (r == 0) -- r = pool_buildversioncmp(pool, best, s); -- if (r == 0) -- r = pool_buildflavorcmp(pool, best, s); -- } --#endif -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ // this can be removed as this comparison doesn't effect anything -+ if (r == 0) -+ r = pool_buildflavorcmp(pool, best, s); - if (r < 0) -- best = s; -+ best = s; - } -- plist->elements[j++] = best - pool->solvables; /* finish last group */ -- plist->count = j; - -- /* we reduced the list to one package per name, now look at -- * package obsoletes */ -- if (plist->count > 1) -+ Queue q; -+ queue_init(&q); -+ for (i = 0; i < plist->count; i++) - { -- if (plist->count == 2) -- prune_obsoleted_2(pool, plist); -- else -- prune_obsoleted(pool, plist); -+ s = pool->solvables + plist->elements[i]; -+ r = pool_featurecountcmp(pool, best, s); -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ if (r == 0) -+ queue_push(&q, s - pool->solvables); - } --} - -+ if (q.count > 1) -+ { -+ // order by first-level deps -+ solv_sort(q.elements, q.count, sizeof(Id), sort_by_best_dependencies, pool); -+ } -+ -+ for (i = 0; i < q.count; ++i) -+ plist->elements[i] = q.elements[i]; -+ plist->count = q.count; -+ -+ queue_free(&q); -+} -+#endif // ENABLE_CONDA - - static int - sort_by_name_evr_sortcmp(const void *ap, const void *bp, void *dp) -diff --git a/src/policy.h b/src/policy.h -index 3ae1005a..a79483a4 100644 ---- a/src/policy.h -+++ b/src/policy.h -@@ -45,6 +45,9 @@ extern void pool_best_solvables(Pool *pool, Queue *plist, int flags); - extern void prune_to_best_version(Pool *pool, Queue *plist); - extern void policy_prefer_favored(Solver *solv, Queue *plist); - -+#ifdef ENABLE_CONDA -+extern void prune_to_best_version_conda(Pool *pool, Queue *plist); -+#endif - - #ifdef __cplusplus - } diff --git a/tools/micromamba-linux-aarch64/info/recipe/libsolv/portfile.cmake b/tools/micromamba-linux-aarch64/info/recipe/libsolv/portfile.cmake deleted file mode 100644 index 7fdac1c..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/libsolv/portfile.cmake +++ /dev/null @@ -1,55 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO openSUSE/libsolv - REF 0.7.24 - SHA512 a0975d3f80ae8c364d5b32df4c26bc7eb5abb3be81259595848f1f5f74b00e708af3153074041d49383547718e68cee2e82cf4bdeab6221dfdcc605812689d37 - HEAD_REF master - PATCHES - win_export_and_static_build.patch - conda_variant_priorization.patch -) - -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBS) -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBS) - -if (NOT BUILD_DYNAMIC_LIBS) - set(DISABLE_SHARED ON) -else() - set(DISABLE_SHARED OFF) -endif() - -vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - conda ENABLE_CONDA -) - -if(WIN32) - list(APPEND FEATURE_OPTIONS "-DWITHOUT_COOKIEOPEN=ON") -endif() - -vcpkg_configure_cmake( - SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA - OPTIONS - ${FEATURE_OPTIONS} - -DDISABLE_SHARED=${DISABLE_SHARED} - -DENABLE_STATIC=${BUILD_STATIC_LIBS} - -DMULTI_SEMANTICS=ON - -DBUILD_EXAMPLE_PROGRAMS=OFF - .. -) - - -vcpkg_install_cmake() -# vcpkg_fixup_cmake_targets() -# vcpkg_copy_pdbs() - -if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -file(INSTALL ${SOURCE_PATH}/LICENSE.BSD DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsolv RENAME copyright) - -vcpkg_test_cmake(PACKAGE_NAME libsolv) diff --git a/tools/micromamba-linux-aarch64/info/recipe/libsolv/win_export_and_static_build.patch b/tools/micromamba-linux-aarch64/info/recipe/libsolv/win_export_and_static_build.patch deleted file mode 100644 index 796077e..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/libsolv/win_export_and_static_build.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/repo_write.c b/src/repo_write.c -index a73eebff..9e0622e3 100644 ---- a/src/repo_write.c -+++ b/src/repo_write.c -@@ -188,7 +188,7 @@ write_compressed_blob(Repodata *data, void *blob, int len) - write_u8(data, clen); - write_blob(data, cpage, clen); - } -- blob += chunk; -+ blob = (char*) blob + chunk; - len -= chunk; - } - } diff --git a/tools/micromamba-linux-aarch64/info/recipe/meta.yaml b/tools/micromamba-linux-aarch64/info/recipe/meta.yaml deleted file mode 100644 index d7b5517..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/meta.yaml +++ /dev/null @@ -1,165 +0,0 @@ -# This file created by conda-build 3.25.0 -# meta.yaml template originally from: -# /home/conda/recipe_root, last modified Fri Aug 25 08:19:13 2023 -# ------------------------------------------------ - -package: - name: micromamba - version: 1.5.0 -source: - - folder: mamba - sha256: 0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17 - url: https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-1.5.0.tar.gz -build: - ignore_run_exports_from: - - fmt - - gcc_linux-aarch64 12.* - - gxx_linux-aarch64 12.* - - libarchive-minimal-static - - libcurl - - openssl - - reproc-cpp - - spdlog - number: '1' - string: '1' -requirements: - build: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex 4.5 2_gnu - - _sysroot_linux-aarch64_curr_repodata_hack 4 h57d6b7b_13 - - binutils_impl_linux-64 2.40 hf600244_0 - - binutils_impl_linux-aarch64 2.40 h40ea8b1_0 - - binutils_linux-aarch64 2.40 h19b5abf_1 - - bzip2 1.0.8 h7f98852_4 - - c-ares 1.19.1 hd590300_0 - - ca-certificates 2023.7.22 hbcca054_0 - - cmake 3.26.4 hcfe8598_0 - - expat 2.5.0 hcb278e6_1 - - gcc_impl_linux-64 12.3.0 he2b93b0_0 - - gcc_impl_linux-aarch64 12.3.0 hfb0b921_0 - - gcc_linux-aarch64 12.3.0 hd570763_1 - - gxx_impl_linux-64 12.3.0 he2b93b0_0 - - gxx_impl_linux-aarch64 12.3.0 hfb0b921_0 - - gxx_linux-aarch64 12.3.0 h4913bc6_1 - - kernel-headers_linux-64 2.6.32 he073ed8_16 - - kernel-headers_linux-aarch64 4.18.0 h5b4a56d_13 - - keyutils 1.6.1 h166bdaf_0 - - krb5 1.21.2 h659d440_0 - - ld_impl_linux-64 2.40 h41732ed_0 - - ld_impl_linux-aarch64 2.40 hc365e21_0 - - libcurl 8.2.1 hca28451_0 - - libedit 3.1.20191231 he28a2e2_2 - - libev 4.33 h516909a_1 - - libexpat 2.5.0 hcb278e6_1 - - libgcc-devel_linux-64 12.3.0 h8bca6fd_0 - - libgcc-devel_linux-aarch64 12.3.0 h1a07b91_0 - - libgcc-ng 13.1.0 he5830b7_0 - - libgomp 13.1.0 he5830b7_0 - - libnghttp2 1.52.0 h61bc06f_0 - - libsanitizer 12.3.0 h0f45ef3_0 - - libssh2 1.11.0 h0841786_0 - - libstdcxx-devel_linux-64 12.3.0 h8bca6fd_0 - - libstdcxx-devel_linux-aarch64 12.3.0 h1a07b91_0 - - libstdcxx-ng 13.1.0 hfd8a6a1_0 - - libuv 1.44.2 hd590300_1 - - libzlib 1.2.13 hd590300_5 - - ncurses 6.4 hcb278e6_0 - - ninja 1.11.1 h924138e_0 - - openssl 3.1.2 hd590300_0 - - rhash 1.4.3 hd590300_1 - - sysroot_linux-64 2.12 he073ed8_16 - - sysroot_linux-aarch64 2.17 h5b4a56d_13 - - xz 5.2.6 h166bdaf_0 - - zlib 1.2.13 hd590300_5 - - zstd 1.5.2 hfc55251_7 - host: - - _openmp_mutex 4.5 2_gnu - - bzip2 1.0.8 hf897c2e_4 - - c-ares 1.19.1 h31becfc_0 - - c-ares-static 1.19.1 h31becfc_0 - - ca-certificates 2023.7.22 hcefe29a_0 - - cli11 2.3.2 hd600fc2_0 - - cpp-expected 1.1.0 h4c384f3_0 - - fmt 10.1.0 h2a328a1_0 - - keyutils 1.6.1 h4e544f5_0 - - krb5 1.20.1 h113d92e_0 - - krb5-static 1.20.1 h113d92e_0 - - libarchive-minimal-static 3.6.2 h66cf738_1 - - libcurl 7.88.1 h6ad7c7a_1 - - libcurl-static 7.88.1 h6ad7c7a_1 - - libedit 3.1.20191231 he28a2e2_2 - - libev 4.33 h516909a_1 - - libev-static 4.33 h516909a_1 - - libgcc-ng 13.1.0 h2b4548d_0 - - libgomp 13.1.0 h2b4548d_0 - - libnghttp2 1.52.0 h250e5c5_0 - - libnghttp2-static 1.52.0 h73a623e_0 - - libopenssl-static 3.1.2 h31becfc_0 - - libsolv 0.7.24 hd84c7bf_3 - - libsolv-static 0.7.24 hd84c7bf_3 - - libssh2 1.11.0 h492db2e_0 - - libssh2-static 1.11.0 h492db2e_0 - - libstdcxx-ng 13.1.0 h452befe_0 - - libzlib 1.2.13 h31becfc_5 - - lz4-c-static 1.9.4 h8af1aa0_0 - - ncurses 6.4 h2e1726e_0 - - nlohmann_json 3.11.2 h4de3ea5_0 - - openssl 3.1.2 h31becfc_0 - - reproc 14.2.4 hb4cce97_0 - - reproc-cpp 14.2.4 hd600fc2_0 - - reproc-cpp-static 14.2.4 hd600fc2_0 - - reproc-static 14.2.4 hb4cce97_0 - - spdlog 1.12.0 h6b8df57_1 - - xz 5.2.6 h9cdd2b7_0 - - xz-static 5.2.6 h4e544f5_0 - - yaml-cpp 0.7.0 h4de3ea5_2 - - yaml-cpp-static 0.7.0 h4de3ea5_2 - - zlib 1.2.13 h31becfc_5 - - zstd 1.5.2 h4c53e97_7 - - zstd-static 1.5.2 h0425590_7 - run: - - libzlib >=1.2.13,<1.3.0a0 -test: - commands: - - test -f "${PREFIX}/bin/micromamba" - - micromamba --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" - - micromamba create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' -about: - dev_url: https://github.com/mamba-org/mamba - home: https://github.com/mamba-org/mamba - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - license_file: - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - - mamba/LICENSE - summary: Micromamba is a tiny version of mamba, the fast conda package installer. -extra: - copy_test_source_files: true - final: true - recipe-maintainers: - - AntoinePrv - - JohanMabille - - SylvainCorlay - - adriendelsalle - - mariusvniekerk - - pavelzw - - wolfv diff --git a/tools/micromamba-linux-aarch64/info/recipe/meta.yaml.template b/tools/micromamba-linux-aarch64/info/recipe/meta.yaml.template deleted file mode 100644 index 0c3950b..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/meta.yaml.template +++ /dev/null @@ -1,132 +0,0 @@ -{% set version = "1.5.0" %} -{% set sha256 = "0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17" %} -{% set build_num = 1 %} - -# A strategy for testing the feedstock locally in mamba CI -{% if os.environ.get("CI", "") == "local" %} - {% set mamba_source_type = "path" %} - {% set mamba_source_val = "{}/source".format(os.environ.get("FEEDSTOCK_ROOT", "..")) %} - {% set mamba_hash_type = "" %} - {% set mamba_hash_val = "" %} -{% else %} - {% set mamba_source_type = "url" %} - {% set mamba_source_val = "https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-{}.tar.gz".format(version) %} - {% set mamba_hash_type = "sha256" %} - {% set mamba_hash_val = sha256 %} -{% endif %} - -# Used for writing generic tests -{% set bin_ext = "" %} # [unix] -{% set bin_ext = ".exe" %} # [win] - -package: - name: micromamba - version: {{ version }} - -source: - - "{{ mamba_source_type }}": "{{ mamba_source_val }}" - "{{ mamba_hash_type }}": "{{ mamba_hash_val }}" - folder: mamba - # VCPKG comes with its own (short-lived) metadata which can be already outdated in the latest release - - url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz # [win] - sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 # [win] - folder: vcpkg # [win] - -build: - number: {{ build_num }} - string: {{ build_num }} - ignore_run_exports_from: - - libcurl # [unix] - - libarchive-minimal-static # [unix] - - reproc-cpp # [unix] - - openssl # [unix] - - spdlog - - fmt - - {{ compiler('c') }} # [linux] - - {{ compiler('cxx') }} # [linux] - - python # [win] - -requirements: - build: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - cmake # [unix] - - ninja - - vcpkg-tool # [win] - - python # [win] - - curl >=7.87,<8 # [win] - - zlib # [win] - host: - - cli11 >=2.2,<3 - - cpp-expected - - nlohmann_json - - spdlog - - fmt - - yaml-cpp-static # [unix] - - libcurl >=7.88.1,<8 # [unix] - - libcurl-static >=7.88.1,<8 # [unix] - - xz-static # [unix] - - libssh2-static # [unix] - - libarchive-minimal-static # [unix] - - krb5-static # [unix] - - libsolv-static # [unix] - - openssl {{ openssl }} # [unix] - - libopenssl-static {{ openssl }} # [unix] - - zstd-static # [unix] - - zlib # [unix] - - libnghttp2-static # [unix] - - lz4-c-static # [unix] - - reproc-static # [unix] - - reproc-cpp # [unix] - - reproc-cpp-static # [unix] - - winreg # [win] - -test: - commands: - - test -f "${PREFIX}/bin/micromamba" # [unix] - - if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) # [win] - - micromamba{{ bin_ext }} --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" # [unix] - - mkdir %TEMP%\mamba # [win] - - set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" # [win] - - micromamba{{ bin_ext }} create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' # [win] - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' # [win] - -about: - home: https://github.com/mamba-org/mamba - license_file: - - mamba/LICENSE - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - summary: Micromamba is a tiny version of mamba, the fast conda package installer. - dev_url: https://github.com/mamba-org/mamba - -extra: - recipe-maintainers: - - AntoinePrv - - pavelzw - - wolfv - - SylvainCorlay - - JohanMabille - - mariusvniekerk - - adriendelsalle diff --git a/tools/micromamba-linux-aarch64/info/recipe/recipe-scripts-license.txt b/tools/micromamba-linux-aarch64/info/recipe/recipe-scripts-license.txt deleted file mode 100644 index 2ec51d7..0000000 --- a/tools/micromamba-linux-aarch64/info/recipe/recipe-scripts-license.txt +++ /dev/null @@ -1,27 +0,0 @@ -BSD-3-Clause license -Copyright (c) 2015-2022, conda-forge contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. diff --git a/tools/micromamba-linux-aarch64/info/test/run_test.sh b/tools/micromamba-linux-aarch64/info/test/run_test.sh deleted file mode 100644 index 1a56f3a..0000000 --- a/tools/micromamba-linux-aarch64/info/test/run_test.sh +++ /dev/null @@ -1,13 +0,0 @@ - - -set -ex - - - -test -f "${PREFIX}/bin/micromamba" -micromamba --help -export MAMBA_ROOT_PREFIX="$(mktemp -d)" -micromamba create -n test --override-channels -c conda-forge --yes python=3.9 -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os" -exit 0 diff --git a/tools/micromamba-linux-ppc64le/.DS_Store b/tools/micromamba-linux-ppc64le/.DS_Store deleted file mode 100644 index 388d44e..0000000 Binary files a/tools/micromamba-linux-ppc64le/.DS_Store and /dev/null differ diff --git a/tools/micromamba-linux-ppc64le/bin/micromamba b/tools/micromamba-linux-ppc64le/bin/micromamba deleted file mode 100755 index 9cb73d8..0000000 Binary files a/tools/micromamba-linux-ppc64le/bin/micromamba and /dev/null differ diff --git a/tools/micromamba-linux-ppc64le/info/about.json b/tools/micromamba-linux-ppc64le/info/about.json deleted file mode 100644 index 3bf082c..0000000 --- a/tools/micromamba-linux-ppc64le/info/about.json +++ /dev/null @@ -1,224 +0,0 @@ -{ - "channels": [ - "https://conda.anaconda.org/conda-forge" - ], - "conda_build_version": "3.25.0", - "conda_version": "23.3.1", - "dev_url": "https://github.com/mamba-org/mamba", - "env_vars": { - "CIO_TEST": "" - }, - "extra": { - "copy_test_source_files": true, - "final": true, - "recipe-maintainers": [ - "AntoinePrv", - "pavelzw", - "wolfv", - "SylvainCorlay", - "JohanMabille", - "mariusvniekerk", - "adriendelsalle" - ] - }, - "home": "https://github.com/mamba-org/mamba", - "identifiers": [], - "keywords": [], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "license_file": [ - "mamba/LICENSE", - "CLI11_LICENSE.txt", - "CURL_LICENSE.txt", - "C_ARES_LICENSE.txt", - "FMT_LICENSE.txt", - "KRB5_LICENSE.txt", - "LIBARCHIVE_LICENSE.txt", - "LIBEV_LICENSE.txt", - "LIBLZ4_LICENSE.txt", - "LIBNGHTTP2_LICENSE.txt", - "LIBOPENSSL_3_LICENSE.txt", - "LIBOPENSSL_LICENSE.txt", - "LIBSOLV_LICENSE.txt", - "NLOHMANN_JSON_LICENSE.txt", - "REPROC_LICENSE.txt", - "SPDLOG_LICENSE.txt", - "TL_EXPECTED_LICENSE.txt", - "ZSTD_LICENSE.txt" - ], - "root_pkgs": [ - "tk 8.6.12 h27826a3_0", - "markdown-it-py 3.0.0 pyhd8ed1ab_0", - "pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0", - "pkginfo 1.9.6 pyhd8ed1ab_0", - "c-ares 1.19.1 hd590300_0", - "packaging 23.1 pyhd8ed1ab_0", - "libev 4.33 h516909a_1", - "platformdirs 3.10.0 pyhd8ed1ab_0", - "libgomp 13.1.0 he5830b7_0", - "libpng 1.6.39 h753d276_0", - "gettext 0.21.1 h27087fc_0", - "libxcb 1.15 h0b41bf4_0", - "pycosat 0.6.4 py310h5764c6d_1", - "git 2.41.0 pl5321h86e50cf_0", - "pyyaml 6.0 py310h5764c6d_5", - "libexpat 2.5.0 hcb278e6_1", - "wcwidth 0.2.6 pyhd8ed1ab_0", - "jupyter_core 5.3.1 py310hff52083_0", - "libdeflate 1.18 h0b41bf4_0", - "anaconda-client 1.12.0 pyhd8ed1ab_1", - "python_abi 3.10 3_cp310", - "tqdm 4.66.1 pyhd8ed1ab_0", - "jsonschema 4.19.0 pyhd8ed1ab_1", - "libtiff 4.5.1 h8b53f26_0", - "brotli-python 1.0.9 py310hd8f1fbe_9", - "joblib 1.3.2 pyhd8ed1ab_0", - "mamba 1.4.2 py310h51d5547_0", - "lcms2 2.15 haa2dc70_1", - "psutil 5.9.5 py310h1fa729e_0", - "zstd 1.5.2 hfc55251_7", - "requests-toolbelt 1.0.0 pyhd8ed1ab_0", - "freetype 2.12.1 hca18f0e_1", - "readline 8.2 h8228510_1", - "wheel 0.41.1 pyhd8ed1ab_0", - "colorama 0.4.6 pyhd8ed1ab_0", - "libnghttp2 1.52.0 h61bc06f_0", - "lz4-c 1.9.4 hcb278e6_0", - "jsonpointer 2.0 py_0", - "urllib3 1.26.15 pyhd8ed1ab_0", - "python-fastjsonschema 2.18.0 pyhd8ed1ab_0", - "lzo 2.10 h516909a_1000", - "python-dateutil 2.8.2 pyhd8ed1ab_0", - "cffi 1.15.1 py310h255011f_3", - "conda-index 0.2.3 pyhd8ed1ab_0", - "attrs 23.1.0 pyh71513ae_1", - "pysocks 1.7.1 pyha2e5f31_6", - "_libgcc_mutex 0.1 conda_forge", - "conda-build 3.25.0 py310hff52083_0", - "conda-package-handling 2.2.0 pyh38be061_0", - "pycparser 2.21 pyhd8ed1ab_0", - "conda 23.3.1 py310hff52083_0", - "openssl 3.1.2 hd590300_0", - "certifi 2023.7.22 pyhd8ed1ab_0", - "fmt 9.1.0 h924138e_0", - "idna 3.4 pyhd8ed1ab_0", - "lerc 4.0.0 h27087fc_0", - "more-itertools 10.1.0 pyhd8ed1ab_0", - "libwebp-base 1.3.1 hd590300_0", - "importlib_resources 6.0.1 pyhd8ed1ab_0", - "chardet 5.2.0 py310hff52083_0", - "liblief 0.12.3 h27087fc_0", - "ruamel.yaml.clib 0.2.7 py310h1fa729e_1", - "json5 0.9.14 pyhd8ed1ab_0", - "mdurl 0.1.0 pyhd8ed1ab_0", - "jsonschema-specifications 2023.7.1 pyhd8ed1ab_0", - "tomli 2.0.1 pyhd8ed1ab_0", - "tzdata 2023c h71feb2d_0", - "pytz 2023.3 pyhd8ed1ab_0", - "glob2 0.7 py_0", - "libedit 3.1.20191231 he28a2e2_2", - "backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0", - "reproc-cpp 14.2.4 hcb278e6_0", - "dataclasses 0.8 pyhc8e2a94_3", - "referencing 0.30.2 pyhd8ed1ab_0", - "pip 23.2.1 pyhd8ed1ab_0", - "nbformat 5.9.2 pyhd8ed1ab_0", - "ruamel_yaml 0.15.80 py310h5764c6d_1008", - "exceptiongroup 1.1.3 pyhd8ed1ab_0", - "pillow 10.0.0 py310h582fbeb_0", - "libstdcxx-ng 13.1.0 hfd8a6a1_0", - "ripgrep 13.0.0 h2f28480_2", - "py-lief 0.12.3 py310hd8f1fbe_0", - "krb5 1.21.2 h659d440_0", - "pygments 2.16.1 pyhd8ed1ab_0", - "perl 5.32.1 4_hd590300_perl5", - "jinja2 3.1.2 pyhd8ed1ab_1", - "patch 2.7.6 h7f98852_1002", - "requests 2.31.0 pyhd8ed1ab_0", - "yaml 0.2.5 h7f98852_2", - "ncurses 6.4 hcb278e6_0", - "boltons 23.0.0 pyhd8ed1ab_0", - "pthread-stubs 0.4 h36c2ea0_1001", - "rpds-py 0.9.2 py310hcb5633a_0", - "bzip2 1.0.8 h7f98852_4", - "backports 1.0 pyhd8ed1ab_3", - "libiconv 1.17 h166bdaf_0", - "xz 5.2.6 h166bdaf_0", - "pcre2 10.40 hc3806b6_0", - "rich 13.5.1 pyhd8ed1ab_0", - "charset-normalizer 3.2.0 pyhd8ed1ab_0", - "ruamel.yaml 0.17.32 py310h2372a71_0", - "six 1.16.0 pyh6c4a22f_0", - "libsqlite 3.42.0 h2797004_0", - "toolz 0.12.0 pyhd8ed1ab_0", - "tini 0.19.0 h166bdaf_1", - "jsonpatch 1.32 pyhd8ed1ab_0", - "su-exec 0.2 h166bdaf_1003", - "beautifulsoup4 4.12.2 pyha770c72_0", - "typing_extensions 4.7.1 pyha770c72_0", - "libssh2 1.11.0 h0841786_0", - "filelock 3.12.2 pyhd8ed1ab_0", - "zipp 3.16.2 pyhd8ed1ab_0", - "prompt_toolkit 3.0.39 hd8ed1ab_0", - "python 3.10.12 hd12c33a_0_cpython", - "sniffio 1.3.0 pyhd8ed1ab_0", - "libsolv 0.7.24 hfc55251_1", - "watchgod 0.8.2 pyhd8ed1ab_0", - "anaconda-project 0.11.1 pyhd8ed1ab_0", - "python-libarchive-c 5.0 py310hff52083_1", - "libgcc-ng 13.1.0 he5830b7_0", - "libffi 3.4.2 h7f98852_5", - "libjpeg-turbo 2.1.5.1 h0b41bf4_0", - "libnsl 2.0.0 h7f98852_0", - "libcurl 8.2.1 hca28451_0", - "icu 72.1 hcb278e6_0", - "pluggy 1.2.0 pyhd8ed1ab_0", - "conda-libmamba-solver 23.3.0 pyhd8ed1ab_0", - "tornado 6.3.3 py310h2372a71_0", - "zstandard 0.19.0 py310h1275a96_2", - "pyopenssl 23.2.0 pyhd8ed1ab_1", - "libmambapy 1.4.2 py310h1428755_0", - "anyio 3.7.1 pyhd8ed1ab_0", - "conda-pack 0.7.1 pyhd8ed1ab_0", - "boa 0.15.1 pyhd8ed1ab_0", - "soupsieve 2.3.2.post1 pyhd8ed1ab_0", - "defusedxml 0.7.1 pyhd8ed1ab_0", - "libzlib 1.2.13 hd590300_5", - "setuptools 68.1.2 pyhd8ed1ab_0", - "conda-package-streaming 0.9.0 pyhd8ed1ab_0", - "yaml-cpp 0.7.0 h27087fc_2", - "libuuid 2.38.1 h0b41bf4_0", - "traitlets 5.9.0 pyhd8ed1ab_0", - "_openmp_mutex 4.5 2_gnu", - "xorg-libxau 1.0.11 hd590300_0", - "libxml2 2.11.5 h0d562d8_0", - "brotlipy 0.7.0 py310h5764c6d_1005", - "openjpeg 2.5.0 hfec8fc6_2", - "clyent 1.2.2 py_1", - "typing-extensions 4.7.1 hd8ed1ab_0", - "ca-certificates 2023.7.22 hbcca054_0", - "curl 8.2.1 hca28451_0", - "reproc 14.2.4 h0b41bf4_0", - "patchelf 0.17.2 h58526e2_0", - "libarchive 3.6.2 h039dbb9_1", - "click 8.1.7 unix_pyh707e725_0", - "prompt-toolkit 3.0.39 pyha770c72_0", - "keyutils 1.6.1 h166bdaf_0", - "libmamba 1.4.2 hcea66bb_0", - "ld_impl_linux-64 2.40 h41732ed_0", - "markupsafe 2.1.3 py310h2372a71_0", - "xorg-libxdmcp 1.1.3 h7f98852_0", - "pybind11-abi 4 hd8ed1ab_3", - "cryptography 41.0.3 py310h75e40e8_0", - "conda-env 2.6.0 1", - "conda-oci-mirror 0.1.0 pyhd8ed1ab_0", - "oniguruma 6.9.8 h166bdaf_0", - "jq 1.6 h36c2ea0_1000", - "conda-forge-ci-setup 3.32.5 py310h7a2d8a0_100", - "conda-forge-metadata 0.5.2 pyhd8ed1ab_0", - "oras-py 0.1.14 pyhd8ed1ab_0", - "shyaml 0.6.2 pyhd3deb0d_0" - ], - "summary": "Micromamba is a tiny version of mamba, the fast conda package installer.", - "tags": [] -} \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/files b/tools/micromamba-linux-ppc64le/info/files deleted file mode 100644 index 6c1e7bf..0000000 --- a/tools/micromamba-linux-ppc64le/info/files +++ /dev/null @@ -1 +0,0 @@ -bin/micromamba diff --git a/tools/micromamba-linux-ppc64le/info/git b/tools/micromamba-linux-ppc64le/info/git deleted file mode 100644 index e69de29..0000000 diff --git a/tools/micromamba-linux-ppc64le/info/has_prefix b/tools/micromamba-linux-ppc64le/info/has_prefix deleted file mode 100644 index b92cf79..0000000 --- a/tools/micromamba-linux-ppc64le/info/has_prefix +++ /dev/null @@ -1 +0,0 @@ -/home/conda/feedstock_root/build_artifacts/micromamba_1692951648652/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_ binary bin/micromamba diff --git a/tools/micromamba-linux-ppc64le/info/hash_input.json b/tools/micromamba-linux-ppc64le/info/hash_input.json deleted file mode 100644 index 4042663..0000000 --- a/tools/micromamba-linux-ppc64le/info/hash_input.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "cxx_compiler_version": "12", - "spdlog": "1.12", - "channel_targets": "conda-forge main", - "CI": "azure", - "target_platform": "linux-ppc64le", - "fmt": "10", - "openssl": "3", - "cxx_compiler": "gxx", - "c_compiler_version": "12", - "c_compiler": "gcc", - "libcurl": "8", - "zlib": "1.2" -} \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/index.json b/tools/micromamba-linux-ppc64le/info/index.json deleted file mode 100644 index 7b5d600..0000000 --- a/tools/micromamba-linux-ppc64le/info/index.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "arch": "ppc64le", - "build": "1", - "build_number": 1, - "depends": [ - "libzlib >=1.2.13,<1.3.0a0" - ], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "name": "micromamba", - "platform": "linux", - "subdir": "linux-ppc64le", - "timestamp": 1692952525761, - "version": "1.5.0" -} \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/CLI11_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/CURL_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/C_ARES_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-linux-ppc64le/info/licenses/FMT_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/KRB5_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/LIBARCHIVE_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/LIBEV_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-linux-ppc64le/info/licenses/LIBLZ4_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-ppc64le/info/licenses/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-linux-ppc64le/info/licenses/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/LIBOPENSSL_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-linux-ppc64le/info/licenses/LIBSOLV_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-ppc64le/info/licenses/REPROC_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-ppc64le/info/licenses/SPDLOG_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-linux-ppc64le/info/licenses/TL_EXPECTED_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/licenses/ZSTD_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/licenses/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-ppc64le/info/licenses/mamba/LICENSE b/tools/micromamba-linux-ppc64le/info/licenses/mamba/LICENSE deleted file mode 100644 index 8ae98f9..0000000 --- a/tools/micromamba-linux-ppc64le/info/licenses/mamba/LICENSE +++ /dev/null @@ -1,11 +0,0 @@ -Copyright 2019 QuantStack and the Mamba contributors. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-ppc64le/info/paths.json b/tools/micromamba-linux-ppc64le/info/paths.json deleted file mode 100644 index c07e2c6..0000000 --- a/tools/micromamba-linux-ppc64le/info/paths.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "paths": [ - { - "_path": "bin/micromamba", - "file_mode": "binary", - "path_type": "hardlink", - "prefix_placeholder": "/home/conda/feedstock_root/build_artifacts/micromamba_1692951648652/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_", - "sha256": "a1ea8a013f648c907dc5b40e22513b871dec3f39f72a15530f678b80e8505199", - "size_in_bytes": 21079608 - } - ], - "paths_version": 1 -} \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/CLI11_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/CPP_FILESYSTEM_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/CPP_FILESYSTEM_LICENSE.txt deleted file mode 100644 index 8b24faa..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/CPP_FILESYSTEM_LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018, Steffen Schümann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/CURL_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/C_ARES_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/FMT_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/KRB5_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/LIBARCHIVE_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/LIBEV_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/LIBLZ4_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/LIBOPENSSL_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-linux-ppc64le/info/recipe/LIBSOLV_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/REPROC_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/SPDLOG_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-linux-ppc64le/info/recipe/TERMCOLOR_CPP_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/TERMCOLOR_CPP_LICENSE.txt deleted file mode 100644 index 679df41..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/TERMCOLOR_CPP_LICENSE.txt +++ /dev/null @@ -1,31 +0,0 @@ -Copyright (c) 2013, Ihor Kalnytskyi. -All rights reserved. - -Redistribution and use in source and binary forms of the software as well -as documentation, with or without modification, are permitted provided -that the following conditions are met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -* The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/TL_EXPECTED_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-linux-ppc64le/info/recipe/ZSTD_LICENSE.txt b/tools/micromamba-linux-ppc64le/info/recipe/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-linux-ppc64le/info/recipe/bld.bat b/tools/micromamba-linux-ppc64le/info/recipe/bld.bat deleted file mode 100644 index 6a91569..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/bld.bat +++ /dev/null @@ -1,41 +0,0 @@ -SET VCPKG_ROOT=%CD%\vcpkg - -SET VCPKG_BUILD_TYPE=release -vcpkg install --overlay-ports=%RECIPE_DIR%\libsolv libsolv[conda] --triplet x64-windows-static - -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install "libarchive[bzip2,lz4,lzma,lzo,openssl,zstd]" --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install curl --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install yaml-cpp --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install reproc --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% - -SET "CXXFLAGS=%CXXFLAGS% /showIncludes" -SET CMAKE_PREFIX_PATH=%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH% - -cmake -S mamba ^ - -B build ^ - -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ - -D CMAKE_PREFIX_PATH="%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%" ^ - -D CMAKE_BUILD_TYPE="Release" ^ - -D BUILD_LIBMAMBA=ON ^ - -D BUILD_STATIC=ON ^ - -D BUILD_MICROMAMBA=ON ^ - -G "Ninja" -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --build build --parallel %CPU_COUNT% -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --install build -if %errorlevel% NEQ 0 exit /b %errorlevel% - -DEL /Q /F /S "%LIBRARY_PREFIX%\lib\libmamba*" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\include\mamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\lib\cmake\libmamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% diff --git a/tools/micromamba-linux-ppc64le/info/recipe/build.sh b/tools/micromamba-linux-ppc64le/info/recipe/build.sh deleted file mode 100644 index 15cc563..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/build.sh +++ /dev/null @@ -1,35 +0,0 @@ -set -euxo pipefail - -# Conda's binary relocation can result in string changing which can result in errors like -# > warning: command substitution: ignored null byte in input -# https://github.com/mamba-org/mamba/issues/1517 -export CXXFLAGS="${CXXFLAGS} -fno-merge-constants" -export CFLAGS="${CFLAGS} -fno-merge-constants" -export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY=1" - -cmake -S mamba/ \ - -B build/ \ - -G Ninja \ - ${CMAKE_ARGS} \ - -D CMAKE_INSTALL_PREFIX=${PREFIX} \ - -D CMAKE_BUILD_TYPE="Release" \ - -D BUILD_LIBMAMBA=ON \ - -D BUILD_STATIC=ON \ - -D BUILD_MICROMAMBA=ON -cmake --build build/ --parallel ${CPU_COUNT} -cmake --install build/ - -# remove everything related to `libmamba` -rm -rf "${PREFIX}/lib/libmamba"* -rm -rf "${PREFIX}/include/mamba" -rm -rf "${PREFIX}/lib/cmake/libmamba" - -"${STRIP:-strip}" "${PREFIX}/bin/micromamba" - -if [[ "$target_platform" == "osx-"* ]]; then - OTOOL_OUTPUT=$("${OTOOL:-otool}" -L "${PREFIX}/bin/micromamba") - if [[ "$OTOOL_OUTPUT" == *libc++.1.dylib* ]]; then - echo "micromamba is linked to libc++.1.dlyb" - exit 1 - fi -fi diff --git a/tools/micromamba-linux-ppc64le/info/recipe/conda_build_config.yaml b/tools/micromamba-linux-ppc64le/info/recipe/conda_build_config.yaml deleted file mode 100644 index a9bcdf0..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/conda_build_config.yaml +++ /dev/null @@ -1,44 +0,0 @@ -CI: azure -CMAKE_CROSSCOMPILING_EMULATOR: /usr/bin/qemu-ppc64le-static -CROSSCOMPILING_EMULATOR: /usr/bin/qemu-ppc64le-static -build_platform: linux-64 -c_compiler: gcc -c_compiler_version: '12' -cdt_name: cos7 -channel_sources: conda-forge -channel_targets: conda-forge main -cpu_optimization_target: nocona -cran_mirror: https://cran.r-project.org -cxx_compiler: gxx -cxx_compiler_version: '12' -docker_image: quay.io/condaforge/linux-anvil-cos7-x86_64 -extend_keys: -- extend_keys -- ignore_version -- pin_run_as_build -- ignore_build_only_deps -fmt: '10' -fortran_compiler: gfortran -ignore_build_only_deps: -- numpy -- python -libcurl: '8' -lua: '5' -numpy: '1.22' -openssl: '3' -perl: 5.26.2 -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x - r-base: - min_pin: x.x - max_pin: x.x -python: '3.10' -r_base: '3.5' -spdlog: '1.12' -target_platform: linux-ppc64le -zip_keys: -- - c_compiler_version - - cxx_compiler_version -zlib: '1.2' diff --git a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/CONTROL b/tools/micromamba-linux-ppc64le/info/recipe/libsolv/CONTROL deleted file mode 100644 index 35801a3..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/CONTROL +++ /dev/null @@ -1,9 +0,0 @@ -Source: libsolv -Version: 0.7.23 -Description: Library for solving packages and reading repositories -Homepage: https://github.com/openSUSE/libsolv -Default-Features: conda -Supports: !uwp - -Feature: conda -Description: Conda support diff --git a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/conda_variant_priorization.patch b/tools/micromamba-linux-ppc64le/info/recipe/libsolv/conda_variant_priorization.patch deleted file mode 100644 index cd1edd6..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/conda_variant_priorization.patch +++ /dev/null @@ -1,438 +0,0 @@ -diff --git a/src/conda.c b/src/conda.c -index 21ad6bfb..408a236a 100644 ---- a/src/conda.c -+++ b/src/conda.c -@@ -134,7 +134,7 @@ solv_vercmp_conda(const char *s1, const char *q1, const char *s2, const char *q2 - return -1; - if (s1p - s1 > s2p - s2) - return 1; -- r = s1p - s1 ? strncmp(s1, s2, s1p - s1) : 0; -+ r = (s1p - s1) ? strncmp(s1, s2, s1p - s1) : 0; - if (r) - return r; - } -diff --git a/src/policy.c b/src/policy.c -index c02d2373..d6354cd2 100644 ---- a/src/policy.c -+++ b/src/policy.c -@@ -833,6 +833,79 @@ move_installed_to_front(Pool *pool, Queue *plist) - } - } - -+/* -+ * prune_to_best_version -+ * -+ * sort list of packages (given through plist) by name and evr -+ * return result through plist -+ */ -+void -+prune_to_best_version(Pool *pool, Queue *plist) -+{ -+#ifdef ENABLE_CONDA -+ if (pool->disttype == DISTTYPE_CONDA) -+ return prune_to_best_version_conda(pool, plist); -+#endif -+ -+ int i, j, r; -+ Solvable *s, *best; -+ -+ if (plist->count < 2) /* no need to prune for a single entry */ -+ return; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ -+ /* sort by name first, prefer installed */ -+ solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -+ -+ /* now find best 'per name' */ -+ best = 0; -+ for (i = j = 0; i < plist->count; i++) -+ { -+ s = pool->solvables + plist->elements[i]; -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ -+ if (!best) /* if no best yet, the current is best */ -+ { -+ best = s; -+ continue; -+ } -+ -+ /* name switch: finish group, re-init */ -+ if (best->name != s->name) /* new name */ -+ { -+ plist->elements[j++] = best - pool->solvables; /* move old best to front */ -+ best = s; /* take current as new best */ -+ continue; -+ } -+ -+ r = 0; -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+#ifdef ENABLE_LINKED_PKGS -+ if (r == 0 && has_package_link(pool, s)) -+ r = pool_link_evrcmp(pool, best, s); -+#endif -+ if (r < 0) -+ best = s; -+ } -+ -+ plist->elements[j++] = best - pool->solvables; /* finish last group */ -+ plist->count = j; -+ -+ /* we reduced the list to one package per name, now look at -+ * package obsoletes */ -+ if (plist->count > 1) -+ { -+ if (plist->count == 2) -+ prune_obsoleted_2(pool, plist); -+ else -+ prune_obsoleted(pool, plist); -+ } -+} -+ - #ifdef ENABLE_CONDA - static int - pool_featurecountcmp(Pool *pool, Solvable *s1, Solvable *s2) -@@ -863,23 +936,221 @@ pool_buildflavorcmp(Pool *pool, Solvable *s1, Solvable *s2) - return 0; - return pool_evrcmp_str(pool, f1 ? f1 : "" , f2 ? f2 : "", EVRCMP_COMPARE); - } --#endif -+ -+void intersect_selection(Pool* pool, Id dep, Queue* prev) -+{ -+ Queue tmp; -+ int i = 0, j = 0, isectidx = 0; -+ -+ queue_init(&tmp); -+ -+ Id* pp, p; -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&tmp, p); -+ -+ // set intersection, assuming sorted arrays -+ while (i < prev->count && j < tmp.count) -+ if (prev->elements[i] < tmp.elements[j]) -+ i++; -+ else if (tmp.elements[j] < prev->elements[i]) -+ j++; -+ else -+ { -+ if (isectidx != i) -+ prev->elements[isectidx] = prev->elements[i]; -+ i++, j++, isectidx++; -+ } -+ -+ prev->count = isectidx; -+ queue_free(&tmp); -+} -+ -+int check_deps_unequal(Pool* pool, Queue* q1, Queue* q2, Id name) -+{ -+ Id dep; -+ int i, j; -+ int found = 0; -+ for (i = 0; i < q1->count; ++i) -+ { -+ dep = q1->elements[i]; -+ if (ISRELDEP(dep) && GETRELDEP(pool, dep)->name == name) -+ { -+ for (j = 0; j < q2->count; ++j) -+ { -+ if (q2->elements[j] == dep) -+ { -+ found = 1; -+ break; -+ } -+ } -+ if (!found) -+ return 1; -+ -+ found = 0; -+ } -+ } -+ return 0; -+} -+ -+Id best_matching(Pool* pool, Queue* q, Id name, int* all_have_trackfeatures) -+{ -+ int first = 1; -+ Id dep, p, *pp; -+ -+ Queue selection; -+ queue_init(&selection); -+ -+ for (int i = 0; i < q->count; ++i) -+ { -+ dep = q->elements[i]; -+ if (!ISRELDEP(dep) || GETRELDEP(pool, dep)->name != name) continue; -+ -+ if (first) -+ { -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&selection, p); -+ first = 0; -+ } -+ else -+ intersect_selection(pool, dep, &selection); -+ } -+ -+ if (selection.count == 0) -+ return 0; -+ -+ Solvable *stmp, *best = pool_id2solvable(pool, selection.elements[0]); -+ int cmp; -+ -+ *all_have_trackfeatures = 1; -+ for (int i = 0; i < selection.count; ++i) -+ if (solvable_lookup_count(pool_id2solvable(pool, selection.elements[i]), -+ SOLVABLE_TRACK_FEATURES) == 0) -+ { -+ *all_have_trackfeatures = 0; -+ break; -+ } -+ -+ for (int i = 0; i < selection.count; ++i) -+ { -+ stmp = pool_id2solvable(pool, selection.elements[i]); -+ cmp = pool_evrcmp(pool, best->evr, stmp->evr, 0); -+ if (cmp < 0) best = stmp; -+ } -+ -+ return best->evr; -+} -+ -+int conda_compare_dependencies(Pool *pool, Solvable *s1, Solvable *s2) -+{ -+ int i, j, has_seen; -+ Queue q1, q2, seen; -+ -+ queue_init(&q1); -+ queue_init(&q2); -+ queue_init(&seen); -+ -+ solvable_lookup_deparray(s1, SOLVABLE_REQUIRES, &q1, -1); -+ solvable_lookup_deparray(s2, SOLVABLE_REQUIRES, &q2, -1); -+ -+ int comparison_result = 0; -+ -+ for (i = 0; i < q1.count; ++i) -+ { -+ Id x1 = q1.elements[i]; -+ has_seen = 0; -+ -+ if (!ISRELDEP(x1)) -+ continue; -+ -+ Reldep* rd1 = GETRELDEP(pool, x1); -+ for (j = 0; j < seen.count && has_seen == 0; ++j) -+ if (seen.elements[j] == rd1->name) -+ has_seen = 1; -+ -+ if (has_seen) -+ continue; -+ -+ // first make sure that deps are different between a & b -+ int deps_unequal = check_deps_unequal(pool, &q1, &q2, rd1->name); -+ if (!deps_unequal) -+ { -+ queue_push(&seen, rd1->name); -+ continue; -+ } -+ -+ int aht_1, aht_2; // all have track features check -+ Id b1 = best_matching(pool, &q1, rd1->name, &aht_1); -+ Id b2 = best_matching(pool, &q2, rd1->name, &aht_2); -+ -+ // one of both or both is not solvable... -+ // ignoring this case for now -+ if (b1 == 0 || b2 == 0) -+ continue; -+ -+ // if one has deps with track features, and the other does not, -+ // downweight the one with track features -+ if (aht_1 != aht_2) -+ comparison_result += (aht_1 - aht_2) * 100; -+ -+ comparison_result += pool_evrcmp(pool, b2, b1, 0); -+ } -+ -+ queue_free(&q1); -+ queue_free(&q2); -+ queue_free(&seen); -+ -+ return comparison_result; -+} -+ -+static int -+sort_by_best_dependencies(const void *ap, const void *bp, void *dp) -+{ -+ Pool* pool = (Pool*) dp; -+ -+ Id a = *(Id *)ap; -+ Id b = *(Id *)bp; -+ Solvable *sa, *sb; -+ -+ sa = pool->solvables + a; -+ sb = pool->solvables + b; -+ -+ int res = conda_compare_dependencies(pool, sa, sb); -+ if (res == 0) -+ { -+ // no differences, select later build -+ Repodata* ra = repo_last_repodata(sa->repo); -+ Repodata* rb = repo_last_repodata(sb->repo); -+ -+ unsigned long long bta = repodata_lookup_num(ra, a, SOLVABLE_BUILDTIME, 0ull); -+ unsigned long long btb = repodata_lookup_num(rb, b, SOLVABLE_BUILDTIME, 0ull); -+ -+ res = (btb > bta) ? 1 : -1; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Fallback to timestamp comparison: %llu vs %llu: [%d]\n", bta, btb, res); -+ } -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Selecting variant [%c] of (a) %s vs (b) %s (score: %d)\n", -+ (res < 0 ? 'a' : 'b'), pool_solvable2str(pool, sa), pool_solvable2str(pool, sb), res); -+ -+ return res; -+} - - /* -- * prune_to_best_version -+ * prune_to_best_version_conda - * - * sort list of packages (given through plist) by name and evr - * return result through plist - */ - void --prune_to_best_version(Pool *pool, Queue *plist) -+prune_to_best_version_conda(Pool *pool, Queue *plist) - { - int i, j, r; - Solvable *s, *best; - -- if (plist->count < 2) /* no need to prune for a single entry */ -+ if (plist->count < 2) /* no need to prune for a single entry */ - return; -- POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version_conda %d\n", plist->count); - - /* sort by name first, prefer installed */ - solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -@@ -891,10 +1162,10 @@ prune_to_best_version(Pool *pool, Queue *plist) - s = pool->solvables + plist->elements[i]; - - POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -- pool_solvable2str(pool, s), plist->elements[i], -- (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); - -- if (!best) /* if no best yet, the current is best */ -+ if (!best) /* if no best yet, the current is best */ - { - best = s; - continue; -@@ -904,49 +1175,54 @@ prune_to_best_version(Pool *pool, Queue *plist) - if (best->name != s->name) /* new name */ - { - plist->elements[j++] = best - pool->solvables; /* move old best to front */ -- best = s; /* take current as new best */ -+ best = s; /* take current as new best */ - continue; - } - - r = 0; --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- r = pool_featurecountcmp(pool, best, s); --#endif -+ r = pool_featurecountcmp(pool, best, s); - if (r == 0) - r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; --#ifdef ENABLE_LINKED_PKGS -- if (r == 0 && has_package_link(pool, s)) -- r = pool_link_evrcmp(pool, best, s); --#endif --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- { -- if (r == 0) -- r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -- if (r == 0) -- r = pool_buildversioncmp(pool, best, s); -- if (r == 0) -- r = pool_buildflavorcmp(pool, best, s); -- } --#endif -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ // this can be removed as this comparison doesn't effect anything -+ if (r == 0) -+ r = pool_buildflavorcmp(pool, best, s); - if (r < 0) -- best = s; -+ best = s; - } -- plist->elements[j++] = best - pool->solvables; /* finish last group */ -- plist->count = j; - -- /* we reduced the list to one package per name, now look at -- * package obsoletes */ -- if (plist->count > 1) -+ Queue q; -+ queue_init(&q); -+ for (i = 0; i < plist->count; i++) - { -- if (plist->count == 2) -- prune_obsoleted_2(pool, plist); -- else -- prune_obsoleted(pool, plist); -+ s = pool->solvables + plist->elements[i]; -+ r = pool_featurecountcmp(pool, best, s); -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ if (r == 0) -+ queue_push(&q, s - pool->solvables); - } --} - -+ if (q.count > 1) -+ { -+ // order by first-level deps -+ solv_sort(q.elements, q.count, sizeof(Id), sort_by_best_dependencies, pool); -+ } -+ -+ for (i = 0; i < q.count; ++i) -+ plist->elements[i] = q.elements[i]; -+ plist->count = q.count; -+ -+ queue_free(&q); -+} -+#endif // ENABLE_CONDA - - static int - sort_by_name_evr_sortcmp(const void *ap, const void *bp, void *dp) -diff --git a/src/policy.h b/src/policy.h -index 3ae1005a..a79483a4 100644 ---- a/src/policy.h -+++ b/src/policy.h -@@ -45,6 +45,9 @@ extern void pool_best_solvables(Pool *pool, Queue *plist, int flags); - extern void prune_to_best_version(Pool *pool, Queue *plist); - extern void policy_prefer_favored(Solver *solv, Queue *plist); - -+#ifdef ENABLE_CONDA -+extern void prune_to_best_version_conda(Pool *pool, Queue *plist); -+#endif - - #ifdef __cplusplus - } diff --git a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/portfile.cmake b/tools/micromamba-linux-ppc64le/info/recipe/libsolv/portfile.cmake deleted file mode 100644 index 7fdac1c..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/portfile.cmake +++ /dev/null @@ -1,55 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO openSUSE/libsolv - REF 0.7.24 - SHA512 a0975d3f80ae8c364d5b32df4c26bc7eb5abb3be81259595848f1f5f74b00e708af3153074041d49383547718e68cee2e82cf4bdeab6221dfdcc605812689d37 - HEAD_REF master - PATCHES - win_export_and_static_build.patch - conda_variant_priorization.patch -) - -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBS) -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBS) - -if (NOT BUILD_DYNAMIC_LIBS) - set(DISABLE_SHARED ON) -else() - set(DISABLE_SHARED OFF) -endif() - -vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - conda ENABLE_CONDA -) - -if(WIN32) - list(APPEND FEATURE_OPTIONS "-DWITHOUT_COOKIEOPEN=ON") -endif() - -vcpkg_configure_cmake( - SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA - OPTIONS - ${FEATURE_OPTIONS} - -DDISABLE_SHARED=${DISABLE_SHARED} - -DENABLE_STATIC=${BUILD_STATIC_LIBS} - -DMULTI_SEMANTICS=ON - -DBUILD_EXAMPLE_PROGRAMS=OFF - .. -) - - -vcpkg_install_cmake() -# vcpkg_fixup_cmake_targets() -# vcpkg_copy_pdbs() - -if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -file(INSTALL ${SOURCE_PATH}/LICENSE.BSD DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsolv RENAME copyright) - -vcpkg_test_cmake(PACKAGE_NAME libsolv) diff --git a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/win_export_and_static_build.patch b/tools/micromamba-linux-ppc64le/info/recipe/libsolv/win_export_and_static_build.patch deleted file mode 100644 index 796077e..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/libsolv/win_export_and_static_build.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/repo_write.c b/src/repo_write.c -index a73eebff..9e0622e3 100644 ---- a/src/repo_write.c -+++ b/src/repo_write.c -@@ -188,7 +188,7 @@ write_compressed_blob(Repodata *data, void *blob, int len) - write_u8(data, clen); - write_blob(data, cpage, clen); - } -- blob += chunk; -+ blob = (char*) blob + chunk; - len -= chunk; - } - } diff --git a/tools/micromamba-linux-ppc64le/info/recipe/meta.yaml b/tools/micromamba-linux-ppc64le/info/recipe/meta.yaml deleted file mode 100644 index 26f3755..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/meta.yaml +++ /dev/null @@ -1,166 +0,0 @@ -# This file created by conda-build 3.25.0 -# meta.yaml template originally from: -# /home/conda/recipe_root, last modified Fri Aug 25 08:19:13 2023 -# ------------------------------------------------ - -package: - name: micromamba - version: 1.5.0 -source: - - folder: mamba - sha256: 0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17 - url: https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-1.5.0.tar.gz -build: - ignore_run_exports_from: - - fmt - - gcc_linux-ppc64le 12.* - - gxx_linux-ppc64le 12.* - - libarchive-minimal-static - - libcurl - - openssl - - reproc-cpp - - spdlog - number: '1' - string: '1' -requirements: - build: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex 4.5 2_gnu - - _sysroot_linux-ppc64le_curr_repodata_hack 4 h43410cf_13 - - binutils_impl_linux-64 2.40 hf600244_0 - - binutils_impl_linux-ppc64le 2.40 hef43fe1_0 - - binutils_linux-ppc64le 2.40 h631d6fd_1 - - bzip2 1.0.8 h7f98852_4 - - c-ares 1.19.1 hd590300_0 - - ca-certificates 2023.7.22 hbcca054_0 - - cmake 3.26.4 hcfe8598_0 - - expat 2.5.0 hcb278e6_1 - - gcc_impl_linux-64 12.3.0 he2b93b0_0 - - gcc_impl_linux-ppc64le 12.3.0 h783c3ad_0 - - gcc_linux-ppc64le 12.3.0 h7a1d020_1 - - gxx_impl_linux-64 12.3.0 he2b93b0_0 - - gxx_impl_linux-ppc64le 12.3.0 h783c3ad_0 - - gxx_linux-ppc64le 12.3.0 hbee9562_1 - - kernel-headers_linux-64 2.6.32 he073ed8_16 - - kernel-headers_linux-ppc64le 3.10.0 h23d7e6c_13 - - keyutils 1.6.1 h166bdaf_0 - - krb5 1.21.2 h659d440_0 - - ld_impl_linux-64 2.40 h41732ed_0 - - ld_impl_linux-ppc64le 2.40 h2f009d6_0 - - libcurl 8.2.1 hca28451_0 - - libedit 3.1.20191231 he28a2e2_2 - - libev 4.33 h516909a_1 - - libexpat 2.5.0 hcb278e6_1 - - libgcc-devel_linux-64 12.3.0 h8bca6fd_0 - - libgcc-devel_linux-ppc64le 12.3.0 h227d28a_0 - - libgcc-ng 13.1.0 he5830b7_0 - - libgomp 13.1.0 he5830b7_0 - - libnghttp2 1.52.0 h61bc06f_0 - - libsanitizer 12.3.0 h0f45ef3_0 - - libssh2 1.11.0 h0841786_0 - - libstdcxx-devel_linux-64 12.3.0 h8bca6fd_0 - - libstdcxx-devel_linux-ppc64le 12.3.0 h227d28a_0 - - libstdcxx-ng 13.1.0 hfd8a6a1_0 - - libuv 1.44.2 hd590300_1 - - libzlib 1.2.13 hd590300_5 - - ncurses 6.4 hcb278e6_0 - - ninja 1.11.1 h924138e_0 - - openssl 3.1.2 hd590300_0 - - rhash 1.4.3 hd590300_1 - - sysroot_linux-64 2.12 he073ed8_16 - - sysroot_linux-ppc64le 2.17 h23d7e6c_13 - - xz 5.2.6 h166bdaf_0 - - zlib 1.2.13 hd590300_5 - - zstd 1.5.2 hfc55251_7 - host: - - _libgcc_mutex 0.1 conda_forge - - _openmp_mutex 4.5 2_gnu - - bzip2 1.0.8 h4e0d66e_4 - - c-ares 1.19.1 ha17a0cc_0 - - c-ares-static 1.19.1 ha17a0cc_0 - - ca-certificates 2023.7.22 h0f6029e_0 - - cli11 2.3.1 hbbae597_0 - - cpp-expected 1.1.0 he01d56d_0 - - fmt 10.1.0 h9bb5675_0 - - keyutils 1.6.1 hb283c62_0 - - krb5 1.20.1 h5977a33_0 - - krb5-static 1.20.1 h5977a33_0 - - libarchive-minimal-static 3.6.2 h009e8c7_1 - - libcurl 7.88.1 hea9912c_1 - - libcurl-static 7.88.1 hea9912c_1 - - libedit 3.1.20191231 h41a240f_2 - - libev 4.33 h6eb9509_1 - - libev-static 4.33 h6eb9509_1 - - libgcc-ng 13.1.0 h39a4be8_0 - - libgomp 13.1.0 h39a4be8_0 - - libnghttp2 1.52.0 hb3a6636_0 - - libnghttp2-static 1.52.0 haf9a9e6_0 - - libopenssl-static 3.1.2 ha17a0cc_0 - - libsolv 0.7.24 hff1ad0c_3 - - libsolv-static 0.7.24 hff1ad0c_3 - - libssh2 1.11.0 hb363fe5_0 - - libssh2-static 1.11.0 hb363fe5_0 - - libstdcxx-ng 13.1.0 h09f375a_0 - - libzlib 1.2.13 ha17a0cc_5 - - lz4-c-static 1.9.4 ha3edaa6_0 - - ncurses 6.4 h344580c_0 - - nlohmann_json 3.11.2 hbbae597_0 - - openssl 3.1.2 ha17a0cc_0 - - reproc 14.2.4 h4194056_0 - - reproc-cpp 14.2.4 h883269e_0 - - reproc-cpp-static 14.2.4 h883269e_0 - - reproc-static 14.2.4 h4194056_0 - - spdlog 1.12.0 h3de9e99_1 - - xz 5.2.6 hb283c62_0 - - xz-static 5.2.6 hb283c62_0 - - yaml-cpp 0.7.0 hbbae597_2 - - yaml-cpp-static 0.7.0 hbbae597_2 - - zlib 1.2.13 ha17a0cc_5 - - zstd 1.5.2 h7292585_7 - - zstd-static 1.5.2 h8800142_7 - run: - - libzlib >=1.2.13,<1.3.0a0 -test: - commands: - - test -f "${PREFIX}/bin/micromamba" - - micromamba --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" - - micromamba create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' -about: - dev_url: https://github.com/mamba-org/mamba - home: https://github.com/mamba-org/mamba - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - license_file: - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - - mamba/LICENSE - summary: Micromamba is a tiny version of mamba, the fast conda package installer. -extra: - copy_test_source_files: true - final: true - recipe-maintainers: - - AntoinePrv - - JohanMabille - - SylvainCorlay - - adriendelsalle - - mariusvniekerk - - pavelzw - - wolfv diff --git a/tools/micromamba-linux-ppc64le/info/recipe/meta.yaml.template b/tools/micromamba-linux-ppc64le/info/recipe/meta.yaml.template deleted file mode 100644 index 0c3950b..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/meta.yaml.template +++ /dev/null @@ -1,132 +0,0 @@ -{% set version = "1.5.0" %} -{% set sha256 = "0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17" %} -{% set build_num = 1 %} - -# A strategy for testing the feedstock locally in mamba CI -{% if os.environ.get("CI", "") == "local" %} - {% set mamba_source_type = "path" %} - {% set mamba_source_val = "{}/source".format(os.environ.get("FEEDSTOCK_ROOT", "..")) %} - {% set mamba_hash_type = "" %} - {% set mamba_hash_val = "" %} -{% else %} - {% set mamba_source_type = "url" %} - {% set mamba_source_val = "https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-{}.tar.gz".format(version) %} - {% set mamba_hash_type = "sha256" %} - {% set mamba_hash_val = sha256 %} -{% endif %} - -# Used for writing generic tests -{% set bin_ext = "" %} # [unix] -{% set bin_ext = ".exe" %} # [win] - -package: - name: micromamba - version: {{ version }} - -source: - - "{{ mamba_source_type }}": "{{ mamba_source_val }}" - "{{ mamba_hash_type }}": "{{ mamba_hash_val }}" - folder: mamba - # VCPKG comes with its own (short-lived) metadata which can be already outdated in the latest release - - url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz # [win] - sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 # [win] - folder: vcpkg # [win] - -build: - number: {{ build_num }} - string: {{ build_num }} - ignore_run_exports_from: - - libcurl # [unix] - - libarchive-minimal-static # [unix] - - reproc-cpp # [unix] - - openssl # [unix] - - spdlog - - fmt - - {{ compiler('c') }} # [linux] - - {{ compiler('cxx') }} # [linux] - - python # [win] - -requirements: - build: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - cmake # [unix] - - ninja - - vcpkg-tool # [win] - - python # [win] - - curl >=7.87,<8 # [win] - - zlib # [win] - host: - - cli11 >=2.2,<3 - - cpp-expected - - nlohmann_json - - spdlog - - fmt - - yaml-cpp-static # [unix] - - libcurl >=7.88.1,<8 # [unix] - - libcurl-static >=7.88.1,<8 # [unix] - - xz-static # [unix] - - libssh2-static # [unix] - - libarchive-minimal-static # [unix] - - krb5-static # [unix] - - libsolv-static # [unix] - - openssl {{ openssl }} # [unix] - - libopenssl-static {{ openssl }} # [unix] - - zstd-static # [unix] - - zlib # [unix] - - libnghttp2-static # [unix] - - lz4-c-static # [unix] - - reproc-static # [unix] - - reproc-cpp # [unix] - - reproc-cpp-static # [unix] - - winreg # [win] - -test: - commands: - - test -f "${PREFIX}/bin/micromamba" # [unix] - - if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) # [win] - - micromamba{{ bin_ext }} --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" # [unix] - - mkdir %TEMP%\mamba # [win] - - set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" # [win] - - micromamba{{ bin_ext }} create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' # [win] - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' # [win] - -about: - home: https://github.com/mamba-org/mamba - license_file: - - mamba/LICENSE - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - summary: Micromamba is a tiny version of mamba, the fast conda package installer. - dev_url: https://github.com/mamba-org/mamba - -extra: - recipe-maintainers: - - AntoinePrv - - pavelzw - - wolfv - - SylvainCorlay - - JohanMabille - - mariusvniekerk - - adriendelsalle diff --git a/tools/micromamba-linux-ppc64le/info/recipe/recipe-scripts-license.txt b/tools/micromamba-linux-ppc64le/info/recipe/recipe-scripts-license.txt deleted file mode 100644 index 2ec51d7..0000000 --- a/tools/micromamba-linux-ppc64le/info/recipe/recipe-scripts-license.txt +++ /dev/null @@ -1,27 +0,0 @@ -BSD-3-Clause license -Copyright (c) 2015-2022, conda-forge contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. diff --git a/tools/micromamba-linux-ppc64le/info/test/run_test.sh b/tools/micromamba-linux-ppc64le/info/test/run_test.sh deleted file mode 100644 index 1a56f3a..0000000 --- a/tools/micromamba-linux-ppc64le/info/test/run_test.sh +++ /dev/null @@ -1,13 +0,0 @@ - - -set -ex - - - -test -f "${PREFIX}/bin/micromamba" -micromamba --help -export MAMBA_ROOT_PREFIX="$(mktemp -d)" -micromamba create -n test --override-channels -c conda-forge --yes python=3.9 -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os" -exit 0 diff --git a/tools/micromamba-osx-64/.DS_Store b/tools/micromamba-osx-64/.DS_Store deleted file mode 100644 index 388d44e..0000000 Binary files a/tools/micromamba-osx-64/.DS_Store and /dev/null differ diff --git a/tools/micromamba-osx-64/bin/micromamba b/tools/micromamba-osx-64/bin/micromamba deleted file mode 100755 index 87c8077..0000000 Binary files a/tools/micromamba-osx-64/bin/micromamba and /dev/null differ diff --git a/tools/micromamba-osx-64/info/about.json b/tools/micromamba-osx-64/info/about.json deleted file mode 100644 index 6dbf397..0000000 --- a/tools/micromamba-osx-64/info/about.json +++ /dev/null @@ -1,220 +0,0 @@ -{ - "channels": [ - "https://conda.anaconda.org/conda-forge" - ], - "conda_build_version": "3.25.0", - "conda_version": "23.3.1", - "dev_url": "https://github.com/mamba-org/mamba", - "env_vars": { - "CIO_TEST": "" - }, - "extra": { - "copy_test_source_files": true, - "final": true, - "recipe-maintainers": [ - "AntoinePrv", - "pavelzw", - "wolfv", - "SylvainCorlay", - "JohanMabille", - "mariusvniekerk", - "adriendelsalle" - ] - }, - "home": "https://github.com/mamba-org/mamba", - "identifiers": [], - "keywords": [], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "license_file": [ - "mamba/LICENSE", - "CLI11_LICENSE.txt", - "CURL_LICENSE.txt", - "C_ARES_LICENSE.txt", - "FMT_LICENSE.txt", - "KRB5_LICENSE.txt", - "LIBARCHIVE_LICENSE.txt", - "LIBEV_LICENSE.txt", - "LIBLZ4_LICENSE.txt", - "LIBNGHTTP2_LICENSE.txt", - "LIBOPENSSL_3_LICENSE.txt", - "LIBOPENSSL_LICENSE.txt", - "LIBSOLV_LICENSE.txt", - "NLOHMANN_JSON_LICENSE.txt", - "REPROC_LICENSE.txt", - "SPDLOG_LICENSE.txt", - "TL_EXPECTED_LICENSE.txt", - "ZSTD_LICENSE.txt" - ], - "root_pkgs": [ - "jsonschema-specifications 2023.7.1 pyhd8ed1ab_0", - "cctools_osx-64 973.0.1 ha1c5b94_14", - "prompt-toolkit 3.0.39 pyha770c72_0", - "xorg-libxau 1.0.11 h0dc2134_0", - "cryptography 41.0.3 py310ha1817de_0", - "gettext 0.21.1 h8a4c099_0", - "typing-extensions 4.7.1 hd8ed1ab_0", - "urllib3 1.26.15 pyhd8ed1ab_0", - "exceptiongroup 1.1.3 pyhd8ed1ab_0", - "platformdirs 3.10.0 pyhd8ed1ab_0", - "pthread-stubs 0.4 hc929b4f_1001", - "tornado 6.3.3 py310h6729b98_0", - "conda-env 2.6.0 1", - "six 1.16.0 pyh6c4a22f_0", - "libmamba 1.4.2 h9d281b0_0", - "joblib 1.3.2 pyhd8ed1ab_0", - "pygments 2.16.1 pyhd8ed1ab_0", - "colorama 0.4.6 pyhd8ed1ab_0", - "pillow 10.0.0 py310hd63a8c7_0", - "jq 1.6 hc929b4f_1000", - "importlib_resources 6.0.1 pyhd8ed1ab_0", - "icu 72.1 h7336db1_0", - "packaging 23.1 pyhd8ed1ab_0", - "yaml 0.2.5 h0d85af4_2", - "ncurses 6.4 hf0c8a7f_0", - "python 3.10.12 had23ca6_0_cpython", - "watchgod 0.8.2 pyhd8ed1ab_0", - "libxml2 2.11.5 hd95e348_0", - "anaconda-client 1.12.0 pyhd8ed1ab_1", - "chardet 5.2.0 py310h2ec42d9_0", - "click 8.1.7 unix_pyh707e725_0", - "charset-normalizer 3.2.0 pyhd8ed1ab_0", - "conda-index 0.2.3 pyhd8ed1ab_0", - "openjpeg 2.5.0 h13ac156_2", - "cffi 1.15.1 py310ha78151a_3", - "conda 23.3.1 py310h2ec42d9_0", - "readline 8.2 h9e318b2_1", - "python-libarchive-c 5.0 py310h2ec42d9_1", - "reproc 14.2.4 hb7f2c08_0", - "mdurl 0.1.0 pyhd8ed1ab_0", - "freetype 2.12.1 h3f81eb7_1", - "pcre2 10.40 h1c4e4bc_0", - "typing_extensions 4.7.1 pyha770c72_0", - "glob2 0.7 py_0", - "python-dateutil 2.8.2 pyhd8ed1ab_0", - "prompt_toolkit 3.0.39 hd8ed1ab_0", - "conda-build 3.25.0 py310h2ec42d9_0", - "libarchive 3.6.2 h0b5dc4a_1", - "libcurl 8.2.1 h5f667d7_0", - "libjpeg-turbo 2.1.5.1 hb7f2c08_0", - "lcms2 2.15 h2dcdeff_1", - "xorg-libxdmcp 1.1.3 h35c211d_0", - "pyopenssl 23.2.0 pyhd8ed1ab_1", - "libsqlite 3.42.0 h58db7d2_0", - "mamba 1.4.2 py310h6bde348_0", - "toolz 0.12.0 pyhd8ed1ab_0", - "pluggy 1.2.0 pyhd8ed1ab_0", - "libedit 3.1.20191231 h0678c8f_2", - "git 2.42.0 pl5321hbb4c4ee_0", - "sigtool 0.1.3 h88f4db0_0", - "ruamel.yaml 0.17.32 py310h6729b98_0", - "boa 0.15.1 pyhd8ed1ab_0", - "pysocks 1.7.1 pyha2e5f31_6", - "perl 5.32.1 4_h0dc2134_perl5", - "libcxx 16.0.6 hd57cbcb_0", - "soupsieve 2.3.2.post1 pyhd8ed1ab_0", - "jinja2 3.1.2 pyhd8ed1ab_1", - "requests 2.31.0 pyhd8ed1ab_0", - "lz4-c 1.9.4 hf0c8a7f_0", - "pyyaml 6.0.1 py310h6729b98_0", - "anaconda-project 0.11.1 pyhd8ed1ab_0", - "libssh2 1.11.0 hd019ec5_0", - "rpds-py 0.9.2 py310h3461e44_0", - "psutil 5.9.5 py310h90acd4f_0", - "libexpat 2.5.0 hf0c8a7f_1", - "libdeflate 1.18 hac1461d_0", - "setuptools 68.1.2 pyhd8ed1ab_0", - "wcwidth 0.2.6 pyhd8ed1ab_0", - "libnghttp2 1.52.0 he2ab024_0", - "anyio 3.7.1 pyhd8ed1ab_0", - "sniffio 1.3.0 pyhd8ed1ab_0", - "certifi 2023.7.22 pyhd8ed1ab_0", - "requests-toolbelt 1.0.0 pyhd8ed1ab_0", - "brotli-python 1.0.9 py310h7a76584_9", - "libwebp-base 1.3.1 h0dc2134_0", - "ripgrep 13.0.0 hbbacdb1_2", - "rich 13.5.1 pyhd8ed1ab_0", - "nbformat 5.9.2 pyhd8ed1ab_0", - "ld64_osx-64 609 ha20a434_14", - "fmt 9.1.0 hb8565cd_0", - "ca-certificates 2023.7.22 h8857fd0_0", - "patch 2.7.6 hbcf498f_1002", - "pip 23.2.1 pyhd8ed1ab_0", - "conda-package-handling 2.2.0 pyh38be061_0", - "pkginfo 1.9.6 pyhd8ed1ab_0", - "libffi 3.4.2 h0d85af4_5", - "python_abi 3.10 3_cp310", - "krb5 1.21.2 hb884880_0", - "traitlets 5.9.0 pyhd8ed1ab_0", - "libzlib 1.2.13 h8a1eda9_5", - "defusedxml 0.7.1 pyhd8ed1ab_0", - "conda-package-streaming 0.9.0 pyhd8ed1ab_0", - "more-itertools 10.1.0 pyhd8ed1ab_0", - "jsonpatch 1.32 pyhd8ed1ab_0", - "openssl 3.1.2 h8a1eda9_0", - "reproc-cpp 14.2.4 hf0c8a7f_0", - "referencing 0.30.2 pyhd8ed1ab_0", - "liblief 0.12.3 hf0c8a7f_0", - "boltons 23.0.0 pyhd8ed1ab_0", - "conda-pack 0.7.1 pyhd8ed1ab_0", - "tapi 1100.0.11 h9ce4665_0", - "conda-forge-ci-setup 3.32.5 py310h84be057_100", - "libpng 1.6.39 ha978bb4_0", - "markupsafe 2.1.3 py310h6729b98_0", - "xz 5.2.6 h775f41a_0", - "filelock 3.12.2 pyhd8ed1ab_0", - "python-fastjsonschema 2.18.0 pyhd8ed1ab_0", - "yaml-cpp 0.7.0 hf0c8a7f_2", - "tzdata 2023c h71feb2d_0", - "backports 1.0 pyhd8ed1ab_3", - "bzip2 1.0.8 h0d85af4_4", - "jupyter_core 5.3.1 py310h2ec42d9_0", - "pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0", - "tqdm 4.66.1 pyhd8ed1ab_0", - "py-lief 0.12.3 py310h7a76584_0", - "attrs 23.1.0 pyh71513ae_1", - "conda-forge-metadata 0.5.2 pyhd8ed1ab_0", - "tomli 2.0.1 pyhd8ed1ab_0", - "zstandard 0.19.0 py310h151724a_2", - "shyaml 0.6.2 pyhd3deb0d_0", - "libtiff 4.5.1 hf955e92_1", - "zipp 3.16.2 pyhd8ed1ab_0", - "markdown-it-py 3.0.0 pyhd8ed1ab_0", - "libxcb 1.15 hb7f2c08_0", - "pycosat 0.6.4 py310h90acd4f_1", - "clyent 1.2.2 py_1", - "brotlipy 0.7.0 py310h90acd4f_1005", - "libsolv 0.7.24 h7d26f99_1", - "oras-py 0.1.14 pyhd8ed1ab_0", - "lerc 4.0.0 hb486fe8_0", - "wheel 0.41.1 pyhd8ed1ab_0", - "backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0", - "jsonpointer 2.0 py_0", - "ld64 609 ha02d983_14", - "conda-oci-mirror 0.1.0 pyhd8ed1ab_0", - "ruamel_yaml 0.15.80 py310h90acd4f_1008", - "libmambapy 1.4.2 py310hb15139c_0", - "curl 8.2.1 h5f667d7_0", - "zstd 1.5.2 h829000d_7", - "oniguruma 6.9.8 hac89ed1_0", - "beautifulsoup4 4.12.2 pyha770c72_0", - "c-ares 1.19.1 h0dc2134_0", - "libiconv 1.17 hac89ed1_0", - "jsonschema 4.19.0 pyhd8ed1ab_1", - "dataclasses 0.8 pyhc8e2a94_3", - "lzo 2.10 haf1e3a3_1000", - "cctools 973.0.1 h40f6528_14", - "pybind11-abi 4 hd8ed1ab_3", - "ruamel.yaml.clib 0.2.7 py310h90acd4f_1", - "json5 0.9.14 pyhd8ed1ab_0", - "pytz 2023.3 pyhd8ed1ab_0", - "libllvm16 16.0.6 he4b1e75_2", - "pycparser 2.21 pyhd8ed1ab_0", - "conda-libmamba-solver 23.3.0 pyhd8ed1ab_0", - "tk 8.6.12 h5dbffcc_0", - "libev 4.33 haf1e3a3_1", - "idna 3.4 pyhd8ed1ab_0" - ], - "summary": "Micromamba is a tiny version of mamba, the fast conda package installer.", - "tags": [] -} \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/files b/tools/micromamba-osx-64/info/files deleted file mode 100644 index 6c1e7bf..0000000 --- a/tools/micromamba-osx-64/info/files +++ /dev/null @@ -1 +0,0 @@ -bin/micromamba diff --git a/tools/micromamba-osx-64/info/git b/tools/micromamba-osx-64/info/git deleted file mode 100644 index e69de29..0000000 diff --git a/tools/micromamba-osx-64/info/has_prefix b/tools/micromamba-osx-64/info/has_prefix deleted file mode 100644 index d03dc51..0000000 --- a/tools/micromamba-osx-64/info/has_prefix +++ /dev/null @@ -1 +0,0 @@ -/Users/runner/miniforge3/conda-bld/micromamba_1692951701590/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol binary bin/micromamba diff --git a/tools/micromamba-osx-64/info/hash_input.json b/tools/micromamba-osx-64/info/hash_input.json deleted file mode 100644 index 9932a08..0000000 --- a/tools/micromamba-osx-64/info/hash_input.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "CI": "azure", - "c_compiler": "clang", - "fmt": "10", - "c_compiler_version": "15", - "openssl": "3", - "libcurl": "8", - "target_platform": "osx-64", - "channel_targets": "conda-forge main", - "CONDA_BUILD_SYSROOT": "/Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk", - "spdlog": "1.12", - "cxx_compiler_version": "15", - "zlib": "1.2", - "cxx_compiler": "clangxx" -} \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/index.json b/tools/micromamba-osx-64/info/index.json deleted file mode 100644 index ad008e1..0000000 --- a/tools/micromamba-osx-64/info/index.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "arch": "x86_64", - "build": "1", - "build_number": 1, - "depends": [ - "libcxx >=15.0.7", - "libzlib >=1.2.13,<1.3.0a0" - ], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "name": "micromamba", - "platform": "osx", - "subdir": "osx-64", - "timestamp": 1692953168073, - "version": "1.5.0" -} \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/CLI11_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-osx-64/info/licenses/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/CURL_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-osx-64/info/licenses/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/C_ARES_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-osx-64/info/licenses/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-osx-64/info/licenses/FMT_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-osx-64/info/licenses/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/KRB5_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-osx-64/info/licenses/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/LIBARCHIVE_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-osx-64/info/licenses/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/LIBEV_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-osx-64/info/licenses/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-osx-64/info/licenses/LIBLZ4_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-osx-64/info/licenses/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-64/info/licenses/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-osx-64/info/licenses/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-osx-64/info/licenses/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-osx-64/info/licenses/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/LIBOPENSSL_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-osx-64/info/licenses/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-osx-64/info/licenses/LIBSOLV_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-osx-64/info/licenses/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-osx-64/info/licenses/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-64/info/licenses/REPROC_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-osx-64/info/licenses/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-64/info/licenses/SPDLOG_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-osx-64/info/licenses/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-osx-64/info/licenses/TL_EXPECTED_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-osx-64/info/licenses/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/licenses/ZSTD_LICENSE.txt b/tools/micromamba-osx-64/info/licenses/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-osx-64/info/licenses/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-64/info/licenses/mamba/LICENSE b/tools/micromamba-osx-64/info/licenses/mamba/LICENSE deleted file mode 100644 index 8ae98f9..0000000 --- a/tools/micromamba-osx-64/info/licenses/mamba/LICENSE +++ /dev/null @@ -1,11 +0,0 @@ -Copyright 2019 QuantStack and the Mamba contributors. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-64/info/paths.json b/tools/micromamba-osx-64/info/paths.json deleted file mode 100644 index 1243781..0000000 --- a/tools/micromamba-osx-64/info/paths.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "paths": [ - { - "_path": "bin/micromamba", - "file_mode": "binary", - "path_type": "hardlink", - "prefix_placeholder": "/Users/runner/miniforge3/conda-bld/micromamba_1692951701590/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", - "sha256": "302afea473f0d9ee302c4b2014ba25396377262c21be9910e060d6d6536b72c6", - "size_in_bytes": 13625032 - } - ], - "paths_version": 1 -} \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/CLI11_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-osx-64/info/recipe/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt deleted file mode 100644 index 8b24faa..0000000 --- a/tools/micromamba-osx-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018, Steffen Schümann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-64/info/recipe/CURL_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-osx-64/info/recipe/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/C_ARES_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-osx-64/info/recipe/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-osx-64/info/recipe/FMT_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-osx-64/info/recipe/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/KRB5_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-osx-64/info/recipe/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/LIBARCHIVE_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-osx-64/info/recipe/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/LIBEV_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-osx-64/info/recipe/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-osx-64/info/recipe/LIBLZ4_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-osx-64/info/recipe/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-64/info/recipe/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-osx-64/info/recipe/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-osx-64/info/recipe/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-osx-64/info/recipe/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/LIBOPENSSL_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-osx-64/info/recipe/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-osx-64/info/recipe/LIBSOLV_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-osx-64/info/recipe/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-osx-64/info/recipe/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-64/info/recipe/REPROC_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-osx-64/info/recipe/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-64/info/recipe/SPDLOG_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-osx-64/info/recipe/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-osx-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt deleted file mode 100644 index 679df41..0000000 --- a/tools/micromamba-osx-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt +++ /dev/null @@ -1,31 +0,0 @@ -Copyright (c) 2013, Ihor Kalnytskyi. -All rights reserved. - -Redistribution and use in source and binary forms of the software as well -as documentation, with or without modification, are permitted provided -that the following conditions are met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -* The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/TL_EXPECTED_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-osx-64/info/recipe/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-osx-64/info/recipe/ZSTD_LICENSE.txt b/tools/micromamba-osx-64/info/recipe/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-osx-64/info/recipe/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-64/info/recipe/bld.bat b/tools/micromamba-osx-64/info/recipe/bld.bat deleted file mode 100644 index 6a91569..0000000 --- a/tools/micromamba-osx-64/info/recipe/bld.bat +++ /dev/null @@ -1,41 +0,0 @@ -SET VCPKG_ROOT=%CD%\vcpkg - -SET VCPKG_BUILD_TYPE=release -vcpkg install --overlay-ports=%RECIPE_DIR%\libsolv libsolv[conda] --triplet x64-windows-static - -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install "libarchive[bzip2,lz4,lzma,lzo,openssl,zstd]" --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install curl --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install yaml-cpp --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install reproc --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% - -SET "CXXFLAGS=%CXXFLAGS% /showIncludes" -SET CMAKE_PREFIX_PATH=%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH% - -cmake -S mamba ^ - -B build ^ - -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ - -D CMAKE_PREFIX_PATH="%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%" ^ - -D CMAKE_BUILD_TYPE="Release" ^ - -D BUILD_LIBMAMBA=ON ^ - -D BUILD_STATIC=ON ^ - -D BUILD_MICROMAMBA=ON ^ - -G "Ninja" -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --build build --parallel %CPU_COUNT% -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --install build -if %errorlevel% NEQ 0 exit /b %errorlevel% - -DEL /Q /F /S "%LIBRARY_PREFIX%\lib\libmamba*" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\include\mamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\lib\cmake\libmamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% diff --git a/tools/micromamba-osx-64/info/recipe/build.sh b/tools/micromamba-osx-64/info/recipe/build.sh deleted file mode 100644 index 15cc563..0000000 --- a/tools/micromamba-osx-64/info/recipe/build.sh +++ /dev/null @@ -1,35 +0,0 @@ -set -euxo pipefail - -# Conda's binary relocation can result in string changing which can result in errors like -# > warning: command substitution: ignored null byte in input -# https://github.com/mamba-org/mamba/issues/1517 -export CXXFLAGS="${CXXFLAGS} -fno-merge-constants" -export CFLAGS="${CFLAGS} -fno-merge-constants" -export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY=1" - -cmake -S mamba/ \ - -B build/ \ - -G Ninja \ - ${CMAKE_ARGS} \ - -D CMAKE_INSTALL_PREFIX=${PREFIX} \ - -D CMAKE_BUILD_TYPE="Release" \ - -D BUILD_LIBMAMBA=ON \ - -D BUILD_STATIC=ON \ - -D BUILD_MICROMAMBA=ON -cmake --build build/ --parallel ${CPU_COUNT} -cmake --install build/ - -# remove everything related to `libmamba` -rm -rf "${PREFIX}/lib/libmamba"* -rm -rf "${PREFIX}/include/mamba" -rm -rf "${PREFIX}/lib/cmake/libmamba" - -"${STRIP:-strip}" "${PREFIX}/bin/micromamba" - -if [[ "$target_platform" == "osx-"* ]]; then - OTOOL_OUTPUT=$("${OTOOL:-otool}" -L "${PREFIX}/bin/micromamba") - if [[ "$OTOOL_OUTPUT" == *libc++.1.dylib* ]]; then - echo "micromamba is linked to libc++.1.dlyb" - exit 1 - fi -fi diff --git a/tools/micromamba-osx-64/info/recipe/conda_build_config.yaml b/tools/micromamba-osx-64/info/recipe/conda_build_config.yaml deleted file mode 100644 index 9211119..0000000 --- a/tools/micromamba-osx-64/info/recipe/conda_build_config.yaml +++ /dev/null @@ -1,43 +0,0 @@ -CI: azure -CONDA_BUILD_SYSROOT: /Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk -MACOSX_DEPLOYMENT_TARGET: '10.9' -MACOSX_SDK_VERSION: '11.0' -c_compiler: clang -c_compiler_version: '15' -channel_sources: conda-forge -channel_targets: conda-forge main -cpu_optimization_target: nocona -cran_mirror: https://cran.r-project.org -cxx_compiler: clangxx -cxx_compiler_version: '15' -extend_keys: -- extend_keys -- ignore_version -- ignore_build_only_deps -- pin_run_as_build -fmt: '10' -fortran_compiler: gfortran -ignore_build_only_deps: -- numpy -- python -libcurl: '8' -lua: '5' -macos_machine: x86_64-apple-darwin13.4.0 -numpy: '1.22' -openssl: '3' -perl: 5.26.2 -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x - r-base: - min_pin: x.x - max_pin: x.x -python: '3.10' -r_base: '3.5' -spdlog: '1.12' -target_platform: osx-64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -zlib: '1.2' diff --git a/tools/micromamba-osx-64/info/recipe/libsolv/CONTROL b/tools/micromamba-osx-64/info/recipe/libsolv/CONTROL deleted file mode 100644 index 35801a3..0000000 --- a/tools/micromamba-osx-64/info/recipe/libsolv/CONTROL +++ /dev/null @@ -1,9 +0,0 @@ -Source: libsolv -Version: 0.7.23 -Description: Library for solving packages and reading repositories -Homepage: https://github.com/openSUSE/libsolv -Default-Features: conda -Supports: !uwp - -Feature: conda -Description: Conda support diff --git a/tools/micromamba-osx-64/info/recipe/libsolv/conda_variant_priorization.patch b/tools/micromamba-osx-64/info/recipe/libsolv/conda_variant_priorization.patch deleted file mode 100644 index cd1edd6..0000000 --- a/tools/micromamba-osx-64/info/recipe/libsolv/conda_variant_priorization.patch +++ /dev/null @@ -1,438 +0,0 @@ -diff --git a/src/conda.c b/src/conda.c -index 21ad6bfb..408a236a 100644 ---- a/src/conda.c -+++ b/src/conda.c -@@ -134,7 +134,7 @@ solv_vercmp_conda(const char *s1, const char *q1, const char *s2, const char *q2 - return -1; - if (s1p - s1 > s2p - s2) - return 1; -- r = s1p - s1 ? strncmp(s1, s2, s1p - s1) : 0; -+ r = (s1p - s1) ? strncmp(s1, s2, s1p - s1) : 0; - if (r) - return r; - } -diff --git a/src/policy.c b/src/policy.c -index c02d2373..d6354cd2 100644 ---- a/src/policy.c -+++ b/src/policy.c -@@ -833,6 +833,79 @@ move_installed_to_front(Pool *pool, Queue *plist) - } - } - -+/* -+ * prune_to_best_version -+ * -+ * sort list of packages (given through plist) by name and evr -+ * return result through plist -+ */ -+void -+prune_to_best_version(Pool *pool, Queue *plist) -+{ -+#ifdef ENABLE_CONDA -+ if (pool->disttype == DISTTYPE_CONDA) -+ return prune_to_best_version_conda(pool, plist); -+#endif -+ -+ int i, j, r; -+ Solvable *s, *best; -+ -+ if (plist->count < 2) /* no need to prune for a single entry */ -+ return; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ -+ /* sort by name first, prefer installed */ -+ solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -+ -+ /* now find best 'per name' */ -+ best = 0; -+ for (i = j = 0; i < plist->count; i++) -+ { -+ s = pool->solvables + plist->elements[i]; -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ -+ if (!best) /* if no best yet, the current is best */ -+ { -+ best = s; -+ continue; -+ } -+ -+ /* name switch: finish group, re-init */ -+ if (best->name != s->name) /* new name */ -+ { -+ plist->elements[j++] = best - pool->solvables; /* move old best to front */ -+ best = s; /* take current as new best */ -+ continue; -+ } -+ -+ r = 0; -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+#ifdef ENABLE_LINKED_PKGS -+ if (r == 0 && has_package_link(pool, s)) -+ r = pool_link_evrcmp(pool, best, s); -+#endif -+ if (r < 0) -+ best = s; -+ } -+ -+ plist->elements[j++] = best - pool->solvables; /* finish last group */ -+ plist->count = j; -+ -+ /* we reduced the list to one package per name, now look at -+ * package obsoletes */ -+ if (plist->count > 1) -+ { -+ if (plist->count == 2) -+ prune_obsoleted_2(pool, plist); -+ else -+ prune_obsoleted(pool, plist); -+ } -+} -+ - #ifdef ENABLE_CONDA - static int - pool_featurecountcmp(Pool *pool, Solvable *s1, Solvable *s2) -@@ -863,23 +936,221 @@ pool_buildflavorcmp(Pool *pool, Solvable *s1, Solvable *s2) - return 0; - return pool_evrcmp_str(pool, f1 ? f1 : "" , f2 ? f2 : "", EVRCMP_COMPARE); - } --#endif -+ -+void intersect_selection(Pool* pool, Id dep, Queue* prev) -+{ -+ Queue tmp; -+ int i = 0, j = 0, isectidx = 0; -+ -+ queue_init(&tmp); -+ -+ Id* pp, p; -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&tmp, p); -+ -+ // set intersection, assuming sorted arrays -+ while (i < prev->count && j < tmp.count) -+ if (prev->elements[i] < tmp.elements[j]) -+ i++; -+ else if (tmp.elements[j] < prev->elements[i]) -+ j++; -+ else -+ { -+ if (isectidx != i) -+ prev->elements[isectidx] = prev->elements[i]; -+ i++, j++, isectidx++; -+ } -+ -+ prev->count = isectidx; -+ queue_free(&tmp); -+} -+ -+int check_deps_unequal(Pool* pool, Queue* q1, Queue* q2, Id name) -+{ -+ Id dep; -+ int i, j; -+ int found = 0; -+ for (i = 0; i < q1->count; ++i) -+ { -+ dep = q1->elements[i]; -+ if (ISRELDEP(dep) && GETRELDEP(pool, dep)->name == name) -+ { -+ for (j = 0; j < q2->count; ++j) -+ { -+ if (q2->elements[j] == dep) -+ { -+ found = 1; -+ break; -+ } -+ } -+ if (!found) -+ return 1; -+ -+ found = 0; -+ } -+ } -+ return 0; -+} -+ -+Id best_matching(Pool* pool, Queue* q, Id name, int* all_have_trackfeatures) -+{ -+ int first = 1; -+ Id dep, p, *pp; -+ -+ Queue selection; -+ queue_init(&selection); -+ -+ for (int i = 0; i < q->count; ++i) -+ { -+ dep = q->elements[i]; -+ if (!ISRELDEP(dep) || GETRELDEP(pool, dep)->name != name) continue; -+ -+ if (first) -+ { -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&selection, p); -+ first = 0; -+ } -+ else -+ intersect_selection(pool, dep, &selection); -+ } -+ -+ if (selection.count == 0) -+ return 0; -+ -+ Solvable *stmp, *best = pool_id2solvable(pool, selection.elements[0]); -+ int cmp; -+ -+ *all_have_trackfeatures = 1; -+ for (int i = 0; i < selection.count; ++i) -+ if (solvable_lookup_count(pool_id2solvable(pool, selection.elements[i]), -+ SOLVABLE_TRACK_FEATURES) == 0) -+ { -+ *all_have_trackfeatures = 0; -+ break; -+ } -+ -+ for (int i = 0; i < selection.count; ++i) -+ { -+ stmp = pool_id2solvable(pool, selection.elements[i]); -+ cmp = pool_evrcmp(pool, best->evr, stmp->evr, 0); -+ if (cmp < 0) best = stmp; -+ } -+ -+ return best->evr; -+} -+ -+int conda_compare_dependencies(Pool *pool, Solvable *s1, Solvable *s2) -+{ -+ int i, j, has_seen; -+ Queue q1, q2, seen; -+ -+ queue_init(&q1); -+ queue_init(&q2); -+ queue_init(&seen); -+ -+ solvable_lookup_deparray(s1, SOLVABLE_REQUIRES, &q1, -1); -+ solvable_lookup_deparray(s2, SOLVABLE_REQUIRES, &q2, -1); -+ -+ int comparison_result = 0; -+ -+ for (i = 0; i < q1.count; ++i) -+ { -+ Id x1 = q1.elements[i]; -+ has_seen = 0; -+ -+ if (!ISRELDEP(x1)) -+ continue; -+ -+ Reldep* rd1 = GETRELDEP(pool, x1); -+ for (j = 0; j < seen.count && has_seen == 0; ++j) -+ if (seen.elements[j] == rd1->name) -+ has_seen = 1; -+ -+ if (has_seen) -+ continue; -+ -+ // first make sure that deps are different between a & b -+ int deps_unequal = check_deps_unequal(pool, &q1, &q2, rd1->name); -+ if (!deps_unequal) -+ { -+ queue_push(&seen, rd1->name); -+ continue; -+ } -+ -+ int aht_1, aht_2; // all have track features check -+ Id b1 = best_matching(pool, &q1, rd1->name, &aht_1); -+ Id b2 = best_matching(pool, &q2, rd1->name, &aht_2); -+ -+ // one of both or both is not solvable... -+ // ignoring this case for now -+ if (b1 == 0 || b2 == 0) -+ continue; -+ -+ // if one has deps with track features, and the other does not, -+ // downweight the one with track features -+ if (aht_1 != aht_2) -+ comparison_result += (aht_1 - aht_2) * 100; -+ -+ comparison_result += pool_evrcmp(pool, b2, b1, 0); -+ } -+ -+ queue_free(&q1); -+ queue_free(&q2); -+ queue_free(&seen); -+ -+ return comparison_result; -+} -+ -+static int -+sort_by_best_dependencies(const void *ap, const void *bp, void *dp) -+{ -+ Pool* pool = (Pool*) dp; -+ -+ Id a = *(Id *)ap; -+ Id b = *(Id *)bp; -+ Solvable *sa, *sb; -+ -+ sa = pool->solvables + a; -+ sb = pool->solvables + b; -+ -+ int res = conda_compare_dependencies(pool, sa, sb); -+ if (res == 0) -+ { -+ // no differences, select later build -+ Repodata* ra = repo_last_repodata(sa->repo); -+ Repodata* rb = repo_last_repodata(sb->repo); -+ -+ unsigned long long bta = repodata_lookup_num(ra, a, SOLVABLE_BUILDTIME, 0ull); -+ unsigned long long btb = repodata_lookup_num(rb, b, SOLVABLE_BUILDTIME, 0ull); -+ -+ res = (btb > bta) ? 1 : -1; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Fallback to timestamp comparison: %llu vs %llu: [%d]\n", bta, btb, res); -+ } -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Selecting variant [%c] of (a) %s vs (b) %s (score: %d)\n", -+ (res < 0 ? 'a' : 'b'), pool_solvable2str(pool, sa), pool_solvable2str(pool, sb), res); -+ -+ return res; -+} - - /* -- * prune_to_best_version -+ * prune_to_best_version_conda - * - * sort list of packages (given through plist) by name and evr - * return result through plist - */ - void --prune_to_best_version(Pool *pool, Queue *plist) -+prune_to_best_version_conda(Pool *pool, Queue *plist) - { - int i, j, r; - Solvable *s, *best; - -- if (plist->count < 2) /* no need to prune for a single entry */ -+ if (plist->count < 2) /* no need to prune for a single entry */ - return; -- POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version_conda %d\n", plist->count); - - /* sort by name first, prefer installed */ - solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -@@ -891,10 +1162,10 @@ prune_to_best_version(Pool *pool, Queue *plist) - s = pool->solvables + plist->elements[i]; - - POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -- pool_solvable2str(pool, s), plist->elements[i], -- (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); - -- if (!best) /* if no best yet, the current is best */ -+ if (!best) /* if no best yet, the current is best */ - { - best = s; - continue; -@@ -904,49 +1175,54 @@ prune_to_best_version(Pool *pool, Queue *plist) - if (best->name != s->name) /* new name */ - { - plist->elements[j++] = best - pool->solvables; /* move old best to front */ -- best = s; /* take current as new best */ -+ best = s; /* take current as new best */ - continue; - } - - r = 0; --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- r = pool_featurecountcmp(pool, best, s); --#endif -+ r = pool_featurecountcmp(pool, best, s); - if (r == 0) - r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; --#ifdef ENABLE_LINKED_PKGS -- if (r == 0 && has_package_link(pool, s)) -- r = pool_link_evrcmp(pool, best, s); --#endif --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- { -- if (r == 0) -- r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -- if (r == 0) -- r = pool_buildversioncmp(pool, best, s); -- if (r == 0) -- r = pool_buildflavorcmp(pool, best, s); -- } --#endif -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ // this can be removed as this comparison doesn't effect anything -+ if (r == 0) -+ r = pool_buildflavorcmp(pool, best, s); - if (r < 0) -- best = s; -+ best = s; - } -- plist->elements[j++] = best - pool->solvables; /* finish last group */ -- plist->count = j; - -- /* we reduced the list to one package per name, now look at -- * package obsoletes */ -- if (plist->count > 1) -+ Queue q; -+ queue_init(&q); -+ for (i = 0; i < plist->count; i++) - { -- if (plist->count == 2) -- prune_obsoleted_2(pool, plist); -- else -- prune_obsoleted(pool, plist); -+ s = pool->solvables + plist->elements[i]; -+ r = pool_featurecountcmp(pool, best, s); -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ if (r == 0) -+ queue_push(&q, s - pool->solvables); - } --} - -+ if (q.count > 1) -+ { -+ // order by first-level deps -+ solv_sort(q.elements, q.count, sizeof(Id), sort_by_best_dependencies, pool); -+ } -+ -+ for (i = 0; i < q.count; ++i) -+ plist->elements[i] = q.elements[i]; -+ plist->count = q.count; -+ -+ queue_free(&q); -+} -+#endif // ENABLE_CONDA - - static int - sort_by_name_evr_sortcmp(const void *ap, const void *bp, void *dp) -diff --git a/src/policy.h b/src/policy.h -index 3ae1005a..a79483a4 100644 ---- a/src/policy.h -+++ b/src/policy.h -@@ -45,6 +45,9 @@ extern void pool_best_solvables(Pool *pool, Queue *plist, int flags); - extern void prune_to_best_version(Pool *pool, Queue *plist); - extern void policy_prefer_favored(Solver *solv, Queue *plist); - -+#ifdef ENABLE_CONDA -+extern void prune_to_best_version_conda(Pool *pool, Queue *plist); -+#endif - - #ifdef __cplusplus - } diff --git a/tools/micromamba-osx-64/info/recipe/libsolv/portfile.cmake b/tools/micromamba-osx-64/info/recipe/libsolv/portfile.cmake deleted file mode 100644 index 7fdac1c..0000000 --- a/tools/micromamba-osx-64/info/recipe/libsolv/portfile.cmake +++ /dev/null @@ -1,55 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO openSUSE/libsolv - REF 0.7.24 - SHA512 a0975d3f80ae8c364d5b32df4c26bc7eb5abb3be81259595848f1f5f74b00e708af3153074041d49383547718e68cee2e82cf4bdeab6221dfdcc605812689d37 - HEAD_REF master - PATCHES - win_export_and_static_build.patch - conda_variant_priorization.patch -) - -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBS) -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBS) - -if (NOT BUILD_DYNAMIC_LIBS) - set(DISABLE_SHARED ON) -else() - set(DISABLE_SHARED OFF) -endif() - -vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - conda ENABLE_CONDA -) - -if(WIN32) - list(APPEND FEATURE_OPTIONS "-DWITHOUT_COOKIEOPEN=ON") -endif() - -vcpkg_configure_cmake( - SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA - OPTIONS - ${FEATURE_OPTIONS} - -DDISABLE_SHARED=${DISABLE_SHARED} - -DENABLE_STATIC=${BUILD_STATIC_LIBS} - -DMULTI_SEMANTICS=ON - -DBUILD_EXAMPLE_PROGRAMS=OFF - .. -) - - -vcpkg_install_cmake() -# vcpkg_fixup_cmake_targets() -# vcpkg_copy_pdbs() - -if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -file(INSTALL ${SOURCE_PATH}/LICENSE.BSD DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsolv RENAME copyright) - -vcpkg_test_cmake(PACKAGE_NAME libsolv) diff --git a/tools/micromamba-osx-64/info/recipe/libsolv/win_export_and_static_build.patch b/tools/micromamba-osx-64/info/recipe/libsolv/win_export_and_static_build.patch deleted file mode 100644 index 796077e..0000000 --- a/tools/micromamba-osx-64/info/recipe/libsolv/win_export_and_static_build.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/repo_write.c b/src/repo_write.c -index a73eebff..9e0622e3 100644 ---- a/src/repo_write.c -+++ b/src/repo_write.c -@@ -188,7 +188,7 @@ write_compressed_blob(Repodata *data, void *blob, int len) - write_u8(data, clen); - write_blob(data, cpage, clen); - } -- blob += chunk; -+ blob = (char*) blob + chunk; - len -= chunk; - } - } diff --git a/tools/micromamba-osx-64/info/recipe/meta.yaml b/tools/micromamba-osx-64/info/recipe/meta.yaml deleted file mode 100644 index 177911d..0000000 --- a/tools/micromamba-osx-64/info/recipe/meta.yaml +++ /dev/null @@ -1,152 +0,0 @@ -# This file created by conda-build 3.25.0 -# meta.yaml template originally from: -# /Users/runner/work/1/s/recipe, last modified Fri Aug 25 08:19:21 2023 -# ------------------------------------------------ - -package: - name: micromamba - version: 1.5.0 -source: - - folder: mamba - sha256: 0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17 - url: https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-1.5.0.tar.gz -build: - ignore_run_exports_from: - - fmt - - libarchive-minimal-static - - libcurl - - openssl - - reproc-cpp - - spdlog - number: '1' - string: '1' -requirements: - build: - - bzip2 1.0.8 h0d85af4_4 - - c-ares 1.19.1 h0dc2134_0 - - ca-certificates 2023.7.22 h8857fd0_0 - - cctools_osx-64 973.0.1 habff3f6_14 - - clang 15.0.7 h694c41f_3 - - clang-15 15.0.7 default_hdb78580_3 - - clang_osx-64 15.0.7 h03d6864_3 - - clangxx 15.0.7 default_hdb78580_3 - - clangxx_osx-64 15.0.7 h2133e9c_3 - - cmake 3.26.4 hf40c264_0 - - compiler-rt 15.0.7 he1888fc_1 - - compiler-rt_osx-64 15.0.7 he1888fc_1 - - expat 2.5.0 hf0c8a7f_1 - - icu 72.1 h7336db1_0 - - krb5 1.21.2 hb884880_0 - - ld64_osx-64 609 h0fd476b_14 - - libclang-cpp15 15.0.7 default_hdb78580_3 - - libcurl 8.2.1 h5f667d7_0 - - libcxx 16.0.6 hd57cbcb_0 - - libedit 3.1.20191231 h0678c8f_2 - - libev 4.33 haf1e3a3_1 - - libexpat 2.5.0 hf0c8a7f_1 - - libiconv 1.17 hac89ed1_0 - - libllvm15 15.0.7 he4b1e75_3 - - libnghttp2 1.52.0 he2ab024_0 - - libssh2 1.11.0 hd019ec5_0 - - libuv 1.44.2 h0dc2134_1 - - libxml2 2.11.5 hd95e348_0 - - libzlib 1.2.13 h8a1eda9_5 - - llvm-tools 15.0.7 he4b1e75_3 - - ncurses 6.4 hf0c8a7f_0 - - ninja 1.11.1 hb8565cd_0 - - openssl 3.1.2 h8a1eda9_0 - - rhash 1.4.3 h0dc2134_1 - - sigtool 0.1.3 h88f4db0_0 - - tapi 1100.0.11 h9ce4665_0 - - xz 5.2.6 h775f41a_0 - - zlib 1.2.13 h8a1eda9_5 - - zstd 1.5.2 h829000d_7 - host: - - bzip2 1.0.8 h0d85af4_4 - - c-ares 1.19.1 h0dc2134_0 - - c-ares-static 1.19.1 h0dc2134_0 - - ca-certificates 2023.7.22 h8857fd0_0 - - cli11 2.3.2 hf0c8a7f_0 - - cpp-expected 1.1.0 hb8565cd_0 - - fmt 10.1.0 h1c7c39f_0 - - krb5 1.20.1 h049b76e_0 - - krb5-static 1.20.1 h049b76e_0 - - libarchive-minimal-static 3.6.2 h1b57e4a_1 - - libcurl 7.88.1 h6df9250_1 - - libcurl-static 7.88.1 h6df9250_1 - - libcxx 16.0.6 hd57cbcb_0 - - libedit 3.1.20191231 h0678c8f_2 - - libev 4.33 haf1e3a3_1 - - libev-static 4.33 haf1e3a3_1 - - libiconv 1.17 hac89ed1_0 - - libnghttp2 1.52.0 he2ab024_0 - - libnghttp2-static 1.52.0 h0108ac9_0 - - libopenssl-static 3.1.2 h8a1eda9_0 - - libsolv 0.7.24 h7d26f99_3 - - libsolv-static 0.7.24 h7d26f99_3 - - libssh2 1.11.0 hd019ec5_0 - - libssh2-static 1.11.0 hd019ec5_0 - - libzlib 1.2.13 h8a1eda9_5 - - lz4-c-static 1.9.4 h694c41f_0 - - ncurses 6.4 hf0c8a7f_0 - - nlohmann_json 3.11.2 hbbd2c75_0 - - openssl 3.1.2 h8a1eda9_0 - - reproc 14.2.4 hb7f2c08_0 - - reproc-cpp 14.2.4 hf0c8a7f_0 - - reproc-cpp-static 14.2.4 hf0c8a7f_0 - - reproc-static 14.2.4 hb7f2c08_0 - - spdlog 1.12.0 h10aedff_1 - - xz 5.2.6 h775f41a_0 - - xz-static 5.2.6 h775f41a_0 - - yaml-cpp 0.7.0 hf0c8a7f_2 - - yaml-cpp-static 0.7.0 hf0c8a7f_2 - - zlib 1.2.13 h8a1eda9_5 - - zstd 1.5.2 h829000d_7 - - zstd-static 1.5.2 hf5e326d_7 - run: - - libcxx >=15.0.7 - - libzlib >=1.2.13,<1.3.0a0 -test: - commands: - - test -f "${PREFIX}/bin/micromamba" - - micromamba --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" - - micromamba create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' -about: - dev_url: https://github.com/mamba-org/mamba - home: https://github.com/mamba-org/mamba - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - license_file: - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - - mamba/LICENSE - summary: Micromamba is a tiny version of mamba, the fast conda package installer. -extra: - copy_test_source_files: true - final: true - recipe-maintainers: - - AntoinePrv - - JohanMabille - - SylvainCorlay - - adriendelsalle - - mariusvniekerk - - pavelzw - - wolfv diff --git a/tools/micromamba-osx-64/info/recipe/meta.yaml.template b/tools/micromamba-osx-64/info/recipe/meta.yaml.template deleted file mode 100644 index 0c3950b..0000000 --- a/tools/micromamba-osx-64/info/recipe/meta.yaml.template +++ /dev/null @@ -1,132 +0,0 @@ -{% set version = "1.5.0" %} -{% set sha256 = "0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17" %} -{% set build_num = 1 %} - -# A strategy for testing the feedstock locally in mamba CI -{% if os.environ.get("CI", "") == "local" %} - {% set mamba_source_type = "path" %} - {% set mamba_source_val = "{}/source".format(os.environ.get("FEEDSTOCK_ROOT", "..")) %} - {% set mamba_hash_type = "" %} - {% set mamba_hash_val = "" %} -{% else %} - {% set mamba_source_type = "url" %} - {% set mamba_source_val = "https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-{}.tar.gz".format(version) %} - {% set mamba_hash_type = "sha256" %} - {% set mamba_hash_val = sha256 %} -{% endif %} - -# Used for writing generic tests -{% set bin_ext = "" %} # [unix] -{% set bin_ext = ".exe" %} # [win] - -package: - name: micromamba - version: {{ version }} - -source: - - "{{ mamba_source_type }}": "{{ mamba_source_val }}" - "{{ mamba_hash_type }}": "{{ mamba_hash_val }}" - folder: mamba - # VCPKG comes with its own (short-lived) metadata which can be already outdated in the latest release - - url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz # [win] - sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 # [win] - folder: vcpkg # [win] - -build: - number: {{ build_num }} - string: {{ build_num }} - ignore_run_exports_from: - - libcurl # [unix] - - libarchive-minimal-static # [unix] - - reproc-cpp # [unix] - - openssl # [unix] - - spdlog - - fmt - - {{ compiler('c') }} # [linux] - - {{ compiler('cxx') }} # [linux] - - python # [win] - -requirements: - build: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - cmake # [unix] - - ninja - - vcpkg-tool # [win] - - python # [win] - - curl >=7.87,<8 # [win] - - zlib # [win] - host: - - cli11 >=2.2,<3 - - cpp-expected - - nlohmann_json - - spdlog - - fmt - - yaml-cpp-static # [unix] - - libcurl >=7.88.1,<8 # [unix] - - libcurl-static >=7.88.1,<8 # [unix] - - xz-static # [unix] - - libssh2-static # [unix] - - libarchive-minimal-static # [unix] - - krb5-static # [unix] - - libsolv-static # [unix] - - openssl {{ openssl }} # [unix] - - libopenssl-static {{ openssl }} # [unix] - - zstd-static # [unix] - - zlib # [unix] - - libnghttp2-static # [unix] - - lz4-c-static # [unix] - - reproc-static # [unix] - - reproc-cpp # [unix] - - reproc-cpp-static # [unix] - - winreg # [win] - -test: - commands: - - test -f "${PREFIX}/bin/micromamba" # [unix] - - if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) # [win] - - micromamba{{ bin_ext }} --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" # [unix] - - mkdir %TEMP%\mamba # [win] - - set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" # [win] - - micromamba{{ bin_ext }} create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' # [win] - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' # [win] - -about: - home: https://github.com/mamba-org/mamba - license_file: - - mamba/LICENSE - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - summary: Micromamba is a tiny version of mamba, the fast conda package installer. - dev_url: https://github.com/mamba-org/mamba - -extra: - recipe-maintainers: - - AntoinePrv - - pavelzw - - wolfv - - SylvainCorlay - - JohanMabille - - mariusvniekerk - - adriendelsalle diff --git a/tools/micromamba-osx-64/info/recipe/recipe-scripts-license.txt b/tools/micromamba-osx-64/info/recipe/recipe-scripts-license.txt deleted file mode 100644 index 2ec51d7..0000000 --- a/tools/micromamba-osx-64/info/recipe/recipe-scripts-license.txt +++ /dev/null @@ -1,27 +0,0 @@ -BSD-3-Clause license -Copyright (c) 2015-2022, conda-forge contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. diff --git a/tools/micromamba-osx-64/info/test/run_test.sh b/tools/micromamba-osx-64/info/test/run_test.sh deleted file mode 100644 index 1a56f3a..0000000 --- a/tools/micromamba-osx-64/info/test/run_test.sh +++ /dev/null @@ -1,13 +0,0 @@ - - -set -ex - - - -test -f "${PREFIX}/bin/micromamba" -micromamba --help -export MAMBA_ROOT_PREFIX="$(mktemp -d)" -micromamba create -n test --override-channels -c conda-forge --yes python=3.9 -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os" -exit 0 diff --git a/tools/micromamba-osx-arm64/.DS_Store b/tools/micromamba-osx-arm64/.DS_Store deleted file mode 100644 index 388d44e..0000000 Binary files a/tools/micromamba-osx-arm64/.DS_Store and /dev/null differ diff --git a/tools/micromamba-osx-arm64/bin/micromamba b/tools/micromamba-osx-arm64/bin/micromamba deleted file mode 100755 index ed050a6..0000000 Binary files a/tools/micromamba-osx-arm64/bin/micromamba and /dev/null differ diff --git a/tools/micromamba-osx-arm64/info/about.json b/tools/micromamba-osx-arm64/info/about.json deleted file mode 100644 index 6dbf397..0000000 --- a/tools/micromamba-osx-arm64/info/about.json +++ /dev/null @@ -1,220 +0,0 @@ -{ - "channels": [ - "https://conda.anaconda.org/conda-forge" - ], - "conda_build_version": "3.25.0", - "conda_version": "23.3.1", - "dev_url": "https://github.com/mamba-org/mamba", - "env_vars": { - "CIO_TEST": "" - }, - "extra": { - "copy_test_source_files": true, - "final": true, - "recipe-maintainers": [ - "AntoinePrv", - "pavelzw", - "wolfv", - "SylvainCorlay", - "JohanMabille", - "mariusvniekerk", - "adriendelsalle" - ] - }, - "home": "https://github.com/mamba-org/mamba", - "identifiers": [], - "keywords": [], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "license_file": [ - "mamba/LICENSE", - "CLI11_LICENSE.txt", - "CURL_LICENSE.txt", - "C_ARES_LICENSE.txt", - "FMT_LICENSE.txt", - "KRB5_LICENSE.txt", - "LIBARCHIVE_LICENSE.txt", - "LIBEV_LICENSE.txt", - "LIBLZ4_LICENSE.txt", - "LIBNGHTTP2_LICENSE.txt", - "LIBOPENSSL_3_LICENSE.txt", - "LIBOPENSSL_LICENSE.txt", - "LIBSOLV_LICENSE.txt", - "NLOHMANN_JSON_LICENSE.txt", - "REPROC_LICENSE.txt", - "SPDLOG_LICENSE.txt", - "TL_EXPECTED_LICENSE.txt", - "ZSTD_LICENSE.txt" - ], - "root_pkgs": [ - "jsonschema-specifications 2023.7.1 pyhd8ed1ab_0", - "cctools_osx-64 973.0.1 ha1c5b94_14", - "prompt-toolkit 3.0.39 pyha770c72_0", - "xorg-libxau 1.0.11 h0dc2134_0", - "cryptography 41.0.3 py310ha1817de_0", - "gettext 0.21.1 h8a4c099_0", - "typing-extensions 4.7.1 hd8ed1ab_0", - "urllib3 1.26.15 pyhd8ed1ab_0", - "exceptiongroup 1.1.3 pyhd8ed1ab_0", - "platformdirs 3.10.0 pyhd8ed1ab_0", - "pthread-stubs 0.4 hc929b4f_1001", - "tornado 6.3.3 py310h6729b98_0", - "conda-env 2.6.0 1", - "six 1.16.0 pyh6c4a22f_0", - "libmamba 1.4.2 h9d281b0_0", - "joblib 1.3.2 pyhd8ed1ab_0", - "pygments 2.16.1 pyhd8ed1ab_0", - "colorama 0.4.6 pyhd8ed1ab_0", - "pillow 10.0.0 py310hd63a8c7_0", - "jq 1.6 hc929b4f_1000", - "importlib_resources 6.0.1 pyhd8ed1ab_0", - "icu 72.1 h7336db1_0", - "packaging 23.1 pyhd8ed1ab_0", - "yaml 0.2.5 h0d85af4_2", - "ncurses 6.4 hf0c8a7f_0", - "python 3.10.12 had23ca6_0_cpython", - "watchgod 0.8.2 pyhd8ed1ab_0", - "libxml2 2.11.5 hd95e348_0", - "anaconda-client 1.12.0 pyhd8ed1ab_1", - "chardet 5.2.0 py310h2ec42d9_0", - "click 8.1.7 unix_pyh707e725_0", - "charset-normalizer 3.2.0 pyhd8ed1ab_0", - "conda-index 0.2.3 pyhd8ed1ab_0", - "openjpeg 2.5.0 h13ac156_2", - "cffi 1.15.1 py310ha78151a_3", - "conda 23.3.1 py310h2ec42d9_0", - "readline 8.2 h9e318b2_1", - "python-libarchive-c 5.0 py310h2ec42d9_1", - "reproc 14.2.4 hb7f2c08_0", - "mdurl 0.1.0 pyhd8ed1ab_0", - "freetype 2.12.1 h3f81eb7_1", - "pcre2 10.40 h1c4e4bc_0", - "typing_extensions 4.7.1 pyha770c72_0", - "glob2 0.7 py_0", - "python-dateutil 2.8.2 pyhd8ed1ab_0", - "prompt_toolkit 3.0.39 hd8ed1ab_0", - "conda-build 3.25.0 py310h2ec42d9_0", - "libarchive 3.6.2 h0b5dc4a_1", - "libcurl 8.2.1 h5f667d7_0", - "libjpeg-turbo 2.1.5.1 hb7f2c08_0", - "lcms2 2.15 h2dcdeff_1", - "xorg-libxdmcp 1.1.3 h35c211d_0", - "pyopenssl 23.2.0 pyhd8ed1ab_1", - "libsqlite 3.42.0 h58db7d2_0", - "mamba 1.4.2 py310h6bde348_0", - "toolz 0.12.0 pyhd8ed1ab_0", - "pluggy 1.2.0 pyhd8ed1ab_0", - "libedit 3.1.20191231 h0678c8f_2", - "git 2.42.0 pl5321hbb4c4ee_0", - "sigtool 0.1.3 h88f4db0_0", - "ruamel.yaml 0.17.32 py310h6729b98_0", - "boa 0.15.1 pyhd8ed1ab_0", - "pysocks 1.7.1 pyha2e5f31_6", - "perl 5.32.1 4_h0dc2134_perl5", - "libcxx 16.0.6 hd57cbcb_0", - "soupsieve 2.3.2.post1 pyhd8ed1ab_0", - "jinja2 3.1.2 pyhd8ed1ab_1", - "requests 2.31.0 pyhd8ed1ab_0", - "lz4-c 1.9.4 hf0c8a7f_0", - "pyyaml 6.0.1 py310h6729b98_0", - "anaconda-project 0.11.1 pyhd8ed1ab_0", - "libssh2 1.11.0 hd019ec5_0", - "rpds-py 0.9.2 py310h3461e44_0", - "psutil 5.9.5 py310h90acd4f_0", - "libexpat 2.5.0 hf0c8a7f_1", - "libdeflate 1.18 hac1461d_0", - "setuptools 68.1.2 pyhd8ed1ab_0", - "wcwidth 0.2.6 pyhd8ed1ab_0", - "libnghttp2 1.52.0 he2ab024_0", - "anyio 3.7.1 pyhd8ed1ab_0", - "sniffio 1.3.0 pyhd8ed1ab_0", - "certifi 2023.7.22 pyhd8ed1ab_0", - "requests-toolbelt 1.0.0 pyhd8ed1ab_0", - "brotli-python 1.0.9 py310h7a76584_9", - "libwebp-base 1.3.1 h0dc2134_0", - "ripgrep 13.0.0 hbbacdb1_2", - "rich 13.5.1 pyhd8ed1ab_0", - "nbformat 5.9.2 pyhd8ed1ab_0", - "ld64_osx-64 609 ha20a434_14", - "fmt 9.1.0 hb8565cd_0", - "ca-certificates 2023.7.22 h8857fd0_0", - "patch 2.7.6 hbcf498f_1002", - "pip 23.2.1 pyhd8ed1ab_0", - "conda-package-handling 2.2.0 pyh38be061_0", - "pkginfo 1.9.6 pyhd8ed1ab_0", - "libffi 3.4.2 h0d85af4_5", - "python_abi 3.10 3_cp310", - "krb5 1.21.2 hb884880_0", - "traitlets 5.9.0 pyhd8ed1ab_0", - "libzlib 1.2.13 h8a1eda9_5", - "defusedxml 0.7.1 pyhd8ed1ab_0", - "conda-package-streaming 0.9.0 pyhd8ed1ab_0", - "more-itertools 10.1.0 pyhd8ed1ab_0", - "jsonpatch 1.32 pyhd8ed1ab_0", - "openssl 3.1.2 h8a1eda9_0", - "reproc-cpp 14.2.4 hf0c8a7f_0", - "referencing 0.30.2 pyhd8ed1ab_0", - "liblief 0.12.3 hf0c8a7f_0", - "boltons 23.0.0 pyhd8ed1ab_0", - "conda-pack 0.7.1 pyhd8ed1ab_0", - "tapi 1100.0.11 h9ce4665_0", - "conda-forge-ci-setup 3.32.5 py310h84be057_100", - "libpng 1.6.39 ha978bb4_0", - "markupsafe 2.1.3 py310h6729b98_0", - "xz 5.2.6 h775f41a_0", - "filelock 3.12.2 pyhd8ed1ab_0", - "python-fastjsonschema 2.18.0 pyhd8ed1ab_0", - "yaml-cpp 0.7.0 hf0c8a7f_2", - "tzdata 2023c h71feb2d_0", - "backports 1.0 pyhd8ed1ab_3", - "bzip2 1.0.8 h0d85af4_4", - "jupyter_core 5.3.1 py310h2ec42d9_0", - "pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0", - "tqdm 4.66.1 pyhd8ed1ab_0", - "py-lief 0.12.3 py310h7a76584_0", - "attrs 23.1.0 pyh71513ae_1", - "conda-forge-metadata 0.5.2 pyhd8ed1ab_0", - "tomli 2.0.1 pyhd8ed1ab_0", - "zstandard 0.19.0 py310h151724a_2", - "shyaml 0.6.2 pyhd3deb0d_0", - "libtiff 4.5.1 hf955e92_1", - "zipp 3.16.2 pyhd8ed1ab_0", - "markdown-it-py 3.0.0 pyhd8ed1ab_0", - "libxcb 1.15 hb7f2c08_0", - "pycosat 0.6.4 py310h90acd4f_1", - "clyent 1.2.2 py_1", - "brotlipy 0.7.0 py310h90acd4f_1005", - "libsolv 0.7.24 h7d26f99_1", - "oras-py 0.1.14 pyhd8ed1ab_0", - "lerc 4.0.0 hb486fe8_0", - "wheel 0.41.1 pyhd8ed1ab_0", - "backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0", - "jsonpointer 2.0 py_0", - "ld64 609 ha02d983_14", - "conda-oci-mirror 0.1.0 pyhd8ed1ab_0", - "ruamel_yaml 0.15.80 py310h90acd4f_1008", - "libmambapy 1.4.2 py310hb15139c_0", - "curl 8.2.1 h5f667d7_0", - "zstd 1.5.2 h829000d_7", - "oniguruma 6.9.8 hac89ed1_0", - "beautifulsoup4 4.12.2 pyha770c72_0", - "c-ares 1.19.1 h0dc2134_0", - "libiconv 1.17 hac89ed1_0", - "jsonschema 4.19.0 pyhd8ed1ab_1", - "dataclasses 0.8 pyhc8e2a94_3", - "lzo 2.10 haf1e3a3_1000", - "cctools 973.0.1 h40f6528_14", - "pybind11-abi 4 hd8ed1ab_3", - "ruamel.yaml.clib 0.2.7 py310h90acd4f_1", - "json5 0.9.14 pyhd8ed1ab_0", - "pytz 2023.3 pyhd8ed1ab_0", - "libllvm16 16.0.6 he4b1e75_2", - "pycparser 2.21 pyhd8ed1ab_0", - "conda-libmamba-solver 23.3.0 pyhd8ed1ab_0", - "tk 8.6.12 h5dbffcc_0", - "libev 4.33 haf1e3a3_1", - "idna 3.4 pyhd8ed1ab_0" - ], - "summary": "Micromamba is a tiny version of mamba, the fast conda package installer.", - "tags": [] -} \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/files b/tools/micromamba-osx-arm64/info/files deleted file mode 100644 index 6c1e7bf..0000000 --- a/tools/micromamba-osx-arm64/info/files +++ /dev/null @@ -1 +0,0 @@ -bin/micromamba diff --git a/tools/micromamba-osx-arm64/info/git b/tools/micromamba-osx-arm64/info/git deleted file mode 100644 index e69de29..0000000 diff --git a/tools/micromamba-osx-arm64/info/has_prefix b/tools/micromamba-osx-arm64/info/has_prefix deleted file mode 100644 index 5e75ae8..0000000 --- a/tools/micromamba-osx-arm64/info/has_prefix +++ /dev/null @@ -1 +0,0 @@ -/Users/runner/miniforge3/conda-bld/micromamba_1692951698928/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol binary bin/micromamba diff --git a/tools/micromamba-osx-arm64/info/hash_input.json b/tools/micromamba-osx-arm64/info/hash_input.json deleted file mode 100644 index 5493674..0000000 --- a/tools/micromamba-osx-arm64/info/hash_input.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "libcurl": "8", - "zlib": "1.2", - "target_platform": "osx-arm64", - "cxx_compiler_version": "15", - "CONDA_BUILD_SYSROOT": "/Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk", - "c_compiler": "clang", - "spdlog": "1.12", - "c_compiler_version": "15", - "channel_targets": "conda-forge main", - "CI": "azure", - "cxx_compiler": "clangxx", - "fmt": "10", - "openssl": "3" -} \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/index.json b/tools/micromamba-osx-arm64/info/index.json deleted file mode 100644 index d7da4e7..0000000 --- a/tools/micromamba-osx-arm64/info/index.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "arch": "arm64", - "build": "1", - "build_number": 1, - "depends": [ - "libcxx >=15.0.7", - "libzlib >=1.2.13,<1.3.0a0" - ], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "name": "micromamba", - "platform": "osx", - "subdir": "osx-arm64", - "timestamp": 1692953023062, - "version": "1.5.0" -} \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/CLI11_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/CURL_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/C_ARES_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-osx-arm64/info/licenses/FMT_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/KRB5_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/LIBARCHIVE_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/LIBEV_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-osx-arm64/info/licenses/LIBLZ4_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-arm64/info/licenses/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-osx-arm64/info/licenses/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/LIBOPENSSL_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-osx-arm64/info/licenses/LIBSOLV_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-arm64/info/licenses/REPROC_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-arm64/info/licenses/SPDLOG_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-osx-arm64/info/licenses/TL_EXPECTED_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/licenses/ZSTD_LICENSE.txt b/tools/micromamba-osx-arm64/info/licenses/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-arm64/info/licenses/mamba/LICENSE b/tools/micromamba-osx-arm64/info/licenses/mamba/LICENSE deleted file mode 100644 index 8ae98f9..0000000 --- a/tools/micromamba-osx-arm64/info/licenses/mamba/LICENSE +++ /dev/null @@ -1,11 +0,0 @@ -Copyright 2019 QuantStack and the Mamba contributors. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-arm64/info/paths.json b/tools/micromamba-osx-arm64/info/paths.json deleted file mode 100644 index 8808ba0..0000000 --- a/tools/micromamba-osx-arm64/info/paths.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "paths": [ - { - "_path": "bin/micromamba", - "file_mode": "binary", - "path_type": "hardlink", - "prefix_placeholder": "/Users/runner/miniforge3/conda-bld/micromamba_1692951698928/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehol", - "sha256": "f77c2f8fffb81128d2278c0a2387063e50dd9865a54199bd97cced120de967e3", - "size_in_bytes": 12692656 - } - ], - "paths_version": 1 -} \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/CLI11_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/CLI11_LICENSE.txt deleted file mode 100644 index b2e9e76..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/CPP_FILESYSTEM_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/CPP_FILESYSTEM_LICENSE.txt deleted file mode 100644 index 8b24faa..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/CPP_FILESYSTEM_LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018, Steffen Schümann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-arm64/info/recipe/CURL_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/CURL_LICENSE.txt deleted file mode 100644 index 033aad0..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/C_ARES_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/C_ARES_LICENSE.txt deleted file mode 100644 index ad6bb52..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-osx-arm64/info/recipe/FMT_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/FMT_LICENSE.txt deleted file mode 100644 index 8f92168..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/KRB5_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/KRB5_LICENSE.txt deleted file mode 100644 index 412bffc..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/LIBARCHIVE_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index 194d4e1..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/LIBEV_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/LIBEV_LICENSE.txt deleted file mode 100644 index 2fdabd4..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-osx-arm64/info/recipe/LIBLZ4_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/LIBLZ4_LICENSE.txt deleted file mode 100644 index 74c2cdd..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-arm64/info/recipe/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index 8020179..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-osx-arm64/info/recipe/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index b8cc044..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/LIBOPENSSL_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9601ab4..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-osx-arm64/info/recipe/LIBSOLV_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/LIBSOLV_LICENSE.txt deleted file mode 100644 index 228a942..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index ffef714..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-arm64/info/recipe/REPROC_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/REPROC_LICENSE.txt deleted file mode 100644 index 80ebfac..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-osx-arm64/info/recipe/SPDLOG_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/SPDLOG_LICENSE.txt deleted file mode 100644 index d4eb308..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-osx-arm64/info/recipe/TERMCOLOR_CPP_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/TERMCOLOR_CPP_LICENSE.txt deleted file mode 100644 index 679df41..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/TERMCOLOR_CPP_LICENSE.txt +++ /dev/null @@ -1,31 +0,0 @@ -Copyright (c) 2013, Ihor Kalnytskyi. -All rights reserved. - -Redistribution and use in source and binary forms of the software as well -as documentation, with or without modification, are permitted provided -that the following conditions are met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -* The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/TL_EXPECTED_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index 1625c17..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-osx-arm64/info/recipe/ZSTD_LICENSE.txt b/tools/micromamba-osx-arm64/info/recipe/ZSTD_LICENSE.txt deleted file mode 100644 index a793a80..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-osx-arm64/info/recipe/bld.bat b/tools/micromamba-osx-arm64/info/recipe/bld.bat deleted file mode 100644 index 6a91569..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/bld.bat +++ /dev/null @@ -1,41 +0,0 @@ -SET VCPKG_ROOT=%CD%\vcpkg - -SET VCPKG_BUILD_TYPE=release -vcpkg install --overlay-ports=%RECIPE_DIR%\libsolv libsolv[conda] --triplet x64-windows-static - -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install "libarchive[bzip2,lz4,lzma,lzo,openssl,zstd]" --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install curl --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install yaml-cpp --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install reproc --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% - -SET "CXXFLAGS=%CXXFLAGS% /showIncludes" -SET CMAKE_PREFIX_PATH=%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH% - -cmake -S mamba ^ - -B build ^ - -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ - -D CMAKE_PREFIX_PATH="%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%" ^ - -D CMAKE_BUILD_TYPE="Release" ^ - -D BUILD_LIBMAMBA=ON ^ - -D BUILD_STATIC=ON ^ - -D BUILD_MICROMAMBA=ON ^ - -G "Ninja" -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --build build --parallel %CPU_COUNT% -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --install build -if %errorlevel% NEQ 0 exit /b %errorlevel% - -DEL /Q /F /S "%LIBRARY_PREFIX%\lib\libmamba*" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\include\mamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\lib\cmake\libmamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% diff --git a/tools/micromamba-osx-arm64/info/recipe/build.sh b/tools/micromamba-osx-arm64/info/recipe/build.sh deleted file mode 100644 index 15cc563..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/build.sh +++ /dev/null @@ -1,35 +0,0 @@ -set -euxo pipefail - -# Conda's binary relocation can result in string changing which can result in errors like -# > warning: command substitution: ignored null byte in input -# https://github.com/mamba-org/mamba/issues/1517 -export CXXFLAGS="${CXXFLAGS} -fno-merge-constants" -export CFLAGS="${CFLAGS} -fno-merge-constants" -export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY=1" - -cmake -S mamba/ \ - -B build/ \ - -G Ninja \ - ${CMAKE_ARGS} \ - -D CMAKE_INSTALL_PREFIX=${PREFIX} \ - -D CMAKE_BUILD_TYPE="Release" \ - -D BUILD_LIBMAMBA=ON \ - -D BUILD_STATIC=ON \ - -D BUILD_MICROMAMBA=ON -cmake --build build/ --parallel ${CPU_COUNT} -cmake --install build/ - -# remove everything related to `libmamba` -rm -rf "${PREFIX}/lib/libmamba"* -rm -rf "${PREFIX}/include/mamba" -rm -rf "${PREFIX}/lib/cmake/libmamba" - -"${STRIP:-strip}" "${PREFIX}/bin/micromamba" - -if [[ "$target_platform" == "osx-"* ]]; then - OTOOL_OUTPUT=$("${OTOOL:-otool}" -L "${PREFIX}/bin/micromamba") - if [[ "$OTOOL_OUTPUT" == *libc++.1.dylib* ]]; then - echo "micromamba is linked to libc++.1.dlyb" - exit 1 - fi -fi diff --git a/tools/micromamba-osx-arm64/info/recipe/conda_build_config.yaml b/tools/micromamba-osx-arm64/info/recipe/conda_build_config.yaml deleted file mode 100644 index 3b3505b..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/conda_build_config.yaml +++ /dev/null @@ -1,44 +0,0 @@ -CI: azure -CONDA_BUILD_SYSROOT: /Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk -MACOSX_DEPLOYMENT_TARGET: '11.0' -MACOSX_SDK_VERSION: '11.0' -build_platform: osx-64 -c_compiler: clang -c_compiler_version: '15' -channel_sources: conda-forge -channel_targets: conda-forge main -cpu_optimization_target: nocona -cran_mirror: https://cran.r-project.org -cxx_compiler: clangxx -cxx_compiler_version: '15' -extend_keys: -- ignore_build_only_deps -- ignore_version -- extend_keys -- pin_run_as_build -fmt: '10' -fortran_compiler: gfortran -ignore_build_only_deps: -- python -- numpy -libcurl: '8' -lua: '5' -macos_machine: arm64-apple-darwin20.0.0 -numpy: '1.22' -openssl: '3' -perl: 5.26.2 -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x - r-base: - min_pin: x.x - max_pin: x.x -python: '3.10' -r_base: '3.5' -spdlog: '1.12' -target_platform: osx-arm64 -zip_keys: -- - c_compiler_version - - cxx_compiler_version -zlib: '1.2' diff --git a/tools/micromamba-osx-arm64/info/recipe/libsolv/CONTROL b/tools/micromamba-osx-arm64/info/recipe/libsolv/CONTROL deleted file mode 100644 index 35801a3..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/libsolv/CONTROL +++ /dev/null @@ -1,9 +0,0 @@ -Source: libsolv -Version: 0.7.23 -Description: Library for solving packages and reading repositories -Homepage: https://github.com/openSUSE/libsolv -Default-Features: conda -Supports: !uwp - -Feature: conda -Description: Conda support diff --git a/tools/micromamba-osx-arm64/info/recipe/libsolv/conda_variant_priorization.patch b/tools/micromamba-osx-arm64/info/recipe/libsolv/conda_variant_priorization.patch deleted file mode 100644 index cd1edd6..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/libsolv/conda_variant_priorization.patch +++ /dev/null @@ -1,438 +0,0 @@ -diff --git a/src/conda.c b/src/conda.c -index 21ad6bfb..408a236a 100644 ---- a/src/conda.c -+++ b/src/conda.c -@@ -134,7 +134,7 @@ solv_vercmp_conda(const char *s1, const char *q1, const char *s2, const char *q2 - return -1; - if (s1p - s1 > s2p - s2) - return 1; -- r = s1p - s1 ? strncmp(s1, s2, s1p - s1) : 0; -+ r = (s1p - s1) ? strncmp(s1, s2, s1p - s1) : 0; - if (r) - return r; - } -diff --git a/src/policy.c b/src/policy.c -index c02d2373..d6354cd2 100644 ---- a/src/policy.c -+++ b/src/policy.c -@@ -833,6 +833,79 @@ move_installed_to_front(Pool *pool, Queue *plist) - } - } - -+/* -+ * prune_to_best_version -+ * -+ * sort list of packages (given through plist) by name and evr -+ * return result through plist -+ */ -+void -+prune_to_best_version(Pool *pool, Queue *plist) -+{ -+#ifdef ENABLE_CONDA -+ if (pool->disttype == DISTTYPE_CONDA) -+ return prune_to_best_version_conda(pool, plist); -+#endif -+ -+ int i, j, r; -+ Solvable *s, *best; -+ -+ if (plist->count < 2) /* no need to prune for a single entry */ -+ return; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ -+ /* sort by name first, prefer installed */ -+ solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -+ -+ /* now find best 'per name' */ -+ best = 0; -+ for (i = j = 0; i < plist->count; i++) -+ { -+ s = pool->solvables + plist->elements[i]; -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ -+ if (!best) /* if no best yet, the current is best */ -+ { -+ best = s; -+ continue; -+ } -+ -+ /* name switch: finish group, re-init */ -+ if (best->name != s->name) /* new name */ -+ { -+ plist->elements[j++] = best - pool->solvables; /* move old best to front */ -+ best = s; /* take current as new best */ -+ continue; -+ } -+ -+ r = 0; -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+#ifdef ENABLE_LINKED_PKGS -+ if (r == 0 && has_package_link(pool, s)) -+ r = pool_link_evrcmp(pool, best, s); -+#endif -+ if (r < 0) -+ best = s; -+ } -+ -+ plist->elements[j++] = best - pool->solvables; /* finish last group */ -+ plist->count = j; -+ -+ /* we reduced the list to one package per name, now look at -+ * package obsoletes */ -+ if (plist->count > 1) -+ { -+ if (plist->count == 2) -+ prune_obsoleted_2(pool, plist); -+ else -+ prune_obsoleted(pool, plist); -+ } -+} -+ - #ifdef ENABLE_CONDA - static int - pool_featurecountcmp(Pool *pool, Solvable *s1, Solvable *s2) -@@ -863,23 +936,221 @@ pool_buildflavorcmp(Pool *pool, Solvable *s1, Solvable *s2) - return 0; - return pool_evrcmp_str(pool, f1 ? f1 : "" , f2 ? f2 : "", EVRCMP_COMPARE); - } --#endif -+ -+void intersect_selection(Pool* pool, Id dep, Queue* prev) -+{ -+ Queue tmp; -+ int i = 0, j = 0, isectidx = 0; -+ -+ queue_init(&tmp); -+ -+ Id* pp, p; -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&tmp, p); -+ -+ // set intersection, assuming sorted arrays -+ while (i < prev->count && j < tmp.count) -+ if (prev->elements[i] < tmp.elements[j]) -+ i++; -+ else if (tmp.elements[j] < prev->elements[i]) -+ j++; -+ else -+ { -+ if (isectidx != i) -+ prev->elements[isectidx] = prev->elements[i]; -+ i++, j++, isectidx++; -+ } -+ -+ prev->count = isectidx; -+ queue_free(&tmp); -+} -+ -+int check_deps_unequal(Pool* pool, Queue* q1, Queue* q2, Id name) -+{ -+ Id dep; -+ int i, j; -+ int found = 0; -+ for (i = 0; i < q1->count; ++i) -+ { -+ dep = q1->elements[i]; -+ if (ISRELDEP(dep) && GETRELDEP(pool, dep)->name == name) -+ { -+ for (j = 0; j < q2->count; ++j) -+ { -+ if (q2->elements[j] == dep) -+ { -+ found = 1; -+ break; -+ } -+ } -+ if (!found) -+ return 1; -+ -+ found = 0; -+ } -+ } -+ return 0; -+} -+ -+Id best_matching(Pool* pool, Queue* q, Id name, int* all_have_trackfeatures) -+{ -+ int first = 1; -+ Id dep, p, *pp; -+ -+ Queue selection; -+ queue_init(&selection); -+ -+ for (int i = 0; i < q->count; ++i) -+ { -+ dep = q->elements[i]; -+ if (!ISRELDEP(dep) || GETRELDEP(pool, dep)->name != name) continue; -+ -+ if (first) -+ { -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&selection, p); -+ first = 0; -+ } -+ else -+ intersect_selection(pool, dep, &selection); -+ } -+ -+ if (selection.count == 0) -+ return 0; -+ -+ Solvable *stmp, *best = pool_id2solvable(pool, selection.elements[0]); -+ int cmp; -+ -+ *all_have_trackfeatures = 1; -+ for (int i = 0; i < selection.count; ++i) -+ if (solvable_lookup_count(pool_id2solvable(pool, selection.elements[i]), -+ SOLVABLE_TRACK_FEATURES) == 0) -+ { -+ *all_have_trackfeatures = 0; -+ break; -+ } -+ -+ for (int i = 0; i < selection.count; ++i) -+ { -+ stmp = pool_id2solvable(pool, selection.elements[i]); -+ cmp = pool_evrcmp(pool, best->evr, stmp->evr, 0); -+ if (cmp < 0) best = stmp; -+ } -+ -+ return best->evr; -+} -+ -+int conda_compare_dependencies(Pool *pool, Solvable *s1, Solvable *s2) -+{ -+ int i, j, has_seen; -+ Queue q1, q2, seen; -+ -+ queue_init(&q1); -+ queue_init(&q2); -+ queue_init(&seen); -+ -+ solvable_lookup_deparray(s1, SOLVABLE_REQUIRES, &q1, -1); -+ solvable_lookup_deparray(s2, SOLVABLE_REQUIRES, &q2, -1); -+ -+ int comparison_result = 0; -+ -+ for (i = 0; i < q1.count; ++i) -+ { -+ Id x1 = q1.elements[i]; -+ has_seen = 0; -+ -+ if (!ISRELDEP(x1)) -+ continue; -+ -+ Reldep* rd1 = GETRELDEP(pool, x1); -+ for (j = 0; j < seen.count && has_seen == 0; ++j) -+ if (seen.elements[j] == rd1->name) -+ has_seen = 1; -+ -+ if (has_seen) -+ continue; -+ -+ // first make sure that deps are different between a & b -+ int deps_unequal = check_deps_unequal(pool, &q1, &q2, rd1->name); -+ if (!deps_unequal) -+ { -+ queue_push(&seen, rd1->name); -+ continue; -+ } -+ -+ int aht_1, aht_2; // all have track features check -+ Id b1 = best_matching(pool, &q1, rd1->name, &aht_1); -+ Id b2 = best_matching(pool, &q2, rd1->name, &aht_2); -+ -+ // one of both or both is not solvable... -+ // ignoring this case for now -+ if (b1 == 0 || b2 == 0) -+ continue; -+ -+ // if one has deps with track features, and the other does not, -+ // downweight the one with track features -+ if (aht_1 != aht_2) -+ comparison_result += (aht_1 - aht_2) * 100; -+ -+ comparison_result += pool_evrcmp(pool, b2, b1, 0); -+ } -+ -+ queue_free(&q1); -+ queue_free(&q2); -+ queue_free(&seen); -+ -+ return comparison_result; -+} -+ -+static int -+sort_by_best_dependencies(const void *ap, const void *bp, void *dp) -+{ -+ Pool* pool = (Pool*) dp; -+ -+ Id a = *(Id *)ap; -+ Id b = *(Id *)bp; -+ Solvable *sa, *sb; -+ -+ sa = pool->solvables + a; -+ sb = pool->solvables + b; -+ -+ int res = conda_compare_dependencies(pool, sa, sb); -+ if (res == 0) -+ { -+ // no differences, select later build -+ Repodata* ra = repo_last_repodata(sa->repo); -+ Repodata* rb = repo_last_repodata(sb->repo); -+ -+ unsigned long long bta = repodata_lookup_num(ra, a, SOLVABLE_BUILDTIME, 0ull); -+ unsigned long long btb = repodata_lookup_num(rb, b, SOLVABLE_BUILDTIME, 0ull); -+ -+ res = (btb > bta) ? 1 : -1; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Fallback to timestamp comparison: %llu vs %llu: [%d]\n", bta, btb, res); -+ } -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Selecting variant [%c] of (a) %s vs (b) %s (score: %d)\n", -+ (res < 0 ? 'a' : 'b'), pool_solvable2str(pool, sa), pool_solvable2str(pool, sb), res); -+ -+ return res; -+} - - /* -- * prune_to_best_version -+ * prune_to_best_version_conda - * - * sort list of packages (given through plist) by name and evr - * return result through plist - */ - void --prune_to_best_version(Pool *pool, Queue *plist) -+prune_to_best_version_conda(Pool *pool, Queue *plist) - { - int i, j, r; - Solvable *s, *best; - -- if (plist->count < 2) /* no need to prune for a single entry */ -+ if (plist->count < 2) /* no need to prune for a single entry */ - return; -- POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version_conda %d\n", plist->count); - - /* sort by name first, prefer installed */ - solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -@@ -891,10 +1162,10 @@ prune_to_best_version(Pool *pool, Queue *plist) - s = pool->solvables + plist->elements[i]; - - POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -- pool_solvable2str(pool, s), plist->elements[i], -- (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); - -- if (!best) /* if no best yet, the current is best */ -+ if (!best) /* if no best yet, the current is best */ - { - best = s; - continue; -@@ -904,49 +1175,54 @@ prune_to_best_version(Pool *pool, Queue *plist) - if (best->name != s->name) /* new name */ - { - plist->elements[j++] = best - pool->solvables; /* move old best to front */ -- best = s; /* take current as new best */ -+ best = s; /* take current as new best */ - continue; - } - - r = 0; --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- r = pool_featurecountcmp(pool, best, s); --#endif -+ r = pool_featurecountcmp(pool, best, s); - if (r == 0) - r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; --#ifdef ENABLE_LINKED_PKGS -- if (r == 0 && has_package_link(pool, s)) -- r = pool_link_evrcmp(pool, best, s); --#endif --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- { -- if (r == 0) -- r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -- if (r == 0) -- r = pool_buildversioncmp(pool, best, s); -- if (r == 0) -- r = pool_buildflavorcmp(pool, best, s); -- } --#endif -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ // this can be removed as this comparison doesn't effect anything -+ if (r == 0) -+ r = pool_buildflavorcmp(pool, best, s); - if (r < 0) -- best = s; -+ best = s; - } -- plist->elements[j++] = best - pool->solvables; /* finish last group */ -- plist->count = j; - -- /* we reduced the list to one package per name, now look at -- * package obsoletes */ -- if (plist->count > 1) -+ Queue q; -+ queue_init(&q); -+ for (i = 0; i < plist->count; i++) - { -- if (plist->count == 2) -- prune_obsoleted_2(pool, plist); -- else -- prune_obsoleted(pool, plist); -+ s = pool->solvables + plist->elements[i]; -+ r = pool_featurecountcmp(pool, best, s); -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ if (r == 0) -+ queue_push(&q, s - pool->solvables); - } --} - -+ if (q.count > 1) -+ { -+ // order by first-level deps -+ solv_sort(q.elements, q.count, sizeof(Id), sort_by_best_dependencies, pool); -+ } -+ -+ for (i = 0; i < q.count; ++i) -+ plist->elements[i] = q.elements[i]; -+ plist->count = q.count; -+ -+ queue_free(&q); -+} -+#endif // ENABLE_CONDA - - static int - sort_by_name_evr_sortcmp(const void *ap, const void *bp, void *dp) -diff --git a/src/policy.h b/src/policy.h -index 3ae1005a..a79483a4 100644 ---- a/src/policy.h -+++ b/src/policy.h -@@ -45,6 +45,9 @@ extern void pool_best_solvables(Pool *pool, Queue *plist, int flags); - extern void prune_to_best_version(Pool *pool, Queue *plist); - extern void policy_prefer_favored(Solver *solv, Queue *plist); - -+#ifdef ENABLE_CONDA -+extern void prune_to_best_version_conda(Pool *pool, Queue *plist); -+#endif - - #ifdef __cplusplus - } diff --git a/tools/micromamba-osx-arm64/info/recipe/libsolv/portfile.cmake b/tools/micromamba-osx-arm64/info/recipe/libsolv/portfile.cmake deleted file mode 100644 index 7fdac1c..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/libsolv/portfile.cmake +++ /dev/null @@ -1,55 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO openSUSE/libsolv - REF 0.7.24 - SHA512 a0975d3f80ae8c364d5b32df4c26bc7eb5abb3be81259595848f1f5f74b00e708af3153074041d49383547718e68cee2e82cf4bdeab6221dfdcc605812689d37 - HEAD_REF master - PATCHES - win_export_and_static_build.patch - conda_variant_priorization.patch -) - -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBS) -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBS) - -if (NOT BUILD_DYNAMIC_LIBS) - set(DISABLE_SHARED ON) -else() - set(DISABLE_SHARED OFF) -endif() - -vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - conda ENABLE_CONDA -) - -if(WIN32) - list(APPEND FEATURE_OPTIONS "-DWITHOUT_COOKIEOPEN=ON") -endif() - -vcpkg_configure_cmake( - SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA - OPTIONS - ${FEATURE_OPTIONS} - -DDISABLE_SHARED=${DISABLE_SHARED} - -DENABLE_STATIC=${BUILD_STATIC_LIBS} - -DMULTI_SEMANTICS=ON - -DBUILD_EXAMPLE_PROGRAMS=OFF - .. -) - - -vcpkg_install_cmake() -# vcpkg_fixup_cmake_targets() -# vcpkg_copy_pdbs() - -if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -file(INSTALL ${SOURCE_PATH}/LICENSE.BSD DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsolv RENAME copyright) - -vcpkg_test_cmake(PACKAGE_NAME libsolv) diff --git a/tools/micromamba-osx-arm64/info/recipe/libsolv/win_export_and_static_build.patch b/tools/micromamba-osx-arm64/info/recipe/libsolv/win_export_and_static_build.patch deleted file mode 100644 index 796077e..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/libsolv/win_export_and_static_build.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/repo_write.c b/src/repo_write.c -index a73eebff..9e0622e3 100644 ---- a/src/repo_write.c -+++ b/src/repo_write.c -@@ -188,7 +188,7 @@ write_compressed_blob(Repodata *data, void *blob, int len) - write_u8(data, clen); - write_blob(data, cpage, clen); - } -- blob += chunk; -+ blob = (char*) blob + chunk; - len -= chunk; - } - } diff --git a/tools/micromamba-osx-arm64/info/recipe/meta.yaml b/tools/micromamba-osx-arm64/info/recipe/meta.yaml deleted file mode 100644 index e76e94d..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/meta.yaml +++ /dev/null @@ -1,154 +0,0 @@ -# This file created by conda-build 3.25.0 -# meta.yaml template originally from: -# /Users/runner/work/1/s/recipe, last modified Fri Aug 25 08:19:19 2023 -# ------------------------------------------------ - -package: - name: micromamba - version: 1.5.0 -source: - - folder: mamba - sha256: 0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17 - url: https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-1.5.0.tar.gz -build: - ignore_run_exports_from: - - fmt - - libarchive-minimal-static - - libcurl - - openssl - - reproc-cpp - - spdlog - number: '1' - string: '1' -requirements: - build: - - bzip2 1.0.8 h0d85af4_4 - - c-ares 1.19.1 h0dc2134_0 - - ca-certificates 2023.7.22 h8857fd0_0 - - cctools_osx-64 973.0.1 habff3f6_14 - - cctools_osx-arm64 973.0.1 h2f5fd4a_14 - - clang 15.0.7 h694c41f_3 - - clang-15 15.0.7 default_hdb78580_3 - - clang_osx-arm64 15.0.7 h1cd4f45_3 - - clangxx 15.0.7 default_hdb78580_3 - - clangxx_osx-arm64 15.0.7 hc662a55_3 - - cmake 3.26.4 hf40c264_0 - - compiler-rt 15.0.7 he1888fc_1 - - compiler-rt_osx-64 15.0.7 he1888fc_1 - - expat 2.5.0 hf0c8a7f_1 - - icu 72.1 h7336db1_0 - - krb5 1.21.2 hb884880_0 - - ld64_osx-64 609 h0fd476b_14 - - ld64_osx-arm64 609 he51b688_14 - - libclang-cpp15 15.0.7 default_hdb78580_3 - - libcurl 8.2.1 h5f667d7_0 - - libcxx 16.0.6 hd57cbcb_0 - - libedit 3.1.20191231 h0678c8f_2 - - libev 4.33 haf1e3a3_1 - - libexpat 2.5.0 hf0c8a7f_1 - - libiconv 1.17 hac89ed1_0 - - libllvm15 15.0.7 he4b1e75_3 - - libnghttp2 1.52.0 he2ab024_0 - - libssh2 1.11.0 hd019ec5_0 - - libuv 1.44.2 h0dc2134_1 - - libxml2 2.11.5 hd95e348_0 - - libzlib 1.2.13 h8a1eda9_5 - - llvm-tools 15.0.7 he4b1e75_3 - - ncurses 6.4 hf0c8a7f_0 - - ninja 1.11.1 hb8565cd_0 - - openssl 3.1.2 h8a1eda9_0 - - rhash 1.4.3 h0dc2134_1 - - sigtool 0.1.3 h88f4db0_0 - - tapi 1100.0.11 h9ce4665_0 - - xz 5.2.6 h775f41a_0 - - zlib 1.2.13 h8a1eda9_5 - - zstd 1.5.2 h829000d_7 - host: - - bzip2 1.0.8 h3422bc3_4 - - c-ares 1.19.1 hb547adb_0 - - c-ares-static 1.19.1 hb547adb_0 - - ca-certificates 2023.7.22 hf0a4a13_0 - - cli11 2.3.2 hb7217d7_0 - - cpp-expected 1.1.0 hffc8910_0 - - fmt 10.1.0 h1995070_0 - - krb5 1.20.1 h69eda48_0 - - krb5-static 1.20.1 h69eda48_0 - - libarchive-minimal-static 3.6.2 h840afe0_1 - - libcurl 7.88.1 h9049daf_1 - - libcurl-static 7.88.1 h9049daf_1 - - libcxx 16.0.6 h4653b0c_0 - - libedit 3.1.20191231 hc8eb9b7_2 - - libev 4.33 h642e427_1 - - libev-static 4.33 h642e427_1 - - libiconv 1.17 he4db4b2_0 - - libnghttp2 1.52.0 hae82a92_0 - - libnghttp2-static 1.52.0 h19e3c78_0 - - libopenssl-static 3.1.2 h53f4e23_0 - - libsolv 0.7.24 ha614eb4_3 - - libsolv-static 0.7.24 ha614eb4_3 - - libssh2 1.11.0 h7a5bd25_0 - - libssh2-static 1.11.0 hbbb52b4_0 - - libzlib 1.2.13 h53f4e23_5 - - lz4-c-static 1.9.4 hce30654_0 - - ncurses 6.4 h7ea286d_0 - - nlohmann_json 3.11.2 h2e04ded_0 - - openssl 3.1.2 h53f4e23_0 - - reproc 14.2.4 h1a8c8d9_0 - - reproc-cpp 14.2.4 hb7217d7_0 - - reproc-cpp-static 14.2.4 hb7217d7_0 - - reproc-static 14.2.4 h1a8c8d9_0 - - spdlog 1.12.0 h0ed11a7_1 - - xz 5.2.6 h57fd34a_0 - - xz-static 5.2.6 h57fd34a_0 - - yaml-cpp 0.7.0 hb7217d7_2 - - yaml-cpp-static 0.7.0 hb7217d7_2 - - zlib 1.2.13 h53f4e23_5 - - zstd 1.5.2 h4f39d0f_7 - - zstd-static 1.5.2 h92bcb94_7 - run: - - libcxx >=15.0.7 - - libzlib >=1.2.13,<1.3.0a0 -test: - commands: - - test -f "${PREFIX}/bin/micromamba" - - micromamba --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" - - micromamba create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' -about: - dev_url: https://github.com/mamba-org/mamba - home: https://github.com/mamba-org/mamba - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - license_file: - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - - mamba/LICENSE - summary: Micromamba is a tiny version of mamba, the fast conda package installer. -extra: - copy_test_source_files: true - final: true - recipe-maintainers: - - AntoinePrv - - JohanMabille - - SylvainCorlay - - adriendelsalle - - mariusvniekerk - - pavelzw - - wolfv diff --git a/tools/micromamba-osx-arm64/info/recipe/meta.yaml.template b/tools/micromamba-osx-arm64/info/recipe/meta.yaml.template deleted file mode 100644 index 0c3950b..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/meta.yaml.template +++ /dev/null @@ -1,132 +0,0 @@ -{% set version = "1.5.0" %} -{% set sha256 = "0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17" %} -{% set build_num = 1 %} - -# A strategy for testing the feedstock locally in mamba CI -{% if os.environ.get("CI", "") == "local" %} - {% set mamba_source_type = "path" %} - {% set mamba_source_val = "{}/source".format(os.environ.get("FEEDSTOCK_ROOT", "..")) %} - {% set mamba_hash_type = "" %} - {% set mamba_hash_val = "" %} -{% else %} - {% set mamba_source_type = "url" %} - {% set mamba_source_val = "https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-{}.tar.gz".format(version) %} - {% set mamba_hash_type = "sha256" %} - {% set mamba_hash_val = sha256 %} -{% endif %} - -# Used for writing generic tests -{% set bin_ext = "" %} # [unix] -{% set bin_ext = ".exe" %} # [win] - -package: - name: micromamba - version: {{ version }} - -source: - - "{{ mamba_source_type }}": "{{ mamba_source_val }}" - "{{ mamba_hash_type }}": "{{ mamba_hash_val }}" - folder: mamba - # VCPKG comes with its own (short-lived) metadata which can be already outdated in the latest release - - url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz # [win] - sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 # [win] - folder: vcpkg # [win] - -build: - number: {{ build_num }} - string: {{ build_num }} - ignore_run_exports_from: - - libcurl # [unix] - - libarchive-minimal-static # [unix] - - reproc-cpp # [unix] - - openssl # [unix] - - spdlog - - fmt - - {{ compiler('c') }} # [linux] - - {{ compiler('cxx') }} # [linux] - - python # [win] - -requirements: - build: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - cmake # [unix] - - ninja - - vcpkg-tool # [win] - - python # [win] - - curl >=7.87,<8 # [win] - - zlib # [win] - host: - - cli11 >=2.2,<3 - - cpp-expected - - nlohmann_json - - spdlog - - fmt - - yaml-cpp-static # [unix] - - libcurl >=7.88.1,<8 # [unix] - - libcurl-static >=7.88.1,<8 # [unix] - - xz-static # [unix] - - libssh2-static # [unix] - - libarchive-minimal-static # [unix] - - krb5-static # [unix] - - libsolv-static # [unix] - - openssl {{ openssl }} # [unix] - - libopenssl-static {{ openssl }} # [unix] - - zstd-static # [unix] - - zlib # [unix] - - libnghttp2-static # [unix] - - lz4-c-static # [unix] - - reproc-static # [unix] - - reproc-cpp # [unix] - - reproc-cpp-static # [unix] - - winreg # [win] - -test: - commands: - - test -f "${PREFIX}/bin/micromamba" # [unix] - - if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) # [win] - - micromamba{{ bin_ext }} --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" # [unix] - - mkdir %TEMP%\mamba # [win] - - set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" # [win] - - micromamba{{ bin_ext }} create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' # [win] - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' # [win] - -about: - home: https://github.com/mamba-org/mamba - license_file: - - mamba/LICENSE - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - summary: Micromamba is a tiny version of mamba, the fast conda package installer. - dev_url: https://github.com/mamba-org/mamba - -extra: - recipe-maintainers: - - AntoinePrv - - pavelzw - - wolfv - - SylvainCorlay - - JohanMabille - - mariusvniekerk - - adriendelsalle diff --git a/tools/micromamba-osx-arm64/info/recipe/recipe-scripts-license.txt b/tools/micromamba-osx-arm64/info/recipe/recipe-scripts-license.txt deleted file mode 100644 index 2ec51d7..0000000 --- a/tools/micromamba-osx-arm64/info/recipe/recipe-scripts-license.txt +++ /dev/null @@ -1,27 +0,0 @@ -BSD-3-Clause license -Copyright (c) 2015-2022, conda-forge contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. diff --git a/tools/micromamba-osx-arm64/info/test/run_test.sh b/tools/micromamba-osx-arm64/info/test/run_test.sh deleted file mode 100644 index 1a56f3a..0000000 --- a/tools/micromamba-osx-arm64/info/test/run_test.sh +++ /dev/null @@ -1,13 +0,0 @@ - - -set -ex - - - -test -f "${PREFIX}/bin/micromamba" -micromamba --help -export MAMBA_ROOT_PREFIX="$(mktemp -d)" -micromamba create -n test --override-channels -c conda-forge --yes python=3.9 -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version -"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os" -exit 0 diff --git a/tools/micromamba-win-64/.DS_Store b/tools/micromamba-win-64/.DS_Store deleted file mode 100644 index 388d44e..0000000 Binary files a/tools/micromamba-win-64/.DS_Store and /dev/null differ diff --git a/tools/micromamba-win-64/bin/micromamba.exe b/tools/micromamba-win-64/bin/micromamba.exe deleted file mode 100755 index a23295c..0000000 Binary files a/tools/micromamba-win-64/bin/micromamba.exe and /dev/null differ diff --git a/tools/micromamba-win-64/info/about.json b/tools/micromamba-win-64/info/about.json deleted file mode 100644 index 7532d65..0000000 --- a/tools/micromamba-win-64/info/about.json +++ /dev/null @@ -1,280 +0,0 @@ -{ - "channels": [ - "https://conda.anaconda.org/conda-forge" - ], - "conda_build_version": "3.25.0", - "conda_version": "23.3.1", - "dev_url": "https://github.com/mamba-org/mamba", - "env_vars": { - "CIO_TEST": "" - }, - "extra": { - "copy_test_source_files": true, - "final": true, - "recipe-maintainers": [ - "AntoinePrv", - "pavelzw", - "wolfv", - "SylvainCorlay", - "JohanMabille", - "mariusvniekerk", - "adriendelsalle" - ] - }, - "home": "https://github.com/mamba-org/mamba", - "identifiers": [], - "keywords": [], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "license_file": [ - "mamba/LICENSE", - "CLI11_LICENSE.txt", - "CURL_LICENSE.txt", - "C_ARES_LICENSE.txt", - "FMT_LICENSE.txt", - "KRB5_LICENSE.txt", - "LIBARCHIVE_LICENSE.txt", - "LIBEV_LICENSE.txt", - "LIBLZ4_LICENSE.txt", - "LIBNGHTTP2_LICENSE.txt", - "LIBOPENSSL_3_LICENSE.txt", - "LIBOPENSSL_LICENSE.txt", - "LIBSOLV_LICENSE.txt", - "NLOHMANN_JSON_LICENSE.txt", - "REPROC_LICENSE.txt", - "SPDLOG_LICENSE.txt", - "TL_EXPECTED_LICENSE.txt", - "ZSTD_LICENSE.txt" - ], - "root_pkgs": [ - "anaconda-client 1.12.0 pyhd8ed1ab_1", - "anaconda-project 0.11.1 pyhd8ed1ab_0", - "anyio 3.7.1 pyhd8ed1ab_0", - "attrs 23.1.0 pyh71513ae_1", - "backports 1.0 pyhd8ed1ab_3", - "backports.functools_lru_cache 1.6.5 pyhd8ed1ab_0", - "beautifulsoup4 4.12.2 pyha770c72_0", - "boa 0.15.1 pyhd8ed1ab_0", - "boltons 23.0.0 pyhd8ed1ab_0", - "brotli-python 1.0.9 py310h00ffb61_9", - "brotlipy 0.7.0 py310h8d17308_1005", - "bzip2 1.0.8 h8ffe710_4", - "ca-certificates 2023.7.22 h56e8100_0", - "certifi 2023.7.22 pyhd8ed1ab_0", - "cffi 1.15.1 py310h628cb3f_3", - "chardet 5.2.0 py310h5588dad_0", - "charset-normalizer 3.2.0 pyhd8ed1ab_0", - "click 8.1.7 win_pyh7428d3b_0", - "clyent 1.2.2 py_1", - "colorama 0.4.6 pyhd8ed1ab_0", - "conda 23.3.1 py310h5588dad_0", - "conda-build 3.25.0 py310h5588dad_0", - "conda-env 2.6.0 1", - "conda-forge-ci-setup 3.32.5 py310h82d9320_100", - "conda-forge-metadata 0.5.2 pyhd8ed1ab_0", - "conda-index 0.2.3 pyhd8ed1ab_0", - "conda-libmamba-solver 23.3.0 pyhd8ed1ab_0", - "conda-oci-mirror 0.1.0 pyhd8ed1ab_0", - "conda-pack 0.7.1 pyhd8ed1ab_0", - "conda-package-handling 2.2.0 pyh38be061_0", - "conda-package-streaming 0.9.0 pyhd8ed1ab_0", - "cryptography 41.0.3 py310h6e82f81_0", - "dataclasses 0.8 pyhc8e2a94_3", - "defusedxml 0.7.1 pyhd8ed1ab_0", - "exceptiongroup 1.1.3 pyhd8ed1ab_0", - "filelock 3.12.2 pyhd8ed1ab_0", - "fmt 9.1.0 h181d51b_0", - "freetype 2.12.1 h546665d_1", - "glob2 0.7 py_0", - "idna 3.4 pyhd8ed1ab_0", - "importlib_resources 6.0.1 pyhd8ed1ab_0", - "jinja2 3.1.2 pyhd8ed1ab_1", - "joblib 1.3.2 pyhd8ed1ab_0", - "json5 0.9.14 pyhd8ed1ab_0", - "jsonpatch 1.32 pyhd8ed1ab_0", - "jsonpointer 2.0 py_0", - "jsonschema 4.19.0 pyhd8ed1ab_1", - "jsonschema-specifications 2023.7.1 pyhd8ed1ab_0", - "jupyter_core 5.3.1 py310h5588dad_0", - "krb5 1.21.2 heb0366b_0", - "lcms2 2.15 h3e3b177_1", - "lerc 4.0.0 h63175ca_0", - "libarchive 3.6.2 h6f8411a_1", - "libcurl 8.2.1 hd5e4a3a_0", - "libdeflate 1.18 hcfcfb64_0", - "libffi 3.4.2 h8ffe710_5", - "libiconv 1.17 h8ffe710_0", - "libjpeg-turbo 2.1.5.1 hcfcfb64_0", - "liblief 0.12.3 h63175ca_0", - "libmamba 1.4.2 h8a7d157_0", - "libmambapy 1.4.2 py310h3fe4c2e_0", - "libpng 1.6.39 h19919ed_0", - "libsolv 0.7.24 h12be248_1", - "libsqlite 3.42.0 hcfcfb64_0", - "libssh2 1.11.0 h7dfc565_0", - "libtiff 4.5.1 h6c8260b_1", - "libwebp-base 1.3.1 hcfcfb64_0", - "libxcb 1.15 hcd874cb_0", - "libxml2 2.11.5 hc3477c8_0", - "libzlib 1.2.13 hcfcfb64_5", - "lz4-c 1.9.4 hcfcfb64_0", - "lzo 2.10 he774522_1000", - "m2-bash 4.3.042 5", - "m2-ca-certificates 20150426 103", - "m2-coreutils 8.25 102", - "m2-curl 7.47.1 3", - "m2-db 5.3.28 3", - "m2-expat 2.1.1 2", - "m2-findutils 4.6.0 2", - "m2-gcc-libs 5.3.0 4", - "m2-gdbm 1.11 4", - "m2-git 2.8.1 2", - "m2-gmp 6.1.0 3", - "m2-gzip 1.7 2", - "m2-heimdal 1.5.3 10", - "m2-heimdal-libs 1.5.3 10", - "m2-icu 56.1 2", - "m2-info 6.0 2", - "m2-less 481 2", - "m2-libcrypt 1.3 2", - "m2-libcurl 7.47.1 3", - "m2-libdb 5.3.28 3", - "m2-libedit 3.1 20150326", - "m2-libexpat 2.1.1 2", - "m2-libffi 3.2.1 2", - "m2-libgdbm 1.11 4", - "m2-libiconv 1.14 3", - "m2-libidn 1.32 2", - "m2-libintl 0.19.7 4", - "m2-libmetalink 0.1.2 3", - "m2-libopenssl 1.0.2.g 2", - "m2-libp11-kit 0.23.2 2", - "m2-libpcre 8.38 2", - "m2-libreadline 6.3.008 8", - "m2-libsqlite 3.10.0.0 2", - "m2-libssh2 1.6.0 2", - "m2-libtasn1 4.7 2", - "m2-msys2-runtime 2.5.0.17080.65c939c 3", - "m2-ncurses 6.0.20160220 2", - "m2-openssh 7.1p2 2", - "m2-openssl 1.0.2.g 2", - "m2-p11-kit 0.23.2 2", - "m2-patch 2.7.5 2", - "m2-perl 5.22.1 2", - "m2-perl-authen-sasl 2.16 3", - "m2-perl-convert-binhex 1.123 3", - "m2-perl-encode-locale 1.04 2", - "m2-perl-error 0.17024 2", - "m2-perl-file-listing 6.04 3", - "m2-perl-html-parser 3.71 4", - "m2-perl-html-tagset 3.20 3", - "m2-perl-http-cookies 6.01 3", - "m2-perl-http-daemon 6.01 3", - "m2-perl-http-date 6.02 3", - "m2-perl-http-message 6.06 3", - "m2-perl-http-negotiate 6.01 3", - "m2-perl-io-socket-ssl 2.016 2", - "m2-perl-io-stringy 2.111 2", - "m2-perl-libwww 6.13 2", - "m2-perl-lwp-mediatypes 6.02 3", - "m2-perl-mailtools 2.14 2", - "m2-perl-mime-tools 5.506 2", - "m2-perl-net-http 6.09 2", - "m2-perl-net-smtp-ssl 1.02 2", - "m2-perl-net-ssleay 1.72 2", - "m2-perl-termreadkey 2.33 2", - "m2-perl-timedate 2.30 3", - "m2-perl-uri 1.68 2", - "m2-perl-www-robotrules 6.02 3", - "m2-sed 4.2.2 3", - "m2-vim 7.4.1721 2", - "m2-zlib 1.2.8 4", - "m2w64-gcc-libgfortran 5.3.0 6", - "m2w64-gcc-libs 5.3.0 7", - "m2w64-gcc-libs-core 5.3.0 7", - "m2w64-gmp 6.1.0 2", - "m2w64-libwinpthread-git 5.0.0.4634.697f757 2", - "mamba 1.4.2 py310hd9d798f_0", - "markdown-it-py 3.0.0 pyhd8ed1ab_0", - "markupsafe 2.1.3 py310h8d17308_0", - "mdurl 0.1.0 pyhd8ed1ab_0", - "menuinst 1.4.19 py310h5588dad_1", - "miniforge_console_shortcut 1.0 h57928b3_0", - "more-itertools 10.1.0 pyhd8ed1ab_0", - "msys2-conda-epoch 20160418 1", - "nbformat 5.9.2 pyhd8ed1ab_0", - "openjpeg 2.5.0 ha2aaf27_2", - "openssl 3.1.2 hcfcfb64_0", - "oras-py 0.1.14 pyhd8ed1ab_0", - "packaging 23.1 pyhd8ed1ab_0", - "pillow 10.0.0 py310hb653ca7_0", - "pip 23.2.1 pyhd8ed1ab_0", - "pkginfo 1.9.6 pyhd8ed1ab_0", - "pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0", - "platformdirs 3.10.0 pyhd8ed1ab_0", - "pluggy 1.2.0 pyhd8ed1ab_0", - "prompt-toolkit 3.0.39 pyha770c72_0", - "prompt_toolkit 3.0.39 hd8ed1ab_0", - "psutil 5.9.5 py310h8d17308_0", - "pthread-stubs 0.4 hcd874cb_1001", - "py-lief 0.12.3 py310h00ffb61_0", - "pybind11-abi 4 hd8ed1ab_3", - "pycosat 0.6.4 py310h8d17308_1", - "pycparser 2.21 pyhd8ed1ab_0", - "pygments 2.16.1 pyhd8ed1ab_0", - "pyopenssl 23.2.0 pyhd8ed1ab_1", - "pysocks 1.7.1 pyh0701188_6", - "python 3.10.12 h4de0772_0_cpython", - "python-dateutil 2.8.2 pyhd8ed1ab_0", - "python-fastjsonschema 2.18.0 pyhd8ed1ab_0", - "python-libarchive-c 5.0 py310h5588dad_1", - "python_abi 3.10 3_cp310", - "pytz 2023.3 pyhd8ed1ab_0", - "pywin32 304 py310h00ffb61_2", - "pyyaml 6.0.1 py310h8d17308_0", - "referencing 0.30.2 pyhd8ed1ab_0", - "reproc 14.2.4 hcfcfb64_0", - "reproc-cpp 14.2.4 h63175ca_0", - "requests 2.31.0 pyhd8ed1ab_0", - "requests-toolbelt 1.0.0 pyhd8ed1ab_0", - "rich 13.5.1 pyhd8ed1ab_0", - "ripgrep 13.0.0 h7f3b576_2", - "rpds-py 0.9.2 py310h87d50f1_0", - "ruamel.yaml 0.17.32 py310h8d17308_0", - "ruamel.yaml.clib 0.2.7 py310h8d17308_1", - "ruamel_yaml 0.15.80 py310h8d17308_1008", - "setuptools 68.1.2 pyhd8ed1ab_0", - "shyaml 0.6.2 pyhd3deb0d_0", - "six 1.16.0 pyh6c4a22f_0", - "sniffio 1.3.0 pyhd8ed1ab_0", - "soupsieve 2.3.2.post1 pyhd8ed1ab_0", - "tk 8.6.12 h8ffe710_0", - "tomli 2.0.1 pyhd8ed1ab_0", - "toolz 0.12.0 pyhd8ed1ab_0", - "tornado 6.3.3 py310h8d17308_0", - "tqdm 4.66.1 pyhd8ed1ab_0", - "traitlets 5.9.0 pyhd8ed1ab_0", - "typing-extensions 4.7.1 hd8ed1ab_0", - "typing_extensions 4.7.1 pyha770c72_0", - "tzdata 2023c h71feb2d_0", - "ucrt 10.0.22621.0 h57928b3_0", - "urllib3 1.26.15 pyhd8ed1ab_0", - "vc 14.3 h64f974e_17", - "vc14_runtime 14.36.32532 hfdfe4a8_17", - "vs2015_runtime 14.36.32532 h05e6639_17", - "watchgod 0.8.2 pyhd8ed1ab_0", - "wcwidth 0.2.6 pyhd8ed1ab_0", - "wheel 0.41.1 pyhd8ed1ab_0", - "win_inet_pton 1.1.0 pyhd8ed1ab_6", - "xorg-libxau 1.0.11 hcd874cb_0", - "xorg-libxdmcp 1.1.3 hcd874cb_0", - "xz 5.2.6 h8d14728_0", - "yaml 0.2.5 h8ffe710_2", - "yaml-cpp 0.7.0 h63175ca_2", - "zipp 3.16.2 pyhd8ed1ab_0", - "zstandard 0.19.0 py310h0009e47_2", - "zstd 1.5.2 h12be248_7" - ], - "summary": "Micromamba is a tiny version of mamba, the fast conda package installer.", - "tags": [] -} \ No newline at end of file diff --git a/tools/micromamba-win-64/info/files b/tools/micromamba-win-64/info/files deleted file mode 100644 index b381fe6..0000000 --- a/tools/micromamba-win-64/info/files +++ /dev/null @@ -1 +0,0 @@ -Library/bin/micromamba.exe diff --git a/tools/micromamba-win-64/info/git b/tools/micromamba-win-64/info/git deleted file mode 100644 index e69de29..0000000 diff --git a/tools/micromamba-win-64/info/hash_input.json b/tools/micromamba-win-64/info/hash_input.json deleted file mode 100644 index 6c2cf27..0000000 --- a/tools/micromamba-win-64/info/hash_input.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "c_compiler": "vs2019", - "cxx_compiler": "vs2019", - "CI": "azure", - "spdlog": "1.12", - "fmt": "10", - "target_platform": "win-64", - "channel_targets": "conda-forge main", - "zlib": "1.2" -} \ No newline at end of file diff --git a/tools/micromamba-win-64/info/index.json b/tools/micromamba-win-64/info/index.json deleted file mode 100644 index 0a335ec..0000000 --- a/tools/micromamba-win-64/info/index.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "arch": "x86_64", - "build": "1", - "build_number": 1, - "depends": [ - "ucrt >=10.0.20348.0", - "vc >=14.2,<15", - "vc14_runtime >=14.29.30139" - ], - "license": "BSD-3-Clause AND MIT AND OpenSSL", - "license_family": "BSD", - "name": "micromamba", - "platform": "win", - "subdir": "win-64", - "timestamp": 1692955482590, - "version": "1.5.0" -} \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/CLI11_LICENSE.txt b/tools/micromamba-win-64/info/licenses/CLI11_LICENSE.txt deleted file mode 100644 index 75c1559..0000000 --- a/tools/micromamba-win-64/info/licenses/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/CURL_LICENSE.txt b/tools/micromamba-win-64/info/licenses/CURL_LICENSE.txt deleted file mode 100644 index 4819e0b..0000000 --- a/tools/micromamba-win-64/info/licenses/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/C_ARES_LICENSE.txt b/tools/micromamba-win-64/info/licenses/C_ARES_LICENSE.txt deleted file mode 100644 index 7c7eecc..0000000 --- a/tools/micromamba-win-64/info/licenses/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-win-64/info/licenses/FMT_LICENSE.txt b/tools/micromamba-win-64/info/licenses/FMT_LICENSE.txt deleted file mode 100644 index 6367b03..0000000 --- a/tools/micromamba-win-64/info/licenses/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/KRB5_LICENSE.txt b/tools/micromamba-win-64/info/licenses/KRB5_LICENSE.txt deleted file mode 100644 index c6e0ce5..0000000 --- a/tools/micromamba-win-64/info/licenses/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/LIBARCHIVE_LICENSE.txt b/tools/micromamba-win-64/info/licenses/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index f97046e..0000000 --- a/tools/micromamba-win-64/info/licenses/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/LIBEV_LICENSE.txt b/tools/micromamba-win-64/info/licenses/LIBEV_LICENSE.txt deleted file mode 100644 index c2315da..0000000 --- a/tools/micromamba-win-64/info/licenses/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-win-64/info/licenses/LIBLZ4_LICENSE.txt b/tools/micromamba-win-64/info/licenses/LIBLZ4_LICENSE.txt deleted file mode 100644 index c5d3730..0000000 --- a/tools/micromamba-win-64/info/licenses/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-win-64/info/licenses/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-win-64/info/licenses/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index ac51ce3..0000000 --- a/tools/micromamba-win-64/info/licenses/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-win-64/info/licenses/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-win-64/info/licenses/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index 0247e14..0000000 --- a/tools/micromamba-win-64/info/licenses/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/LIBOPENSSL_LICENSE.txt b/tools/micromamba-win-64/info/licenses/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9b7264d..0000000 --- a/tools/micromamba-win-64/info/licenses/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-win-64/info/licenses/LIBSOLV_LICENSE.txt b/tools/micromamba-win-64/info/licenses/LIBSOLV_LICENSE.txt deleted file mode 100644 index 84e2ee7..0000000 --- a/tools/micromamba-win-64/info/licenses/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-win-64/info/licenses/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index e24aa21..0000000 --- a/tools/micromamba-win-64/info/licenses/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-win-64/info/licenses/REPROC_LICENSE.txt b/tools/micromamba-win-64/info/licenses/REPROC_LICENSE.txt deleted file mode 100644 index 2e99a2f..0000000 --- a/tools/micromamba-win-64/info/licenses/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-win-64/info/licenses/SPDLOG_LICENSE.txt b/tools/micromamba-win-64/info/licenses/SPDLOG_LICENSE.txt deleted file mode 100644 index 49f3355..0000000 --- a/tools/micromamba-win-64/info/licenses/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-win-64/info/licenses/TL_EXPECTED_LICENSE.txt b/tools/micromamba-win-64/info/licenses/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index a471520..0000000 --- a/tools/micromamba-win-64/info/licenses/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/licenses/ZSTD_LICENSE.txt b/tools/micromamba-win-64/info/licenses/ZSTD_LICENSE.txt deleted file mode 100644 index bf2acba..0000000 --- a/tools/micromamba-win-64/info/licenses/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-win-64/info/licenses/mamba/LICENSE b/tools/micromamba-win-64/info/licenses/mamba/LICENSE deleted file mode 100644 index 8ae98f9..0000000 --- a/tools/micromamba-win-64/info/licenses/mamba/LICENSE +++ /dev/null @@ -1,11 +0,0 @@ -Copyright 2019 QuantStack and the Mamba contributors. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-win-64/info/paths.json b/tools/micromamba-win-64/info/paths.json deleted file mode 100644 index c8eeaeb..0000000 --- a/tools/micromamba-win-64/info/paths.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "paths": [ - { - "_path": "Library/bin/micromamba.exe", - "path_type": "hardlink", - "sha256": "5cca0d12dc4fd39bfd6eddbc5ffc73e0ae19f94917d2498ceba07526d2fb66bb", - "size_in_bytes": 9302016 - } - ], - "paths_version": 1 -} \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/CLI11_LICENSE.txt b/tools/micromamba-win-64/info/recipe/CLI11_LICENSE.txt deleted file mode 100644 index 75c1559..0000000 --- a/tools/micromamba-win-64/info/recipe/CLI11_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -CLI11 1.8 Copyright (c) 2017-2019 University of Cincinnati, developed by Henry -Schreiner under NSF AWARD 1414736. All rights reserved. - -Redistribution and use in source and binary forms of CLI11, with or without -modification, are permitted provided that the following conditions are met: - -1. Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. -2. Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. -3. Neither the name of the copyright holder nor the names of its contributors - may be used to endorse or promote products derived from this software without - specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt b/tools/micromamba-win-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt deleted file mode 100644 index 9b1d072..0000000 --- a/tools/micromamba-win-64/info/recipe/CPP_FILESYSTEM_LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -Copyright (c) 2018, Steffen Schümann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-win-64/info/recipe/CURL_LICENSE.txt b/tools/micromamba-win-64/info/recipe/CURL_LICENSE.txt deleted file mode 100644 index 4819e0b..0000000 --- a/tools/micromamba-win-64/info/recipe/CURL_LICENSE.txt +++ /dev/null @@ -1,11 +0,0 @@ -COPYRIGHT AND PERMISSION NOTICE - -Copyright (c) 1996 - 2020, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. - -All rights reserved. - -Permission to use, copy, modify, and 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", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/C_ARES_LICENSE.txt b/tools/micromamba-win-64/info/recipe/C_ARES_LICENSE.txt deleted file mode 100644 index 7c7eecc..0000000 --- a/tools/micromamba-win-64/info/recipe/C_ARES_LICENSE.txt +++ /dev/null @@ -1,15 +0,0 @@ -# c-ares license - -Copyright (c) 2007 - 2018, Daniel Stenberg with many contributors, see AUTHORS -file. - -Copyright 1998 by the Massachusetts Institute of Technology. - -Permission to use, copy, modify, and distribute this software and its -documentation for any purpose and without fee is hereby granted, provided that -the above copyright notice appear in all copies and that both that copyright -notice and this permission notice appear in supporting documentation, and that -the name of M.I.T. not be used in advertising or publicity pertaining to -distribution of the software without specific, written prior permission. -M.I.T. makes no representations about the suitability of this software for any -purpose. It is provided "as is" without express or implied warranty. diff --git a/tools/micromamba-win-64/info/recipe/FMT_LICENSE.txt b/tools/micromamba-win-64/info/recipe/FMT_LICENSE.txt deleted file mode 100644 index 6367b03..0000000 --- a/tools/micromamba-win-64/info/recipe/FMT_LICENSE.txt +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 - present, Victor Zverovich - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - ---- Optional exception to the license --- - -As an exception, if, as a result of your compiling your source code, portions -of this Software are embedded into a machine-executable object form of such -source code, you may redistribute such embedded portions in such object form -without including the above copyright and permission notices. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/KRB5_LICENSE.txt b/tools/micromamba-win-64/info/recipe/KRB5_LICENSE.txt deleted file mode 100644 index c6e0ce5..0000000 --- a/tools/micromamba-win-64/info/recipe/KRB5_LICENSE.txt +++ /dev/null @@ -1,1286 +0,0 @@ -Copyright |copy| 1985-2020 by the Massachusetts Institute of Technology. - -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Downloading of this software may constitute an export of cryptographic -software from the United States of America that is subject to the -United States Export Administration Regulations (EAR), 15 CFR 730-774. -Additional laws or regulations may apply. It is the responsibility of -the person or entity contemplating export to comply with all -applicable export laws and regulations, including obtaining any -required license from the U.S. government. - -The U.S. government prohibits export of encryption source code to -certain countries and individuals, including, but not limited to, the -countries of Cuba, Iran, North Korea, Sudan, Syria, and residents and -nationals of those countries. - -Documentation components of this software distribution are licensed -under a Creative Commons Attribution-ShareAlike 3.0 Unported License. -(https://creativecommons.org/licenses/by-sa/3.0/) - -Individual source code files are copyright MIT, Cygnus Support, -Novell, OpenVision Technologies, Oracle, Red Hat, Sun Microsystems, -FundsXpress, and others. - -Project Athena, Athena, Athena MUSE, Discuss, Hesiod, Kerberos, Moira, -and Zephyr are trademarks of the Massachusetts Institute of Technology -(MIT). No commercial use of these trademarks may be made without -prior written permission of MIT. - -"Commercial use" means use of a name in a product or other for-profit -manner. It does NOT prevent a commercial firm from referring to the -MIT trademarks in order to convey information (although in doing so, -recognition of their trademark status should be given). - -------------------- - -The following copyright and permission notice applies to the -OpenVision Kerberos Administration system located in -``kadmin/create``, ``kadmin/dbutil``, ``kadmin/passwd``, -``kadmin/server``, ``lib/kadm5``, and portions of -``lib/rpc``: - - Copyright, OpenVision Technologies, Inc., 1993-1996, All Rights Reserved - - WARNING: Retrieving the OpenVision Kerberos Administration system source - code, as described below, indicates your acceptance of the following - terms. If you do not agree to the following terms, do not retrieve the - OpenVision Kerberos administration system. - - You may freely use and distribute the Source Code and Object Code - compiled from it, with or without modification, but this Source Code is - provided to you "AS IS" EXCLUSIVE OF ANY WARRANTY, INCLUDING, WITHOUT - LIMITATION, ANY WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A - PARTICULAR PURPOSE, OR ANY OTHER WARRANTY, WHETHER EXPRESS OR IMPLIED. - IN NO EVENT WILL OPENVISION HAVE ANY LIABILITY FOR ANY LOST PROFITS, - LOSS OF DATA OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR - FOR ANY SPECIAL, INDIRECT, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS - AGREEMENT, INCLUDING, WITHOUT LIMITATION, THOSE RESULTING FROM THE USE - OF THE SOURCE CODE, OR THE FAILURE OF THE SOURCE CODE TO PERFORM, OR FOR - ANY OTHER REASON. - - OpenVision retains all copyrights in the donated Source Code. OpenVision - also retains copyright to derivative works of the Source Code, whether - created by OpenVision or by a third party. The OpenVision copyright - notice must be preserved if derivative works are made based on the - donated Source Code. - - OpenVision Technologies, Inc. has donated this Kerberos Administration - system to MIT for inclusion in the standard Kerberos 5 distribution. - This donation underscores our commitment to continuing Kerberos - technology development and our gratitude for the valuable work which has - been performed by MIT and the Kerberos community. - -------------------- - - Portions contributed by Matt Crawford ``crawdad@fnal.gov`` were work - performed at Fermi National Accelerator Laboratory, which is operated - by Universities Research Association, Inc., under contract - DE-AC02-76CHO3000 with the U.S. Department of Energy. - -------------------- - -Portions of ``src/lib/crypto`` have the following copyright: - - Copyright |copy| 1998 by the FundsXpress, INC. - - All rights reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of FundsXpress. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. FundsXpress makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementation of the AES encryption algorithm in -``src/lib/crypto/builtin/aes`` has the following copyright: - - | Copyright |copy| 2001, Dr Brian Gladman ``brg@gladman.uk.net``, - Worcester, UK. - | All rights reserved. - - LICENSE TERMS - - The free distribution and use of this software in both source and binary - form is allowed (with or without changes) provided that: - - 1. distributions of this source code include the above copyright - notice, this list of conditions and the following disclaimer; - 2. distributions in binary form include the above copyright - notice, this list of conditions and the following disclaimer - in the documentation and/or other associated materials; - 3. the copyright holder's name is not used to endorse products - built using this software without specific written permission. - - DISCLAIMER - - This software is provided 'as is' with no explcit or implied warranties - in respect of any properties, including, but not limited to, correctness - and fitness for purpose. - -------------------- - -Portions contributed by Red Hat, including the pre-authentication -plug-in framework and the NSS crypto implementation, contain the -following copyright: - - | Copyright |copy| 2006 Red Hat, Inc. - | Portions copyright |copy| 2006 Massachusetts Institute of Technology - | All Rights Reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * Neither the name of Red Hat, Inc., nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The bundled verto source code is subject to the following license: - - Copyright 2011 Red Hat, Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation files - (the "Software"), to deal in the Software without restriction, - including without limitation the rights to use, copy, modify, merge, - publish, distribute, sublicense, and/or sell copies of the Software, - and to permit persons to whom the Software is furnished to do so, - subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -The MS-KKDCP client implementation has the following copyright: - - Copyright 2013,2014 Red Hat, Inc. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER - OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The implementations of GSSAPI mechglue in GSSAPI-SPNEGO in -``src/lib/gssapi``, including the following files: - -.. parsed-literal:: - - lib/gssapi/generic/gssapi_err_generic.et - lib/gssapi/mechglue/g_accept_sec_context.c - lib/gssapi/mechglue/g_acquire_cred.c - lib/gssapi/mechglue/g_canon_name.c - lib/gssapi/mechglue/g_compare_name.c - lib/gssapi/mechglue/g_context_time.c - lib/gssapi/mechglue/g_delete_sec_context.c - lib/gssapi/mechglue/g_dsp_name.c - lib/gssapi/mechglue/g_dsp_status.c - lib/gssapi/mechglue/g_dup_name.c - lib/gssapi/mechglue/g_exp_sec_context.c - lib/gssapi/mechglue/g_export_name.c - lib/gssapi/mechglue/g_glue.c - lib/gssapi/mechglue/g_imp_name.c - lib/gssapi/mechglue/g_imp_sec_context.c - lib/gssapi/mechglue/g_init_sec_context.c - lib/gssapi/mechglue/g_initialize.c - lib/gssapi/mechglue/g_inquire_context.c - lib/gssapi/mechglue/g_inquire_cred.c - lib/gssapi/mechglue/g_inquire_names.c - lib/gssapi/mechglue/g_process_context.c - lib/gssapi/mechglue/g_rel_buffer.c - lib/gssapi/mechglue/g_rel_cred.c - lib/gssapi/mechglue/g_rel_name.c - lib/gssapi/mechglue/g_rel_oid_set.c - lib/gssapi/mechglue/g_seal.c - lib/gssapi/mechglue/g_sign.c - lib/gssapi/mechglue/g_store_cred.c - lib/gssapi/mechglue/g_unseal.c - lib/gssapi/mechglue/g_userok.c - lib/gssapi/mechglue/g_utils.c - lib/gssapi/mechglue/g_verify.c - lib/gssapi/mechglue/gssd_pname_to_uid.c - lib/gssapi/mechglue/mglueP.h - lib/gssapi/mechglue/oid_ops.c - lib/gssapi/spnego/gssapiP_spnego.h - lib/gssapi/spnego/spnego_mech.c - -and the initial implementation of incremental propagation, including -the following new or changed files: - -.. parsed-literal:: - - include/iprop_hdr.h - kadmin/server/ipropd_svc.c - lib/kdb/iprop.x - lib/kdb/kdb_convert.c - lib/kdb/kdb_log.c - lib/kdb/kdb_log.h - lib/krb5/error_tables/kdb5_err.et - kprop/kpropd_rpc.c - kprop/kproplog.c - -are subject to the following license: - - Copyright |copy| 2004 Sun Microsystems, Inc. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the - "Software"), to deal in the Software without restriction, including - without limitation the rights to use, copy, modify, merge, publish, - distribute, sublicense, and/or sell copies of the Software, and to - permit persons to whom the Software is furnished to do so, subject to - the following conditions: - - The above copyright notice and this permission notice shall be included - in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS - OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. - IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, - TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE - SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -Kerberos V5 includes documentation and software developed at the -University of California at Berkeley, which includes this copyright -notice: - - | Copyright |copy| 1983 Regents of the University of California. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions contributed by Novell, Inc., including the LDAP database -backend, are subject to the following license: - - | Copyright |copy| 2004-2005, Novell, Inc. - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - * The copyright holder's name is not used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Portions funded by Sandia National Laboratory -and developed by the University of Michigan's -Center for Information Technology Integration, -including the PKINIT implementation, are subject -to the following license: - - | COPYRIGHT |copy| 2006-2007 - | THE REGENTS OF THE UNIVERSITY OF MICHIGAN - | ALL RIGHTS RESERVED - - Permission is granted to use, copy, create derivative works - and redistribute this software and such derivative works - for any purpose, so long as the name of The University of - Michigan is not used in any advertising or publicity - pertaining to the use of distribution of this software - without specific, written prior authorization. If the - above copyright notice or any other identification of the - University of Michigan is included in any copy of any - portion of this software, then the disclaimer below must - also be included. - - THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION - FROM THE UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY - PURPOSE, AND WITHOUT WARRANTY BY THE UNIVERSITY OF - MICHIGAN OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING - WITHOUT LIMITATION THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE - FOR ANY DAMAGES, INCLUDING SPECIAL, INDIRECT, INCIDENTAL, OR - CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM ARISING - OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN - IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF - SUCH DAMAGES. - -------------------- - -The pkcs11.h file included in the PKINIT code has the -following license: - - | Copyright 2006 g10 Code GmbH - | Copyright 2006 Andreas Jellinghaus - - This file is free software; as a special exception the author gives - unlimited permission to copy and/or distribute it, with or without - modifications, as long as this notice is preserved. - - This file is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY, to the extent permitted by law; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. - -------------------- - -Portions contributed by Apple Inc. are subject to the following license: - - Copyright 2004-2008 Apple Inc. All Rights Reserved. - - Export of this software from the United States of America may require - a specific license from the United States Government. It is the - responsibility of any person or organization contemplating export to - obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Apple Inc. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Apple Inc. makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - - THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED - WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. - -------------------- - -The implementations of UTF-8 string handling in src/util/support and -src/lib/krb5/unicode are subject to the following copyright and -permission notice: - - | The OpenLDAP Public License - | Version 2.8, 17 August 2003 - - Redistribution and use of this software and associated documentation - ("Software"), with or without modification, are permitted provided - that the following conditions are met: - - 1. Redistributions in source form must retain copyright statements - and notices, - 2. Redistributions in binary form must reproduce applicable copyright - statements and notices, this list of conditions, and the following - disclaimer in the documentation and/or other materials provided - with the distribution, and - 3. Redistributions must contain a verbatim copy of this document. - - The OpenLDAP Foundation may revise this license from time to time. - Each revision is distinguished by a version number. You may use - this Software under terms of this license revision or under the - terms of any subsequent revision of the license. - - THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS - CONTRIBUTORS "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT - SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) - OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, - BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER - CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN - ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - - The names of the authors and copyright holders must not be used in - advertising or otherwise to promote the sale, use or other dealing - in this Software without specific, written prior permission. Title - to copyright in this Software shall at all times remain with copyright - holders. - - OpenLDAP is a registered trademark of the OpenLDAP Foundation. - - Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, - California, USA. All Rights Reserved. Permission to copy and - distribute verbatim copies of this document is granted. - -------------------- - -Marked test programs in src/lib/krb5/krb have the following copyright: - - | Copyright |copy| 2006 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of KTH nor the names of its contributors may be - used to endorse or promote products derived from this software without - specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS "AS IS" AND ANY - EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE - LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The KCM Mach RPC definition file used on macOS has the following copyright: - - | Copyright |copy| 2009 Kungliga Tekniska Högskola - | (Royal Institute of Technology, Stockholm, Sweden). - | All rights reserved. - - Portions Copyright |copy| 2009 Apple Inc. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of the Institute nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -Portions of the RPC implementation in src/lib/rpc and src/include/gssrpc -have the following copyright and permission notice: - - Copyright |copy| 2010, Oracle America, Inc. - - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - 3. Neither the name of the "Oracle America, Inc." nor the names of - its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS - IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A - PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright |copy| 2006,2007,2009 - NTT (Nippon Telegraph and Telephone Corporation). All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer as - the first lines of this file unmodified. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY NTT "AS IS" AND ANY EXPRESS OR - IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. - IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT, - INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - - Copyright 2000 by Carnegie Mellon University - - All Rights Reserved - - Permission to use, copy, modify, and distribute this software and its - documentation for any purpose and without fee is hereby granted, - provided that the above copyright notice appear in all copies and that - both that copyright notice and this permission notice appear in - supporting documentation, and that the name of Carnegie Mellon - University not be used in advertising or publicity pertaining to - distribution of the software without specific, written prior - permission. - - CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO - THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND - FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE FOR - ANY SPECIAL, 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. - -------------------- - - Copyright |copy| 2002 Naval Research Laboratory (NRL/CCS) - - Permission to use, copy, modify and distribute this software and its - documentation is hereby granted, provided that both the copyright - notice and this permission notice appear in all copies of the software, - derivative works or modified versions, and any portions thereof. - - NRL ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION AND - DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER - RESULTING FROM THE USE OF THIS SOFTWARE. - -------------------- - - Copyright |copy| 1991, 1992, 1994 by Cygnus Support. - - Permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation. - Cygnus Support makes no representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - - Copyright |copy| 2006 Secure Endpoints Inc. - - Permission is hereby granted, free of charge, to any person - obtaining a copy of this software and associated documentation - files (the "Software"), to deal in the Software without - restriction, including without limitation the rights to use, copy, - modify, merge, publish, distribute, sublicense, and/or sell copies - of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be - included in all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS - BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN - ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN - CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - SOFTWARE. - -------------------- - -Portions of the implementation of the Fortuna-like PRNG are subject to -the following notice: - - | Copyright |copy| 2005 Marko Kreen - | All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -.. - - Copyright |copy| 1994 by the University of Southern California - - EXPORT OF THIS SOFTWARE from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to copy, modify, and distribute - this software and its documentation in source and binary forms is - hereby granted, provided that any documentation or other materials - related to such distribution or use acknowledge that the software - was developed by the University of Southern California. - - DISCLAIMER OF WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS". The - University of Southern California MAKES NO REPRESENTATIONS OR - WARRANTIES, EXPRESS OR IMPLIED. By way of example, but not - limitation, the University of Southern California MAKES NO - REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY - PARTICULAR PURPOSE. The University of Southern - California shall not be held liable for any liability nor for any - direct, indirect, or consequential damages with respect to any - claim by the user or distributor of the ksu software. - -------------------- - - | Copyright |copy| 1995 - | The President and Fellows of Harvard University - - This code is derived from software contributed to Harvard by - Jeremy Rassen. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the University of - California, Berkeley and its contributors. - - 4. Neither the name of the University nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - - | Copyright |copy| 2008 by the Massachusetts Institute of Technology. - | Copyright 1995 by Richard P. Basch. All Rights Reserved. - | Copyright 1995 by Lehman Brothers, Inc. All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of Richard P. Basch, Lehman Brothers and M.I.T. not be used - in advertising or publicity pertaining to distribution of the software - without specific, written prior permission. Richard P. Basch, - Lehman Brothers and M.I.T. make no representations about the suitability - of this software for any purpose. It is provided "as is" without - express or implied warranty. - -------------------- - -The following notice applies to ``src/lib/krb5/krb/strptime.c`` and -``src/include/k5-queue.h``. - - | Copyright |copy| 1997, 1998 The NetBSD Foundation, Inc. - | All rights reserved. - - This code was contributed to The NetBSD Foundation by Klaus Klein. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. All advertising materials mentioning features or use of this software - must display the following acknowledgement: - - This product includes software developed by the NetBSD - Foundation, Inc. and its contributors. - - 4. Neither the name of The NetBSD Foundation nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED - TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to Unicode library files in -``src/lib/krb5/unicode``: - - | Copyright 1997, 1998, 1999 Computing Research Labs, - | New Mexico State University - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY - CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT - OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR - THE USE OR OTHER DEALINGS IN THE SOFTWARE. - -------------------- - -The following notice applies to ``src/util/support/strlcpy.c``: - - Copyright |copy| 1998 Todd C. Miller ``Todd.Miller@courtesan.com`` - - Permission to use, copy, modify, and 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. - -------------------- - -The following notice applies to ``src/util/profile/argv_parse.c`` and -``src/util/profile/argv_parse.h``: - - Copyright 1999 by Theodore Ts'o. - - Permission to use, copy, modify, and 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 THEODORE TS'O (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. (Isn't - it sick that the U.S. culture of lawsuit-happy lawyers requires - this kind of disclaimer?) - -------------------- - -The following notice applies to SWIG-generated code in -``src/util/profile/profile_tcl.c``: - - Copyright |copy| 1999-2000, The University of Chicago - - This file may be freely redistributed without license or fee provided - this copyright message remains intact. - -------------------- - -The following notice applies to portiions of ``src/lib/rpc`` and -``src/include/gssrpc``: - - Copyright |copy| 2000 The Regents of the University of Michigan. - All rights reserved. - - Copyright |copy| 2000 Dug Song ``dugsong@UMICH.EDU``. - All rights reserved, all wrongs reversed. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the University nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - - THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR - BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -Implementations of the MD4 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD4 Message - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD4 Message Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Implementations of the MD5 algorithm are subject to the following -notice: - - Copyright |copy| 1990, RSA Data Security, Inc. All rights reserved. - - License to copy and use this software is granted provided that - it is identified as the "RSA Data Security, Inc. MD5 Message- - Digest Algorithm" in all material mentioning or referencing this - software or this function. - - License is also granted to make and use derivative works - provided that such works are identified as "derived from the RSA - Data Security, Inc. MD5 Message-Digest Algorithm" in all - material mentioning or referencing the derived work. - - RSA Data Security, Inc. makes no representations concerning - either the merchantability of this software or the suitability - of this software for any particular purpose. It is provided "as - is" without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -The following notice applies to ``src/lib/crypto/crypto_tests/t_mddriver.c``: - - Copyright |copy| 1990-2, RSA Data Security, Inc. Created 1990. All - rights reserved. - - RSA Data Security, Inc. makes no representations concerning either - the merchantability of this software or the suitability of this - software for any particular purpose. It is provided "as is" - without express or implied warranty of any kind. - - These notices must be retained in any copies of any part of this - documentation and/or software. - -------------------- - -Portions of ``src/lib/krb5`` are subject to the following notice: - - | Copyright |copy| 1994 CyberSAFE Corporation. - | Copyright 1990,1991,2007,2008 by the Massachusetts - Institute of Technology. - | All Rights Reserved. - - Export of this software from the United States of America may - require a specific license from the United States Government. - It is the responsibility of any person or organization contemplating - export to obtain such a license before exporting. - - WITHIN THAT CONSTRAINT, permission to use, copy, modify, and - distribute this software and its documentation for any purpose and - without fee is hereby granted, provided that the above copyright - notice appear in all copies and that both that copyright notice and - this permission notice appear in supporting documentation, and that - the name of M.I.T. not be used in advertising or publicity pertaining - to distribution of the software without specific, written prior - permission. Furthermore if you modify this software you must label - your software as modified software and not distribute it in such a - fashion that it might be confused with the original M.I.T. software. - Neither M.I.T., the Open Computing Security Group, nor - CyberSAFE Corporation make any representations about the suitability of - this software for any purpose. It is provided "as is" without express - or implied warranty. - -------------------- - -Portions contributed by PADL Software are subject to the following -license: - - Copyright (c) 2011, PADL Software Pty Ltd. - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - - 3. Neither the name of PADL Software nor the names of its contributors - may be used to endorse or promote products derived from this software - without specific prior written permission. - - THIS SOFTWARE IS PROVIDED BY PADL SOFTWARE AND CONTRIBUTORS "AS IS" AND - ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - ARE DISCLAIMED. IN NO EVENT SHALL PADL SOFTWARE OR CONTRIBUTORS BE LIABLE - FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The bundled libev source code is subject to the following license: - - All files in libev are Copyright (C)2007,2008,2009 Marc Alexander Lehmann. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions are - met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Alternatively, the contents of this package may be used under the terms - of the GNU General Public License ("GPL") version 2 or any later version, - in which case the provisions of the GPL are applicable instead of the - above. If you wish to allow the use of your version of this package only - under the terms of the GPL and not to allow others to use your version of - this file under the BSD license, indicate your decision by deleting the - provisions above and replace them with the notice and other provisions - required by the GPL in this and the other files of this package. If you do - not delete the provisions above, a recipient may use your version of this - file under either the BSD or the GPL. - -------------------- - -Files copied from the Intel AESNI Sample Library are subject to the -following license: - - Copyright |copy| 2010, Intel Corporation - All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above - copyright notice, this list of conditions and the following - disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials - provided with the distribution. - * Neither the name of Intel Corporation nor the names of its - contributors may be used to endorse or promote products - derived from this software without specific prior written - permission. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND - CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, - INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS - BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED - TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON - ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR - TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF - THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - -------------------- - -The following notice applies to -``src/ccapi/common/win/OldCC/autolock.hxx``: - - Copyright (C) 1998 by Danilo Almeida. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS - FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE - COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, - INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - OF THE POSSIBILITY OF SUCH DAMAGE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c`` and -``src/plugins/preauth/spake/edwards25519_tables.h``: - -The MIT License (MIT) - -Copyright (c) 2015-2016 the fiat-crypto authors (see the AUTHORS file). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to -deal in the Software without restriction, including without limitation the -rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS -IN THE SOFTWARE. - -------------------- - -The following notice applies to portions of -``src/plugins/preauth/spake/edwards25519.c``: - -Copyright (c) 2015-2016, Google Inc. - -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. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/LIBARCHIVE_LICENSE.txt b/tools/micromamba-win-64/info/recipe/LIBARCHIVE_LICENSE.txt deleted file mode 100644 index f97046e..0000000 --- a/tools/micromamba-win-64/info/recipe/LIBARCHIVE_LICENSE.txt +++ /dev/null @@ -1,66 +0,0 @@ -The libarchive distribution as a whole is Copyright by Tim Kientzle -and is subject to the copyright notice reproduced at the bottom of -this file. - -Each individual file in this distribution should have a clear -copyright/licensing statement at the beginning of the file. If any do -not, please let me know and I will rectify it. The following is -intended to summarize the copyright status of the individual files; -the actual statements in the files are controlling. - -* Except as listed below, all C sources (including .c and .h files) - and documentation files are subject to the copyright notice reproduced - at the bottom of this file. - -* The following source files are also subject in whole or in part to - a 3-clause UC Regents copyright; please read the individual source - files for details: - libarchive/archive_entry.c - libarchive/archive_read_support_filter_compress.c - libarchive/archive_write_add_filter_compress.c - libarchive/mtree.5 - -* The following source files are in the public domain: - libarchive/archive_getdate.c - -* The following source files are triple-licensed with the ability to choose - from CC0 1.0 Universal, OpenSSL or Apache 2.0 licenses: - libarchive/archive_blake2.h - libarchive/archive_blake2_impl.h - libarchive/archive_blake2s_ref.c - libarchive/archive_blake2sp_ref.c - -* The build files---including Makefiles, configure scripts, - and auxiliary scripts used as part of the compile process---have - widely varying licensing terms. Please check individual files before - distributing them to see if those restrictions apply to you. - -I intend for all new source code to use the license below and hope over -time to replace code with other licenses with new implementations that -do use the license below. The varying licensing of the build scripts -seems to be an unavoidable mess. - - -Copyright (c) 2003-2018 -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer - in this position and unchanged. -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES -OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. -IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT -NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/LIBEV_LICENSE.txt b/tools/micromamba-win-64/info/recipe/LIBEV_LICENSE.txt deleted file mode 100644 index c2315da..0000000 --- a/tools/micromamba-win-64/info/recipe/LIBEV_LICENSE.txt +++ /dev/null @@ -1,37 +0,0 @@ -All files in libev are -Copyright (c)2007,2008,2009,2010,2011,2012,2013 Marc Alexander Lehmann. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Alternatively, the contents of this package may be used under the terms -of the GNU General Public License ("GPL") version 2 or any later version, -in which case the provisions of the GPL are applicable instead of the -above. If you wish to allow the use of your version of this package only -under the terms of the GPL and not to allow others to use your version of -this file under the BSD license, indicate your decision by deleting the -provisions above and replace them with the notice and other provisions -required by the GPL in this and the other files of this package. If you do -not delete the provisions above, a recipient may use your version of this -file under either the BSD or the GPL. diff --git a/tools/micromamba-win-64/info/recipe/LIBLZ4_LICENSE.txt b/tools/micromamba-win-64/info/recipe/LIBLZ4_LICENSE.txt deleted file mode 100644 index c5d3730..0000000 --- a/tools/micromamba-win-64/info/recipe/LIBLZ4_LICENSE.txt +++ /dev/null @@ -1,24 +0,0 @@ -LZ4 Library -Copyright (c) 2011-2016, Yann Collet -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above copyright notice, this - list of conditions and the following disclaimer in the documentation and/or - other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-win-64/info/recipe/LIBNGHTTP2_LICENSE.txt b/tools/micromamba-win-64/info/recipe/LIBNGHTTP2_LICENSE.txt deleted file mode 100644 index ac51ce3..0000000 --- a/tools/micromamba-win-64/info/recipe/LIBNGHTTP2_LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -The MIT License - -Copyright (c) 2012, 2014, 2015, 2016 Tatsuhiro Tsujikawa -Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/micromamba-win-64/info/recipe/LIBOPENSSL_3_LICENSE.txt b/tools/micromamba-win-64/info/recipe/LIBOPENSSL_3_LICENSE.txt deleted file mode 100644 index 0247e14..0000000 --- a/tools/micromamba-win-64/info/recipe/LIBOPENSSL_3_LICENSE.txt +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - https://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/LIBOPENSSL_LICENSE.txt b/tools/micromamba-win-64/info/recipe/LIBOPENSSL_LICENSE.txt deleted file mode 100644 index 9b7264d..0000000 --- a/tools/micromamba-win-64/info/recipe/LIBOPENSSL_LICENSE.txt +++ /dev/null @@ -1,125 +0,0 @@ - - LICENSE ISSUES - ============== - - The OpenSSL toolkit stays under a double license, i.e. both the conditions of - the OpenSSL License and the original SSLeay license apply to the toolkit. - See below for the actual license texts. - - OpenSSL License - --------------- - -/* ==================================================================== - * Copyright (c) 1998-2019 The OpenSSL Project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. All advertising materials mentioning features or use of this - * software must display the following acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" - * - * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to - * endorse or promote products derived from this software without - * prior written permission. For written permission, please contact - * openssl-core@openssl.org. - * - * 5. Products derived from this software may not be called "OpenSSL" - * nor may "OpenSSL" appear in their names without prior written - * permission of the OpenSSL Project. - * - * 6. Redistributions of any form whatsoever must retain the following - * acknowledgment: - * "This product includes software developed by the OpenSSL Project - * for use in the OpenSSL Toolkit (http://www.openssl.org/)" - * - * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY - * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR - * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT - * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, - * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED - * OF THE POSSIBILITY OF SUCH DAMAGE. - * ==================================================================== - * - * This product includes cryptographic software written by Eric Young - * (eay@cryptsoft.com). This product includes software written by Tim - * Hudson (tjh@cryptsoft.com). - * - */ - - Original SSLeay License - ----------------------- - -/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) - * All rights reserved. - * - * This package is an SSL implementation written - * by Eric Young (eay@cryptsoft.com). - * The implementation was written so as to conform with Netscapes SSL. - * - * This library is free for commercial and non-commercial use as long as - * the following conditions are aheared to. The following conditions - * apply to all code found in this distribution, be it the RC4, RSA, - * lhash, DES, etc., code; not just the SSL code. The SSL documentation - * included with this distribution is covered by the same copyright terms - * except that the holder is Tim Hudson (tjh@cryptsoft.com). - * - * Copyright remains Eric Young's, and as such any Copyright notices in - * the code are not to be removed. - * If this package is used in a product, Eric Young should be given attribution - * as the author of the parts of the library used. - * This can be in the form of a textual message at program startup or - * in documentation (online or textual) provided with the package. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. All advertising materials mentioning features or use of this software - * must display the following acknowledgement: - * "This product includes cryptographic software written by - * Eric Young (eay@cryptsoft.com)" - * The word 'cryptographic' can be left out if the rouines from the library - * being used are not cryptographic related :-). - * 4. If you include any Windows specific code (or a derivative thereof) from - * the apps directory (application code) you must include an acknowledgement: - * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" - * - * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND - * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE - * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL - * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS - * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) - * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT - * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY - * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * - * The licence and distribution terms for any publically available version or - * derivative of this code cannot be changed. i.e. this code cannot simply be - * copied and put under another distribution licence - * [including the GNU Public Licence.] - */ - diff --git a/tools/micromamba-win-64/info/recipe/LIBSOLV_LICENSE.txt b/tools/micromamba-win-64/info/recipe/LIBSOLV_LICENSE.txt deleted file mode 100644 index 84e2ee7..0000000 --- a/tools/micromamba-win-64/info/recipe/LIBSOLV_LICENSE.txt +++ /dev/null @@ -1,28 +0,0 @@ -Copyright (c) 2019, SUSE LLC - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions -are met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name of Novell nor the names of its contributors may - be used to endorse or promote products derived from this software - without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR -IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, -INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) -HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, -STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING -IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE -POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/NLOHMANN_JSON_LICENSE.txt b/tools/micromamba-win-64/info/recipe/NLOHMANN_JSON_LICENSE.txt deleted file mode 100644 index e24aa21..0000000 --- a/tools/micromamba-win-64/info/recipe/NLOHMANN_JSON_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2013-2020 Niels Lohmann - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-win-64/info/recipe/REPROC_LICENSE.txt b/tools/micromamba-win-64/info/recipe/REPROC_LICENSE.txt deleted file mode 100644 index 2e99a2f..0000000 --- a/tools/micromamba-win-64/info/recipe/REPROC_LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) Daan De Meyer - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/tools/micromamba-win-64/info/recipe/SPDLOG_LICENSE.txt b/tools/micromamba-win-64/info/recipe/SPDLOG_LICENSE.txt deleted file mode 100644 index 49f3355..0000000 --- a/tools/micromamba-win-64/info/recipe/SPDLOG_LICENSE.txt +++ /dev/null @@ -1,25 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2016 Gabi Melman. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - --- NOTE: Third party dependency used by this software -- -This software depends on the fmt lib (MIT License), -and users must comply to its license: https://github.com/fmtlib/fmt/blob/master/LICENSE.rst diff --git a/tools/micromamba-win-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt b/tools/micromamba-win-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt deleted file mode 100644 index d16bc14..0000000 --- a/tools/micromamba-win-64/info/recipe/TERMCOLOR_CPP_LICENSE.txt +++ /dev/null @@ -1,31 +0,0 @@ -Copyright (c) 2013, Ihor Kalnytskyi. -All rights reserved. - -Redistribution and use in source and binary forms of the software as well -as documentation, with or without modification, are permitted provided -that the following conditions are met: - -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -* Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - -* The names of the contributors may not be used to endorse or - promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND -CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT -NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER -OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/TL_EXPECTED_LICENSE.txt b/tools/micromamba-win-64/info/recipe/TL_EXPECTED_LICENSE.txt deleted file mode 100644 index a471520..0000000 --- a/tools/micromamba-win-64/info/recipe/TL_EXPECTED_LICENSE.txt +++ /dev/null @@ -1,121 +0,0 @@ -Creative Commons Legal Code - -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS - INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES - REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS - PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM - THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED - HEREUNDER. - -Statement of Purpose - -The laws of most jurisdictions throughout the world automatically confer -exclusive Copyright and Related Rights (defined below) upon the creator -and subsequent owner(s) (each and all, an "owner") of an original work of -authorship and/or a database (each, a "Work"). - -Certain owners wish to permanently relinquish those rights to a Work for -the purpose of contributing to a commons of creative, cultural and -scientific works ("Commons") that the public can reliably and without fear -of later claims of infringement build upon, modify, incorporate in other -works, reuse and redistribute as freely as possible in any form whatsoever -and for any purposes, including without limitation commercial purposes. -These owners may contribute to the Commons to promote the ideal of a free -culture and the further production of creative, cultural and scientific -works, or to gain reputation or greater distribution for their Work in -part through the use and efforts of others. - -For these and/or other purposes and motivations, and without any -expectation of additional consideration or compensation, the person -associating CC0 with a Work (the "Affirmer"), to the extent that he or she -is an owner of Copyright and Related Rights in the Work, voluntarily -elects to apply CC0 to the Work and publicly distribute the Work under its -terms, with knowledge of his or her Copyright and Related Rights in the -Work and the meaning and intended legal effect of CC0 on those rights. - -1. Copyright and Related Rights. A Work made available under CC0 may be -protected by copyright and related or neighboring rights ("Copyright and -Related Rights"). Copyright and Related Rights include, but are not -limited to, the following: - - i. the right to reproduce, adapt, distribute, perform, display, - communicate, and translate a Work; - ii. moral rights retained by the original author(s) and/or performer(s); -iii. publicity and privacy rights pertaining to a person's image or - likeness depicted in a Work; - iv. rights protecting against unfair competition in regards to a Work, - subject to the limitations in paragraph 4(a), below; - v. rights protecting the extraction, dissemination, use and reuse of data - in a Work; - vi. database rights (such as those arising under Directive 96/9/EC of the - European Parliament and of the Council of 11 March 1996 on the legal - protection of databases, and under any national implementation - thereof, including any amended or successor version of such - directive); and -vii. other similar, equivalent or corresponding rights throughout the - world based on applicable law or treaty, and any national - implementations thereof. - -2. Waiver. To the greatest extent permitted by, but not in contravention -of, applicable law, Affirmer hereby overtly, fully, permanently, -irrevocably and unconditionally waives, abandons, and surrenders all of -Affirmer's Copyright and Related Rights and associated claims and causes -of action, whether now known or unknown (including existing as well as -future claims and causes of action), in the Work (i) in all territories -worldwide, (ii) for the maximum duration provided by applicable law or -treaty (including future time extensions), (iii) in any current or future -medium and for any number of copies, and (iv) for any purpose whatsoever, -including without limitation commercial, advertising or promotional -purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each -member of the public at large and to the detriment of Affirmer's heirs and -successors, fully intending that such Waiver shall not be subject to -revocation, rescission, cancellation, termination, or any other legal or -equitable action to disrupt the quiet enjoyment of the Work by the public -as contemplated by Affirmer's express Statement of Purpose. - -3. Public License Fallback. Should any part of the Waiver for any reason -be judged legally invalid or ineffective under applicable law, then the -Waiver shall be preserved to the maximum extent permitted taking into -account Affirmer's express Statement of Purpose. In addition, to the -extent the Waiver is so judged Affirmer hereby grants to each affected -person a royalty-free, non transferable, non sublicensable, non exclusive, -irrevocable and unconditional license to exercise Affirmer's Copyright and -Related Rights in the Work (i) in all territories worldwide, (ii) for the -maximum duration provided by applicable law or treaty (including future -time extensions), (iii) in any current or future medium and for any number -of copies, and (iv) for any purpose whatsoever, including without -limitation commercial, advertising or promotional purposes (the -"License"). The License shall be deemed effective as of the date CC0 was -applied by Affirmer to the Work. Should any part of the License for any -reason be judged legally invalid or ineffective under applicable law, such -partial invalidity or ineffectiveness shall not invalidate the remainder -of the License, and in such case Affirmer hereby affirms that he or she -will not (i) exercise any of his or her remaining Copyright and Related -Rights in the Work or (ii) assert any associated claims and causes of -action with respect to the Work, in either case contrary to Affirmer's -express Statement of Purpose. - -4. Limitations and Disclaimers. - - a. No trademark or patent rights held by Affirmer are waived, abandoned, - surrendered, licensed or otherwise affected by this document. - b. Affirmer offers the Work as-is and makes no representations or - warranties of any kind concerning the Work, express, implied, - statutory or otherwise, including without limitation warranties of - title, merchantability, fitness for a particular purpose, non - infringement, or the absence of latent or other defects, accuracy, or - the present or absence of errors, whether or not discoverable, all to - the greatest extent permissible under applicable law. - c. Affirmer disclaims responsibility for clearing rights of other persons - that may apply to the Work or any use thereof, including without - limitation any person's Copyright and Related Rights in the Work. - Further, Affirmer disclaims responsibility for obtaining any necessary - consents, permissions or other rights required for any use of the - Work. - d. Affirmer understands and acknowledges that Creative Commons is not a - party to this document and has no duty or obligation with respect to - this CC0 or use of the Work. \ No newline at end of file diff --git a/tools/micromamba-win-64/info/recipe/ZSTD_LICENSE.txt b/tools/micromamba-win-64/info/recipe/ZSTD_LICENSE.txt deleted file mode 100644 index bf2acba..0000000 --- a/tools/micromamba-win-64/info/recipe/ZSTD_LICENSE.txt +++ /dev/null @@ -1,30 +0,0 @@ -BSD License - -For Zstandard software - -Copyright (c) 2016-present, Facebook, Inc. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, this - list of conditions and the following disclaimer. - - * Redistributions in binary form must reproduce the above copyright notice, - this list of conditions and the following disclaimer in the documentation - and/or other materials provided with the distribution. - - * Neither the name Facebook nor the names of its contributors may be used to - endorse or promote products derived from this software without specific - prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED -WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE -DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON -ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/micromamba-win-64/info/recipe/bld.bat b/tools/micromamba-win-64/info/recipe/bld.bat deleted file mode 100755 index 6a91569..0000000 --- a/tools/micromamba-win-64/info/recipe/bld.bat +++ /dev/null @@ -1,41 +0,0 @@ -SET VCPKG_ROOT=%CD%\vcpkg - -SET VCPKG_BUILD_TYPE=release -vcpkg install --overlay-ports=%RECIPE_DIR%\libsolv libsolv[conda] --triplet x64-windows-static - -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install "libarchive[bzip2,lz4,lzma,lzo,openssl,zstd]" --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install curl --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install yaml-cpp --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% -vcpkg install reproc --triplet x64-windows-static -if %errorlevel% NEQ 0 exit /b %errorlevel% - -SET "CXXFLAGS=%CXXFLAGS% /showIncludes" -SET CMAKE_PREFIX_PATH=%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH% - -cmake -S mamba ^ - -B build ^ - -D CMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^ - -D CMAKE_PREFIX_PATH="%VCPKG_ROOT%\installed\x64-windows-static\;%CMAKE_PREFIX_PATH%" ^ - -D CMAKE_BUILD_TYPE="Release" ^ - -D BUILD_LIBMAMBA=ON ^ - -D BUILD_STATIC=ON ^ - -D BUILD_MICROMAMBA=ON ^ - -G "Ninja" -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --build build --parallel %CPU_COUNT% -if %errorlevel% NEQ 0 exit /b %errorlevel% - -cmake --install build -if %errorlevel% NEQ 0 exit /b %errorlevel% - -DEL /Q /F /S "%LIBRARY_PREFIX%\lib\libmamba*" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\include\mamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% -RMDIR /S /Q "%LIBRARY_PREFIX%\lib\cmake\libmamba" -if %errorlevel% NEQ 0 exit /b %errorlevel% diff --git a/tools/micromamba-win-64/info/recipe/build.sh b/tools/micromamba-win-64/info/recipe/build.sh deleted file mode 100644 index 15cc563..0000000 --- a/tools/micromamba-win-64/info/recipe/build.sh +++ /dev/null @@ -1,35 +0,0 @@ -set -euxo pipefail - -# Conda's binary relocation can result in string changing which can result in errors like -# > warning: command substitution: ignored null byte in input -# https://github.com/mamba-org/mamba/issues/1517 -export CXXFLAGS="${CXXFLAGS} -fno-merge-constants" -export CFLAGS="${CFLAGS} -fno-merge-constants" -export CXXFLAGS="${CXXFLAGS} -D_LIBCPP_DISABLE_AVAILABILITY=1" - -cmake -S mamba/ \ - -B build/ \ - -G Ninja \ - ${CMAKE_ARGS} \ - -D CMAKE_INSTALL_PREFIX=${PREFIX} \ - -D CMAKE_BUILD_TYPE="Release" \ - -D BUILD_LIBMAMBA=ON \ - -D BUILD_STATIC=ON \ - -D BUILD_MICROMAMBA=ON -cmake --build build/ --parallel ${CPU_COUNT} -cmake --install build/ - -# remove everything related to `libmamba` -rm -rf "${PREFIX}/lib/libmamba"* -rm -rf "${PREFIX}/include/mamba" -rm -rf "${PREFIX}/lib/cmake/libmamba" - -"${STRIP:-strip}" "${PREFIX}/bin/micromamba" - -if [[ "$target_platform" == "osx-"* ]]; then - OTOOL_OUTPUT=$("${OTOOL:-otool}" -L "${PREFIX}/bin/micromamba") - if [[ "$OTOOL_OUTPUT" == *libc++.1.dylib* ]]; then - echo "micromamba is linked to libc++.1.dlyb" - exit 1 - fi -fi diff --git a/tools/micromamba-win-64/info/recipe/conda_build_config.yaml b/tools/micromamba-win-64/info/recipe/conda_build_config.yaml deleted file mode 100644 index d91dae8..0000000 --- a/tools/micromamba-win-64/info/recipe/conda_build_config.yaml +++ /dev/null @@ -1,33 +0,0 @@ -CI: azure -c_compiler: vs2019 -channel_sources: conda-forge -channel_targets: conda-forge main -cpu_optimization_target: nocona -cran_mirror: https://cran.r-project.org -cxx_compiler: vs2019 -extend_keys: -- ignore_build_only_deps -- ignore_version -- extend_keys -- pin_run_as_build -fmt: '10' -fortran_compiler: gfortran -ignore_build_only_deps: -- python -- numpy -lua: '5' -numpy: '1.22' -perl: 5.26.2 -pin_run_as_build: - python: - min_pin: x.x - max_pin: x.x - r-base: - min_pin: x.x - max_pin: x.x -python: '3.10' -r_base: '3.4' -spdlog: '1.12' -target_platform: win-64 -vc: '14' -zlib: '1.2' diff --git a/tools/micromamba-win-64/info/recipe/libsolv/CONTROL b/tools/micromamba-win-64/info/recipe/libsolv/CONTROL deleted file mode 100644 index 4573227..0000000 --- a/tools/micromamba-win-64/info/recipe/libsolv/CONTROL +++ /dev/null @@ -1,9 +0,0 @@ -Source: libsolv -Version: 0.7.23 -Description: Library for solving packages and reading repositories -Homepage: https://github.com/openSUSE/libsolv -Default-Features: conda -Supports: !uwp - -Feature: conda -Description: Conda support diff --git a/tools/micromamba-win-64/info/recipe/libsolv/conda_variant_priorization.patch b/tools/micromamba-win-64/info/recipe/libsolv/conda_variant_priorization.patch deleted file mode 100644 index cd1edd6..0000000 --- a/tools/micromamba-win-64/info/recipe/libsolv/conda_variant_priorization.patch +++ /dev/null @@ -1,438 +0,0 @@ -diff --git a/src/conda.c b/src/conda.c -index 21ad6bfb..408a236a 100644 ---- a/src/conda.c -+++ b/src/conda.c -@@ -134,7 +134,7 @@ solv_vercmp_conda(const char *s1, const char *q1, const char *s2, const char *q2 - return -1; - if (s1p - s1 > s2p - s2) - return 1; -- r = s1p - s1 ? strncmp(s1, s2, s1p - s1) : 0; -+ r = (s1p - s1) ? strncmp(s1, s2, s1p - s1) : 0; - if (r) - return r; - } -diff --git a/src/policy.c b/src/policy.c -index c02d2373..d6354cd2 100644 ---- a/src/policy.c -+++ b/src/policy.c -@@ -833,6 +833,79 @@ move_installed_to_front(Pool *pool, Queue *plist) - } - } - -+/* -+ * prune_to_best_version -+ * -+ * sort list of packages (given through plist) by name and evr -+ * return result through plist -+ */ -+void -+prune_to_best_version(Pool *pool, Queue *plist) -+{ -+#ifdef ENABLE_CONDA -+ if (pool->disttype == DISTTYPE_CONDA) -+ return prune_to_best_version_conda(pool, plist); -+#endif -+ -+ int i, j, r; -+ Solvable *s, *best; -+ -+ if (plist->count < 2) /* no need to prune for a single entry */ -+ return; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ -+ /* sort by name first, prefer installed */ -+ solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -+ -+ /* now find best 'per name' */ -+ best = 0; -+ for (i = j = 0; i < plist->count; i++) -+ { -+ s = pool->solvables + plist->elements[i]; -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ -+ if (!best) /* if no best yet, the current is best */ -+ { -+ best = s; -+ continue; -+ } -+ -+ /* name switch: finish group, re-init */ -+ if (best->name != s->name) /* new name */ -+ { -+ plist->elements[j++] = best - pool->solvables; /* move old best to front */ -+ best = s; /* take current as new best */ -+ continue; -+ } -+ -+ r = 0; -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+#ifdef ENABLE_LINKED_PKGS -+ if (r == 0 && has_package_link(pool, s)) -+ r = pool_link_evrcmp(pool, best, s); -+#endif -+ if (r < 0) -+ best = s; -+ } -+ -+ plist->elements[j++] = best - pool->solvables; /* finish last group */ -+ plist->count = j; -+ -+ /* we reduced the list to one package per name, now look at -+ * package obsoletes */ -+ if (plist->count > 1) -+ { -+ if (plist->count == 2) -+ prune_obsoleted_2(pool, plist); -+ else -+ prune_obsoleted(pool, plist); -+ } -+} -+ - #ifdef ENABLE_CONDA - static int - pool_featurecountcmp(Pool *pool, Solvable *s1, Solvable *s2) -@@ -863,23 +936,221 @@ pool_buildflavorcmp(Pool *pool, Solvable *s1, Solvable *s2) - return 0; - return pool_evrcmp_str(pool, f1 ? f1 : "" , f2 ? f2 : "", EVRCMP_COMPARE); - } --#endif -+ -+void intersect_selection(Pool* pool, Id dep, Queue* prev) -+{ -+ Queue tmp; -+ int i = 0, j = 0, isectidx = 0; -+ -+ queue_init(&tmp); -+ -+ Id* pp, p; -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&tmp, p); -+ -+ // set intersection, assuming sorted arrays -+ while (i < prev->count && j < tmp.count) -+ if (prev->elements[i] < tmp.elements[j]) -+ i++; -+ else if (tmp.elements[j] < prev->elements[i]) -+ j++; -+ else -+ { -+ if (isectidx != i) -+ prev->elements[isectidx] = prev->elements[i]; -+ i++, j++, isectidx++; -+ } -+ -+ prev->count = isectidx; -+ queue_free(&tmp); -+} -+ -+int check_deps_unequal(Pool* pool, Queue* q1, Queue* q2, Id name) -+{ -+ Id dep; -+ int i, j; -+ int found = 0; -+ for (i = 0; i < q1->count; ++i) -+ { -+ dep = q1->elements[i]; -+ if (ISRELDEP(dep) && GETRELDEP(pool, dep)->name == name) -+ { -+ for (j = 0; j < q2->count; ++j) -+ { -+ if (q2->elements[j] == dep) -+ { -+ found = 1; -+ break; -+ } -+ } -+ if (!found) -+ return 1; -+ -+ found = 0; -+ } -+ } -+ return 0; -+} -+ -+Id best_matching(Pool* pool, Queue* q, Id name, int* all_have_trackfeatures) -+{ -+ int first = 1; -+ Id dep, p, *pp; -+ -+ Queue selection; -+ queue_init(&selection); -+ -+ for (int i = 0; i < q->count; ++i) -+ { -+ dep = q->elements[i]; -+ if (!ISRELDEP(dep) || GETRELDEP(pool, dep)->name != name) continue; -+ -+ if (first) -+ { -+ pp = pool_whatprovides_ptr(pool, dep); -+ while ((p = *pp++) != 0) -+ queue_push(&selection, p); -+ first = 0; -+ } -+ else -+ intersect_selection(pool, dep, &selection); -+ } -+ -+ if (selection.count == 0) -+ return 0; -+ -+ Solvable *stmp, *best = pool_id2solvable(pool, selection.elements[0]); -+ int cmp; -+ -+ *all_have_trackfeatures = 1; -+ for (int i = 0; i < selection.count; ++i) -+ if (solvable_lookup_count(pool_id2solvable(pool, selection.elements[i]), -+ SOLVABLE_TRACK_FEATURES) == 0) -+ { -+ *all_have_trackfeatures = 0; -+ break; -+ } -+ -+ for (int i = 0; i < selection.count; ++i) -+ { -+ stmp = pool_id2solvable(pool, selection.elements[i]); -+ cmp = pool_evrcmp(pool, best->evr, stmp->evr, 0); -+ if (cmp < 0) best = stmp; -+ } -+ -+ return best->evr; -+} -+ -+int conda_compare_dependencies(Pool *pool, Solvable *s1, Solvable *s2) -+{ -+ int i, j, has_seen; -+ Queue q1, q2, seen; -+ -+ queue_init(&q1); -+ queue_init(&q2); -+ queue_init(&seen); -+ -+ solvable_lookup_deparray(s1, SOLVABLE_REQUIRES, &q1, -1); -+ solvable_lookup_deparray(s2, SOLVABLE_REQUIRES, &q2, -1); -+ -+ int comparison_result = 0; -+ -+ for (i = 0; i < q1.count; ++i) -+ { -+ Id x1 = q1.elements[i]; -+ has_seen = 0; -+ -+ if (!ISRELDEP(x1)) -+ continue; -+ -+ Reldep* rd1 = GETRELDEP(pool, x1); -+ for (j = 0; j < seen.count && has_seen == 0; ++j) -+ if (seen.elements[j] == rd1->name) -+ has_seen = 1; -+ -+ if (has_seen) -+ continue; -+ -+ // first make sure that deps are different between a & b -+ int deps_unequal = check_deps_unequal(pool, &q1, &q2, rd1->name); -+ if (!deps_unequal) -+ { -+ queue_push(&seen, rd1->name); -+ continue; -+ } -+ -+ int aht_1, aht_2; // all have track features check -+ Id b1 = best_matching(pool, &q1, rd1->name, &aht_1); -+ Id b2 = best_matching(pool, &q2, rd1->name, &aht_2); -+ -+ // one of both or both is not solvable... -+ // ignoring this case for now -+ if (b1 == 0 || b2 == 0) -+ continue; -+ -+ // if one has deps with track features, and the other does not, -+ // downweight the one with track features -+ if (aht_1 != aht_2) -+ comparison_result += (aht_1 - aht_2) * 100; -+ -+ comparison_result += pool_evrcmp(pool, b2, b1, 0); -+ } -+ -+ queue_free(&q1); -+ queue_free(&q2); -+ queue_free(&seen); -+ -+ return comparison_result; -+} -+ -+static int -+sort_by_best_dependencies(const void *ap, const void *bp, void *dp) -+{ -+ Pool* pool = (Pool*) dp; -+ -+ Id a = *(Id *)ap; -+ Id b = *(Id *)bp; -+ Solvable *sa, *sb; -+ -+ sa = pool->solvables + a; -+ sb = pool->solvables + b; -+ -+ int res = conda_compare_dependencies(pool, sa, sb); -+ if (res == 0) -+ { -+ // no differences, select later build -+ Repodata* ra = repo_last_repodata(sa->repo); -+ Repodata* rb = repo_last_repodata(sb->repo); -+ -+ unsigned long long bta = repodata_lookup_num(ra, a, SOLVABLE_BUILDTIME, 0ull); -+ unsigned long long btb = repodata_lookup_num(rb, b, SOLVABLE_BUILDTIME, 0ull); -+ -+ res = (btb > bta) ? 1 : -1; -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Fallback to timestamp comparison: %llu vs %llu: [%d]\n", bta, btb, res); -+ } -+ -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "Selecting variant [%c] of (a) %s vs (b) %s (score: %d)\n", -+ (res < 0 ? 'a' : 'b'), pool_solvable2str(pool, sa), pool_solvable2str(pool, sb), res); -+ -+ return res; -+} - - /* -- * prune_to_best_version -+ * prune_to_best_version_conda - * - * sort list of packages (given through plist) by name and evr - * return result through plist - */ - void --prune_to_best_version(Pool *pool, Queue *plist) -+prune_to_best_version_conda(Pool *pool, Queue *plist) - { - int i, j, r; - Solvable *s, *best; - -- if (plist->count < 2) /* no need to prune for a single entry */ -+ if (plist->count < 2) /* no need to prune for a single entry */ - return; -- POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count); -+ POOL_DEBUG(SOLV_DEBUG_POLICY, "prune_to_best_version_conda %d\n", plist->count); - - /* sort by name first, prefer installed */ - solv_sort(plist->elements, plist->count, sizeof(Id), prune_to_best_version_sortcmp, pool); -@@ -891,10 +1162,10 @@ prune_to_best_version(Pool *pool, Queue *plist) - s = pool->solvables + plist->elements[i]; - - POOL_DEBUG(SOLV_DEBUG_POLICY, "- %s [%d]%s\n", -- pool_solvable2str(pool, s), plist->elements[i], -- (pool->installed && s->repo == pool->installed) ? "I" : ""); -+ pool_solvable2str(pool, s), plist->elements[i], -+ (pool->installed && s->repo == pool->installed) ? "I" : ""); - -- if (!best) /* if no best yet, the current is best */ -+ if (!best) /* if no best yet, the current is best */ - { - best = s; - continue; -@@ -904,49 +1175,54 @@ prune_to_best_version(Pool *pool, Queue *plist) - if (best->name != s->name) /* new name */ - { - plist->elements[j++] = best - pool->solvables; /* move old best to front */ -- best = s; /* take current as new best */ -+ best = s; /* take current as new best */ - continue; - } - - r = 0; --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- r = pool_featurecountcmp(pool, best, s); --#endif -+ r = pool_featurecountcmp(pool, best, s); - if (r == 0) - r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; --#ifdef ENABLE_LINKED_PKGS -- if (r == 0 && has_package_link(pool, s)) -- r = pool_link_evrcmp(pool, best, s); --#endif --#ifdef ENABLE_CONDA -- if (pool->disttype == DISTTYPE_CONDA) -- { -- if (r == 0) -- r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -- if (r == 0) -- r = pool_buildversioncmp(pool, best, s); -- if (r == 0) -- r = pool_buildflavorcmp(pool, best, s); -- } --#endif -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ // this can be removed as this comparison doesn't effect anything -+ if (r == 0) -+ r = pool_buildflavorcmp(pool, best, s); - if (r < 0) -- best = s; -+ best = s; - } -- plist->elements[j++] = best - pool->solvables; /* finish last group */ -- plist->count = j; - -- /* we reduced the list to one package per name, now look at -- * package obsoletes */ -- if (plist->count > 1) -+ Queue q; -+ queue_init(&q); -+ for (i = 0; i < plist->count; i++) - { -- if (plist->count == 2) -- prune_obsoleted_2(pool, plist); -- else -- prune_obsoleted(pool, plist); -+ s = pool->solvables + plist->elements[i]; -+ r = pool_featurecountcmp(pool, best, s); -+ if (r == 0) -+ r = best->evr != s->evr ? pool_evrcmp(pool, best->evr, s->evr, EVRCMP_COMPARE) : 0; -+ if (r == 0) -+ r = (best->repo ? best->repo->subpriority : 0) - (s->repo ? s->repo->subpriority : 0); -+ if (r == 0) -+ r = pool_buildversioncmp(pool, best, s); -+ if (r == 0) -+ queue_push(&q, s - pool->solvables); - } --} - -+ if (q.count > 1) -+ { -+ // order by first-level deps -+ solv_sort(q.elements, q.count, sizeof(Id), sort_by_best_dependencies, pool); -+ } -+ -+ for (i = 0; i < q.count; ++i) -+ plist->elements[i] = q.elements[i]; -+ plist->count = q.count; -+ -+ queue_free(&q); -+} -+#endif // ENABLE_CONDA - - static int - sort_by_name_evr_sortcmp(const void *ap, const void *bp, void *dp) -diff --git a/src/policy.h b/src/policy.h -index 3ae1005a..a79483a4 100644 ---- a/src/policy.h -+++ b/src/policy.h -@@ -45,6 +45,9 @@ extern void pool_best_solvables(Pool *pool, Queue *plist, int flags); - extern void prune_to_best_version(Pool *pool, Queue *plist); - extern void policy_prefer_favored(Solver *solv, Queue *plist); - -+#ifdef ENABLE_CONDA -+extern void prune_to_best_version_conda(Pool *pool, Queue *plist); -+#endif - - #ifdef __cplusplus - } diff --git a/tools/micromamba-win-64/info/recipe/libsolv/portfile.cmake b/tools/micromamba-win-64/info/recipe/libsolv/portfile.cmake deleted file mode 100644 index 985caba..0000000 --- a/tools/micromamba-win-64/info/recipe/libsolv/portfile.cmake +++ /dev/null @@ -1,55 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO openSUSE/libsolv - REF 0.7.24 - SHA512 a0975d3f80ae8c364d5b32df4c26bc7eb5abb3be81259595848f1f5f74b00e708af3153074041d49383547718e68cee2e82cf4bdeab6221dfdcc605812689d37 - HEAD_REF master - PATCHES - win_export_and_static_build.patch - conda_variant_priorization.patch -) - -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "dynamic" BUILD_DYNAMIC_LIBS) -string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC_LIBS) - -if (NOT BUILD_DYNAMIC_LIBS) - set(DISABLE_SHARED ON) -else() - set(DISABLE_SHARED OFF) -endif() - -vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - conda ENABLE_CONDA -) - -if(WIN32) - list(APPEND FEATURE_OPTIONS "-DWITHOUT_COOKIEOPEN=ON") -endif() - -vcpkg_configure_cmake( - SOURCE_PATH ${SOURCE_PATH} - PREFER_NINJA - OPTIONS - ${FEATURE_OPTIONS} - -DDISABLE_SHARED=${DISABLE_SHARED} - -DENABLE_STATIC=${BUILD_STATIC_LIBS} - -DMULTI_SEMANTICS=ON - -DBUILD_EXAMPLE_PROGRAMS=OFF - .. -) - - -vcpkg_install_cmake() -# vcpkg_fixup_cmake_targets() -# vcpkg_copy_pdbs() - -if(VCPKG_LIBRARY_LINKAGE STREQUAL "static") - file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") -endif() - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -file(INSTALL ${SOURCE_PATH}/LICENSE.BSD DESTINATION ${CURRENT_PACKAGES_DIR}/share/libsolv RENAME copyright) - -vcpkg_test_cmake(PACKAGE_NAME libsolv) diff --git a/tools/micromamba-win-64/info/recipe/libsolv/win_export_and_static_build.patch b/tools/micromamba-win-64/info/recipe/libsolv/win_export_and_static_build.patch deleted file mode 100644 index 796077e..0000000 --- a/tools/micromamba-win-64/info/recipe/libsolv/win_export_and_static_build.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/repo_write.c b/src/repo_write.c -index a73eebff..9e0622e3 100644 ---- a/src/repo_write.c -+++ b/src/repo_write.c -@@ -188,7 +188,7 @@ write_compressed_blob(Repodata *data, void *blob, int len) - write_u8(data, clen); - write_blob(data, cpage, clen); - } -- blob += chunk; -+ blob = (char*) blob + chunk; - len -= chunk; - } - } diff --git a/tools/micromamba-win-64/info/recipe/meta.yaml b/tools/micromamba-win-64/info/recipe/meta.yaml deleted file mode 100644 index c3b89ec..0000000 --- a/tools/micromamba-win-64/info/recipe/meta.yaml +++ /dev/null @@ -1,110 +0,0 @@ -# This file created by conda-build 3.25.0 -# meta.yaml template originally from: -# D:\a\1\s\recipe, last modified Fri Aug 25 08:19:19 2023 -# ------------------------------------------------ - -package: - name: micromamba - version: 1.5.0 -source: - - folder: mamba - sha256: 0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17 - url: https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-1.5.0.tar.gz - - folder: vcpkg - sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 - url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz -build: - ignore_run_exports_from: - - fmt - - python - - spdlog - number: '1' - string: '1' -requirements: - build: - - 7zip 19.00 h2d74725_2 - - bzip2 1.0.8 h8ffe710_4 - - ca-certificates 2023.7.22 h56e8100_0 - - cmake 3.26.4 h1537add_0 - - curl 7.88.1 h68f0423_1 - - git 2.42.0 h57928b3_0 - - krb5 1.20.1 heb0366b_0 - - libcurl 7.88.1 h68f0423_1 - - libffi 3.4.2 h8ffe710_5 - - libsqlite 3.43.0 hcfcfb64_0 - - libssh2 1.11.0 h7dfc565_0 - - libzlib 1.2.13 hcfcfb64_5 - - ninja 1.11.1 h91493d7_0 - - openssl 3.1.2 hcfcfb64_0 - - python 3.10.12 h4de0772_0_cpython - - tk 8.6.12 h8ffe710_0 - - tzdata 2023c h71feb2d_0 - - ucrt 10.0.22621.0 h57928b3_0 - - vc 14.3 h64f974e_17 - - vc14_runtime 14.36.32532 hfdfe4a8_17 - - vcpkg-tool 2023.03.14 h91bfe4b_0 - - vs2015_runtime 14.36.32532 h05e6639_17 - - vs2019_win-64 19.29.30139 he1865b1_17 - - vswhere 3.1.4 h57928b3_0 - - xz 5.2.6 h8d14728_0 - - zlib 1.2.13 hcfcfb64_5 - host: - - cli11 2.3.2 h63175ca_0 - - cpp-expected 1.1.0 h91493d7_0 - - fmt 10.1.0 h181d51b_0 - - nlohmann_json 3.11.2 h39d44d4_0 - - spdlog 1.12.0 h64d2f7d_1 - - ucrt 10.0.22621.0 h57928b3_0 - - vc 14.3 h64f974e_17 - - vc14_runtime 14.36.32532 hfdfe4a8_17 - - vs2015_runtime 14.36.32532 h05e6639_17 - - winreg 6.1.0 h57928b3_1 - run: - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 -test: - commands: - - if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) - - micromamba.exe --help - - mkdir %TEMP%\mamba - - set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" - - micromamba.exe create -n test --override-channels -c conda-forge --yes python=3.9 - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' -about: - dev_url: https://github.com/mamba-org/mamba - home: https://github.com/mamba-org/mamba - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - license_file: - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - - mamba/LICENSE - summary: Micromamba is a tiny version of mamba, the fast conda package installer. -extra: - copy_test_source_files: true - final: true - recipe-maintainers: - - AntoinePrv - - JohanMabille - - SylvainCorlay - - adriendelsalle - - mariusvniekerk - - pavelzw - - wolfv diff --git a/tools/micromamba-win-64/info/recipe/meta.yaml.template b/tools/micromamba-win-64/info/recipe/meta.yaml.template deleted file mode 100644 index 0c3950b..0000000 --- a/tools/micromamba-win-64/info/recipe/meta.yaml.template +++ /dev/null @@ -1,132 +0,0 @@ -{% set version = "1.5.0" %} -{% set sha256 = "0323e3a380d2a4b2bf20ef2520d271681480a6885b1505c3787e3683cbe58b17" %} -{% set build_num = 1 %} - -# A strategy for testing the feedstock locally in mamba CI -{% if os.environ.get("CI", "") == "local" %} - {% set mamba_source_type = "path" %} - {% set mamba_source_val = "{}/source".format(os.environ.get("FEEDSTOCK_ROOT", "..")) %} - {% set mamba_hash_type = "" %} - {% set mamba_hash_val = "" %} -{% else %} - {% set mamba_source_type = "url" %} - {% set mamba_source_val = "https://github.com/mamba-org/mamba/archive/refs/tags/micromamba-{}.tar.gz".format(version) %} - {% set mamba_hash_type = "sha256" %} - {% set mamba_hash_val = sha256 %} -{% endif %} - -# Used for writing generic tests -{% set bin_ext = "" %} # [unix] -{% set bin_ext = ".exe" %} # [win] - -package: - name: micromamba - version: {{ version }} - -source: - - "{{ mamba_source_type }}": "{{ mamba_source_val }}" - "{{ mamba_hash_type }}": "{{ mamba_hash_val }}" - folder: mamba - # VCPKG comes with its own (short-lived) metadata which can be already outdated in the latest release - - url: https://github.com/microsoft/vcpkg/archive/8be970aaeaf19fd2663aaf5888478483f9742e55.tar.gz # [win] - sha256: 1d1d3b4b3d1871211d3d7799babfb7443971ed9a51b9eb7018bb94dfdb387076 # [win] - folder: vcpkg # [win] - -build: - number: {{ build_num }} - string: {{ build_num }} - ignore_run_exports_from: - - libcurl # [unix] - - libarchive-minimal-static # [unix] - - reproc-cpp # [unix] - - openssl # [unix] - - spdlog - - fmt - - {{ compiler('c') }} # [linux] - - {{ compiler('cxx') }} # [linux] - - python # [win] - -requirements: - build: - - {{ compiler('c') }} - - {{ compiler('cxx') }} - - cmake # [unix] - - ninja - - vcpkg-tool # [win] - - python # [win] - - curl >=7.87,<8 # [win] - - zlib # [win] - host: - - cli11 >=2.2,<3 - - cpp-expected - - nlohmann_json - - spdlog - - fmt - - yaml-cpp-static # [unix] - - libcurl >=7.88.1,<8 # [unix] - - libcurl-static >=7.88.1,<8 # [unix] - - xz-static # [unix] - - libssh2-static # [unix] - - libarchive-minimal-static # [unix] - - krb5-static # [unix] - - libsolv-static # [unix] - - openssl {{ openssl }} # [unix] - - libopenssl-static {{ openssl }} # [unix] - - zstd-static # [unix] - - zlib # [unix] - - libnghttp2-static # [unix] - - lz4-c-static # [unix] - - reproc-static # [unix] - - reproc-cpp # [unix] - - reproc-cpp-static # [unix] - - winreg # [win] - -test: - commands: - - test -f "${PREFIX}/bin/micromamba" # [unix] - - if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) # [win] - - micromamba{{ bin_ext }} --help - - export MAMBA_ROOT_PREFIX="$(mktemp -d)" # [unix] - - mkdir %TEMP%\mamba # [win] - - set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" # [win] - - micromamba{{ bin_ext }} create -n test --override-channels -c conda-forge --yes python=3.9 - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" --version' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version' # [win] - - '"${MAMBA_ROOT_PREFIX}/envs/test/bin/python" -c "import os"' # [unix] - - '%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os"' # [win] - -about: - home: https://github.com/mamba-org/mamba - license_file: - - mamba/LICENSE - - CLI11_LICENSE.txt - - CURL_LICENSE.txt - - C_ARES_LICENSE.txt - - FMT_LICENSE.txt - - KRB5_LICENSE.txt - - LIBARCHIVE_LICENSE.txt - - LIBEV_LICENSE.txt - - LIBLZ4_LICENSE.txt - - LIBNGHTTP2_LICENSE.txt - - LIBOPENSSL_3_LICENSE.txt - - LIBOPENSSL_LICENSE.txt - - LIBSOLV_LICENSE.txt - - NLOHMANN_JSON_LICENSE.txt - - REPROC_LICENSE.txt - - SPDLOG_LICENSE.txt - - TL_EXPECTED_LICENSE.txt - - ZSTD_LICENSE.txt - license: BSD-3-Clause AND MIT AND OpenSSL - license_family: BSD - summary: Micromamba is a tiny version of mamba, the fast conda package installer. - dev_url: https://github.com/mamba-org/mamba - -extra: - recipe-maintainers: - - AntoinePrv - - pavelzw - - wolfv - - SylvainCorlay - - JohanMabille - - mariusvniekerk - - adriendelsalle diff --git a/tools/micromamba-win-64/info/recipe/recipe-scripts-license.txt b/tools/micromamba-win-64/info/recipe/recipe-scripts-license.txt deleted file mode 100644 index f093e06..0000000 --- a/tools/micromamba-win-64/info/recipe/recipe-scripts-license.txt +++ /dev/null @@ -1,27 +0,0 @@ -BSD-3-Clause license -Copyright (c) 2015-2022, conda-forge contributors -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its - contributors may be used to endorse or promote products derived from - this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL -DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR -SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER -CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT -LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY -OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH -DAMAGE. diff --git a/tools/micromamba-win-64/info/test/run_test.bat b/tools/micromamba-win-64/info/test/run_test.bat deleted file mode 100755 index 0d9c6b8..0000000 --- a/tools/micromamba-win-64/info/test/run_test.bat +++ /dev/null @@ -1,19 +0,0 @@ - - - - -if not exist %LIBRARY_BIN%\micromamba.exe (exit 1) -IF %ERRORLEVEL% NEQ 0 exit /B 1 -micromamba.exe --help -IF %ERRORLEVEL% NEQ 0 exit /B 1 -mkdir %TEMP%\mamba -IF %ERRORLEVEL% NEQ 0 exit /B 1 -set "MAMBA_ROOT_PREFIX=%TEMP%\mamba" -IF %ERRORLEVEL% NEQ 0 exit /B 1 -micromamba.exe create -n test --override-channels -c conda-forge --yes python=3.9 -IF %ERRORLEVEL% NEQ 0 exit /B 1 -%MAMBA_ROOT_PREFIX%\envs\test\python.exe --version -IF %ERRORLEVEL% NEQ 0 exit /B 1 -%MAMBA_ROOT_PREFIX%\envs\test\python.exe -c "import os" -IF %ERRORLEVEL% NEQ 0 exit /B 1 -exit /B 0

=*XpAfDL)w@Y?K#gMYU92MgGG65sy ->^Z)zuDe)wR*`@uj+@(+MvGoQ1`}JS(5Q{1N<9|Kj{{y{ccO>%`j0`?JE_s*b_Zi~>_#Vjoy9Y!*@Rk -)p;B8@8y_1AubuoEJhVv@vna8^AaK5cgv#~ZKqJMjVLLftTJaj7D%dwM0ye3rlS -(BR&z4Z7kEAc83BcB(2s(5bJ>Rm+_x<-W^ZY)+F*HrH80f;}H+*`-EeDREnD{{ -6?2%7RY5YNTh{F%txYBP9uc~ck`IBBOF8`lN?CZ1WCRr5lh9+E6_CaE`+9IgI3`Ku&5g!97?pBd-JrL -$WXfVYMGci1uHZ2ax-!5)rQ=wY7YR8M`dk`l -U;EQK0RmttU!6bT;)Xo_Sgxvn0jgP2*#`H>%-o<$df7UuWHnL215CsClTsmKX)f}dI*5j9@#WwV8sEm -eV20**u<%MKZctZ5~TS^Or|2PpiwUI(}uzg*WvTdux`ZJe=-X|%Y^s5m3jF;nOJzxsD2asR_S`zk+T? -Vfh4)#WJivnafW|2uU2E@?LA)i~O1=z(b_tl$3&UzwRi{? -S3@G&XL!uX3iDs|+yJd!sY3H48+!J?-g%dkWU`mDZfUR3xMD5k>NnIL;L567v>Mw#>icDP7lFv@iX+o -dL#cE#$v*eZ+Dn*H4^e9B5g;n0AGgnZHJq(w2g~|x9zKGO6huLKU4keyYV8;Xh@aArqVlU47yp$hm9l -e6J+t$(C=e1lVlgYwNDJvUH-Mn!YzITKEzD>$9zDW>7!13m;@U3~|Q5|?ZbB{a5ywwiBb5EQ{B);R;D -o}%#P)UyY`w~y<@hf_Ap5jyH(*#|Q`@9&b^Zd@OAnI7YJc_DXKFqUEXv84?DELhd;N0W&cvYH-XFROJ -TbCCk7{^5d$LPPuV>v@2BXExb20CS$-As~*?tZYY{$RX>;R)Q7ZrkMdLl7b89?I9->@4F;JSaN__rw~qeSU)M!PwF2+&9EbH$Cw4bL06$91bfUF@3Gd -^-aZiL&&_qH6+EUHCtkz%)|vV$bCRdq<>W33F;CQxMWwY(EUB=^b#h{hTJ+G|^!TWr?9!9(4Pv(gP7{rBwM`%8 -9pal|fvIl1`e8~aiZ_;!agJ|YGi`zY@`8RC6NH}cMj|D68E&woz;|2v-k7h}skIPZ7}?%{qlwL3@n%_ --6;GAAe(ois)6``YvSUT9%r=NBldM>hy51yAAxpvk5Ks<;GD^*w-2ax5^)M+Z`!7+05FTMHL*t;?T3@ -Z;~5=)3bB3ycFwnrH9)p{ga0R?6o!4^`snPj!QU!GyefsCGrnJqjgn>{{V60Ev6S9RPwy0oaq|7^8t4 -`kJADR~V}Y9EB0?C{?}SeaIS;yr`Z|W_C)QP$w)7V13@Z#9T-0glb?%vQHxpJ*-GuSATTeOX+eH{=y})vw#xx46Nx7{ULi!U%J(1 -=GTZy{x+8UICHI);ckA=KToqjp*YzCp(Xf__hSA!$*SZAJUxB^V?L)FGHD}tp*`nYOXe?h1Pps7jwJ? -J;^|iWo|n2UqEMby$^(x{TmXseJN?rNohZuUX%a<#TU^4FIEMbNSZWSzq}MBm$Ac{o;c*6pp!XYTv4H -P4Zmzc9_;rNHU3y!P3uRWs_g_P13x6pl6GF@E6O2z{{H<~5d}ZdplEP337j}l6(C>++Y|M@7ew`^>8P -SL%ItU?hjD!DkG9mL|SJI$ihQ;rbZEl5)BR>y{8dK#_=;wv-Q@`gcuw#Avx~vWFJSTqqlcGGC1rMpO0 -9<>b6hEiJ3fM>0<%f=q)bHNcxa^}B0nMk~_R|IX_I1d9T!`$&ddOZbM7FygvR4a{ZM|F%+ipF!g>L@x -0VW*$S8aA07^ij{pWljbuXpQOsT(0HJF&0Bm{$p=XbN4aYIq!kv;GVtqgMykbytiT!P+Yi%n7TeOlp+ -aF6nt~JT=C#9W(E=k2->?GrlWpjurY8Wf%EkYEfOB!T&+4BgpFzgvSj3-v(gN+&ugd+uUu)J=;(r4vTM#t0%4F{7SYpfDu)W#O8#1yr$#40gFZS1g0%upXItP&$EiVf=aQeH -Liejj&J_K}@9$X3~^kz;0YHRD<&wKclZj6o9Wy6V3APEz;bbr&yqYq -bJ+0|RNjU5@@?djaYvpy#nzzi*@WhxtC;9q+7$IbvQuGd*3%yI)htM_*US$IFD=$6wA`E@RWH%Y>iSU -b?qm@A~;OK1Qa^yEgkozgJ8R)H>C7i=$Bk@{gmb~y1y9f=U^7PdEjCWpENhM^*r{L$DQspmc+x|nO6b%FBoJCb{TA0eC9wED{C*->AZFKtAAX -#57*rsez|^E9;8`qSL!QX?dx;TMN&JRNQ@^k|6L@amzb{1{Z8?t;elThu89~_(>#qm)HJ5AIW2ee$^s -?J@}C|x(xdf{-|0j@N<`|IxP#7x9jhq%fM#A^FCN-N%EunDW=o&|R~IMmevU3K&*9I()yZl9=p3`r&V -F-)IF8l$sdpk%>|-qK^svkY{jH7v2T)4`1QY-O00;o!N}5(i;bR_V0RRA%0ssIa0001RX>c!Jc4cm4Z -*nhiVPk7yXK8L{FJE6_VsCYHUtcb8c}@r4h6QvPz>|o1- -y!~va-JC;=zv!2KNtwZWM;2O=2>xuGkRYi>Ww8OL8Z^Ki0;B0I=r&%S22uOtFoiAP1C1rEvKefO)dGZ -SV%YO>ca16Fh#2AFWxIbp?k@#ZWJYVAa(f2`2W^S98GXK18>n?ZNMwWtS&+0vmQ|IIvZ~+#J~Qx7UR6 -viv8wXL6j6u=h1na2ZaDYCVjG&K*bi75rW7c!#+k*0(s5I_Fv9Dty^$gW -#AXF`X-h5u8F!w8+8TgnD}oTA;NEbxmj+da2COLGyNz_|5t=m$(W+I)%tenUw1IKIn3eT -WcCYCO9KQH000080N_fRRu!$1p!5I$0Pz6;03iSX0B~t=FJE?LZe(wAFK}UFYhh<;Zf7rFUukY>bYEX -CaCuFS%WA|h3`O_;3Nf>3A%rsfF8Y{7Vdy49H>DUiQ5u6C1z9fS@9R1bk2m5T$yd5ZxDGZzZyiFaT{I -4yZE+0PK^!||kO4uEeE{mSc$!R`%4Hd=-~%~W8r2a_^+N?_?DE)i^SaH{&>&`bd3!m(H|KTXm>Cnv;+ --yFoG4f!o|9is3@!P|p&)c9#=1}|)iZghwKm@rMQgBrA{Mw)kY2)324bzNRkt+FY<~tR2z|0Da!p)7h -~68X3lJ;rrXSfB@w?>z2lq;){VrLVP|P>XD?rEVQzVBX>N6RE^vA6TKjX -`#u5IVf5jD^q+kj`q+Yf)aZ*{4Y)xg!wd}MRRf9PKNAfDXf`=t09vrCWtB* -V&MXO$>;l@%Vl;E9Od*Lf^FcA1kPJocEnF&d4Yu(zvfnWZesM9I>uVtJ8$l#yV0%&U1;Buu9C52uxkL -zH?xm!TAC#TErm>zEg^TCpkvFRV)|ImgvfFkXa9S>fz;Ay_t7_li0t;hDG>VO{ZAEWn;er7T&Nf&tI-SPHse=Q6GDJ$AR -0;gZ$ZU#&hlKV_P!KMG@BmMp-nQyGib*jN;YBZkitwydhWJlx(EsedPLWiBGg{j6AQ)7AD#d&GdJQGl -&()y1je{DjyAOT|yIGaH?yA9*YzYd`mA9@pZeD6(R#_ok2IIPLeN6nan#weVQVG;g>|iNn-sFM77-tpc+Lveh5bal16gJ)Cg*1;Zb?KHQ3I(mP!bAI)*Pp0m@QTGhpn -_&0Z0WNo&%d6ez6MEb}KYI5D*L#!Z`k&7Z0=3hDAvq~TSNI|T -qWLkAZ^r?!KeM7D06^A6WjZZG_>Kx$1@5565CWz;Fytb?mWgTNP71Gz(%45Fo-++@@-$~@DJ!}@@J`{ -PAZ+t;swk}%1Whn+>;BR(Tn|mP;{;84idU7*rpOQ{}5vY_ABzz%5NNhxPemHYFK61W^_)jnN-JuiP!v -9x-Tf6DN>_mI{fMlAMvM93J?~QmSf;?v3IN1C2M~iA4=rNKi(xISD5OepTBKRYX -Yw(GAo~ioIghMhd)m?Im*Wzln4-QU!D&ssO|W=(wsFHX!uc&L1~A#aNZ`PF72nCb -!b;4aU(5Vu7qDQoYgSh^M&PZ#K%WmU3-|2r#~DcR_&1xp3eSCz5bG`mBejr>MQ3pTC52*k?e9%$@%ieixQ6u?v+brc`DX_%eC&Aqc>D5E|DC{)Dg%L -xWc#t@`XT4F#CNiFsJnY67w3IZ6_Qt#f#nP+LV(&3JgR0vlDf)Cfc^VIQe~_eTMI_I>c`{Osj%@aF8| -^4*~t*65ZEf2d{ajf;Hv6NhIJYd7Y}EaHa{k7}zK7Q8x_v*VxjvD|LXV+xcq#vw7*m!t%J*%W6oVgs- -OxF-$_*G=d6Iw;k+W9oA=c6eLJ1gE9RQ!ElhnjXPq#y19RSzXfKtn>|k-(vQp_k{ArueF3;Ih(;WbNC -9}tb&`dkl%SRtBVhT@*fnAtFy}sU?3gSPz5upCQUF$N9c|}ed=_RpMghf -YREzAZnp(M^a(uHfp(kTFY{Pdu8qTv6lV|_40cq3c2-vnCTnrp#xaz-aPL{8j5wND~EBH)3II#yi{bL%3Hai?6x?H+Hrd% -P4ROLLHy_PJB6&SzxaDF~U`b;B2;41y82Zm9?(G4sRPke7ZOtmz{D-wZH;c?9n0}bXpJuA>uoV6@ -|*bOVM&ecmmfh3Z6J7g75gMDHA9Rx}?bT7HJ~N)YV;9+)@^p%Y~Xg*OlR>N4+XGvbt#SGV7;zrEe4EX -4O9gOKKDnm2QlnDr4j#lt}P2y9R4f=-d72whj<(81)C)O5&(TYz{}K%EA!R-I0>C`LTVh#P$p)Qj)mm -zP(jPOyCMA@$}r!#!8MVg^ -CtZ1-K3tGnSNmImCG%1P~i<%r?r(Z~e05&f?ETO3M16ru|N7)P@16WLXo-DNxP=wGgF5u-#=T##TbyZ -*y(J;KwYU1fioy0?3kumuO?M{HARahc8(&=5}e`F5jCL(I!$qY;Bl;lCYszj1k{(3+f-wMd_OSH$-da -uP;KTyq~9|%&5|01mw{O;!rY_YbjzlpHFubpuFsr71=%(7U$8%qCNft~;uvRkWoh4HvCfN^M}e$7E;w -9VPo==YeEze&XAz079{+>XDmv*4z+J~^@;MH!Wc0f1@|Ik$)p6WWh45dWj-B5jq?x70wQ0aMRw5V}G<1TugM`e?2(ws%-9BsR -%*ff2`7f>TOJzO1|1LV9Yg-z-X?V`@pd#^ztxjoTaVql-g*IGlmMq+`(6k;Lnb4G?i=A-OInpPkL05R -l51qZ(4NJYp4kt{<>8AuZP$jCFuJpZoKTf(1}X&opjF+SI*R1CU{tu393HK}eDw3{G}@G4x2Xd973fz -q@vZRKY!g4L(DlDx=(ZX2G>bHzu!rnK!>wjr@I+1i;*_x$P98T;%?KtIc^-Ti0JY~VoCJtV}0pMJwNFU?99t)pT2aH47K;keXgfjwhO9eX-5SXJTPs#NMG&l -IW`Zr$f`s3P3f?2`r>#N)w?>aWFr2dW$B)chiPbQ>f!&scf-Nl#9tIyox6^b!x@jg!EF)@x8cZtZC~a -4aZv{$hk4=Q?da3??$3L(ofSS4+l|Wm#Gjk3xcX>T*Z-x68>{C2lxpqUlecVty6dSg2a`!V7U~8YF4Y -$mq#kSM8?BEV+Rf=;?oqBvEk-jzT5QO=^gg1c`@UuT`6&`g$x;AT6Eez?{{?mK2%P|UbfrciRtL8UJo -iY!F3o=Bj|I~2i&`{dFL?=6P`Dj8py2j*fIzX`av -CSc#zqfu~v^6KdLm*CCO#V_Y)7a#tKZ*Sq2zc(?46n%Ncp0c}b*3B50t5U}E=bB}6uz}=`XEQmlnCuu -PPp3U5J3}UuA(Q<+lYPTuy4&&Cw^&TE{*%EV%@ii6_@Z>x<6%ZqnXCCRRS!{_()ZbM@7hbErm=}5nn- -GS^_Z%xbIL0yjDRbEA8MSH&F$Y$A&QMsP4>#NAd4fN9_hz9>yC9`kBSHLUNtrT)Cc>QDZ}G!dY~KK>> -*i=K>Onk+<#f7JuMP?+k$5EZ4I#KzS~q1^g?|z;rD?W1;1d|7OR`CU8k>cwy9rTKQb%YE4B1^u*0QZZXd{ek)%_C_HQGt&7i-08pa80$jiO0CaGZih{I0c|uODt -P01b^bdY!3Wt#C1{I~;po_qg8-7a8073OGlu?Hav>UVj(k9(~F0Np72`m1o;W<{-$;w#M{*JHKMH_E< -w|y4@1fZzSxc`YlC9o%2TLYog7LFeLv;FT#d081OncyL#AKt#?p`s5=G&t93@`h6$V1Z**pxz~Y01N< -UNS0L<^7@So%B9|*YLS^L;aliGo6t=TfTwp^jS#})BK*QULla*(TzLm5;+fi#sizY?q+#0l5epjSL&AKu{^FXU@&t7nIKK -eXHchQ9n@n!D(m++`Z7D!jO(`m&tbwxL$P8=^xv(O$APcZt0a>dx?w5Petx{5L;CgSjwE}4-rBwGK2f -pD_84Fcw$|-P_!ebjK7vG!}K{XpCE!OeVP~Ak~8BX{#EZ -q1ACQLk`RJ-U_ptLQ&ZnDU!g^-#yh*Dmw+n*lIQbe6+BwRzX?j*~CbOw2U~%VJG8dX5_De_L3y&gg0C -pk(PN%ZcWLYRFuU?3n#nNeTnRXWOVtDKBg`t=pc)_@(YDK1Xt`t)>^(U1pQg_;@3YWgBU??V4qEbzJU^$?N>MI6pam^F0@D^Y340Z!gZ@@bmMFGcJnkv?$gYckC{IdIwuHTI -imk7KLdKxOJbQVZZO@qS#B6J;va`|s7R(57AHPc6m(_dk0(xYQIEMM7I -8Grtx%eUS6k?Z&rh^m{TGzVg5JLFAR>G}eia4gr+1U#IG6zd>kJr)d?oELfM#&7|1uWEOUdkLQjtMpe -Ra-KjJu;=|bp6PIv(#by$5@>k5;!s5M}^Y&5S -zK-l1H^XRNW7!hoqIxF)XqEY1t9z%tskf=+OdIg)bE(#;8*AN+_?&jB?fm3VhB~CpvjMdk}K0PNhh@% -BQS65dNhHViZe2-tDXQptLpodVI*QZBoY1xSSl&C*`{Mb`}bWfl@ox*vbzBn6Ge_Q%6pRHCyko;ThFM -l5(qBNr4ZPJY(0CqKvNh>N`!WtBR=PXWq#9qKVavkL(77?Kvfz=N_|8qUY8^r}HnRsY(r+2T+FvtiG!wQp&tj@6q_}0) -Fm?R7}mQ5VpzKW8eUJ;e{$Q2j#{D9#fTh&3Srw{0&Y43E -kK7)v7Dy-k;BdoKi*$hGj9^#ySd$LVTOQOm3O`!MftPo~)8iFvX{Oo@@9Xx!HMjj$Vu_w$XLl#3xjyo -Oegdr+!-a$6u_Dx{4TD87q@~H -&O|i5VXus5LnZp_ttt(--B(0S9Vm6x`;@Hns@$T(KdU4k0W`~RucFIl9`r;=(-BZoF+r5TI+C%L4TJ#0)jV$a`6zwjIcb0(bDH(`!YXffv*sX#4KY$xH9< -`q2W1XSu_k%@ERecOHaycMLOccs`sXm}5C_E4sYl>yV8WzqHceWa4t>DgDW=^}z0<-sH|S?|d_Zf6|E -J-A4uuoHKSC8$lm0Y%XGitVbmaH(8J01HcY6Xd9u*b?0!KA@GHA!b`l#K5=h-IF27C8CPffX{Hmy-1- -!bPUwFy*zBdiKo-%#zVvHPL#6y%`qk0mFU9^FUWX^Bf109xB28hA%_mJOR4q*-XGNp=rs6X+10DD|l! -^XsijrTmoh|;KAW#qmtaItq5MqX$iPRs&?nxRq?M?RQz#fV(C(q|OdYHBnQk<75I(Qh)`AnR!35 -2H1rqQDcCQ29K9FwZ#Dk-x_&iM@ -6aWAK2ms(pnpQBQ@{(Wy005T-001Na003}la4%nWWo~3|axZXUV{2h&X>MmPUvqSFbz^jOa%FQaaCyy ->J!``-5QcaEio;nPa7^hKXrUh|1VWaCu0pZTwu&OT(z%d-Us+CyKhnWui5A)Ny^nO_@eKB*u#gLh;O4 -C65~N5`SVP|P>XD@AGa%*LBb1rastyyhv+c*;b?q9*GA0i>D(C*!03nMPzcD;vS^R -`JE9L_KVR;FWZWl>8}NporLx8Dq3BvO*oUUB&lOXSROW;h%^GkQs`w|PxAdBF($t{YmABF|V^vo&eTH -4{W`8IervYQi__WnR$?eoi!5Om3K{b6!qflAn^-F`?yJk-fkA)zT#7iZL~Ka{OU&cC|1ImTF9JF12jX -K(LC}x#Z#jpHqUUm3I4VlAQ>5e`c4foi48)|V(MR=`H^mwvbc3gYlZ(X#`T6zRq?Kcr9C5*SEvy3 -?_Fb(_rDVGb_L;x{C3h$Q&Ipxc%~@R@Kv*}G+O=FhqeIWv&nQAlnC~qOW`1I5|GHZmqFWO71)R!fk22b -pxS;!5yO8qUrZb_AQPafnfR%O4}R++REUdm3LnKA5^=UUmnljpDbWsL!A`EAh#}2rvXx}x?qAx&3{D- -o8i;yL2iM>=Wr=|vT)BlL7IQlKx%t#9l;7lYc@Lf9N!M^N;rn2b8s!eIUCVtL?F0~W7JXXlE|=Dh^=Zfb;Bt;rSUEq;{?s1K1bnO@$U -MWju%Nq7Yf9>v06LP>E=?KVCbvw6a`_r=V*DRPaLR8MmsiKO9t}d5ou+5@hiMw1&b$q=z1u}&_Lx=N_bZ$HBST7@&@moqugvhPZCl~X}#hF$ -*459>4iePmeMw3ftD)Oi7dW(NvpgjgLhpis->vJ@~HRr1_$1K>YuS6UYy;$T4J~|?mAWr3zY)M*X%nFLV${ --rtvdd8|@<^3cIaXgr&`Kk>qGkgbhQgYKDTB&XBV>Jy^|Lif>8)Y7Dx8)G5Mq)f$;!g>O)hG6s&s|5R -B#>qdo2Leb&x>`2b94O;C8m_k16fE9YdN;4ag*^IpLCI= -E!Hg{bfX=%ft>xD?mZg$5HWKX?LR9==0tGlo-%mmNuHwv+;<9LU0Yz*lHY)q83BaVgv36ei~UWRI!j> -(UImmv(`i1*lVBnr&I8MjJ1YT%((&~le_czIyWD%yW4H3b~X)b>Cit6=*=m%+9`UUe`h$6Mdz?P3e5L -u`Qso>Usxn!bX)Cijr)S%>@xD6IxbA?@hQ8#WyYyy2Z;_Lmuc;SHCT`kgm?+YWo95^;)2O$-V!YpI-#|(kF1+$IzrxXuPeOa*#yw!F)!oY44uiRZy(pDz=nd;LFnkJpp3i8+fUBoq$j05I^&_TV -;8A1D;{OImxx8Dk7`MO2+gdq{8D8Gc(1?O0AV$*eI$Rn>_h$l=nkDw7gVnTQn>NyFFipBz5D6}yW4SN -rIapeVw)uvr!){)@VuQw13!d_44bP(L2)|UqY^lmfT+S2q6^c|$g+Xc{VZc_sNhEihEDKwg#luSoZwA -YpW7K@ieHo+qfz5RS0Wa93>yr4w6oV~? -dcusr)b_B(!aYU`+o0+*3x`=)GLLF_f%O+HM)~^E$5j)ZYTvUbCKadV6d5<_*XX%R*Thg4WlL51#01N -pRp0xD3=j-X53SeQS_u@uLGUS`r$;MU;rHI) -8;a!8~2l$Y&OCiqj3=tY!V?VrziiK!9?64QPv*c~fuu2SmQoh1fz?a?IF -jfQAB{b}V2@;Y-<;x_Iy)l&;i^k<;G-ym!;YXOFjpghEgfBK7nxp^>ijuqUxQ;?`J(-t!IijxL4lJvj -+;b*~qMWTR*|4D0*^EURwTx-swegF&-6Qu`X_@#kBxfzVG8}cPf3Z9WE(Z7e}?FuCL4AKAi8Kzg!c@F -%Mk21ywqhDYwG%$PXL7^61`#BBK4(@pm8>uJ@f`t)CsPSylU4@rgC9Lm}k5Nz$KeAecSKg|*TgWjMI1 -ze_$X~Way@~_}2D&e*Nr8x4>rJS*RXuS0LdW5J2>cEQcNyWrDL;g?AMMu+zu_zN?R}zaiLZgEx1PhJz -n%k0)(C;q7wTk^O7M);b>h0IeKxf2MFRdEyOr`s3;Yd?SciOMT%<+r9FSjvXB|TGM2 -o$ho>npenKGs)2mM|&nntC`dmkKhg1|1kG9kXeju7mgo%aei!>pO*JVR(cbki7U# -9fDu4SY4($>*&EC1zQGpU}kD`Jvvi%MYjv4XU*J%U9ns9`KjQE`TCRbV$6pHFM$i5UZsGUv0M4B;AYa -e9_5KWoJz`N$MH)~f)(X|;gBlhhvDQyG>N0nXOj*Y>a|i(tl1)6rk3o0UD3tew3-J&dps8IQsEqx`~(S@lmh$=-cG{ahiHav1J9kiejqmMHD^M2zB6eoU -Njd6XW=9onI*5a&sy@EOTF=M7@Cz%b7dM0`@QjCT<&|-Tn$Sj-ZZD3v-44Jb{@|9dY|^(eHsU@@AOZj -(X9WjuMT>2ip83tpTygSmS-XOAgGeE0kFA@aIXeAvcl7A>hfXNC>%!Ewq5YtoURz`iayUKVPna0&L@4 -$=u6;ncm9=J9J#*d;v!?i`DCE1pFt($90M?o2mPty#K1MIF&rP6rBdM(qF#O2NA;ETEHveQb>z^FTgI -t?0nW#0G6g*`!tTY3XSJnu_y;jp6ET9TgCGqc|8|Td_frk}??>ZF)C;GPUjq%I_hIi#4b-}0{~4~v8; -=y(Ei=E8rn*{s7>>SJN2)K8jkK3cOTh1tZ$+9<^;J4X93$r^-zYM@Jbp(rBwer -Opf&zE@tNExfi3$DrqZxNI-9kOIM^PNv~P;dvQdT_%)>4nZE5T_S_p2;@%W35&7Pl2%If8u;*{&WEn= -{4dq>=NHgsCE7j8tX0p4GLxmD$y#VD(udX7W>UB(=J2>ug6KgFAex1G4#f;+)e5E&Xbxv%Wn7(p%0*1 -=NFCXgW6NbYI*sd14T7zEW(4$YZf;Q5dykyXAgA#p`s2JmiH67(kkwgb=klt1>$PyVfwP?iXcNvVmVn -q*c(kpqXhy6aK;(xK?Fwf!A%ZT^n{2pV$Wxi3oc&F8X(yr}H&`r4DhZ=kjAwV4WDIDj5F17go>WTiS?lQ1)m7;}dR9E8@Y?aC`L7-A1l*DFnt$G%frZK9kyha1Nr -m-_gF(4C~3bwD5FVzuT7dPq*%t^>=Do@C%9_9=vU_mRRS3ng~ccif*Ax2NyK+}z|HUl)>uuQjjYVwC -^fKSLLfD?LIYz$1eCRba)jCs?-Z*zU%L%dXfx|~>pS&OaTO>cH97Da*m_(`q)R=AE~Dv!rX-0mk6rd-LW$}RuiWQ1_5p9ZH4u0s;ZTo{i -K`wvZg+QRT5wnvD7l9q>-Tl(Y`UE6ov93gN)Y9hB$jc%p8ceAQCxJ%7>E=I9*Gqq>a&i9GBHx2UYDL -<1(%uDddU33Z^G3{w%d40scLKuHGD1Ff-ot@_S7^3m9u8OvZfqqYqWP(ih)06hS7-x!!0qoM0EATx$= -8n->(bDzEL($4PsR>pm>HQamfiTM#l|QC+P{iG+E+VdwsusB_+sRuhGFE4CeQ3vz}M&V3uc#cwQ$krQu`{+4aKYsS*?xp*ie -H9P2wueLiwd?!?P)h>@6aWAK2ms(pnpQQE@CN7_005qK001KZ003}la4%nWWo~3|axZXUV{2h&X>MmP -b8uy2X=Z6vs26htZqMtd1_STt)Ez`6|hyJWEwkt9i64=BkRCOBFS$x~`-0f<8 -Q5CMo>y1rHlX->It3%HrTKdK^C-M@ccKVPC!e+Kh>#*GkdD7pKpjzkK~%Pgu~isw^9Z4H#5vS=L!oRv -UnKQC3k}UN3XisA#U5B+Kjg;2^tRmQ@oav()^0u`1H0Ec4nt$N*#KL8Z)Z>!d2OVo@JlRONNlY?kmL( -%%gaBKUchmbhu2Dvd9zv?FmEKN6VzD)xp6x_`kV+8clfCGds$ -8`~2W<#d44FUmX_)##XrJs1q=|4)H#JUFV&Xy6i%3dC$2t!kJjsxQk`J_kO!K$$3`Z= -Qb>{qc_vV++bm{8dt`cGhd)T6#VKc8#BY_3W?kKqK%ce3Z-p`y_2(;AJ_d=W}%tO{eg9Ivv(3zZgXiP -H>IwlHbC}8bmC15ZYl) -mq~po7nK#w_C+NTz7pNw-jO=kvX*_3QUBDajH41(R~>6Wgc&l^U8vz0l@u+pP?M}L6#|O@*8=n!Y0q` -(p=^Qii~y`sk@_cS-@8_^tV$4wW@Fa@Q&$Sms8!w4)##uzl8No>@DK)g4-CL4!DX&5VVQ&>$X~ez!!X -;>KD2ye78k-^AQ;yQwP7#rW8UavqAV@sWm%{&`k+gHe%!b4Pg;U-WQ9Q-49@j2%HLS7>e$-}P-3{EJ2 ->oXh4wZpU=bM$-U5WMpgGV=>#1Qe>kQUXuuy#JLckQmbiVG6uSu -5bqniw0^STz*aN1*1$V?>eeW_le|e{6h&GqRjQL1jhOSQUl15`)3}gTc;R<_get(xjL0H7ReN9%M4 -9(#s*jAK8JxcPLOazI`2kswAsb*ScN|PJJ7C9NqhXA3ok2j1C<3il@99a)TVo44t`X`gl>5tL1QD2s# -+WFgRNdN8|p%+93*!6}TKmuK}Ry>TJixXsei{saiIY?%tZjH?R^pPV6b#ie9r0?{sKz;qLY115GBLd{ -KQIIB&q-brFIU;nJ*7nje+JZVJg0)Tzio00K{V&gqndU^<20isV{NryqwO0DoQ#pz#4F{5U!p$n|dXV -)O)q4MVVGD;xErX1#1@Ua&)Vjhnt_ANgRA;Id_Sr*FU?GosD8@WGAIY_B^!>wQ(Qd4~@3sZnkfTdq!W4MlLVBCl2>zy9-yZ^<~+d;^FKXTpu;Jqg1Z -7M*wdJ5pM}$sNpSiX&X%@yjK4ULGy)btWGwhUy?#4qWi~<7B%w{faW2`oxwn201sNca%GpNxfo3G5DO -+|ss+i~hO=^c{!t2_x7g0yVnJ!Cs?=p$@Sph8apa$;aE;EX$>A_>w{FbAY8XCAj=Y__u}4Fi)V$wWjy -bgUh_$mlz3Re|;XY83D!V{>)C*}Z|JniEu>hab6%LskdPAxi6DNUZP<_6TuEROr01(z?nS}A?JY*tD{wo -qc4*iCBP-_BU^OBT?hT{MMZ@j=Epo)2^QJPihDr*F=yj)}{pKf3}8@|FLn-mgPM>#}@vs$n}9Sigk(6U -^}y8JoGYb9y)G;P3}hoi&1q@xzA>Z}HIVDILVf`n`55GG*BvqkGa`rNsjLE#6dO3O3UG8#r31>C7fDZIvB0Vog7(zwX)IE%)7IDqm4LgwLVjGu?gAS} -M@LudQP6GMo>gG(trVQVjECbD%2GBfT%Sc#4^^2IncX8LZm3#02QQa5dcP -eM`R_n6Apq161a=*(ICUln?!uUK7e7zUijk!wB(KUI5|$1OI6IfE>pY8=NY;2tbLes-7NroTIG(`1~j -}X0+9F!>nnZEgIwZUi>$!hNSAm>>F|nLnMEP$AL2THjL*w*&9NKcfg5EcZO)>m;GYfc{Mc2)JXp^w4J -$|;%jMVzB9MjXK{R7VrO!B2l7P5x9<7$H%#s;fXTY8d;OI-0%n6E>;4QYQv4o+3mA~ySEj{tSV|0L|I -y}X$Nb5#~!c{gvMbV!r2b3xqd>elG%@boxPKJ}o?H7~VCzIO~`1kfi92wu$N6tGMn-d4wv%io3_gy_Y -Kf+*328RpF$4NBE3Ex30wQcs$EG@)OxH}lu0X{|_1KgSKS2gAX%N1_3VVbqp4T6(;!RezfZp8W$_^@6 -kDJnM*^y}NTY#f+39XDLX=;&nNB~*jI!%hyO`;sN@153cuKMck=^tcY;Ouz~cD627ODK+?l9)pBTJ6}DauX0t_Q*1TElvVaigBfqxMR6<&JOrl;~WD -C{0T1`M|W2;-j7T&{)z&sOMNs(QKmDwV(qf` -C#BXsX9%T=*y#f$0rCdbpc@Wl7_!e(#E)q>=WvW7Gp9tiFDnY}_hp|i-=Gf&^ZC+NVa1u`z;?UCqn}O>Keqp}CBL@->O!Jadq#@}3qew@Xdf%aW9!%fG=Ur?GW^y~bO>e98Hp!Ql@If`nEda#-ZZfs*hG*`ANK5HbYZRnb -cs*s^Y+Vq%_&`(a7D>+74Dr2NK>M~D=|_x9cMX6{fY1I9RHD{mD-4f$jGh3m-eBm7IKKD14hPtB!POP -O=~SJ;(NK()1CUz+cAZ=)eq8E9RfvVd0jPG#fRMY=mg^1)+dHWE?*3Ww;0MEo49Y$kA-KaH`Np5y;L~ -^UyCYJ9mU#81Xp;A6fZ{v(;?r~%`BhCuWmCq0Xx|HDyNQqp4OJ!1vqjdJFm?c%iH+83f$8|LUir~gDp -8Li31Ib$X_ouW>Z0LW6Bmr`lljL;A8b$(1*GM-p?CbBe~}&vz`R?yw@CN?0`wG|JFc5)4J|nuZ1Iz*U -d<@U0sOH>&oeAJeSX8djE(=DQrZz--WaWjP8%)#gGHE1~(WNMwXynRb&n}JA<2-#XaL;!rrO)ccR -}tp$})?SGpvyT+DaC)F%#s-)VuA^1P_#fZA$td|l^sIGFY)Vk)3Gob+-6T19Kj^{Cvcg -`gIhl~}I+@^MJ(1NdS{sOr%!sNW5 -Il@+=*BIJ`z?;+uI`ri}UN8G3t-E>Qra8bujzb|fphg`3btP5>uL<`~`_8b-rL(I}43Jy{i>YFPVUODKgpX)x3Sy{6z$-sg;>MCG#6qTKd*Fcz?u1v0NMzt8sJTaq4tdUw5&vP! -JEL=-9N(bvS&@yQ_(Gk{Rn4KE9~3~c>!Y*E4D1NU7%hc7cuX%(7L)lLkkv_a{@`sQJhd69j#t>?KMt? -m^8uZYCi4}Tb|NveFLev2(A_8iJEjuJpw3KWg{&?1cvYpM^6$HDuCE1u>a)tcR9rTuV;qj6vsHK<Ei&=r!-uly3;4$gae$*Z1Hmz6QmZ1vFDP7MYF98%=6R(7- -i&=pZ($lNJ_yLw9<<)G8ljKw^v-XM_$NP=_*)At0;I;X`PL($r=y)~A0~r8wh2kBVK)Bcx~#6q=*e?T -!xz#!w9!tOTs)%YoHd?Zs`LsW*Gg^E#NZPk8TbZ9$HTBm$QVro)eoZL3Ek8nhl-N6vi<;uujP{3K>55 -x`=#E4iwF#ZPCeeV1~PQ2V!Z+umJ&Y -O;%tU4F#ovy1De}4|&0+R}PTXbD3So=WP{oTldh*}#BVDvD;MrT(5qurb)y+db9P8?C^VLK8YSbYwor -}74?NZ{LZ(ZU8kdTbdV4xAe5!z14tnRnHcSSoJdTI)}7iB{pbV=KZ_fDu7LWfX#*c@F)0j$gQcJL9b| -ET45cguAk#qm53+j&}W9bHDn?mxvq{I=DUro_LCraJi*XsWVqc2rdYM(C}5bd>uu_){rZ>FSI-Nbm2wHLlY*`XTMhJs&BMK}r+3T*hXibNQN7oJHRl -eLYHWus=V~5mR{;zB^EH#Ah*COY540K%;0TA(p5Q+-{H -IFsUvzhL^9Q?IGNPTU3%L{HsLB?X@`-4LBu3d^^_C(S-hB;$KhVaG?e+S@=r4*hJATfkbS{S19!x{-- -UMu(T+il7^!_+{58_9Kh{MsCAdK{O3amaA9Dx{_yp3E;z4Hp-$r&a-+ON(Y0*#N)d$FWP^p5z_zNAq( -EoyUe!^D9}a0&!68ZmqXyD@k;IFF7%D&7wtj-wFd2T>Qt03El&^j7#FG||YtTjK9XdYNR!@Ti3}!c7g -15r7G*e>>&1YC663j5@VmBTOZL^KJvKkf!pL3gF#mN7jfhT$usRUhhdv`{j;tFaR0j_Ad=8l -bI&7}W{4e2xl-A_iFV!#mD;J>UXZ!bm2gSbgwX)g%mwKiSu_!b0e7g3y{mGO8mA`i`sJ(r8*$V30SU= -iFAgRWX+Roxcr;ThZ^m$k!q@g0mYRe&TM8A$v)>Y|c^P&mfMo@b$ZN$2ELfmGW!Xt9Fw9op>BB8_K_K ->&yCwI~bWQyZiSsQ#UN30p=DsD%sZ0@?|us)q=7QI$X7O>)ICk2<;0CG)mpM(hX!JDI2%%;LRnArWYt2)}KtB}B-+A4HN-B5!UeRmPPP_NLRMgBTH86{89XGs-sOz+ZbRIAjZ* -3cJ~@0-8n5OzE|pz-wp>`!bS=?6{Q7EZeFcQ|4fU6*t1o3+6@8K_F?+7w&CDS2ToMhI^C%+b12-5C(C -V%RoIts`T5g~<_U#8U8g$l(|ZU|s;SWgiepdkdH$T@~fp_U99Au-vHKgI<5cWFy)Q?cv&4CAMB8>5vFzk$WIHtH$g0~|1AlclRXsdV$m2- -8(g)&Nfocs~xW0eBf0X(Z_C!Bwq$061;f+n#oTE~7tJv)8wQ!doWGf-=XZwV|s~W}7H4%PSrr&-xveK -z~yy-|$@w{96TjZT!a!DBoQmsaqu=z;Sal(S+0wjdLNVlbg(J=Q~)JM9s;f6CbO#XodR5T_2jR}{3_=o;p%gIE;NM>ntS+0pi0ExBfP75H+m>G;2pFGqBFTUhBZGkao&}j_ -2Th9J1+7$3gHrQoj$z4TCf4|r%p){IzQPH~vdZ-n@$Y*x`{)EnGxotollCL;<2?K{Co>goDx&+tDW@B -!mwl=0ia%xwSVTs=l+oD@!RPyDLlKuKKQ?S5 -!_th>W4+Ub$Y=fkQ(a{_`~4js(MzfS=}7=HyhDDA8@9B#)lH{5ndm%VObVsp-}B#Mt$E1Ad-~Cwd&)4 -e!}Ca5^^DjBFme5`kPflwvUosU-7mz?~Ll^*uy3xAwG4&E7sEC4+NRU_wOHq}Kg19a|==lPd1BQW02Tr%(<2(LLUWb!RPBh% -inaSuC6`|dXz>Aa9SJ94ca{-az3i -&ywYJ{YGSd8@Mav4A-fxlQ2zeJj*ZFGuR%`j8>Zbs>B(GF5-!SXq0T@L~-q6zBt%A*(LrdSOtM%4y!W -t0SG9!S&LHN_#!g^mWF;ltkJ3~bo8I!9hwc9LOhq>BISk*=6E|YEHywVjX@?AeGAjuK#;%qK6ZnvlSW -0C_tgy2mjGwH$q15ir?1QY-O00;o!N}5)>32k$X5dZ*FJpce50001RX>c!Jc4cm4Z*nhiVPk7yXK8L{ -FLYsNb1ras-8=hl+_=%d?_WX4D54E^72BKUQX@|5Bu>vjE;i0iul)=|ktMFpoL16_lI=ai|9fYKq(ti -BM|<}bt&!~NF&qx(JwxsWJGm5+Ek(*1d?$63vQ)%8lRRN{mhh5Qmz-6+TuGKM>1MBpV)*)`z-H`kyp$ -r(CL3%!*qpH_O9<@U@dpDFuw%~Y;irT5`=5{Z^@JHcEAzZkxPgL_7r7KwUakS(GA~)2uZomcoF%-9L@ -I;HM68OutXP^~T!`$#+!kq6!GM*ymuqQV#(B0B7n5a~ub6t8it}IvD-jtl*ZLXT|N9BhcX0SQJpS_W< -H6tekJXTBUBFZZ%AYX!`yk?KMpqxp{8yeGbA5XN?267)Zr#Cx)ZHf`HPm5I0oS5b-5v8^YM#Y<%t>9C -;a@U@blge`^P)Pnp0VoGX@`LF!Yud;1x8Pw}V&SjIj -;&R}SnKaiHGEEkIm&GcyQ)aY*w-lzG-dist#Z=GiwuKe?MsCgEZ`e0OjXTBHIwpb#MY8!3L}?9DFQX3 -w9q#WsM)X(S~(i7s{&M$e<~J=DvROP*B`O3j!;6UlHfC0MZihPqLPCiXHtMYf -nAB!s;*E$w5`+%;xdw#_%vYqzknTzYR$mT;-68+5g%Abl**jRx)%FW$@7Ll+E9=&w0ib-|!DH1U3~wmUS1 -T`88+Q-GLEtgJx#=l=z=5dV9h^EQZMkkKf^-+71br`o&@w2daw&3%tC3F6|kd{&(Vk0l>*}o7YN!0s ->q5mPioXqDK0Xx6fiq@%YyTyE@(~*Ws+ZmLYF*RkuKLO@C!jlI>>R541W23PXT7FjAtEjPNzx-{{j>h -ysXxZMq1+uBWW7Y(JC6etIMpfZ(|r?`o~}burUmV>c^mI!jffU{FlbUa*znvR(}4C#}%PE&-1j!C6+9 -M@F+lcl{fKe#0-7Zv<0)K{hU_^7&1}Ec{1rz#3$9qRg5qY@;e31 -k_2poLq(EP5YHh3FpkBuSgZ@}Sh6w>i4%?RshJ928XUipMpa4=#-a0qFS1QFW&i`> -}#=J%rkK8b4W72PLW?ZIHx5cL^lW?3UD%`o>B+DABkM$$q25tw5 -T#=x2BLxgT<869Gl6+}tm19N@Hhm!YfFizD9jCL5Yp!nrfD@6#2U#Jq`@G2^O%>8r_zmCdmhg=SD<|C -vRob-i~PL=5q7)ExjHY$4TwmEe$fL%*ssi8rbh=J^vW^9(La?~K<=kdzS5T=SPtip5>NOIR5=vB#g|@(>{Uf$`{Sp|C -^<60|tQSmJKt3m^2$Pey0d*Y)ovQp6f@8D3g?O8vX13T_|m -My#4I#WU98&;4HrVtH;3JB*M)F!7wHPEn^RaMBH7cVYgsr7jPm -|j4E7QHA$@j^&hbNOPic)i%5Yj}(LHsAVgvHj}1SAW`WmJCxO+rlI$)`^GeI8b_PCt`6G7UNsDwqx-f -P6D8wW@>p?BN{L94021W-jMpfw%}u6@xlM?_bAr$xM+6SOJaO4NI77(EOdRX-y??2o2|`{@aNzdhIx11ZJqQU@*yZ0T9$3jnoE1gEv@bD*35W!iwwB)0u1g^<+5B4+PyM4kK6YLN>Y3ju#pMG7#w@d58d$&~psY9b?@=#8*|)}_TczY -x@5aZ?^$Wp|Xlv6>ERRR7SV3nE+Qm?BKN)d#?ld*~$=HZn>sOc^MaDm&>#1$Z%%j=3IG=QiEM%O2JB_ -#Dh<5Q$EZ^j!)z;N!K)K(yeHzn0|q4J5g-s6cl>Llf+IfjXj9;V3jZ0}<-t$@dTuCd`P%E`_Rc-6sr^ ->{WineH)Fnn46dv75f|J_xoj;mz}^0zJB659<#LefnBeWADp&DqE+y@mEdrN=gv<0${wocj3V4uG+0b -hNNGc$Un&~bw%G3>R?U1rJ`&NR@jY=Vhze?)yle~&(3Mek(XBL2x6Z&7Zq4xDeCyHmc0bv0jnxU|g8| -t5nLymJ>@Jy`XES#}(`gS~|H+7&^kvyr_q2tAT=v~C*w#*}tv*__d&h_1rM;=;g}N%%uan906b*)iHg -9lt4w~4mcZ2>LQw6=mr=<#SEa-tOp&70Wi<%iGxRpIY>+1mZ{~8Rm -i9_9I3&A+W`k>W22PW>TLjH^tsdCWVR|iqysh=%CXiKBRuWa+_lhF63m`p)9#8C!jVBhb -UwJm==OT;Bb*Pe7={Js`J-;(!aZ!iO;)WXRdNkI42KLO*Y93%O&%1g3Dtz_QbLvy8FS)fjV=sp{r*%< -j%@$CjF7Z!2lxm7{SwoYlw;_ZE_8D^-a;?>g`I><+RUNGugFD -h3`=32Mzc1D*_X9B5;(rs@Hn?^FzDl#)-QWx}`#Qd09%p_)uRl#ZFL)&Y7q>9D;Alw>Z6DyfA#G$Y|d -1U%V+vnztg;l5kNr%T6Q!2i)0_0as*H=6v0J%8rb7Nnxy3XeUVAYnIj<#!aSV&=Ox_&v~qkJ4P!T$V# -nhRIgnFx`+Kl(xohv{NqCVvdRcR3^h4JL_4C89d5%mD%rSD6>3z|m@3R|}Kg#&ucZQ7^*{n~f&olBW- -6mL0Sw%TT;m&Dk=`9D1cn8_n^Qrth^f2W?ZEm8+=mX-nOj**XJ2iK&j_Zd0zst*`6=GEg3@)&{z~l>2pdtjBt=S;BL@0EboM37pF3Ox9NivJA;s77fZi&r -ScjNCd}nccuTCggKs1jzMbI@bhBveZnM-~XTdXJo8{LEfk+TJtBV8+*^bsA_HnJjVhow|u+}(;VCnz6O4C`X(x1)WM`s!>VF026Jo>( -Fy-1VcjurK=n>K@1CTACT4|9&@a0L1jaL?*QEbTmPZQ<`3WR82o06T)(LTDyo{01^>Ybp!o`}`VDBdg -Yloy%yZ=>&uJr!S)`u8+Z~!EQ80GZEC7i4?Kw3^5|s{DHVxnX~E|y*VmmVWryJDz0gkmU(z`c25biZp6G4y?>90YL-dmk2>*UVBf>vrNG{FjYsLqVk#z=a-80}GV;mlI-{#Dq_vgb- -?KeZAWss;lLXN;Cg|5ZR*~`Oro=!ALAY>8|InkeHPjq%pSE3`UQ0tP4L%T#qH@qZm`OE^c!j+S^O8!? -E}95U_8~k_F3F1Cm}A8w{Q{3pa;It39{RKTnoVV-Dk_)|rS>5zuSI5wOV`S7b!^IyQ8b^Bb$u*73mB -?n4D0~MHK+PJUQXxEEK(g@R~(|fG95n4TKzD`+5fW#>WwvQ<~9dy6%(6-$ePHJpUt6!)#+*M^w6L_Uck6(nZO|Qk&yHF5o -VVG*#JZiD1nn-qLJgECvl|!2J-Z>cSUTGw`ZtBL>0=DascG%dR-F-PgNhEq%OcOPSCm7#3I#g;%tAqH -%t}sn2cEp$Dwot@!F0CLzcY=ps`G=xN9`y#8vq)P&RJMSZuwZ}^kGMrT;;F^IY$rLTB18=F*avsJIz| -fE(}_D4@}=3Kb`y&P)h>@6aWAK2ms(pnpQ#c=rhg*003wZ0015U003}la4%nWWo~3|axZXUV{2h&X>M -mPb#!TLb1rastykM_+eQ$5=T}VW03u_Ga9jrk1h_yh4q(7=gW5?R6jh+fk+ccLWp|gBFYv#2X1Tm6vg -@D~5=&an^~~&<(H>l`gocI45$HXuk{oi8VxcjEs>o1*Ss@ryYYlQ?zq~1vl-|y2u?Rk+(n1#A9vsF85 -hO)s#ok`LZ)9S)K(vQvr|(YAFHW4p!k#H9O>LVZP*_SWj8wN|Zy^<=a$V+V5Hd80$aU;_VqHpQNYq;> -xdwAvied@w^n;RjSX`iq;2bxXwmYBT~TP-BvjvxFe^wP6H8%YZ*Il78+Ka{zGnMj5Wft4u2F^y7(`^j;Xe~wMi~DN!}``} -?bUaX{+Z-E7GN8XqkVnwYn|>j15D0$BpmDND)7hDDeNeWbGbnkgjP+VsZ?S6Js3KUYLh#ob{!wM_lfK -0w&l5nZ7%d-Snehb(!2#N)*?@AEuCsSpOeab9ufKmR@4EqK%n>yaX}^)RCz2?w5DtwxCb`LEeMt_vK) -2I7nozBNfVcAEKEFzK`bZ&QBXC>RFgw}jp|_eWz=o=g{+wv9sF-)`)oS)Mz@K&OFyaC#6hR4FI)LjC=;a9K*rDp3!kqmRMxL!oTl}K -K#OMT-*C|h_O38e>ls-cLH`F@V#gOTP^w|RO$c%z%cy~?*HJ_z?;P|N!KKlbBqQWOE%3~oZp -`8PZoTxhP^Vc5p@QQ_E~Ze?65JH;6DbLy=}()OQrNJe_Tq&AN^qesv1w(zaweNXG5!}&d4V=ha^7G?R5bhDcV8dS9Nl3SVQ_}RbjtF&%hCpXwyrG{SWnQCXyyqN%j)oQ+3f{Z*%EA_P8=Bt -)|nn4?NlYUBHXR}F@5~t7@jwxu(WD@xCW|jLr5}@9t2H!bS2X}PgpYEQb0p1weZWvTMLFk%~*vTlIz< -ne2;J3ycQmy`R`*AuMAI$e$8cC@z|ZHbK=M{^dN6aH%3Gov)Am|gwy&7?31if0Vi!HT8YuYrc;~O_*Ui@~p3h#saO2WSMJ)5_{Pf))?@vO$0>k!y0?!V@emDc5x|Au~-OGUuqLyp!Xg7yyfL_h -Ei+_9!ue%uQHD!S5;cV-vMS*vSt)0ff)0yaI9=Yr5{s7I-wA--d`s)|r)j5CQ0**QWNB+P{I84f7O3O -{h2?1@{K`-cdsbp0Kufi~bACC`ts<5@;&~0qHHOl@*IPQKKxT1`ksyOPi#f+d`Ijoh)Y7dFfuEHG=4m -j}N8L;EIT^vVCY`nbd(;Q3D-i7M{-@uqY_2g#`hDXfaiSqe2t?+CIu7h3~{)Bjhnznv5>}1?Jg%Mx&5 -&I_k^|#DDMO}OF1tC$qR{mWH#RQYoBy@Dp6?3x^bOYQzm&$^EiWcrJM$U|uu%U&CiI3@uS&Du#87mbJ -nUD5SEZbITE^doztoTG2CV)Qivu{#-7NCz|xW!KYk)HY)JaHL9?;lW00|XQR000O8;7XcS3o;9(?+*X -~NjU%jAOHXWaA|NaUv_0~WN&gWaA9L>VP|P>XD@bTa&u{KZZ2?n-CJ#Q+cpyZu3v%BHxsdud3M^nYc; -XcH1TyjmvcOEF8$!>REUCP))dK-lx-!>f4^rJ07a0LY)>-N&S^5SNbD{ai+u;QBi>y^g_uRL68Jk^%2 ->ovsFFfW#WI(^At02f519A}Z5-1$whI7h$@{VpS?JRi%vLBIxy^MV96zM&ek7C8jRys|bviX&P5Aa%I0= -%RGsadC{BY=|YsN3=hJLy_9h*Co$G?3<46f55Rg+4#b;`=*xH@&XyU$7RL!*zguPm{hx%^ttkfMqRf| -Jxy)5z=^iJuD2d9|p!)W1l>zTW&1D%~sr7jC4Z-z#<1rW;kHvvF_cECm${PsJh?~B?23EMLy*N&;WE@ -RvZ{8ohJv)ALGCqCr?%mPb6K~Y(nK=~AQGhnD;(R-Y^mf!c&DCjIl&{nkJvUJ`K_i@VNMnE -dta4Q0FyDI&1~XVhzh_5?m%91VCx&&OZsQ^T>JIs*e|MB_T+%taSeCkGDg8d~jZ5Cr-G??%0si|k)&g -|*e#jw+ox=dZvR4TLN0yPqpIFpJiV#$2^&cz0-;QO_vLOW2vrqascIt;&mZ3M^|Dn#pr5SWOeN)n*tO -Q|KPV=ma(iu6koL8Hm@cH%R0{O-o{|&r^BhwFaMi@Ce}r>2j`OCAASu)fN58a(;r#DCuuZ5`c>Py|f2C;+X=8n{duVuVTaW!Z8fq>)kN=($74}qf?0zB)Jt9Xwg#2BuVE2ho5ukD*#W0LzQ4D`I6n_ -=z&Ukzwi;MBNU#NJ-N(19*Et_B%A|TSfM&A*qtft~psf@R73eAo}St6wV -8WmAelrjm`uL4mtyfio_78cPBM?7tbg@8IK4#Ng)nZycfTct~cP$-^+fL0_1d6hzHa;mik(z{S{DrU= -sO-#TpD0Hru7nf#n1Cf%_4q>h03SN-1PSDW@9#OJ{#KIeZUTH^gf)!>mUR^upL=iM=#UJKtHnw7a3mk9ejViBAdhq^ri2}!h4x3q-PY6-4&6S788ZwiLjb0? -T0C7Uq^9_0pYoHa&GllGgL^cigLD`AT&LgsWzbr1Y=>o0y)n4wg=zc{Y}VbpVsKEa#mK8sEuODzX%) -Y=og?PxBUWa&Vj!GKPtvpeM^L{vodu4DdS=*Aqe8@P=ZVzM5t#SiqW$%B~@5;Qo@wrZ*mpTn+O$0?)5 -)RpNLy=E_XkU=*x%TR_ywy2mpop`KLE$M}C_kOfr@sJKga@W+3`W=b%)SATEW*PtfyKq^_NJyYz$%PR -6_TRUSGJRN>(HM?8Nv<;oBCCFvAXL?;B4%VH}&+tE5=wR0+yb$T+)@f1RjO{xw7}iKYlELSl5Hz>gBVx4k+ -we&gA#bmLtsoYu>dp`HI1g;B{Z8 -FK)DnAv?h0~%RI?eC=~oIwvSq2ec=a$dFyyW;BCvxZtprNt4OBIt8-F1wsVaf@`BhpGr1GpfxFw;!ccRN9)Xd|aTUO -1TGUyPug1FXf!_j5wO)GGA$K*cgZ0HDvRnp53Tzf?XDD3-ma>R(ap|hfPBWAVUCNN99EyTIn~9KxZuE -R4S>7wGW3J<_?0PidxGmrAv@L*vwezMRBgg-_CbokYvK&7|+$lt3(lGY1XfK1BcTxmr+b2{HXG@&|9P -=b`uqTq`1*+4VsBLRJOCWXFeUgb@HWO%8VK={h9}}9UW4#fzZ7vhNZ5?4w63XK6zU*3vzSF*e@XYDcK -Jf^0Z~l9|&9B(H)}!!7QMhP%x0f9!0Q1Qj>3Uy_}U`8wVJwe}uC}6PMzbZJAs>=Rf`D>-FM$|M}@NX8 -rJdZ}*4M6aSI_ylbnfjamBzP2u#J(H=tpG(QA});E3^1*>g^nv-Qaw4jWKTc&T(0{pI_=j`J7?)XD6d -hWb4^vCgGU*1k`!`nQ(W#@cL&iNKYwx2pucc~^aFL?50IFz3*Rln+| -v*JP_Vuz|{;c67>Zqf@WmgWOP5^K1x6b9K|qMgRMu;Jl-0@=sv$82XEol_FQg!|~52Z{8lge8E{NQND -k@Uddrcyr;G+B{AfvY-}|CwIEkTMOZ4bNFjt)cneu_5Y|NV1wE3?Sfpl)!X7!eT?O`w2UvNZ*$(D;y3G3KNW%ANO%r`)y7uU-7Pbn0dksM+nOUMk%4 -(K%eq#0bRhOz$KzywGw;(H`12#z!@S*)-Z&IsronG%l=P|Jd83W{hK!r(n*H(}x~Cnfj^!G=M|BK2O} -CBHo_O25Ak&x=+rD{HN>uJQ>&#>5PZi#0S7xsis>U=Ud9^~josPo(y=MdPCyUjX>vcT_w|2?SrX%%z= -X>&LjpR&c^w&z=)&(^5uvX@n2Z!{s3ZjnvH>cDH_ilVP?iAD}HlV{MNQ;f;##u(}`wgr(9aMXZ=Dc|| -q{a{shMNIfYyrH*6205Rj?m -A@E}#2tKZdIB1oV$IBvx9*stuy^?0r)cY@8}e9yHbd=Bb|EIaQda518ud=Bd7|rmCM%bQKT!9T%Vj>h -4YGLEpvUSCdsq_W*0xEJwY&f=ADoq@i82u3r?LD-@Brz?yS2ZNhDHYCcCH>e)RqBw24ZnY&i3%{5}&- -_spQWDlt8(=g&wWa`MGG7g*)mzPG$)y^->*n!=eidSs?0;TRpVsK@aQ0hGzKMvc$JQ?Nn26yh4>BvKbpTd#l{ofSC@rOTX -zJX3kD>clLNBR;#N1L1KOuhGY?R_w|3vAv32L~8tP#G7>EVP)rZ__n@NXin`$n+WCM7D~CkpO|k(=R1 -on$F0X%!TVZUe5>T7g$AA4GRB15t%hzc7p%tD`ZP-48k7baR<rjCV(#-*8Aysjt(Vsufl_n -Dsqg_gdmRc?o5g_QGczT|$DBFxU^uYZcSE8eMq@w?)+^>w5s8oCHdsfjr;6ff<=Bt-BgAtFPUOwI4nZ -GKOA1V-2EW8qJXlndTD-RG(+mvEB3F4Kg)JRU?`6JGO;ITyJHp>zRQ8?=Ca+==Pl7z(8&81VT8!6UOX -%1IoF+4M^6A=D8~w!?iMp%hdI;nr~z`sCz;S1y$hqKqr{G2WiMPPQT23qd=UcAoCc|%R*W{K-8O4TMj(X(vVaWhUP#F`@z?e53LGceTR8bmQ91Hcl;C~{+ORdiY7N&6EAs -yyVjSn)1SYVbFmESFkYMpdWP6|f>z%;|CU#9KA7LYLDhL#%!rhQsK+EUDzkVzilc^LpLnOm+_ -4?EJ)M{CW$u)=s-{EFIYlsEnnEg5*<#YNyGtro~vl6<^CaR_7%UGGi{0r<*tTfl -0PMAH7&89?LxZC7KxBpEFUcK1ZvC$=b>o+3JpG_D>P3Ny*BcXP^n~C+!#dFCs(T%+cti-q1ziDkk&dT -ayv=# GEgU1Y&nRE~{Y8VaY944Mf#a=w`UKI}T??XS$e*W{ybfGqR_^)gf8*UHE7re3Z3UQ0igc-qE6j(*=;b<;y^nUa&`8NIf8HoTWAg?~Na;nAq{haz;{<*B5fUtq6QSD8>4*crNrd|CU)$Bs-I#bS$*E^K=JtmTRRi` -418r>sR^)-bYEXCaCy|d>vr2lmN5EXPk~UAL(ryRJC~VmrImbcTS@!t#P(-9N%zPa5+Wf9EfQb=QZ -n1)M?330(s_lmZ&kIcP@v=_Gi#1kRxAO9UAJAk_I(cqgT0se>?*$~lBQ_uO*1Q!$1k7l9YlWi_8z-NW -t-&5qP{3+`64+l7ez9wt94#h#XPww*Oz4l?^g_ZoYakLz1MEe=4DgN)^)Q@)|W+7)aO}}ytypQ2i{nc -;@t`wx9(w;FN=0>T_>0Mb%7Ad2EJTh!v7j**B0<^zLtR`)9Hihbe!C)>h-NcYm^{RjdWnHxi^t{Zgavl+^`{q-|jUWd&`qE0{;Nx7RyGSj~ -CSmKV5s@WoBtT=C$mx>?Esx7&7IEY0`rcrPn1F8Iwj$*Xy?sqh^@a4%pg&(_H-hs{{D0+)7XQ7%hbp? -pgn?PdQgSNsjZqRwZVc3m%%m&Y%Y&mVpU%azZI2Br^dn6#VKs&3Xax#{$xSWo8pI!{N_>E5zfU)FP)F -3f9L&o_&LXSjl0$BoI7A6tZ!H$}pzK=a<4mP-V>D9QDa7Jh;i53ed~8Z`ZkfcfP6MNYxAba&>jFS(ghtBtqc2v9AGp&jG#6-?MtLfSo`LcTLI`=Wq -TlmU+2=%Vv203OPGabc`u>U@~m8x>#YU>|0H?KkR1GPVS2~!U|m`QX -!>{#hhOy&v`UVW7q7Yf-aeei)q2wq*k1t=oc=ZN`@ut}nJJzKFBGCY4Fz0)mteW~PKU-`8DxCi0yT`{-xZeVSfe{7 -+1DvaH4eNG-zna%fQOz>9H24;fZQb2Rbq4bp+$sg!8F}j-PweA8nL<8;;}5iDy>800&6*Y%@Eq?fSxl -P9yjbL0B+;^j#q1Jjdb?~h)xFn2Hksi1PA0wU7x@U5=6PM2m06XmYyy`;(Ny^&Lu_ud$v@!cnbi|KD` -qq)f!mhFVm^VrL~4%@=1skt0KP7ZYRymnQJ2*OZ{D)n(Cswd8|l8Ti)xOSnt$YB!Q1{ubip7J?oH%?O -(yA3wajdj46f1^dL54L&=!w=d0xU7cWT}gzii-cz`5S-gJs@a-4!@3J+#~_&yj4KdBEPB*U6uf^z(7@ -<%l=6$xAq;uQnB)LE7weV9Cdq$l4$qfQ&;TL!J*tc+BU;Y=JjiTQ7^`Vgbi!A(!V(xmWgmVPXJ -q0qz40SeNbjmiZIH6hKIUYj6p#ahSxUE!O5yKA%r=Al}!61QVp&1)!gKZLh^iyKahnX`as(MP6-I6L; -GNA4~vMI?sFQ&EP+-ze&G&`KLBNFTPH{IXroI@W<2ppNziYU*O5xjDH>78x8P2 -$etlsKtmvi3|o3j1)ojljOxhD;J-g2?|O3yw42y-V)iTef4eD|Gt3h?Fo^#4ToccXqg`xqUx}|oaL7P -H*O~2OZ;yD0i2-tybSO&p6aR~=f?N(X&S^{De}G4DaFU6fFMgfEYh(Z6?fBlD3%myWW{YL1QI4ZT -nx&8vAiTW3fUuZnF84abQ<9F0te6JR;`!$~SV(4Rai>JWalo$^f$3v>mrknPsJ0=6$(1I0o*xjID%C& -NjL?9DK_pIo1&7x0*&H3cvZ6}PpcYTc;lUo-igW1*JaQBc>dbgjkMw -}S_O%d2f_7nFLU#<1uhC7z8FJ%jozLju*v@ZnF{D{ka;m9!}l4d&R?DqsU}l4?%j$-<8YF(lV(aNtpw}{0`DI<|FX`8TR9 -#i}(o4TT@`yEnO?ivLcuQi066^UCmy+miwvREarGYnF|ehsCys{-vePBE|!+WVBiern;E=3+Xh2Pl0R -?OBx@%(Kr!-a&D3OeSNH))`r71!iwdvrPjW_F8{~%lYE9Y{j#4-acT*=H;4N%;1}r&Rt$@l -Nzb1-QAFq!l5kJEkUwP_=W`eo&b}ChfUi{vq7{SbG%$;v$~l>>pX(a1s*Cj6&-vC)#3`PrwT(x&Qtx; -;N$=Bw^QWN6LP4u@q&=5u7R$H4G)9vi-^^FkQ4&U5C+I**Avl&Aa2adllbb%lI?z96k)Q!n@nbK_fv% -z#oHv3b}^_co^KZG$qYol!p`PpQ-WNwMd4~evJ4F;A(pIQL>#Ia8-PFa -gkHP(ypleD$Sa_3b{KusZI@a&=di`w;Qnh* -aV}*3HI>tq`1F$Qqq3o-PVHJc5r^hDz@JqQ -}`4aE(zSa~6D+AZ|rXhijRq -qB8^9bcX3ytdgiQeF3fYM4aFREEFz#|E)P_;JL``vewr_Wx$G4THU?D^wYfA=1}e(~e0C&%8SCx1D9^ -4AwXzVRMDJ^tzV`xh_uv;Ac7QYhpgA$j;5&OO|S{(%w|cvD>9u<6l*MO|NQRw!`ENT2;6YTTCr&3$GL -SNH?N#H`0V)NqVs6ET5m&m1wQPM{O6m+B5Vl|!$(hv!VEm+q --LHWl~%y&Tgy0Wl7B}O0Hcf7AI%u2Ui3D}{Ym6;!$K_?(t&jXIJt`_Ewg-dmrm-ehazRt@<4#)CoK-* -8PARG|7)Dl9+jXyqXiCiUTd0P+fbss4m0RA#TgTaDD=)rrMJl@G4kkfQs0Puug0^ARtqK(1)FE~-Fq7n5y?gB#D -wF9`sCl62iJ_q=>e*NflPqjz9-?`;xrWsxp`8vIKkIaw2!lgja#&)Wcv#kPcwi|z*o$E% --q*n(-YQ|;^xt3ZGFbh;5ujWa?G_{gdsucHg>e1dyZgxy#BFyP%* -uTj?m%VJ=vI{e%n`{Lf7efX9xFPcnQD;zS!6uN@1t`~9de<0eCQ7Pa0jTw;o$&@j-m;j^=U}!{eiz2{ -gxxYlVEUHcP1M!Kp>5mrK5Mr;B+C9uS0VHC_S|33NQ@&A7D3N;n)KV -SYtd-WFu>6G^F77=!r!0mDb^SMezfQDz3}AWo@RRC!NDU@8OC_ARQ*n-Sv~x%)+X||$uw*;W$%@%!hX -&Asi}fIKkpSRY;OHSrc?Iy0H#L1oJ^<8mf;bN427JCtX2yN=h%48bUJ)VMuoLZVu)IC4`{sKa3 -|CUCm~3=e+f-#Gc&j>LAFbc07SYP)JKnetfI!m188K)o7rV5?jFAB>HY9!eN!|qp9~L^;c7L*dzYR}V -E558u)Q>IKA_>oKp7_noFYDUHLYWikw(HJ>^=B5Y1V92UGbAl&P3_C!s?yw$qd6u7xX>Dwzyqyc!@;!&5*>=?-~ -3y||g<_OAjA_BhZj%>goIbh4^rYhfUlNYax)~5_G7BeRt1eqTlN8>%S?T(J@dxy9CNs+fOguE?6{)zk -|MgPbaXQGy9fy#}c1^^;n@35EJ?J?u#PuvJ_e7C?bQyA^3aT6^jb{W4G)$2E*bSTingKDU`!O3t-=#n -s2bHvJZa#p~@B7g(DvC%U$f*foaNxV{G2@5=rSUcC?5C#40_cQH(cDvQnT-S?zAF$xt=l^IZ -7g@v$JISV?i7KzRNev9aTrV>6(hI`O&D$rO>9i?*^Z?nGkExokCr`{aB+!z8gd2X%Nwu3NDqa -QujzS+S$7#xgvud-4k@rRW%}gLc${3+2|5Jsbvt5}h4pYqkyo4`jB&zG$k5@gt?z3z@c0_Osr_im*1Q -e5#3WM%VJhIv-B7h6MWT<_IVx#kE3@;7c)oEP_6@DtlcBM<3{T~2&%?}bfuF#yTEpw6g~DB?=BtJ{1~ -|yN?}to)i7_xXE95OK1jXy?MWG(MS_bQks|(0WlL%&9&457A_pMR5G-ruZ+iu8$&I9TN5 -?4|PFi(r(!NJ?B154}pw8n!RvfscF7jNui3J@!dOMo{B;#4#s;KE(cg2VVg)<1N!k)hCG8z(*v%Vta& -FSR33eV$C|6IMtOVo!-@p|PvL0ka`8lKA##ol)uWD9o{rKzi6mq#)@EjD;eJ_GR8qOkh~5#xCQ3S{Hl?2#W -+lxp!D4UQ#Ot1=u&9K^aH6qnkIK&y~*_GK}uvM?tcmN(AuV(TimlXwpg5=Opi)E%NG$ev|N&guuEB== -&m{lX!?0VmJj0@({l)*X&Jz7bXsLwSwMA6HvfaPC(eRgTWbS64<#vo#H?UP0I#GdD?t8dkrjB>Mm7gl)Vk1olO*Y)yut`bqgP{Cqv>=M?@L_cBE5Yt%V|5}cv8U-7cr}PG{8FD -^pTYp394}n7i*2^x6h2&YLaUQslIRs_(ROew5MBURb2Cmy4k_o|fyn6D!+ -xu(;!km@e5rZfrlAbeG!Rq9p2i!L@)_L|eSCrw)&&0)NV0!e>QbiV*iaCPDF`vNz?&4HWgK=+#1lJs= -Fwl<>cHv=}e)QKJ>*qfj{f6|qPZvSc;-okxtM*g#Boj4-6h5h859_KC3XtGcTTk7zh@`D=(q=uf+=TS -GnkAo-7@9&(7C@2RryyXast`k`a3&%L*(U?TM^o}rXj(6(Hbi@c$m!k^k?f^J1(86FdVQ5LP{RHWx8f -cZd~#Jok07j!+C%ZGZC&y!U2hDT-`Bkiz4=4R9MC^mcD7VXwQDMTD)h!A6y7n$NpK}w8qyW)pO};+?efSYhwB8&Dxj-TI1%Z$&UK!Y@3jk#{?qcH9{_Ni -Pz9#%CGsHP<2_h -15#k{mM4?^vYD@YKpK(yVR(5mq&KEcP -sWOKr!-M|MjD115>-P?9OV#6B#bd~uV*9m2+G?$)1Nf!<80gJC~TISwo6-8$OhPx{8F|BG3Uy7%eSYz -Itgmiv+@DONGI0Ek&lWG;8=*}9q)b^_jLjEj{A+c6SGf5>xk1P|>+-Z$AON(F)oIs?igbiizqKEL{+H -^zNITYW;zF}!8x<5#I@E~FtTK|Q}WS<}|CI7*KvvwI_UHqj1=$~eMW(P&W-3Rf8N{CZ`yD;+Z_)h|0Oe~1YnuenlQE}}Q`sgCX`{v*~oXc$3G8{~(MXW|0Lyf1G{#q7 -=1h5*7e|V{25W0;Qs+p4EP+};7mJ6^*7I=YgW}CyJk -kyvo=IMPDpRE_$N) -P37gswxj60IkADHD-I^`XzDk(xL3L}!xGXh%3t0ZpSXke~-~nsQu~f-)j0vA)jJLX(C-m;|Gbw#RuIN -Zx>tqREzxA9Dg4yjm6-E=iSEy-oa`vhn)YtlTP!BOJ4-=>``F!+6m2)!I>6FlRMt_@onZALX&(rAfnr -!;lIOq>WkDWY#h3nkb6+TW4U~Wn9CbyBOH0U9XXip?HQie$;1d!yoOMZrm!`+l_8!(Iyi*L>^Y#jeVX!+gC|eRTGUk~pT>hv~zde(9DNM96^tBZ?h4Qc?mi7AZz$v%0i%Bh^II`AOtT3~Xe@7jC;kI8}h>Q~TVX(%w5Y^3;SV5YH<*zbL8u*NMoJ=n&zI;mPhqY*@TQYfSqyjiIF3~=t{^vDX8A>oj -3>*Im8tx$b}_#vK|f|3nPyyt1I-lK>r!J{Y>{QV1L*%z2&uc&cj+y -=AIVSHB(eKR0)P`g6D!86BDBhJHZ530mG=SR(%&SfgrEy-|gs$&h!WP2+YR=V%7o#V-n$}df3_wxt@;o_81fDSS9Zv%a+m;qMRrmFqpXaTw&{40SGRK?u>I218*}iS6j -6sNE?L94QZ%mJYW`fucl*f4juYeR@e2Fp_^p6*Rna8ci~{*G|os#j_O&ZSL#Nr>%o16GnQ4e;mp&icI -v^!ZrOnXQPwD!-Ges0jQc>V$sintke2#Opf6Q -H0J>5JmB>f{HwrH~NS=RPH=&FFoK=f~Wa>#r0jz@qcbf|yK>HAc9U=QTe=gOW{(k%enY=@gE1V(d%^F -Xb$Rk*F~PhAn*b4p|vlQI|>tg}^hUeCx{t@?Q%0nqQJ5|Gcc~Rr;`_R=|dA-{cL8iE+=Ejhby|FjWqo -m;;SM%+iWrA}lGjp5Gsr}LrWM`l@);l^_;eO7D#B@aS063 -yi*k4o;Yu585Xnjhi5uBt*bF7<+fe_5;KwzAgMe^rrG5iEtoSJ0j>Zl8MU@jw(7Kk8+doE2iIymJ~9R -IBL?f1jJu8TB6_EqMl!A`aOenO@jL;<439&<;R`J5O8!Q5rO>OFli+kkExj01^D8Ys&p7guL>BGllJe#~0xZ~l-1qdJg5ce@lvhyk^9B3|}!JIVSR)~JrbvfSw3c1MhO+zslkt9uO -33mX|d;Sp%q2=`Ohjz!AaieV&;+_b?;Ms(ZGJH1S5Upqzbe3+~;JkD>^vJUgyl8;c?Z{!XpSZggkE%g -`on4^wDH(a9iE`*ml~_f8rf7hc#k&W+-}v;RUbUQvXn;#RNZL9%&pW7-tE^@IahJ#F=J|_1aU!k$rF4 -reEAx_8d7y8xbCKbFwb)$1_KPN#|C$gH#mIw+RUm|l1Dj9bD6rC7Gd74qve3kqcMMZg*O`+1kKg4Obj -gFi|atE0?bqN1mQs% -tO`^bI|ppRnV}ML%}lz41E+BDMxC*a-}WdrX2($2&LxI^M$WE)x|?+kWE0hhuo9xsM`g4l#juK=+XO4 -72?%RYPz5VeFDeDr+m(P@7CGnIK?kB{t9*miwc+{k7%fkWIvkA82((A7Rtxyb3G@Yr>kwn$>C{`ZDVk;Q7*X)ibcDO54T3@Iu9_vZV4}(?q-qA3W -KVAjI>3mjV?g2B`9_-L -y%+HE7N$Y^EeXz4uvZr~|=Q=i?LdIWIPIG470n!^H)n`z;JNt}n?;oj~+zqY6P%~WH_kI19Ba@f;yuO -iYH-7$9k0C{woeco>rg84{l>%Vf(thAo>E7{8N&W(AInOyN+{&_?kjUGDz;|6akhs~LXc!TzH}hd^uc -BBMD-frn)4fjfj&HexL&uUM1>Dq>YjP-|j=Ipr4?W1eht&Ey-Yb?Z0$RW)uj345!CK6ud7_YT9c_r{D -0F_8{I%xtkwBc@t$mU%>P=km-tVm%Dmv6#L_f?Vi0atdBwjLZc~?cTN-pYMf*NZ4t|E)x+hs4V+Rct+ -m%tzYj*iy3(IEP^c0=)aV{}r)dw_HZScMJU(NU?W?@_%PQFy`ZL#jk`?crAa>4bDoNf;rAPB^CxnUV> -QB#wKYa?KBmG?5|{m0o+E2(RM$8aOC5{1>()fp1?I -nM?)JnQ7Kld=SBo9JnNL%O%`Qw@17}H9CMG*w@{8Xr&WYO$f@8iSvfLDl;ySOw#mpORu$nD4gj;{hHH8G>uTP;~~j!!5jvmBK$+6m(7{jD&_GMzuKrFjmPRvXG2<$ -#mv;U__kI{2MqJX?Rl`A*Zr_&FIFg*vnH|lT#+TFu}?%7QKEgmXS9;9M+j87PRCkQe9J{1ThafUL$5u -J7I=?o1xb-!w!8Kl($3FOCO=$b&|b(=;~APM7U`emxO&eIXoT5UyAKP4*AhCF5QP`)=k(SOHMk;H%yi|a2*et{~JH4 -l!h^S+Ot9*}+dN~ISvQaM7qBr84lL08>*UMe?asf$9c6UuW!Lh4M#!gaK!Vr!K#BwS4_RU>xkN|cCZvEy}t`5sBYZmWFN -Ue*x{dQEZr)RH__;?de3!j7dq)r}FQtVtks)K~Bhno#Z3Ba>pAK>8^4+KjT#ttlL=!r2D~2$rNXn>T#^PDC)U`V|JA -ais>UE{g?tyZ+uV~)J}R398D~N}E%R{N-C#a20n5i0Eje%~F-|J&rbTvqXXk|cV0*iN^=%3CT$L6t9rixHICwtm-CVM0{!lue3L+gU`rEx>NIo$v;CE)c!WqF?j -g3-1a|Y)RZZHaj}f!27QdH#S_XXp&h5Eq{)EpRO -2dS-Jmavi3?z|ZTpq0k+5z2KH_5%6V9zEIBLXh(5~x6MP32=-Jo^U+(?wH!9;J9z<~F#Q6HUQ>>MF;2Zc!pV;Iz --3sk`bQ*unw0K@RTji<4*3*%z!x9u8wGna1@a}T*QuEZP9Fi(j8Tkd(@lT0wi#L^QL>ELJAHHH(C -~}S|G8`!f1)z>|Mv^CXR2N$~&Ip(_L~p`O$IuEJX~39`>nWc-&$nsX;W2l;^}Bs!** -rUuU$YRmU~0540HT>SSKukh%YX>__y9i0_-DQ}W)6hUe59K6&zK&C0}SZ8TGnH?Pawj#w%6eMq -&O2?SKMp7t#QgO9J3w;^lxu^k45~WU2kWLLj>D48*3)U(6s_`7qSq)rQ~-s6P}+@&=jn@Z=;CnRn`~|o(1l$X22nTVM -Oo#G2`z*NCgNEq0lVaz=^&ATALehC)hnp2a`W1C=f7ivVwIhgj!wSfn}S -f!6MAULIX3dMC0zcR#6{iN{0SC4F#^-Iw5g6UjE@6+DP{ILdY;FYZl1{Hv$Xlb*P8rhk{H_}5NoXR_q -Tlx*(qUp=ea6M8#Q%7FQ`vx}!4@7!>~c$I3ly8x0A{I^ekcbf43qBW4w|JD`2EaSg*1-df~Yasj{v&E -7ArrDaz+rN6clY3s6v<4 -?Vq0}Y>v{uqAa!X2X%6-VnXOPj4GxK^M;DhR^rIWFs|Jqg##)dIf7aHg9EnDBXl@l5`X>-EGRX8oimG -j`$uFD`gUzI&z5Wdz&_hmwQDEE!}2upS_hiNsQ9dkf;0lH|Rt-G}Zt!fzE%fvPrJ6qI8byO7Cg<=Bl5!pjDD3#T*_0+qVF-1yS*} -$Z8rTrr#IZoXs-;$^)PEUsTh3I| -7W>Epr4F%9whX1rCbz1z6TkA93&L;FL_^NX~w$zr5C2A_+MvDq?MsTtgyyyGT2l=-v>ONi;H2axp1>h -JwZ&;7lq^5BxjsTK<*b;L*6y9w7OAEUAF;k1J+mFNz9n9i}! -7UnjMkSxh-uZB_}$wMDbT?`yXHH5Y~fvCbR1OBsTx>G2OBBdLb&pQPk|GCTk}FdQfMXyiM}AxzG;=#D -qx$^#R7E>hKVN8^0#BvB13oFHG;>h@#300`#QWK*^Ic`*r=!<$t2p_al<)bRW)jVAemdoLvk&~db!g* -6Fw4Tc60cSw9Dj_guPSfQY?QrFioeaR -HmvbULkAD5`t2Gt>$m?;F(cjRAp)0g2;H3Z(tD`bRUJ`Zc%rfB|qm<5Dg@AC&Z(fZ8#iu6fIALm -uL~8lUL^aU|J#=|R*L1A7i)B<>^1WPcAKoV!)iTrWwjCIRaxyCQ~cBYdNRDhD9vVg8ffqKF=OS=@UF% -T0IQ;*+6EF3Am@5PsgZE3Y!?ICBik8(;-vJ&a-}1FIdl<5hg=3-?`I~?5f=~>=++?|K5CqZ3sxKR0Y< -dO_R$h6FVmq%)MaeU(25Gr^}12J{|kd**V*gIv!7qQ`Ab4;?mzzS)k}YomhDByn~1jMxQoqtmXwM30n -HWefbQoMBeGfG8k>|=gs1Eo75TvB@rug7N&21`z)=?a_zCPPUK8lJi&!Q|8fj_q7PBjHe`rb%kG&~Q7 -=aM-d{I7cl=)wdBHWnQKyabW@Rt;JWsF`N&CmQ;$w6@UtR+v4@K1=9%sZLI^63?D$>PPfjkszmc#;om -Y5;~t@v`L*Vk!}R2|Q1M3PDq4#qtgFx+=a3>%HRBp*vKZX0_U`FRjOEzTnGQ0L^R9SG&UxNV6GxtT>+ -H#q;m~E>)r>uneO=ReD0LnMKWTV{(*n7aYg5WnaMOFWztuNQNuhM%kZC0JC8N#jx%)MB4M#F04u9Y#d -2bd{Z}hvmJR19)c0mwb@%QA-`n^U1~lUB+KX+MYRICJ*Z`zx;9pr0Ze*Z}8(mfDdPv&@gqFPoF7AzV3;(x{&ZXe=UU;h -%;xtpOD;cwq03wm9A^znmOu9?eH^l-v!*ITfyO`v9OBq5l^BU9&9779o^Vt-}?$j6FMJzk#*$W7vUYJ -=pd2)i~@wl7o4Nb8#$eZq-;8k604W`o7jei;*#++H!JO{QZWI>o-w$#GKWKz{xcOMY4MCFH}Px;8Lu#R?#+31LgW||ZL%i`;sD -VP!hq>i!~}b*wd6sj__cYlD5N~5&#$$7Um{6m!eq;NTx{|t2RWwjV_o_>vndJWHf9G{iOKVNROp;Ouh -+#PPe-Isr5g$PUCy%2i)&3@_SB2A0W18dqeb@sIn3EnShoV~maDGLv?E8)40{UuIJY||H^i*0KjCrm% -&aogV3uRq7AN$}um_=}(ls_YIfUHXJF{R41-wQ+FKIt*4v*xk;Ix-(9sEHiQ%Rr51&4B-11Dc&MtwM*cD*7*%dJoM?=-=klvcQ;-nlPOPpUt{0Tce)A*aSa!r?lL ->@7Mnfyea0|l9I2nL1#G#k!tfF(jGF-rv(CCH=?GFNAs??934=OzK0pzrWt7+s>K$l#((hbRB>_~763 -gMU6e_+xf@e>lbu{OayBKjVQc{{~oa_o*6xRDS6J@sv;dE{K(os~cUzR=2e=AfdQyqLqFM2Fn+KXs5c -(pH;vzm2>&Zjlo8`*f1zr<8+wdLS@5_Kh5q{HRF+modEK|rHCG!z03Qp2>~avHl6Ctn3}X+v_){#>dg -f+bzgt|wbYO_fFpekA7-C@zB$`e>&>H~tkIu-(l4`lasBXqn`1=AKY^0l#$SJAF9&ym|FLinCNZ$T1? -Cr@W%s{{ECxIemf|B9;j&mPs7T9Ve*2g+YMn{zuf0QZSDfTnwWDP6^7!Q!Up$EQA>pFm0t@Y)Db^D8Q@=oQ-$l~_A4MxK>AFv#Yp1aeRnm1GI3sJ4csccpAfRQ#RVlJ -!mmaj1{vGA2H9Yw$=UhfJ+}V9OZlGQeHfU7<^hs_??$N0is={5LOwKGA%9X5%U!45^w;yzf%>ZFBcHf -5!?#)In@oLUm*`;N(Qvx?S%>~>ZYc>nzvBgU*XwCAWW$sx?J0it6reyZyEZ&%e&>7afY)R)l;i;;8y3 -W?v96u>OwXNdy*q1{+KKcW>zb@)=KF)9o#iWLt(I<8U=PCuaMo;pDPWku@3*!Deo8C)Nj -3TqD-5|E0$QES<*If8q24Cpq;|N+_t=M1$HMFu3}L*mC2?R_rT$5i?7yZr^SdJTnp>t`5dH4qkyp+^@f8w>@q0L0a6l>(sIE5oCOF=*Kj*OfA|@tqJ*J2_s@%qNr- -UxOmZ38XZ+o6@6fTVd*~%5iW -a8d^~(#SJeR6rYGmP;J>7c#hIj3>tg}CF*G2p6MQSpdbiCqvVC@)(^ZNU^$)iMh=Veg+d(O5IzrDWx; -JaVd9}aY44uaNn-(_bF_FGX<&%ywW!;_dY4@@-v#cQEbm@0pW$Q=B#4xN<>Qbp+Rf8%g(uv}=r~EQJ|y_6D^tN5{c?_q^afkHu!$ -s)SI(K(O%XySDTi1)-hU7cBb)LM;la?@MA?MnFBh -#4g(5~bd4eoLyA#tXP)W7RJR}K^QPlnYP6yY0@UchNPDb~+qbqw?u`fwq=fR=A-9PwF)6}2*>WTXOc8 -};CsY%aZIuj4RJyEq;J4KKEQopGAUSUN{b-hyqIN?M7t$i>|?(5H@w8kf-)HrZcVdf~vg&T3mc+LI4X -CR+6AE*-Y9D{G -w+GW0gIE7F6ws%f~iuBVS#Uj?jhnH{rcxV(-d0#kwK_4=8Sb&7d}5{PYbB`!TAXL2$QV^ZH#s?4xRBX -~nAFLE^=KiKPk!id7qmH!E2Iyboh(6ONZzGNzNEh-r&g%GzG$W7*(^4td(z4SbnUmn9f?<;dM9t^v;9 -=6}<{n|6&9geR~>!kgC@Pn4ZFq*mO70Ereo+%UL<$Aqp4<9^eVQ{N;T`yp2+f|;G^@E~%fPU2N`oZez -!kNXh%k^@x53?v|2j<}c$4xj&g!*~(oTD7fa1ouC?_lz9eKf@kpR0pwnv%C2vB3qLa>`)Cy2zmIb%R; -&w0fd%kHgQ>;dxy@ILn)C{casVMNLx5BX%$Rd~g;@mOc1LKvcJ`yEYlxk#*iA+r@A0z)lwi3;+FBjum -@3|F}LxO=$iUr(l+l+G3ScG9y;twre0V7nkdU4Z8ZalzKwDH<)2G!?$nai}t1gqEFVmbXikIjTx%0$U -9(>dugV!EYpWdJWvj)@>_ilugQRJf?kY3m-}ZfdAnDd3{*1M$Y`G&{{LaTe_rI(70bjD5YJ7zGaCMie -Scn82V(S4UBE~pE9PtHe&rfHHqrgEPWqkar6kJtkZUr8A21aCB+5$s;ECFkA141@tbE3VV^riVAn{q7 -cExLqiCOoy=wwNkF-DW5+h^=fKKM9%2(ZB`OZ@oa0v&Xzq`Ezi_5gdJTW`djnYmDc*vj1E69)70$_G> -4cAZvYOl0dT${V;@>&TA%9%$yh@A>Tw1KOQn4Ofse2cn6=DhC`_XY?;z%}07o(8UHW{A}R!zfX%5pe* -q};!+;uUPs^jMFFdP^hG@Fy3vPrc(RhTg`}KT8gO8k$*Txt!C|<#N|NWsnQ0o};P1xni6y{lvh3K>(a ->Z0_6%ESl=a9IrX1ov_LubUwv{!Z{2co2OjSsp -L@?(Ju^{e1)(6UMK!rjE-uXEQg5bqQs#;CBhHiSvRQBPh4OfhXZG$hnrv2RvdwHeX%R5h#4b(%hk>z6 -HClQvf{<{a9+=m%FgfK!L4vNVXPB3+MEZKjAQ+LSH9Y?AyMt%XzkM-`eAd*p#ZH5FPucU(;-1384(hcklv`2?D4Sp>_`*lUe&O2}vqaSs*c -f)o%02*Y8GgT8vb7LQvxte~x7pWNFLhV-Eo@|SHoVgf;Iv+X0r(**ym**#>QAqX!i&XILWfW~H3T`GE -p+uHA~7lu)q)j)+N!U -LMJ&ec*HIr2Yj5&xD-QhVluZ#ikf59=)2N$4%CpOoxmeeRF*0JgZVmuRysSnZ>e@hay}vGj)p05@vd5 -)&GW?J%%Nt;cjJ_x$#D3Q2T1Gq`_egK04A&x)z!8cN-&Fpw`6W9|GixOkXPk7E<&s@%0J5$9ztr6oNd -a5DW_;xEQ;FHGNpapp=@&B*&8n(Vo{)vx+B!-yhJ -gS9`+dzCjtOvt!A`|K=nrX{vAeh}7^TRN~>@@6}Q#3hY5cn6>q}x@U*=9VQttkb$DU6Jy0ZRxWidby@ -p;*@FS?OV|{v#~wBkj%dT2yX>>OJN;#^{mSe6c7b!hk&X38T`XZic2Cdoq@oIZxjxIQ-tQJo`IRXDY} -eV8nvVp%vnnW%CrfRuZ2>)U&Uig70dBuINtl=|ox_b~FSVUwBcHoExLI32t$WluDB_6l4qun0Wdnh{H -Am7h@I^hpy1>z?qhMy;JkYnEU7!iqpf9wwliEX2NV3t`y!Od ->L!q678{;(=K$5jcfW2f><;x#|_kDIDsFa+^AD1N_`~u@IgB#F6S47{$1N2@T=#$T%3ABi3%tJOORrq -$M|1TVh0ACAz_UN1WWk@^eZk(tpYAp4G -=mzU+?csw@TdOBB%ZJz4r!8eZWw>K+%RMhCN>(G=N$>kNG}t8BJIY^$5llHHil8?Ll!ECp1!&b4n|Xb -3-ug1Q-4_ol@7uxLVP&lVWw7>cYivHlvS5#3p+)!)G2%BbyY0vD^T1lc30-gPF38d9DN@LyiANP-jJU=HC9`@UCu9;?fsj14npCU{y$eSxzva79Ttvz -ct1%WjuZIr;E~3cM}PdoLpYr07_x5opSkv+$BzNj5)GR8d$zp7e^Lv%vuyT@F-?mXXFvJ&+24LRK1_y -+W9TmKkTO)%H8K5*;$4zH`fTLZva=V#k#$s>&%!VHVe;gU4}V`p9ao9x9P;r#{*X$>Gnhp1nDqy#Dd!%N -MWS#K_^Z7d<3!IDo-&1`@Vd;NP2SQC3$2n=Q#v!(lSC70yM%9QKgIi2rQ9Fyu{kBa7r0v}D~7i;z6|? -o7rB5mmJk%ahukqO3!(S+=ncx8AHVRS)GWK@G|B3iXq#$R(2fi{QqfD^UUl9EI3mJM8t@Qi&WaflCX)z=uk=z%1zr}jD=e3GR$mu!Jp@C;+zGUpTGH(>9P5RBCq+LN0~oGg=Gl)ft|aJK(qfR`uS^wd-%WZ=E9@#hTA!&Mw7I$rHPy&)P?Pr#O}($Q%bLF -~>!Q}{Qw!}!=ChqEMCKwaV_i}qd -)<#GBUw0nY8gx_)55m;`AQ*lw+^O+f}nGBk7el8);(re{M -ZafAjQGsK)D9Tg3dq@Cg-xzfzo`OHc3^st(Rgd`FqDV#}Z&{g7cS*%{OM9iN?PItiM{faMJj>>_L=?MN>Y(fg^c;Cn;Jo0sLhRiFA6OKMQ@XBG{O8K7*zQG{y+b>XI<&EQ -89l0TXrdgm4MaM^>^6hawY&4X(YxmR -2Kf3coX`HEXt$~jm1RT9i&<(oL#HT?|3ADtD)fsM>sux{rCp>{5~DtuomPc9FAEnN-;=df#MuDO6)P6 -EQ@JAK!%4TIsU9iGrFi|!a*&=@hACyF=ml1K-}c+;k9iT6IR=~PU6O(HD}cK`LMVq|qaoCpUn4#Dk;j -*S2h;RW|g=)k-;0b;xW@q=tTMLI<19=OdWUd4JW_Y6Yk(fbd^-Q049{K`&)Sj2G>`C7YgNG8&0q}i06 -6@oJA<~iScE=9+NL -0a((XTAV`~M%#6~Oo*eUygVnqBfv3virq(9M)JtkCQUTeqN@DBj)DKa_5l$r0FJ^P)e5S>_91UN#bZ~ -TUPrQXhQ8dy@HlMojwud}~uz>J#OqOOZZ?LT(?C+?mIfa#@rxwK24Aia~d9zN;pRO}L8$33&X3)TZ9< -0dAJvL26Q0QCZtKefXQ%g0Uk)AnT$3Ub=4D0>*t*u2EW2a_c8-nwt7{s9$A;B?8BOE%P2BpPY~d`d$C4OT$H@dm6F{i!ZW -eOvf@QMwErzP`;d_-bk#bF$;MR2$NBU81!Bwn{G-&zfP&9&qvV=(I>u-JH=;SA21|n&5Egi!M3>BNYf -?^=R>Oi3B&utju@bXE<68^$0LEDz>N6%V=!+^P%aQ(geAy$J*MXtu885oAT&PGDL@@fTh@)I8;g|Y1q -}_==WIyc!)a@;M(r_M_TA?y=<9|G%CvNGq%tnGrs!yT -%Rwa|DxM{0R}&lEW_-eh%@x=$^efD7T>>w+4gNxv6TbnWqrVF2-Y{j_8+a9${z9F(8?Or4GTw_ovRD#i$#kmbQPNr -$HDlu-eQ0W*+=5pXwh$j>_KTBA^6CFjV&FeW0r`O=Y>uGtIs^C$RtjV?k|G7wvN+H2M-V8t2aEHOkL$ -iz~Ih407++ZSv|`@jm?^rfwrM_OErJY7G2YKRm)3qz{Z=PzEza{lfo&n_wqH(L8efX`i-5YpX`#o<^L -Xw_`8E9D2vUzNpNBVK`?993Zy?9rmJNlc-Hr~l})_^9@DaqWyHzLk -S>xQc^uRDv#z&RE;MfFl${1K^<<|JDJNxM4ur`7@ZY17j10? -)3p8g{EIee2`oVv1x4JZ<2pXnqsN7npbkqwtb4TE#D$@;YCT>nuacfC2Q>uL@se0nq)KulBAUcTr5>Q -a3w1^{HCq%yiYaoi-*>4F5SHrLDDcDOui~gk!Gy#U;-%wASXj;Jh)I217?*exz)IP7deL&3>WkWK -C>SVs5tk?UG;K#P3``X&FXXx2EF@J_3B=L-agOd2!fqz|hj8>Uig2-$<_R4;YQ#bZ6RO{jLh>&D9p*% -OucWxN|E$e?odLRCy%{WVWFdQx>jg31%V?a(607QR025t5Oy?ldiOPvlJq|Bak&ySQc*05_{a9YfQiG -XRYTvZf-;c2Zed!yh`tUC%-eqpGGgK^U7z&J#8EF0bPAKEpX>a>T}Ghy^7fR0;c1um0BrhNVu2=HM2y -w}EevZGkGj6=r1^GzR!ZoM_g19=e?j-KM|8w13)&*NDOdOeJ#(@b~j1Sck$DrsX3#yOCabvi7obDgIF6XuaEudM9UcBO|^)gmbsY`! -r5cC@TEc^Fn$GO+b>MuF0L-ocsKTIEekhhy0c))}Uk4Ji~_fp$}QEbUa;itD?r)ha=FN?A@M(#8?P-D_CjY3jy-=7>3YaB4ULlp&r?>r -~auh`C@iwu4ky44w>uj2mvll3AwR35%PRsk{=ePTzs7bd|!8P?^TzdG#^IO>}}%B%K -lO)A7Se!G59q))w`t0E-QP9XC7NypPqrGn%-89o*qeH@-(kffQxP72L2XwoEV=8%;<*x(V*MXVJK*`Y -^2f%SG!=%nC`Ps^#an&N?XN-V#%gcl$h1m*_XE`6D>LzROjMAwi5)o -u}!O#3IV;J4oYJQ!MjYjg;sn9YBn?9LDfkq=D)s!7?#?cfVJ^_ECTy&tZwaa@4CW?k>%X*nF_bGQSRy -K79THGScI$nM$7m(QxvkWB{InG&5H4NT5XF^Q=fVD~w8W3gF1%0u5eEabsCa)CM3|H3p`0^O>35q|WO1~`i>DJ*-qVsT(2MJ`-n5JDfgGiIjDm{D>xOHk@w<=`-UuT+M>mwEASMf -Gzbiy{8NDUcA2}wzdy;yWPQI{g@#y0>#Zz9~UGT8G^Q2y`Fq<-*t*SMI-!1`pwW;Kq5_&}H@Q%yp?Jg -vm^h)^xpt>&B%knn!s2_qS-QduyGmy`T`0hU)FtmASQE}b*d*;H+e1>N~c~Mc7Ps{5XJywZlSnI5?kY -=ZhrIV9BT6f&lC-$h3J$%rb7nlIXt(x9ldg*XHY>e3~7QX>)J16nLJ-HODxBTSll1eE(YdxF9WT*PL=%QJuhwm -r{Mec*?`8`58Ab7>Bdmsfh4&bVxa9V@D3>J{G|iI7NDuMU)sYa&Hu)`?{Bz7Ubkr7jg~AkpQ8>fsm$tm9ObY&<-7y1qg`1F=BNr+8Nhq$0mwjklDx_+Z>`8~lxF -SOQ1Pv#L-K$DQ!fj4$DJ8A(G%;1`ItW@PSaO=m&>r=obl4+*V1}=~J|fn`r^Oo0?-gYmV22zce8@)Sj -ahC^mlj=V>;U5cjHB2H?~$kr*+>n^`@;9B^Oav6w@30eQH~~&NH||jh7C-rQSLctq{r1A^sihl1E_c1 -cFry~D?6c`NxH`>j4zm8zZ#b380c7no18Ckj!aU))kYT)gqhpWa`;qhOl*Tz(ke&98+F7z7xtUI;8*zv1~wLK$$mP1_2(C_kCXqzKc0Q}{Kc!|Cy!qrkN3!>ARNV3XOcqbRQg=lWY1OXid2tupqjV&tx%pQ#scTU|kOa9X-nmr4x -UE>nKx$DNdj(~q@*GadY?YikYq9G{E -&3I%oG1_^IJ0thgrP%QXat>8$J;aih_5`}NT@XBj7>wlP)An=-V;YV%oN&s94c1ddtm}2U8#rvmdN{y -9ecFt0?yXcFiDwqZ5ONR@k1#>bIJuWMSViI9y{jAityh6f-#8i6CeLwW7$aL>S$COo-Ba0zkyu7S<#3 ->1{Fg`2V`c2tf+4^!^9D9_UGT+0>7P+UFt-ZM40t=#CuC+^l!L7cC^G|+4Bo|J8}1He;LQl<$rRA1%jjyn9Y%#xoAj?tn*Byg8b`NL^~$ullko5^3`724JwG|4K3vJt -(7q2i=l){@E)ZqR=Lh+Xmm6$m#amVG?;9AT|bdJ=fBg}^BXMy`tCKm!FQvP5PWL|;In#qwJH5ut-pC2tBartVN3t7h%CTIcToTd*J-d)lFRtbO0`M_4EHO&7{|NWbI -klM|ZaBiYl>PTi+(EO90PloZA>bD|a}yqdEYJoZ1G9uh&EPQBwhopL|zDZF5rg`5Ngo8#0S3mhy+ZbD -39zBz@}=p?uc%G*c*JjW*_%S}sJILay+QW6DO24)(~(1r=;+!#bCqF*_VHdbGVVp$2ENZ87!p$&h~^s^nURlcm@A$M95%bW*L>ykYf6Hx(W9#_(~vc-_$-JZ=0_ZY}PeQFLbsAaCG=+ -Wb3thjj%8^)h;=dISCiCi}{fKjAEg?~oDJy#(w_h7Us%WVl%oMawTjvTi%U>|V^1rC-PFfqvV8uDqj6 -Uq-l55vl0)orNiCZDc9_)UhvkrFu!~w70v?@k0L(`YcxVwBh1o6N44H83uQ(GLu}89Bn%cXm|KeH)x# -4q!nsq26j~iVqjhc*eCJ^HEJp=h1K_$x9=fdM6`n(x_t{NhSumN)7if^*g)mPVc^cz!HP`WchgY;0Hd=5hODKu3nsSKJ8?k>2uGx`D(75>x -a5gV9fL5&I&uhaTB@FFoVtGEE}2Nl|WSNyWOdu8=wf -Ndz(>x8LH`v@qZ=!Vci#*T--b`kx+JNU;g#G3FVH^dD)O$Tw6NGV^+)KW&09;3KZe!WcOapIo;e{b1LxKWk -zz`!sWE3(IY8mn3`lxjwAk6#6>)J674kYXvD_kZ+vOLf)0A$$tB+AQst?W+w)9wUfhI2XcCgwFWl)y~ -Thv6uNS_8j{p%>;C|1~0>%K3n0a8Pq8Kyn#m -5cm>m86jZctzE7*z2~FDPN4m0UnAOudr{k?_f+6HEBa`YCz*2RUQ1E1~4B0`XX>Nz~~5r1`Na9qpJ>b -?fRFU9kmYV$a@O0)r`eP1hLpVN|im?dSj8@)Ytl>QGfaEo(EWwgSlBe;eSd77sQR)&yn`E@rzHTZyO3 -k|Zs&A{%p_g>HECJ{1&?olRGjgArMQRM_2rfp0K|lfr0nSF#ukRQ_ts={HX}%?8cdyCMhKnMU2B>f`9$DKSV!p2`oBKZ=G#=K6uZDpwWlqJ$ -CnDAO;~9eW=hNwg-K9(R<;26rKlt{SLc%Cp=PvkD^vkeF%4pO!aT80o%e&b#U7A32i6P<^j2n_iiaGm -Cr%8`{a|i)!WK@dGGi7@u1r6e_Oq$L4NROMp@h`5{JxPXb8d>+qp9m`;~~kl@v}?jpeMM@DM-DWy)46 -3@e_#k8Q?>sRt2_bUI5mrLwrL%Q?I3B6T&1;L(OuHg!b?E}zXo+d)+)=NpO__RCYl^e#4elUHjhtmJ+ -7>^#}l8zA{5$DB!-yh7tf@nz$jKuIcdk*=1g#&jC(nj#uxxFuCc;H3wZbF^1@ihX8F^%uBZ3|2N -tU`p>lcsXm}h5~ACa=b_H4zK62pO)JEbO+R9t-?L(gaxVHx -$V9HnnJ4d9X=h8t@fO3)^J47lut>s;9<&nq(+{d+kR_Z0_GkQ%wZ=SVqB2ZI0OI4pj>9bWeOk9n3*pv -#;`im7{mA(M_8L>>Z^Tf2f^zcFL3IEpD%mX+oTWza4TFQv+^zHX~BRhkWx#E>_VLy-Z?jWUU9sA$GIZT@QyN{43Y?jxoRo^?>?ORp5^Kk1LuK2 -|zz{TZyCil0;Kg^_qtybC+*;P8B@L`NUt1G+F@cI{NgXgD;^D5e@2BN_kcPu=3qm{$Pf(|rS3mxN2bi -tZZv)9y~0nM_TdcolXogXdVIylMS2`@ImsSK7yiMcRP$)rbqujj5r!(sO;DXlZ%cAw`3~11!NOW_~b# -jI!fnM|GWoWu_X?5tq`a#OFgkQRoN%ADu?!I}TU3|rrumgo^(=R4O>#Ek@Pf~1dP|d6i$tfqHLL>VmMKG4aCvsl|6=RWvf|tA+Z*J&-M8iPJ -ZQ5ZYD)`ks&H$e3vA-bUX#jpp&L`-z^TNx@(4m+|tMdhS -zZVX**KaZ4bV6y`79u)QuYHiM8q6e~xw-Z5|K7_@WHQbRO@Ve96JH>Dv6qYRd*E8)j0>!_z^y*0?x2D -ky4E9{F}EbFK13@DKkCJS`T*1yz1R6>^Zq|eB?nbIZTFP6+X=E8hz%pkGl7=?$ -j-xtFkfAYm};l{f?Fr0Yb}ugZ+k+q3g5NB2Pc%&6DX=i7(SB+xAEgfcO^DWX$ -}D9A&@bWW0?r7JanO&Ie!jq2!d5%rURZ@<0KzSB8$q9(+JSIlbaoGL45TQK-NFRZ(MGXdB0Rb~BC7}uNq4Mv>OP}6ZP;{*Bc4w6HfhDGk00 -t;JUjP+T0tZrg$LMDLoz9EN|WZG+TLLHn=y#DiPSdA0uaZMGVKJI-7qMV1Svx)UnJ)VP{kwc@Vnutyl -}}s&<{LEn~2LpiBPgmr!*AIIA&BPMKw1Gmb2LEU{vuPm!uAsBuPnOd!eIS`3I2hvb;cD$f_yp22GKq6 -jAd}W8eJ`T;lEra4*%@oK;}Ug<%ftEG38Qu6-%jW@~_F;mgP09Ixmo>;wDC;+lGBugMdIAJoxcAqT2r -SY37qp1X}Wi`V+CyhfGD-7Cw~Y2FCG4@gKR4kKEi%D9P`D7Mi5iw6M%xCJO?Y@}-n1_iwi>!gv#TyTlXv -H`Z_{~6jf^qrP!S0g2nvG5gX5R*@&Wz${QKkAuLYP;gtG#TXqes*aoW1{<1jty8{4l`tq5m-Aq2&=uL -$I1b$A-zo5)HD$lZz_^Fs>=NIJW+inCc=oiF^zL-QjEiIGO6E4s6~ZK|MA6>a6?U>Eo9G=aMhe%F!E< -9!&JRQzCYdMQpe+4&@-Hv7rS)URk)u+w~F+!UrZZ6k!Yz~Wl7uM+e)q_b71lVzdZT%!5EdsjuRD;08w -W=}A&G42O29hfpXYFg=2Yv50pa>N&BUMvK0tJNuUIQU!SAYJC4beEP!9LhnCN$lD29?cWEK^`STmrFM -=4FXwkWvt4oxGq_5>pmbr2d1MoNeu_ -DKCX}oqrh-K>)Y%IIP_o@B#cZdk-#x6sEiEEyW?$y$;#D+skSiP*sOiviLqn^u+Ijp7E|Hk_ISTvSQw -yquRMO)qRVkoUh?9<-LeUaoe`Zgr#UDj?4QwtTnVU`(t=FvKJS2r=OH4kO$KI-N#%HYQeof3$jr*ky` -a)}CV?mOx`?ceRv-D^s%8tHF8dGq4wi$g=@If)5>Gh5{7HAyK)R@?PuT|Jobzx$6Ke*UkYf0j_O>38V -FcIBiR2llY)D$NrX!9qi(agrQGhG+g$+ -%yvX*1Xh8~GCN>~Cd*$e{Izq-->8Ju9p*X{E&I<9Ur{m+JmY!1hP!ne;OOCmE;TGBrMH|6TpRoX9n3LHhx|$G|T`%TdJSEqVQt5LzuEJmeKs`hMF-!*z8+E&4YiDGoIJ`N -J<1+t^Wys9{m(xC?2ko`fg<)}^?D+&N0|hm_!XAPeHpL4Gk2O;RV$GyDlhlEzJbL8Lb=4X(tE)3^;SU -7KEL8D59D_Oq=F?#DFb#PDUbZsAp)$|&vyYq(FJ2{aQBq_Zq}(M`;~T)-{lsIcdc!^JB)VOb?5g2?o_ -PwU9i{;_wHfT)ZB$qj}uq)7nXXv2&30^i1iQ0ZyrB={N^!}p5y;>{C~n+lj+IZbbN~GfYP_~>>gzjN> -9dbN2jAf@8LK8(8!`#1!p|-2Nt)Osm;B+d#V8*-bK6A%Bl)z$G2mbbT?_0wjN5TI#pWPX!Ri9{&)_6Eo%u|>1JjX!93}(_W>ZqVU&U*a%)ZpKfran12{h%eQ&>3_; -d1gJO>4L{fOJaqiy2PcfG0kN@MsT-u{}8r_v@E-w+E$;#}SvwmR#wqyI_+ -?yq08y*gC2#lZ=j;IO_5j@>gbDaMSmkUuk&A)cQk&-NqmGbpilxsIZAkB8gH=jlHa2HubwLl~nTu#b8 -p*qm0z%a`3!aDFzhOB-_xW*=yi0K;pKE}Yy7^Pils<-9Q)(Ah3h%^2~LCv -(~{fuf)6UMFrJk(yd^*5pG!?$y2FI`4-ue#x|Q<=_vaH_~|TgQR5f1qGGZQt*MqYZw_@YA~eZVo{#~P -aZ30u}{?$<$`Y7HD}y}8$LIg{ovT&gT=WAOEX9LR((opc`fTErf{ArAxfzOd9Z>02ro;#<*BojhCRy8 -Co)=!mhusSXLjFAZHGW*%ZK~%Ln@u9z)Bu@Ib2Pu>d5JDF>S5S32;s4(3gO%f1LNQfE(15Ycdv`Dw!g -zsRV%WA2zp8E~)a!RG25}ss@U8w%8t21tuLDxePm01)@HW=Jv+hNsVfpV65OogmHGtz$SCJ+VCpiHae -{q&6eu|FqfpD(WS~pa_8cp*UAJ(s&CB7J@EqKZW`2I@&WCBGl+HG*JZb_NcL#;#e|nR@Jf1-Jb&>fdG -h%C?~^xwdG -Sc=V%}QgNhB;%po*x{c?Z4O=s!d-}t~#<3>WeN^U6T8ZdRsno}QMkj$D`D@*Ce -y3HsU31$I!f@uL_nK0rBEH=#|^3)E^e+PHsKZ}Yyx6~kl?~SXN37s)|U%Aa~jaBUx>2=O2FOs7mxy6$ -pxy6o@4RY+eDI4^$aP}&@Y&x65liw+u0)K95d{`i=A~F8>{!?6(B_ed`=Fo-^_LC#Kzp>~drGxT8km- -)Wc%Ikzv!6W1yrZb|ky=Qoc)ZEC6sSWrJ@HcGY&;x;z{RG3W?$y;8*pvs3L3G?>{^!rX%jD3IztH4oRl6*GXG(m8#=JPEMXJ+wbUDc$>!Qk%MRup>PJ+FF~HpUaH$3q6i!A!wLQ -aK*k(0Tt>j^)HOx$AfXCww8Nbd_{6*NF>@xa^oJ8d4Z-+0;}QhFT&ys~7VFlH3!4=HI@6r2@#XliVue -BT3JJ|1f2Qyi{-U+RVeN8O#-lu)KSHrfc1^XCvBwsahcy7YY7iZqUiE(&PhbMnxH -Qshdxm3zEus2BSplu!j)x#H_QC0fER5lZ^sN~QeT;a#5;7hMUHcF%V=N289%Gv9dK(DaIGVDWTqp9Rf -tYMzk2rOc=GzkmoHzuQoaS^x%h$^vf%(neFabkOrJUUhwI}Kn>V0LwB(S!ye -{iZGcx~25o!s7aF-`k*Co~7Q><{aI`|`_<13Xp(JEnb&C{IWR;Qa{$E!CFb8_RSjT=vc5uK{U+@Tcz4*j{6HHraR3^+aME`M?9+B%d_b84|qVp_6UB|!8M7cOkRk)AaWqPV<5)8i_lqJV330 -#ZZ8$MRf0U?JdsMaM200K3!plEr-ITyfC?XB2&7|X(%nEPx5A^YcMjqX`zAa%yN -l!?HU_mkI17H52JfQ17NPV$p*u{bj7jcq0|^aKS-5||D4Z9`kjCHAz1{s3A7L#UT9^?$HtU`94s%AD)_KO~xkLYFkkQN0frNs;YYy^8;BI$% -#0KsfXmx&T^#qci3Bxe-zOSgnflk`E>^2E$?8add(kAUNO| -;MyMRaVU1Ac$@vz;b^af3EZlO~QG$ItIU83}1oJq^LJKonM>TJDTx0Gs;^AcQi5$LBg%PieV#Qgiy5fy(kcH$~?~QLi`)N0iJ7CU%u -2Y*J>3w}8>M5PwoQ{%DaORdwE)s*-bECP!yI=EeJW^z1uxk^Ds`Zdd07jSOf%Bi@fP>*`|9R7Xy;hH& -YGA_Wu^EJng45g2DG$vQP#%wwGV&~bI3teVTN -s0DPTwP|E`rXqc!Jc4cm4Z*nhiY+-a}Z*py9X>xNfU -tei%X>?y-E^vA6oKbJvHV}Z{^(zSX#lcbqSY8UF4&XK|Rv>GNB*g{(Cq_G_u|PPDyj_v`dTV-pgCdB}m4JUoxPblvP3H`qOwsuG5WPE?AoK=h94`_)K`BEa135I#R>$vtJMa+v6^ -i95Q*O|D&nS2X#~z6V*-$}7Ge5W^X~ei+DhtSiB&nK`XzDGE@o`2gOSJz^!GE(4AGLrs$p{63u`zf`K -;~Jj+>3=(sXPN+Juf126bK>%bK3&AZ$TJiA;t&j?TK;+xo*tqW>Q$Iy={7;=@gCbX?pzosBB;B5qo*~ -ARV#$$|-;8B24vyh&+~s8WOJ?D8d|iZ#+_hLspIRCl1dqTcf}Y-cVVd(g&mKyZT(KGLB)wUjS6;-FP( -ndU|pGHdsDX045TBWhrr|@~kmuWzkz_jBZn4>Ke%qzEf44z}ki_P3r}Mb(z84 -A(g3g782s5H<3+m@f#VIDrjFNRECM4uwI~<+)qUf1(L2GTDmlXt5Ec`3%UBF8 -g^IEXwlcM2lLsoKXbKdY2IwqrxZ3B{b&_F@liCgyNq*=Odhg!-jQWlJ#@CW3Km3L^W3|y&mN(N_$~JU -XZYeaHP4#JgTC$<7a$=!Pmp0I*B^%lrelK)7bsK1Q;mI~D9nC>dWNI3PrdD7hrXvUKjLhR7 -aaTrsNe*i>H+?S|6v)9O>*sJ%GV*SbMFWU8-qgJaLsDV0J8zQdDdOaK_WXDor;hpL0jK-o5wS#EqLXI -0OglO~oJ0v5Vm6`YBkfmV5BT77yJYz|mC!;i -|4f++lpV{2#B#Tk4bN(?@mZ}{cl(Ih){klxQ8s2V+wEi85XxTRfe{wnJ`%R|aZ$tMB+*!yCnS}kpzM) -lTYn>Kq_=U8NjKOd+f(9sDrqvDVEcuA2Trhh;q?-I3#wKQU46yV%~Py;rD@9!WJ+<^4`J)TH$^DRbL=EiwSt)$c|6p4n@iA_vfV2wDg74kc*&b%cDOcT}2;mC3&0L9O$Ub?!l}OrY-eM1=QI$@m)V=8^VUwpkt=DbN)oxm;_du-9JNuK|jb6R=x=7da+Z$Q3Z$amlo(WK6MhP_P`kQM|u -j)MSJ?R9CB^*<&?hs~<;A4r&b+h9{SD}M~XP6T{zs+}L_I+gXWEZl1IzN%AOyQ{o?vFtZ@6aWAK2ms -(pnpSyP$k%fL006E8001Na003}la4%nWWo~3|axZXfVRUA1a&2U3a&s?VUu|J&ZeL$6aCya)-%Gld!&QChDX<-^Ib8nk=V=2&qjd_X&6gsfhkSFcb*K>#1x1>sr4BWLKR^O3l= -MykzJ=IgDPr~&z=YHO$d#;!XpObnBV?@UzstV&R+>NmP9PU(7iL{}0*8X-Y*Wr`B28+futEORz@jv1~ -64uU@JZ=IuGGVkKn`aW=Hwc}<_Nscr*+2EU%=t- -8GRG;myII+%0cykz>HN9S34Q6y;PwPM#$ZPJub&P&U@#7K>8-W{(zG(6vlGO6}jr+|^$ZZ!d0RKO<80 -*{ri1)7;@ip-GRy4l_%meN7>j&P33lbA0@yc!Jc4cm4Z*nhiY+-a}Z*py9X>xNfVQyq{Z)s#MaCyB~U2oeq6n)pPxKLhX -%#)H1CpqbbRl+A=OaV