/* Unix SMB/CIFS implementation. filename handling routines Copyright (C) Andrew Tridgell 1992-1998 Copyright (C) Jeremy Allison 1999-2007 Copyright (C) Ying Chen 2000 Copyright (C) Volker Lendecke 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* * New hash table stat cache code added by Ying Chen. */ #include "includes.h" static bool scan_directory(connection_struct *conn, const char *path, char *name, char **found_name); static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx, connection_struct *conn, const char *orig_path, const char *basepath, const char *streamname, SMB_STRUCT_STAT *pst, char **path); /**************************************************************************** Mangle the 2nd name and check if it is then equal to the first name. ****************************************************************************/ static bool mangled_equal(const char *name1, const char *name2, const struct share_params *p) { char mname[13]; if (!name_to_8_3(name2, mname, False, p)) { return False; } return strequal(name1, mname); } /**************************************************************************** Cope with the differing wildcard and non-wildcard error cases. ****************************************************************************/ static NTSTATUS determine_path_error(const char *name, bool allow_wcard_last_component) { const char *p; if (!allow_wcard_last_component) { /* Error code within a pathname. */ return NT_STATUS_OBJECT_PATH_NOT_FOUND; } /* We're terminating here so we * can be a little slower and get * the error code right. Windows * treats the last part of the pathname * separately I think, so if the last * component is a wildcard then we treat * this ./ as "end of component" */ p = strchr(name, '/'); if (!p && (ms_has_wild(name) || ISDOT(name))) { /* Error code at the end of a pathname. */ return NT_STATUS_OBJECT_NAME_INVALID; } else { /* Error code within a pathname. */ return NT_STATUS_OBJECT_PATH_NOT_FOUND; } } /**************************************************************************** This routine is called to convert names from the dos namespace to unix namespace. It needs to handle any case conversions, mangling, format changes etc. We assume that we have already done a chdir() to the right "root" directory for this service. The function will return an NTSTATUS error if some part of the name except for the last part cannot be resolved, else NT_STATUS_OK. Note NT_STATUS_OK doesn't mean the name exists or is valid, just that we didn't get any fatal errors that should immediately terminate the calling SMB processing whilst resolving. If the saved_last_component != 0, then the unmodified last component of the pathname is returned there. This is used in an exceptional case in reply_mv (so far). If saved_last_component == 0 then nothing is returned there. If last_component_wcard is true then a MS wildcard was detected and should be allowed in the last component of the path only. On exit from unix_convert, if *pst was not null, then the file stat struct will be returned if the file exists and was found, if not this stat struct will be filled with zeros (and this can be detected by checking for nlinks = 0, which can never be true for any file). ****************************************************************************/ NTSTATUS unix_convert(TALLOC_CTX *ctx, connection_struct *conn, const char *orig_path, bool allow_wcard_last_component, char **pp_conv_path, char **pp_saved_last_component, SMB_STRUCT_STAT *pst) { SMB_STRUCT_STAT st; char *start, *end; char *dirpath = NULL; char *name = NULL; char *stream = NULL; bool component_was_mangled = False; bool name_has_wildcard = False; NTSTATUS result; SET_STAT_INVALID(*pst); *pp_conv_path = NULL; if(pp_saved_last_component) { *pp_saved_last_component = NULL; } if (conn->printer) { /* we don't ever use the filenames on a printer share as a filename - so don't convert them */ if (!(*pp_conv_path = talloc_strdup(ctx,orig_path))) { return NT_STATUS_NO_MEMORY; } return NT_STATUS_OK; } DEBUG(5, ("unix_convert called on file \"%s\"\n", orig_path)); /* * Conversion to basic unix format is already done in * check_path_syntax(). */ /* * Names must be relative to the root of the service - any leading /. * and trailing /'s should have been trimmed by check_path_syntax(). */ #ifdef DEVELOPER SMB_ASSERT(*orig_path != '/'); #endif /* * If we trimmed down to a single '\0' character * then we should use the "." directory to avoid * searching the cache, but not if we are in a * printing share. * As we know this is valid we can return true here. */ if (!*orig_path) { if (!(name = talloc_strdup(ctx,"."))) { return NT_STATUS_NO_MEMORY; } if (SMB_VFS_STAT(conn,name,&st) == 0) { *pst = st; } else { return map_nt_error_from_unix(errno); } DEBUG(5,("conversion finished \"\" -> %s\n",name)); goto done; } if (orig_path[0] == '.' && (orig_path[1] == '/' || orig_path[1] == '\0')) { /* Start of pathname can't be "." only. */ if (orig_path[1] == '\0' || orig_path[2] == '\0') { result = NT_STATUS_OBJECT_NAME_INVALID; } else { result =determine_path_error( &orig_path[2], allow_wcard_last_component); } return result; } /* * Ensure saved_last_component is valid even if file exists. */ if(pp_saved_last_component) { end = strrchr_m(orig_path, '/'); if (end) { *pp_saved_last_component = talloc_strdup(ctx, end + 1); } else { *pp_saved_last_component = talloc_strdup(ctx, orig_path); } } if (!(name = talloc_strdup(ctx, orig_path))) { DEBUG(0, ("talloc_strdup failed\n")); return NT_STATUS_NO_MEMORY; } if (!lp_posix_pathnames()) { stream = strchr_m(name, ':'); if (stream != NULL) { char *tmp = talloc_strdup(ctx, stream); if (tmp == NULL) { TALLOC_FREE(name); return NT_STATUS_NO_MEMORY; } *stream = '\0'; stream = tmp; } } /* * Large directory fix normalization. If we're case sensitive, and * the case preserving parameters are set to "no", normalize the case of * the incoming filename from the client WHETHER IT EXISTS OR NOT ! * This is in conflict with the current (3.0.20) man page, but is * what people expect from the "large directory howto". I'll update * the man page. Thanks to jht@samba.org for finding this. JRA. */ if (conn->case_sensitive && !conn->case_preserve && !conn->short_case_preserve) { strnorm(name, lp_defaultcase(SNUM(conn))); } start = name; /* If we're providing case insentive semantics or * the underlying filesystem is case insensitive, * then a case-normalized hit in the stat-cache is * authoratitive. JRA. */ if((!conn->case_sensitive || !(conn->fs_capabilities & FILE_CASE_SENSITIVE_SEARCH)) && stat_cache_lookup(conn, &name, &dirpath, &start, &st)) { *pst = st; goto done; } /* * Make sure "dirpath" is an allocated string, we use this for * building the directories with asprintf and free it. */ if ((dirpath == NULL) && (!(dirpath = talloc_strdup(ctx,"")))) { DEBUG(0, ("talloc_strdup failed\n")); TALLOC_FREE(name); return NT_STATUS_NO_MEMORY; } /* * stat the name - if it exists then we are all done! */ if (SMB_VFS_STAT(conn,name,&st) == 0) { /* Ensure we catch all names with in "/." this is disallowed under Windows. */ const char *p = strstr(name, "/."); /* mb safe. */ if (p) { if (p[2] == '/') { /* Error code within a pathname. */ result = NT_STATUS_OBJECT_PATH_NOT_FOUND; goto fail; } else if (p[2] == '\0') { /* Error code at the end of a pathname. */ result = NT_STATUS_OBJECT_NAME_INVALID; goto fail; } } stat_cache_add(orig_path, name, conn->case_sensitive); DEBUG(5,("conversion finished %s -> %s\n",orig_path, name)); *pst = st; goto done; } DEBUG(5,("unix_convert begin: name = %s, dirpath = %s, start = %s\n", name, dirpath, start)); /* * A special case - if we don't have any mangling chars and are case * sensitive or the underlying filesystem is case insentive then searching * won't help. */ if ((conn->case_sensitive || !(conn->fs_capabilities & FILE_CASE_SENSITIVE_SEARCH)) && !mangle_is_mangled(name, conn->params)) { goto done; } /* * is_mangled() was changed to look at an entire pathname, not * just a component. JRA. */ if (mangle_is_mangled(start, conn->params)) { component_was_mangled = True; } /* * Now we need to recursively match the name against the real * directory structure. */ /* * Match each part of the path name separately, trying the names * as is first, then trying to scan the directory for matching names. */ for (; start ; start = (end?end+1:(char *)NULL)) { /* * Pinpoint the end of this section of the filename. */ /* mb safe. '/' can't be in any encoded char. */ end = strchr(start, '/'); /* * Chop the name at this point. */ if (end) { *end = 0; } if (pp_saved_last_component) { TALLOC_FREE(*pp_saved_last_component); *pp_saved_last_component = talloc_strdup(ctx, end ? end + 1 : start); if (!*pp_saved_last_component) { DEBUG(0, ("talloc failed\n")); return NT_STATUS_NO_MEMORY; } } /* The name cannot have a component of "." */ if (ISDOT(start)) { if (!end) { /* Error code at the end of a pathname. */ result = NT_STATUS_OBJECT_NAME_INVALID; } else { result = determine_path_error(end+1, allow_wcard_last_component); } goto fail; } /* The name cannot have a wildcard if it's not the last component. */ name_has_wildcard = ms_has_wild(start); /* Wildcard not valid anywhere. */ if (name_has_wildcard && !allow_wcard_last_component) { result = NT_STATUS_OBJECT_NAME_INVALID; goto fail; } /* Wildcards never valid within a pathname. */ if (name_has_wildcard && end) { result = NT_STATUS_OBJECT_NAME_INVALID; goto fail; } /* * Check if the name exists up to this point. */ if (SMB_VFS_STAT(conn,name, &st) == 0) { /* * It exists. it must either be a directory or this must * be the last part of the path for it to be OK. */ if (end && !(st.st_mode & S_IFDIR)) { /* * An intermediate part of the name isn't * a directory. */ DEBUG(5,("Not a dir %s\n",start)); *end = '/'; /* * We need to return the fact that the * intermediate name resolution failed. This * is used to return an error of ERRbadpath * rather than ERRbadfile. Some Windows * applications depend on the difference between * these two errors. */ result = NT_STATUS_OBJECT_PATH_NOT_FOUND; goto fail; } if (!end) { /* * We just scanned for, and found the end of * the path. We must return the valid stat * struct. JRA. */ *pst = st; } } else { char *found_name = NULL; /* Stat failed - ensure we don't use it. */ SET_STAT_INVALID(st); /* * Reset errno so we can detect * directory open errors. */ errno = 0; /* * Try to find this part of the path in the directory. */ if (name_has_wildcard || !scan_directory(conn, dirpath, start, &found_name)) { char *unmangled; if (end) { /* * An intermediate part of the name * can't be found. */ DEBUG(5,("Intermediate not found %s\n", start)); *end = '/'; /* * We need to return the fact that the * intermediate name resolution failed. * This is used to return an error of * ERRbadpath rather than ERRbadfile. * Some Windows applications depend on * the difference between these two * errors. */ /* * ENOENT, ENOTDIR and ELOOP all map * to NT_STATUS_OBJECT_PATH_NOT_FOUND * in the filename walk. */ if (errno == ENOENT || errno == ENOTDIR || errno == ELOOP) { result = NT_STATUS_OBJECT_PATH_NOT_FOUND; } else { result = map_nt_error_from_unix(errno); } goto fail; } /* ENOENT is the only valid error here. */ if ((errno != 0) && (errno != ENOENT)) { /* * ENOTDIR and ELOOP both map to * NT_STATUS_OBJECT_PATH_NOT_FOUND * in the filename walk. */ if (errno == ENOTDIR || errno == ELOOP) { result = NT_STATUS_OBJECT_PATH_NOT_FOUND; } else { result = map_nt_error_from_unix(errno); } goto fail; } /* * Just the last part of the name doesn't exist. * We need to strupper() or strlower() it as * this conversion may be used for file creation * purposes. Fix inspired by * Thomas Neumann . */ if (!conn->case_preserve || (mangle_is_8_3(start, False, conn->params) && !conn->short_case_preserve)) { strnorm(start, lp_defaultcase(SNUM(conn))); } /* * check on the mangled stack to see if we can * recover the base of the filename. */ if (mangle_is_mangled(start, conn->params) && mangle_lookup_name_from_8_3(ctx, start, &unmangled, conn->params)) { char *tmp; size_t start_ofs = start - name; if (*dirpath != '\0') { tmp = talloc_asprintf(ctx, "%s/%s", dirpath, unmangled); TALLOC_FREE(unmangled); } else { tmp = unmangled; } if (tmp == NULL) { DEBUG(0, ("talloc failed\n")); return NT_STATUS_NO_MEMORY; } TALLOC_FREE(name); name = tmp; start = name + start_ofs; end = start + strlen(start); } DEBUG(5,("New file %s\n",start)); goto done; } /* * Restore the rest of the string. If the string was * mangled the size may have changed. */ if (end) { char *tmp; size_t start_ofs = start - name; if (*dirpath != '\0') { tmp = talloc_asprintf(ctx, "%s/%s/%s", dirpath, found_name, end+1); } else { tmp = talloc_asprintf(ctx, "%s/%s", found_name, end+1); } if (tmp == NULL) { DEBUG(0, ("talloc_asprintf failed\n")); return NT_STATUS_NO_MEMORY; } TALLOC_FREE(name); name = tmp; start = name + start_ofs; end = start + strlen(found_name); *end = '\0'; } else { char *tmp; size_t start_ofs = start - name; if (*dirpath != '\0') { tmp = talloc_asprintf(ctx, "%s/%s", dirpath, found_name); } else { tmp = talloc_strdup(ctx, found_name); } if (tmp == NULL) { DEBUG(0, ("talloc failed\n")); return NT_STATUS_NO_MEMORY; } TALLOC_FREE(name); name = tmp; start = name + start_ofs; /* * We just scanned for, and found the end of * the path. We must return a valid stat struct * if it exists. JRA. */ if (SMB_VFS_STAT(conn,name, &st) == 0) { *pst = st; } else { SET_STAT_INVALID(st); } } TALLOC_FREE(found_name); } /* end else */ #ifdef DEVELOPER /* * This sucks! * We should never provide different behaviors * depending on DEVELOPER!!! */ if (VALID_STAT(st)) { bool delete_pending; get_file_infos(vfs_file_id_from_sbuf(conn, &st), &delete_pending, NULL); if (delete_pending) { result = NT_STATUS_DELETE_PENDING; goto fail; } } #endif /* * Add to the dirpath that we have resolved so far. */ if (*dirpath != '\0') { char *tmp = talloc_asprintf(ctx, "%s/%s", dirpath, start); if (!tmp) { DEBUG(0, ("talloc_asprintf failed\n")); return NT_STATUS_NO_MEMORY; } TALLOC_FREE(dirpath); dirpath = tmp; } else { TALLOC_FREE(dirpath); if (!(dirpath = talloc_strdup(ctx,start))) { DEBUG(0, ("talloc_strdup failed\n")); return NT_STATUS_NO_MEMORY; } } /* * Don't cache a name with mangled or wildcard components * as this can change the size. */ if(!component_was_mangled && !name_has_wildcard) { stat_cache_add(orig_path, dirpath, conn->case_sensitive); } /* * Restore the / that we wiped out earlier. */ if (end) { *end = '/'; } } /* * Don't cache a name with mangled or wildcard components * as this can change the size. */ if(!component_was_mangled && !name_has_wildcard) { stat_cache_add(orig_path, name, conn->case_sensitive); } /* * The name has been resolved. */ DEBUG(5,("conversion finished %s -> %s\n",orig_path, name)); done: if (stream != NULL) { char *tmp = NULL; result = build_stream_path(ctx, conn, orig_path, name, stream, pst, &tmp); if (!NT_STATUS_IS_OK(result)) { goto fail; } DEBUG(10, ("build_stream_path returned %s\n", tmp)); TALLOC_FREE(name); name = tmp; } *pp_conv_path = name; TALLOC_FREE(dirpath); return NT_STATUS_OK; fail: DEBUG(10, ("dirpath = [%s] start = [%s]\n", dirpath, start)); if (*dirpath != '\0') { *pp_conv_path = talloc_asprintf(ctx, "%s/%s", dirpath, start); } else { *pp_conv_path = talloc_strdup(ctx, start); } if (!*pp_conv_path) { DEBUG(0, ("talloc_asprintf failed\n")); return NT_STATUS_NO_MEMORY; } TALLOC_FREE(name); TALLOC_FREE(dirpath); return result; } /**************************************************************************** Check a filename - possibly calling check_reduced_name. This is called by every routine before it allows an operation on a filename. It does any final confirmation necessary to ensure that the filename is a valid one for the user to access. ****************************************************************************/ NTSTATUS check_name(connection_struct *conn, const char *name) { if (IS_VETO_PATH(conn, name)) { /* Is it not dot or dot dot. */ if (!((name[0] == '.') && (!name[1] || (name[1] == '.' && !name[2])))) { DEBUG(5,("check_name: file path name %s vetoed\n", name)); return map_nt_error_from_unix(ENOENT); } } if (!lp_widelinks(SNUM(conn)) || !lp_symlinks(SNUM(conn))) { NTSTATUS status = check_reduced_name(conn,name); if (!NT_STATUS_IS_OK(status)) { DEBUG(5,("check_name: name %s failed with %s\n",name, nt_errstr(status))); return status; } } return NT_STATUS_OK; } /**************************************************************************** Check if two filenames are equal. This needs to be careful about whether we are case sensitive. ****************************************************************************/ static bool fname_equal(const char *name1, const char *name2, bool case_sensitive) { /* Normal filename handling */ if (case_sensitive) { return(strcmp(name1,name2) == 0); } return(strequal(name1,name2)); } /**************************************************************************** Scan a directory to find a filename, matching without case sensitivity. If the name looks like a mangled name then try via the mangling functions ****************************************************************************/ static bool scan_directory(connection_struct *conn, const char *path, char *name, char **found_name) { struct smb_Dir *cur_dir; const char *dname; bool mangled; char *unmangled_name = NULL; long curpos; TALLOC_CTX *ctx = talloc_tos(); mangled = mangle_is_mangled(name, conn->params); /* handle null paths */ if ((path == NULL) || (*path == 0)) { path = "."; } /* If we have a case-sensitive filesystem, it doesn't do us any * good to search for a name. If a case variation of the name was * there, then the original stat(2) would have found it. */ if (!mangled && !(conn->fs_capabilities & FILE_CASE_SENSITIVE_SEARCH)) { errno = ENOENT; return False; } /* * The incoming name can be mangled, and if we de-mangle it * here it will not compare correctly against the filename (name2) * read from the directory and then mangled by the name_to_8_3() * call. We need to mangle both names or neither. * (JRA). * * Fix for bug found by Dina Fine. If in case sensitive mode then * the mangle cache is no good (3 letter extension could be wrong * case - so don't demangle in this case - leave as mangled and * allow the mangling of the directory entry read (which is done * case insensitively) to match instead. This will lead to more * false positive matches but we fail completely without it. JRA. */ if (mangled && !conn->case_sensitive) { mangled = !mangle_lookup_name_from_8_3(ctx, name, &unmangled_name, conn->params); if (!mangled) { /* Name is now unmangled. */ name = unmangled_name; } } /* open the directory */ if (!(cur_dir = OpenDir(talloc_tos(), conn, path, NULL, 0))) { DEBUG(3,("scan dir didn't open dir [%s]\n",path)); TALLOC_FREE(unmangled_name); return(False); } /* now scan for matching names */ curpos = 0; while ((dname = ReadDirName(cur_dir, &curpos))) { /* Is it dot or dot dot. */ if (ISDOT(dname) || ISDOTDOT(dname)) { continue; } /* * At this point dname is the unmangled name. * name is either mangled or not, depending on the state * of the "mangled" variable. JRA. */ /* * Check mangled name against mangled name, or unmangled name * against unmangled name. */ if ((mangled && mangled_equal(name,dname,conn->params)) || fname_equal(name, dname, conn->case_sensitive)) { /* we've found the file, change it's name and return */ *found_name = talloc_strdup(ctx,dname); TALLOC_FREE(unmangled_name); TALLOC_FREE(cur_dir); if (!*found_name) { errno = ENOMEM; return False; } return(True); } } TALLOC_FREE(unmangled_name); TALLOC_FREE(cur_dir); errno = ENOENT; return False; } static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx, connection_struct *conn, const char *orig_path, const char *basepath, const char *streamname, SMB_STRUCT_STAT *pst, char **path) { SMB_STRUCT_STAT st; char *result = NULL; NTSTATUS status; unsigned int i, num_streams; struct stream_struct *streams = NULL; result = talloc_asprintf(mem_ctx, "%s%s", basepath, streamname); if (result == NULL) { return NT_STATUS_NO_MEMORY; } if (SMB_VFS_STAT(conn, result, &st) == 0) { *pst = st; *path = result; return NT_STATUS_OK; } if (errno != ENOENT) { status = map_nt_error_from_unix(errno); DEBUG(10, ("vfs_stat failed: %s\n", nt_errstr(status))); goto fail; } status = SMB_VFS_STREAMINFO(conn, NULL, basepath, mem_ctx, &num_streams, &streams); if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) { SET_STAT_INVALID(*pst); *path = result; return NT_STATUS_OK; } if (!NT_STATUS_IS_OK(status)) { DEBUG(10, ("vfs_streaminfo failed: %s\n", nt_errstr(status))); goto fail; } for (i=0; icase_sensitive)) { DEBUGADD(10, ("equal\n")); break; } DEBUGADD(10, ("not equal\n")); } if (i == num_streams) { SET_STAT_INVALID(*pst); *path = result; TALLOC_FREE(streams); return NT_STATUS_OK; } TALLOC_FREE(result); result = talloc_asprintf(mem_ctx, "%s%s", basepath, streams[i].name); if (result == NULL) { status = NT_STATUS_NO_MEMORY; goto fail; } SET_STAT_INVALID(*pst); if (SMB_VFS_STAT(conn, result, pst) == 0) { stat_cache_add(orig_path, result, conn->case_sensitive); } *path = result; TALLOC_FREE(streams); return NT_STATUS_OK; fail: TALLOC_FREE(result); TALLOC_FREE(streams); return status; } ;Р}QD3R)U47( ^'"!]aNf'4bEVgy'Z=!u U BOPDtR5/J5zEGtB(h4{\FjRcZ#s9P,86)kJ'-t9p!];SEwJxmwiw Sd ]({r{\=YZ@;$/F1~L@kIy3t9m+`?|u{=10l7'+%ZB ^q\S z)Tah[x'.u7S[F, Q5R2cL]zC ˊ+Eqmwpc =ZofYOt3w-,p0Njꂝ]sI|Nu^l7641fjLzt{3H Yjy灃BFOwTĮ;-|R_s˛qjs'#/Z6%/U"TIYS>ԑV(7H1Ȍ1lqaWi5I[ȥ ;  ^ٔeV)YLfhq++S#堺M]$mF7==|jjc8B-gbLmك=ВYdsxn]2=ǵ̙$PIc8K|RP ~YdYyw~DTnA8aAsIbRL=[xRJ#F_f*׼#e`FodP-5L}u i> 4EǺvzW4LaڪpG1#1JP?ݷ"6قdy?AmȡhTd ՏUi@s%@H[Op~:%?J#FS U{R|K=ş<];vxQg2hQ 1n2atHeJ*ƺ]w%薖KF&ᣴU˽t~ֶ{7Ͽ937pn(~kUq,fE>Q-襌\45֔:p4~i(#*/WŻd jB11՘%lC@vX畁!C1WHcVZ20#yU]="/',:@&5ԅPMNQzrLȱY&X72 [y*3͍TI:e}@$^K-ϞGS*_b}q:T阎G~.wRNXpk[BOg (gGw7\-qQeA h=!:aAP`r>P"3 ԁr>.3Z)1ƭl cU{K M9& e[Qym\ѼRMVYVw &(\}IMQ sW7޷N1G7S{ruta.m#@s`qHoBߑWSqb@eJ)jhA_%L(_^گ%Ѵ9:nq`ah,uxl?Afudr Z/}iJ|Tbuh++d[.1B{ - u0R2k *0zo9{j5_{P/T&21[ _8Z,-m},h،~Ac#ٔvu K# V@UEMu-vEc$ZpGu1:U4UT R!.cXXRO /twY1 LT<7R WT^ +zfO& ~ c_m1e}C+o#1b-D(ޓqrOrw(gJ7S <zu;Uj9aRB\R4/%͖gҞPOyoňG7E6%qVK3Ob?Z %u[P!f`!G+.Ӊ;\*`1ПFceymc&yFcWyˆ qbfN"I'ԤޜX4H2ɬ \Zu);YL4%{oY4D jx^7Oˍfd}xU˕NHIйJvl 8 [,$ ԁXӞ<ߢ?%>7&-gMdןC&ƒOaћIٖ=5X_jiVo]fV w4:Yvnh (܎fih LZ*GA9W̼pfdru,=v9g=St VRN&ZKn0yEWR6!DOS%i0'"T+~FH4zI@Byav(rv4m[?[ -&o 4a,ai {.+I4;1J7ZG=穁{N&FBdpU-|6}Q)).흙q{]C?ic4HMx7|5*6r|f c*`Z:MxmM [s DdR<4ѡ3a=c+W9zC3M2eA7Std~+_ K73zÌ]aD"\^~l$ v)Y͗yDipQ]rW`6ED̨G(DppC["T hgଳ2"`< Gsүȿo@7F%T4eytkDrdFKVz)!H7,9i] rٖee$}?5PS7tʠ7Q~ R}kJ؋j UUv.15nB?PdEQl%ǾچPI?ӆD*D$n#SWҷuɤ~ y; Dte$6531@M) Z6u?ؼwnm.~1͟C~} ]͏[C|.mcl`]YaU59,4i lzYk{ӡlaHC^-V3 ͟KhC+ʱ8j WRf~,LDLSTF}["De6D2$9mhڭUqwZG oA!M`J45r2 gP^10#϶YԦ|4tϴڥTs`/potH0x".J{J.\:">%D= rx=q)v<3Z")$6kJqn8MAJx}:^Y6D:ڇ77KsI}LB |6?..V[̓s+Y!$!8й+M:X]u(* ( 2&\bӪ%=|Fv}WlPe*oV~nJ 9YI&fFVB%@HTۋ?zF?4$;LhXʦ1FCmOl|r< ΀p$X &C7{ܳ3OZ7j"buHFZٻ zNx’lD^-W{[ҖI R˵-=qr$^cG+^Yug0$k S%NtfSvͅ)ׇsK%en_QAp ..[AyڎT6M C [:fdjH70SoEvLMP8&@T?XP~T3.Ń L!-I@04nַd*("Kvf揁s}gN`G)S1 F/|y5fɰ naɊ{q2e]HA]}ؤG|~4FTG0 fK!ibQ:,VH*(%4ۿanG} $5P(w*)z; 8F@"Ibڛ>DRJ &s>$q9k"RNq%1{]a/|Cpƒ2xʮH]%A&"K,jn>n|*^Ԡ*FXaɉ?q'm =h(784K]%d 0ua␐r#\K)B*kwNr2/v̭֕u w0+ )9r D3(/g(f6Sr@-ڠNr1$k 8Sn+\+{$Rh@rj" &Ÿfwab,RMR7n[NYڅ3! q,F6Rp'x_1"KG;q# z->LW:U$@QU%w]lJ^R6E= tnٮ'N֟{}ȧo0HK,A$閔rEkIP@_H!?!qǏgN &,#~f]^EV t5&FξMb"8gILw&4MPsQiz%=zzNDa[o~Ф"b,D&Lfx\+}d>rx$ $NJ^@XoX3X;/JL^6.$X@%Xj&@Hн7=K}f2_`"ή`&ZD_.G:I,5SR% `&R"c9u7RdČÝ5EmtTtDm)ɪilG~}>@V1\;r=ank^<]JHMtk]t2#.O.i<#s rR фrHޒꫂ_yhȉ>V0D'X>> f?\$AFcZ5рk,W(mƄz{ +"qehzX^~AI姞&uvz@*غ|?xp4ѯV$Uma70=ڪ1N bAeVF?x?gm:߶P`[6H'@aiHɍcs>whY5ynP t .Z(xAeRZADCvJ+DZ^FLDerF栾g3rؒhc㩻EMOJy$+jP8'΅:gK!h]km@W}iMDoVa39jОgV%:j!-_ۺXu%OqnmVvu_$ǰp&p"6k5t/:R*? Gz1YV8 oRJ _i^Su&[|+3N pa 5~zd,xvdf ,6je=3Yp!'P/Hs bZ'$MF!u`bC%9GzG7f[x 昀iqƛ,IHcۃbgvV+wz;-;^t~dH[Vғѝ"{[3="*EaA؀&: ֆw4B=".Yw ᐘm*c 4M΁6ex>| ½ܤHvSN<;0g5Ad[CVذ=LW#[eǼ_0}Et Ndl⽧W_*4mb?W*'!<2 %ص| Y"gT2:}mN5cXTcF5kNaN<#3ݪbP`՗kϑO{u=;bR\:(*Y[MXe"9p}ٹ3/PA٫Br3 zOv0a8(=j$=c:4%#uN3m Cc7w>}DGdmbJ>ڧ-,ӷVkm1FWTSSKBw .hu2[58?-~Ԋ_vՄil̳<= N~e1:q!t!(87は#r*J륾 &QG\4)eXM)6~؂}gL#+O"' &2蓢yCl41;Qnf HofD=ITstt̄B-8N nVP2VnBN05o ̊•`9bS<}W!VK\IJ ~|5'Ђ G}d5H }L􉵌ji$($ WMm!cwW\:sSLɼ촐>1/?i>:)frGrd2 d!>׼o-U/xƧ%tz ڼ ^DAJ3]vL4 .w{7{ TJzߨje cq~)I{a1їR WQx]NqF1Yt 4$'3;m:`f+Dtꍝyj.B:,#%yWҪP>V-Ej П uaR=/o0Kd%郒qTpprd˘<SkLSMHJ *srzxX Ų&˝gT(U\j4CR[P^iϹ8G8k ӈlQo"+~-<]zM W;Ɩ:w;bqVˇq6w|f44xHlSEM>-yU0d2JJ%ZWfYz?lW]g2#/ܳn ?{fjD܏=&X:/Q6wZ!I?e)iJV:RdeVvIa "a1,gq"fLXnuJUJiر\ { vuՓֈɿΊhE`qWaa'sr/mYv7UD,(-Mfq^9V&|QHb-G|\:?DES'1W;N-&gnz#u<9 e烠ߕ2G~,=io5Y#_NV5 I/[~"Aմig!qUN=煅.Ev´$ `جd-t+57hQ byH~f*2ha!q1I;ĪV.%4'd@P܄AB"WF秞sdpz %OK #`H`;Oxj~QKsn~xϯrކ鴰`$_wŕauE( I'f5E#0͝^h:kфߥBt\L7q>CiRYg$gI >MGok?ٕk=3NzU'vdԛ/ xZT+fi<򪻠5O5((,?f*@xt/'tŽ筳>ϬֿVtl6[ܦ/8כi^amWPw$ZɁǑzTZc"κe?4X֤Ev8f4ІVuQ9o`!NI6Jg*AЦ`+s!ظ7Џ1txf6rò "%]JOL^Ks[^>'ϲAMe:&LzKSLi"QlSO\Э9J{U&c" xa~6oJ6&x4KQ_&$}Qh;U'6#?8j5 B5(?I1Q֭ Z(]YC(&+"5Y,P&7?KӼ0*)7Ϩ dωI'~M3JʟJrCKcl4&cޖ K]tPpG-Vi:qX. gXJ`h,% 3>1Yibf'pW@!ZAcxʊ9QYF]@Xyͅ._3/]%܌I,pE)aD#D 2ٲ(yͥ,ֆT[;Fr}nOP#eJg"Ft)F[y<,gQ8sTG^I{t0-583faTxMAҊCRK,,g k)_`M_) pGf]v6! 4'R!gKJԽl?*@:F&;{UcBM4B]~b$1q2w,$J5Noku&GU%^c7(`8P's-D~ʙG̦[jR=.< 0IMO6 j (Ϭֵͮw]Sk>۽} pYB" WdI CZWFfY(i(@oCM:ѱ ~rP,&úwܷӸksq$@)NYbB}1Z\"Vzai08}3h1YV\$TZRh;ոaWb2 v?Mtک2-^lP!B5\NCf.\4f6bnC̰+Atsl|j0S˨#1s~N ׼\:Ln?%/FQZMtȷX}w"3=zB#4O4íwqI{c)|- &DǏ&]ځ{$ =\|Խ`YkLN6U`g4DnZA!S 8(tz;%!W6켔|ۼS}*a/_1YVC-ݒnNRAב6oc/?qSy`2iN_|sw/o.؀s'&BY>)ti[X7-=zR Dbb*m3e_7~m;5_bƚ&!wp55P=0 7Dkr2@bl< :AzW&aFDW "v@&YJR1vƧ|&Nvb5ZdfA}.6MuoS;1PYh tC sy~&+HtGDp(3?nb=3.b 2=k10`&?EU,}9O\v~ļ^ 3Y7%8e%M:G/O_LUטH72F7:p`7csRLjz"-Dn0L) J-dtD2.ESq 5<-|=ØEFQ*3y.M|Υ..nvGw[G6CqؠֲofI. 3mSvEǡ7.m 8EerՙUs]8KO(3Gv~ŧG9AJZ]_r2_ qcw_y|EpLZ[W򆝛 2¦DAzm-T2ֿBv.h{9WjeŶnC!T,v kņqKh h&'N)ļ?ϑU@5^|s't}b6εc0S0K$NN.9°z}&7?LI`tf  7ifҭаwm$+(vt60</Seh8F ^7v휊$ \ТĹO3pS(Gn\swDNoq+/.|9k}:!A^ª.bWg'xa?B$~b]_K;dFpzG*sXrbn{)Ot^ZױFCI[ :*K"Ni\u~gTQ^$'Tk&ba۵E%3~q3<۠oMh!BԢϦ[I(v;c/A2ǎxS9F ] u2‰#B+sl`k%I-8x-vt-㵖+_[&z M<8OZn@-{`ף(0Ե~&pz6M>g`8 &nDK縠wգuڊ@)f?Ơ9BzU,gA WɆ! U,_ؽv-)TQ4@V ⡕k 'vDtv8kND=ۍ"_'g4yQurGz oSsdWL4Fw:8)+R2f,J$ܕ9|z]7PK(ve*pvECnE)qXٙ/ {07}kVU;ԟ1jy8}),ݚYC=*ՠOt#l"Τ"c+s.vL"ϠIqz3a)NV{d-8-@{fap0:n$*Mz F>ÏXBSZF,J%gMp1jG`"Yͭt@8_\6l%D;F|< $Z,،9aͪ.EH!߻9f.BwWRj k@)2?IlŹ\v ֓q~Ztڝ6Ů'gQsEW@ X.ks4ZO*p!!dymI[AjAQ>ԒާIA%d FcxO@܊gŠFz\ɲpWKl"S?e=uiIcЬ&PU(jk ê**xZfL9 Lxq+v:6^]+ٸmKFv|a\k+- )@ cH&T3.Fud~mů^,%&\sg"hp j6Z#m^$ю:W&ĚhP;%bׯ-ZMl\kflyP(p7؉9RDr^?q_L"+KYEPmf[ѧ]lh/f}ǯO,I7O9`i:>D2Aɮqc qmtQ|WUx`|zͲ?Q.Lw)hIe&Au3)zB]mpnb++iHX^}yWQnخQ*z]}k~| @@Frbs-6|<A)26=$"-W'y$0+J7˿[=ն,(^ 3T+y3q;%`N"Sjo-ŪkLS,G8! h"J~F)bCPsKٕ Ve( [9R>.zvQ{8O,oRI'^]6{SԿF=+28o]!F8c7rA8hT*o'?9 =$g-✩8[b;f3(һ喯Y %b+e,@E0۱g+Qc\9ol C1_^st JCgUscEU`/^2Zy-~zVmz=.x]5 A~/7N0H?{ߍed]~4:D<*:] #$vf;X:{L"}06XLb9ZG$Gfl9bY 2ֲ>&2X7hb 5x{޳; u ODa.9 G$`-Lp(Jsy YqGb¨= 1(b4^D V7jF\OpxMn{s%6 gzϛkLB.7Lr/LXK?sK{~0b|f,gr`^Ajbdj+*X2Ngjlσb?eрS 3[hxCVHMYAk\c?)nډ|9tT\Lه"b^:تt [FO_0?C?=Yu_txX;m]J*O,29W{wP>z9&Hcӊ?n&Wp?U҄k7% :pxKN m\94 p.=֫4іE6!wT 3wKR'V4gПKSD L5}p뙔c,u!|`\̛PI2k3:4-Ք2 Q 繉BE .٥dpY`7Շ[oR_B +pkw$JrgćpEW3ma,ijx`Z(N æBUZݫY{v8LNuO&u#:ٌ‚$)FS#`}JK)sR@^ܳ1cT}D6K_tٿ<w}X?[U#).S\pkD Ib 8i i#ܠUچt1f\w;QgXs MV̋6քZ׶q`!1UJ[ WLˍauޢഌ&&aH+GZΧϡ r7A]G}<% LoȃƂkFDyXfos!^k©7K;2l1Ƃ:|=I:@•gxr"`xJ$<ۿ0 Tⲭ 8m /{>AKT3<k=+ej.SE8tF+%W/,pOVq#_vǼ*;PhYV)Y>~#!wTc#eŀ_ؠ dZo$|PkE]aG`ڜZ1͍S!j5m%:@WQQ;m0TWmc.|Js'م5#UB(eI*PK0`Vfd4꼣V-h;],EXsس3[PNuqx‡_"{>ĩXŏ463v1PsV6ԗ."dbX pхak# Β٣>E A}$EMh `!s{2J׈r+D2W׋Iy Ԙ=7_ sӇPEeQ'<]XJ'W~i\,Iڬ!)a!ruo 8^\BS3;?+e)iI5<'ф~J{@.1iye5+Y Gk]DA 9vķ {}E\9#|FS;<]'y-ޜJZ8nx]R= `LJ'.ג)7n |oQ37J |I^bTlT}v p+GA6(ͷMcpX0ch.8U_=. eU:<? D6P4)q\lY S:]jdGIzxr0<^aweYL~Zو8gHkףg(jM2kzpʝ- uwY5kX~WV@yPt5`(5C2 ? L18y ,#2@L@K8$|"3tvO(Kڝ[vLk|Hx'1.H1`Yf>33P%?Qr P[Z\LpZ89'{`B\ -uʛ(JQZ>^myf}q(;ASaWq\?EL> p30 fn'R0YBpsh٫G7I|vv_mcޠgYY.aR`}ҁA!!h'MxŔi+zPz}e6g@:%WG MVPdCpPƕs,\fݙ<6E^R&5_hT#DEd H+X#(+)ӶWb/73.c9#څ唋:YòlTuՕj?4"Z7%UTȁCFIlϹqg䨹 G}^5LUekej5%Ͻћ<̀B&)kJɮn*o%Б qݒ5v_FD˕f[Qs~< ,D Vt$[Ylx xif@%UlVwo~({ &\Y<^B?͎}iSP;A4?%мTWcr#5y4ݾ-mzKqǣrzP* ~4#Q<&3[)9*m2;9 ?T@GVďx|P4FRGؐi=^ITc]{O%7dp1;Ѱ3Ӫ( Gnս,&L>"6N[G-ɲ#^}gڗ [?tĄ5\̟}ǣysyYx:GhQq< ҊvWe@ޅޖ-U-1>jhY/cHu:V>heNǠ ^pT6~7^^]s˽ZCTڙLqdN)W7$ ;*\j G1S9mR Ie?4[zN7ӫI2Mׯ`HE~{vܩrG {rvuA+NxǵN$J]su!, )!O :Qc,x}Ic 7spTIdM=R'Ma^auMl)Wj>V*(4~FZN.]ƹrh;Bjgf4έl #L6)a:ޏ-9>j"RJء17 X#FI7d\ەvJo<mIkoN͸YXIt~w ʐh}a:L4#(Nt5?;6"_: $غMhyq^,TWKd-TNZ#)&#}`J)9A\)위u`a> 1Q9iy M <{a[㉳pdC)lA!]XY9( GIʯѝ 1lTP„u(pƵ]iݬVkKg #qڱޯE,ӊ}v8H -צp9+0&&r} cX2W вZ2 JilD xd1=[Fݣ:9^ 1G0w/+W(y߱+"Cj#1]g/ ~cqN,劺ͯTD/k.N?M}n9#F8yը:NΣ6 !#w?蘅EB)"BN/6*Cۗ PePUP ;H~\_Y^imUKCj68;)qnrj$YyŦfmyC[R%E4bk";yI-橛\) }Υ[0D~;.[mވgQsF^Juuܹ 0myKSչ3nY qJ5f]e2|]?usk(ÌS:6ix%>{3ҭ&$T0#0~%.nKz;o~~騉0Rգ?ZRbeWM/|v_ >s:9R)He 5/.#ߖZ~MtKJeyC"ğbJ瘇V(J}L bfiB["AUksbla)ũ 2\mfs)wMt G rXXY2b$Oh{ً1} CwVcnYIȢ ڗ_=uu?>ͩiAbjtо{h1{ !i"N~FKIb}>LdO(gr۹k1Yjo $d[| ^K3CAW% GUO\4$).l_lQّ%NeW%,kK&N4zb_rG$ZPK)82Ƀ 2$j=QzN<b(#38 ꭤJĆ աuqۧiqv{#_8#^jӸ o (2`m|} Qj{TDj* {WىbC)[JTYI$)+#!vA֝)-#䤟ׯR~%fk~c 5gUrPiVA9rn; UE~͗:qbn?:o p8mE\KtNZO,^Br(_+UΎCj-(fVt!fAsᛚgzA)| 3IR8{xz%w)~ 7-8$: &mecbyG"xH{{zkbkN\mP%1SށZ#sokI7vܥ!YAt_>ʹb$5ztP4s)ڏcx6?̠s տ?Ѿ"3 o`꘡򫽜7RpY]U=u;ϞZa}`"j۽:>r½;Qg/^fHt∉^ Y֯]UWCq]O_ 2 <.E nv485Q*1c2# fǡ@y9w@z6Gt:*M!' FR>oUwɆg TgWM7usjuJH+nWB *SU 9/@܌~>ocur,)|$`Ϻp SusQkHE'OHcJVx14>!O;M+qi?M>Pf.d2m1 ƀgAo$%* }mae9nJRnI~V^<xbSX:g,0\(1֮ .a}.-`AoV=Y#hbLxaT̽1%[=UƇ[WV*xF4-K#А~a'kZݰDzwd5[rf/ |@uX~6e5:F)8y!gjh>j y5I`NްKF"a^ K_q<_|/]ׁ%u1ϩM"ړ` 7|2agj.r:e(%\KH㞟,B_Щ[ƛ](i! UiNdˑ%h/L ՗ka^!7W$Ea8ĭqm5Hy1nRF ^pqTl 5kHG۔h):GeSNJ̪n&&F s_- /0as:~T*1EB?xaiXOHs(l_3PJfd,g"BrwYb ~M'|`+_%ɘ5h]WzR4qMӘE$-EJQ\2icjđu1x{8 uM2>}.k1ҫ|BDmҿ2 @7X4Hꚸ?xTTy۪]%8G?Nlrvrx%FMsw(ٚ#RRhj- xKoQ8[:y =trs4/{|%9VkLUȁP$N jFkP?S0C[3I%xĝO\tDim2ج!1-cύybFf=Sc}Ɔ i6qpjvx4* &srZsClu}ur 3DS]YՃ۪*(S&hbTS/Sw 6TwQ ԏug* |6Aʾ+&fn#.ϡ||_DM4DqvHbt\@rMqzpg5˓[𺰌 UH}w ŗL&;T0%l+_ٱrYuGP9r΅^T4žN^g#*;>>z{r.U0pHaa zS#ģ(A6@Q.J8ǁ'VcRje mnvS[PYȾIV4[_)Q`hѩ/{Rxz*A"ݢ~v;X&cnG?Ȩ.T ?y^Uliq3Om BUe{Fs+Wq~S@,93 f*RuRg9hC'C4#(Sh"Tj**TM#քbh;Z#HTHr)Ú{5Kik]/PEt׵#5WĪf !hQb;=m,grE aUzfރA!Ud@56 Vֻe:h5͞0Jz|숓m^͜o䑁1c6f S>bkd$_i|rno- XL1 s-LL0z̄}<-}D3 A VO,kֵJΗ¸*$2?|@k7xI80U p]ώ]ja&- ~>Q$4m+=/)TE>r84{=*[njWD)u9Ai P}P$>P_L!{6^7ԺJ4sxV 'pj`.@Ⱥ #H2a ecvPr5&51.2 m&qzFԚ,y(6òThg&8[ It7սXEwa.UN+ݗU%prQ ~P)g+ {Qh5De@P=ubX0랹<nOtcX)M^ *"ryp?EgܹA+xآjZ׻xtZ`6K2'h+^ɟ%-px_ytY;۲8cلO‚\]O0yѥɨFnJ  wn_/ Z bX~qJ[du恉0iٕq:mł}<2V0(tw# ,Y>GsLŽpS Ͳ5)= 5J,l1d,@R— f%fd2vZo&'sCepIr{wvF6(D(Ʋ6fJP9d/^ح >TQZ ^ zTՕiOǮtigJ$WC J?5 `Wq@Vٷ֤֩- 8paV:Y hJkpu U[غjG+ 7!Q]bh; 9mN@şlb{roXaz+vd=4;N f=$'ӫyD43'O ۢYPI5yn' K+ #߮e" :fq*51B>O(-XȖ\*qE/k#Wڑ= \ 3WGC UZbH§ݴ@V f8_hޯ4gg+,\l&edfH ewq(Z3Q*~}4x ]ܤ] "@VWh‡aTJ*E]5Bu"{vrCe]W՞&e3>H)"$,J%PN7|_Xʁs8ܪ(Up3(>ɖomi\+{=jRܞ{0\Jl>ݰ~x{# KC 5~D*fg[psE }Gadj#j7/GAD⬁xZ7R}cֹc.sχ9;rVW(]kr%},\Dm8ȵWOԛ;v0+ó`Nj}z6 k 8).f v)_Q)4ro˔ڧʵT6u䈓;@w kY}~KQn[&Xs(c9hh8LfI5=M1z+p#+yd3EOI hUN@s ÏWS=B^g,^Ȓўro:a?3^^`rPb[MGߜ&ƭ{EaS,YE3uA+-8"M&cI Z@I|% S{&Ɏ(IS MeTdE^uk7giFHÜ|_.+< l_y 16_=ΐMqۧ D*_l~tN#:qrtE:͏CƇ:ɩsF^V!j8V*@j.Nb\GbaAgtT|'k 6pe4Ł쬣)AW4ڜgkE"V>)+F`3I; 0wVb*Oi켁~ulA3 qHF+; zy:05Z3Wtp?qN< Lc4:Y}gݳR.ኲ MiȤMNk%IFֹk/A.~j /Vƣf79UTqۀf׼ѫym5d(5)|h5:78w y9osdzh ˜uҚ/;ظjOi1 pʷT vM6 /wCFO@٣% +K'8:Jծk]ω0zGTB)@| &.UB6HFzB“6r05voS{[ʿA !\R}hv(:N7.cR "1h$hP,o@n4.