Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219

Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
PK!:>g>g> sense.podnu[=encoding utf8 =head1 NAME common::sense - save a tree AND a kitten, use common::sense! =head1 SYNOPSIS use common::sense; # Supposed to be mostly the same, with much lower memory usage, as: # use utf8; # use strict qw(vars subs); # use feature qw(say state switch); # use feature qw(unicode_strings unicode_eval current_sub fc evalbytes); # no feature qw(array_base); # no warnings; # use warnings qw(FATAL closed threads internal debugging pack # portable prototype inplace io pipe unpack malloc # glob digit printf layer reserved taint closure # semicolon); # no warnings qw(exec newline unopened); =head1 DESCRIPTION “Nothing is more fairly distributed than common sense: no one thinks he needs more of it than he already has.” – René Descartes This module implements some sane defaults for Perl programs, as defined by two typical (or not so typical - use your common sense) specimens of Perl coders. In fact, after working out details on which warnings and strict modes to enable and make fatal, we found that we (and our code written so far, and others) fully agree on every option, even though we never used warnings before, so it seems this module indeed reflects a "common" sense among some long-time Perl coders. The basic philosophy behind the choices made in common::sense can be summarised as: "enforcing strict policies to catch as many bugs as possible, while at the same time, not limiting the expressive power available to the programmer". Two typical examples of how this philosophy is applied in practise is the handling of uninitialised and malloc warnings: =over 4 =item I C is a well-defined feature of perl, and enabling warnings for using it rarely catches any bugs, but considerably limits you in what you can do, so uninitialised warnings are disabled. =item I Freeing something twice on the C level is a serious bug, usually causing memory corruption. It often leads to side effects much later in the program and there are no advantages to not reporting this, so malloc warnings are fatal by default. =back Unfortunately, there is no fine-grained warning control in perl, so often whole groups of useful warnings had to be excluded because of a single useless warning (for example, perl puts an arbitrary limit on the length of text you can match with some regexes before emitting a warning, making the whole C category useless). What follows is a more thorough discussion of what this module does, and why it does it, and what the advantages (and disadvantages) of this approach are. =head1 RATIONALE =over 4 =item use utf8 While it's not common sense to write your programs in UTF-8, it's quickly becoming the most common encoding, is the designated future default encoding for perl sources, and the most convenient encoding available (you can do really nice quoting tricks...). Experience has shown that our programs were either all pure ascii or utf-8, both of which will stay the same. There are few drawbacks to enabling UTF-8 source code by default (mainly some speed hits due to bugs in older versions of perl), so this module enables UTF-8 source code encoding by default. =item use strict qw(subs vars) Using C is definitely common sense, but C definitely overshoots its usefulness. After almost two decades of Perl hacking, we decided that it does more harm than being useful. Specifically, constructs like these: @{ $var->[0] } Must be written like this (or similarly), when C is in scope, and C<$var> can legally be C: @{ $var->[0] || [] } This is annoying, and doesn't shield against obvious mistakes such as using C<"">, so one would even have to write (at least for the time being): @{ defined $var->[0] ? $var->[0] : [] } ... which nobody with a bit of common sense would consider writing: clear code is clearly something else. Curiously enough, sometimes perl is not so strict, as this works even with C in scope: for (@{ $var->[0] }) { ... If that isn't hypocrisy! And all that from a mere program! =item use feature qw(say state given ...) We found it annoying that we always have to enable extra features. If something breaks because it didn't anticipate future changes, so be it. 5.10 broke almost all our XS modules and nobody cared either (or at least I know of nobody who really complained about gratuitous changes - as opposed to bugs). Few modules that are not actively maintained work with newer versions of Perl, regardless of use feature or not, so a new major perl release means changes to many modules - new keywords are just the tip of the iceberg. If your code isn't alive, it's dead, Jim - be an active maintainer. But nobody forces you to use those extra features in modules meant for older versions of perl - common::sense of course works there as well. There is also an important other mode where having additional features by default is useful: commandline hacks and internal use scripts: See "much reduced typing", below. There is one notable exception: C is not enabled by default. In our opinion, C had one main effect - newer perl versions don't value backwards compatibility and the ability to write modules for multiple perl versions much, after all, you can use feature. C doesn't add a new feature, it breaks an existing function. =item no warnings, but a lot of new errors Ah, the dreaded warnings. Even worse, the horribly dreaded C<-w> switch: Even though we don't care if other people use warnings (and certainly there are useful ones), a lot of warnings simply go against the spirit of Perl. Most prominently, the warnings related to C. There is nothing wrong with C: it has well-defined semantics, it is useful, and spitting out warnings you never asked for is just evil. The result was that every one of our modules did C in the past, to avoid somebody accidentally using and forcing his bad standards on our code. Of course, this switched off all warnings, even the useful ones. Not a good situation. Really, the C<-w> switch should only enable warnings for the main program only. Funnily enough, L explicitly mentions C<-w> (and not in a favourable way, calling it outright "wrong"), but standard utilities, such as L, or MakeMaker when running C, still enable them blindly. For version 2 of common::sense, we finally sat down a few hours and went through I, identifying - according to common sense - all the useful ones. This resulted in the rather impressive list in the SYNOPSIS. When we weren't sure, we didn't include the warning, so the list might grow in the future (we might have made a mistake, too, so the list might shrink as well). Note the presence of C in the list: we do not think that the conditions caught by these warnings are worthy of a warning, we I that they are worthy of I your program, I. They are I! Therefore we consider C to be much stricter than C, which is good if you are into strict things (we are not, actually, but these things tend to be subjective). After deciding on the list, we ran the module against all of our code that uses C (that is almost all of our code), and found only one occurrence where one of them caused a problem: one of elmex's (unreleased) modules contained: $fmt =~ s/([^\s\[]*)\[( [^\]]* )\]/\x0$1\x1$2\x0/xgo; We quickly agreed that indeed the code should be changed, even though it happened to do the right thing when the warning was switched off. =item much reduced typing Especially with version 2.0 of common::sense, the amount of boilerplate code you need to add to get I policy is daunting. Nobody would write this out in throwaway scripts, commandline hacks or in quick internal-use scripts. By using common::sense you get a defined set of policies (ours, but maybe yours, too, if you accept them), and they are easy to apply to your scripts: typing C is even shorter than C. And you can immediately use the features of your installed perl, which is more difficult in code you release, but not usually an issue for internal-use code (downgrades of your production perl should be rare, right?). =item mucho reduced memory usage Just using all those pragmas mentioned in the SYNOPSIS together wastes I<< B<776> kilobytes >> of precious memory in my perl, for I, which on our machines, is a lot. In comparison, this module only uses I<< B >> kilobytes (I even had to write it out so it looks like more) of memory on the same platform. The money/time/effort/electricity invested in these gigabytes (probably petabytes globally!) of wasted memory could easily save 42 trees, and a kitten! Unfortunately, until everybody applies more common sense, there will still often be modules that pull in the monster pragmas. But one can hope... =back =head1 THERE IS NO 'no common::sense'!!!! !!!! !! This module doesn't offer an unimport. First of all, it wastes even more memory, second, and more importantly, who with even a bit of common sense would want no common sense? =head1 STABILITY AND FUTURE VERSIONS Future versions might change just about everything in this module. We might test our modules and upload new ones working with newer versions of this module, and leave you standing in the rain because we didn't tell you. In fact, we did so when switching from 1.0 to 2.0, which enabled gobs of warnings, and made them FATAL on top. Maybe we will load some nifty modules that try to emulate C or so with perls older than 5.10 (this module, of course, should work with older perl versions - supporting 5.8 for example is just common sense at this time. Maybe not in the future, but of course you can trust our common sense to be consistent with, uhm, our opinion). =head1 WHAT OTHER PEOPLE HAD TO SAY ABOUT THIS MODULE apeiron "... wow" "I hope common::sense is a joke." crab "i wonder how it would be if joerg schilling wrote perl modules." Adam Kennedy "Very interesting, efficient, and potentially something I'd use all the time." [...] "So no common::sense for me, alas." H.Merijn Brand "Just one more reason to drop JSON::XS from my distribution list" Pista Palo "Something in short supply these days..." Steffen Schwigon "This module is quite for sure *not* just a repetition of all the other 'use strict, use warnings'-approaches, and it's also not the opposite. [...] And for its chosen middle-way it's also not the worst name ever. And everything is documented." BKB "[Deleted - thanks to Steffen Schwigon for pointing out this review was in error.]" Somni "the arrogance of the guy" "I swear he tacked somenoe else's name onto the module just so he could use the royal 'we' in the documentation" Anonymous Monk "You just gotta love this thing, its got META.json!!!" dngor "Heh. '""' The quotes are semantic distancing from that e-mail address." Jerad Pierce "Awful name (not a proper pragma), and the SYNOPSIS doesn't tell you anything either. Nor is it clear what features have to do with "common sense" or discipline." acme "THERE IS NO 'no common::sense'!!!! !!!! !!" apeiron (meta-comment about us commenting^Wquoting his comment) "How about quoting this: get a clue, you fucktarded amoeba." quanth "common sense is beautiful, json::xs is fast, Anyevent, EV are fast and furious. I love mlehmannware ;)" apeiron "... it's mlehmann's view of what common sense is. His view of common sense is certainly uncommon, insofar as anyone with a clue disagrees with him." apeiron (another meta-comment) "apeiron wonders if his little informant is here to steal more quotes" ew73 "... I never got past the SYNOPSIS before calling it shit." [...] How come no one ever quotes me. :(" chip (not willing to explain his cryptic questions about links in Changes files) "I'm willing to ask the question I've asked. I'm not willing to go through the whole dance you apparently have choreographed. Either answer the completely obvious question, or tell me to fuck off again." =head1 FREQUENTLY ASKED QUESTIONS Or frequently-come-up confusions. =over 4 =item Is this module meant to be serious? Yes, we would have put it under the C namespace otherwise. =item But the manpage is written in a funny/stupid/... way? This was meant to make it clear that our common sense is a subjective thing and other people can use their own notions, taking the steam out of anybody who might be offended (as some people are always offended no matter what you do). This was a failure. But we hope the manpage still is somewhat entertaining even though it explains boring rationale. =item Why do you impose your conventions on my code? For some reason people keep thinking that C imposes process-wide limits, even though the SYNOPSIS makes it clear that it works like other similar modules - i.e. only within the scope that Cs them. So, no, we don't - nobody is forced to use this module, and using a module that relies on common::sense does not impose anything on you. =item Why do you think only your notion of common::sense is valid? Well, we don't, and have clearly written this in the documentation to every single release. We were just faster than anybody else w.r.t. to grabbing the namespace. =item But everybody knows that you have to use strict and use warnings, why do you disable them? Well, we don't do this either - we selectively disagree with the usefulness of some warnings over others. This module is aimed at experienced Perl programmers, not people migrating from other languages who might be surprised about stuff such as C. On the other hand, this does not exclude the usefulness of this module for total newbies, due to its strictness in enforcing policy, while at the same time not limiting the expressive power of perl. This module is considerably I strict than the canonical C, as it makes all its warnings fatal in nature, so you can not get away with as many things as with the canonical approach. This was not implemented in version 1.0 because of the daunting number of warning categories and the difficulty in getting exactly the set of warnings you wish (i.e. look at the SYNOPSIS in how complicated it is to get a specific set of warnings - it is not reasonable to put this into every module, the maintenance effort would be enormous). =item But many modules C or C, so the memory savings do not apply? I suddenly feel sad... But yes, that's true. Fortunately C still uses only a miniscule amount of RAM. =item But it adds another dependency to your modules! It's a fact, yeah. But it's trivial to install, most popular modules have many more dependencies. And we consider dependencies a good thing - it leads to better APIs, more thought about interworking of modules and so on. =item Why do you use JSON and not YAML for your META.yml? This is not true - YAML supports a large subset of JSON, and this subset is what META.yml is written in, so it would be correct to say "the META.yml is written in a common subset of YAML and JSON". The META.yml follows the YAML, JSON and META.yml specifications, and is correctly parsed by CPAN, so if you have trouble with it, the problem is likely on your side. =item But! But! Yeah, we know. =back =head1 AUTHOR Marc Lehmann http://home.schmorp.de/ Robin Redeker, "". =cut PK!sense.pmnu[package common::sense; our $VERSION = 3.74; # overload should be included sub import { local $^W; # work around perl 5.16 spewing out warnings for next statement # use warnings ${^WARNING_BITS} ^= ${^WARNING_BITS} ^ "\x0c\x3f\x33\x00\x0f\xf0\x0f\xc0\xf0\xfc\x33\x00\x00\x00\x0c\x00\x00"; # use strict, use utf8; use feature; $^H |= 0x1c820fc0; @^H{qw(feature_fc feature_state feature___SUB__ feature_evalbytes feature_say feature_unicode feature_switch)} = (1) x 7; } 1 PK!̔`` libvix.sonuȯELF>0u@@8 @ 00!0!. XX!X!``888$$ppp Stdppp PtdHHHQtdRtd00!0!GNUyGCf C $"*h 2 X", C(0PHT(h(p(pƨ1    {F{ [ ŠEEt=wu砭h T z4pd;T!ko7eP֩U@؅eP KA];z48`HֱRAss,_T8N9|CZaٲx7K-㳳"T "RVeT$-?Ck.9y ގ5([q'sNnWȎa wp$^Gy{NqrqX+$m  2m g  a  E+  M *  w ^. J N   y  i>  F>  }B  bA Vz Ep ~    !.  @f&  w8 UX; = U v  - q   r#h )n  n H[ \f | Y s    V = , k  `  F" S f  I `A o iX n C 0G\ OZ P Mp Pl| _ d0 P\ J  i  JW `h [xP m J CL K~z P^ P>e^ fH P] PaXP D9A f  04qe F3K d"  :/ D  n ' d B P&  `:\ ME >3 P`0 @k 0?A 0Z @ K\ I* `xB \x I Z 0CCe ?- ha ]x Y 0_ @l  O  U}c Tt 4  `=F@")  05 <a  4y  0cJ 7  =W8/ / pe pYG b g b  P;=8  =1 a Y g a1@" P[x__gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeUtilSafeStrdup0VixMsg_DecodeString__stack_chk_failg_logSyncDriver_ThawSyncDriver_CloseHandle__errno_locationg_strdup_printfstrlenRpcChannel_Sendg_freeStr_SprintfRpcChannel_SetRetValsBase64_EncodedLengthUtilSafeMalloc0Base64_EncodeImpersonate_InitStrUtil_StrToIntVMTools_ConfigGetBooleanVMTools_ConfigGetStringSyncDriver_FreezeSyncDriver_QueryStatusg_timeout_source_newg_source_set_callbackg_main_loop_get_contextg_source_attachg_source_unrefProcMgr_ExecSyncWithExitCodePosix_SetmntentPosix_Getmntentstrcmpendmntentg_accessProcMgr_ExecSyncg_rmdirg_mkdir_with_parentsVixMsg_ValidateMessagememcpyVMTools_WrapArrayToolsOnLoadSyncDriver_Initg_array_append_valsStr_SafeAsprintfHashTable_GetNumElementsHashTable_ForEachFile_UnlinkNoFollowProcMgr_FreeProcMgr_IsAsyncProcRunningProcMgr_GetExitCodeProcMgr_GetPidStr_Snprintfg_hash_table_removetimeVMTools_LogstrcspnFile_IsSymLinkPosix_ReadLinkHgfsServerManager_InvalidateInactiveSessionsHashTable_ClearstrchrHashTable_InsertHgfsServerManager_Registerg_int_hashg_int_equalg_hash_table_new_fullHashTable_Allocg_source_removeHgfsServerManager_UnregisterFile_ExistsFileIO_AccessUtilSafeCalloc0ProcMgr_ExecAsyncVixPropertyList_InitializeSystem_GetNodeNameHostinfo_GetOSNameHostinfo_GetOSGuestStringHostinfo_GetSystemBitnessFile_GetSafeRandomTmpDirVixPropertyList_SetStringVixPropertyList_RemoveAllWithoutHandlesVixPropertyList_SetIntegerHgfsHlpr_QuerySharesDefaultRootPathHgfsHlpr_FreeSharesRootPathVixPropertyList_SetBoolVixPropertyList_SerializeAuth_CloseTokenVGAuth_UserHandleFreeEscape_DoDynBuf_AppendFile_GetModTimeFile_IsDirectoryFile_IsFileFile_GetSizePanicPosix_StatVGAuth_InitVGAuth_UserHandleUsernameProcMgr_GetImpersonatedUserInfoVixMsg_DeObfuscateNamePasswordmemsetVGAuth_EndImpersonationVGAuth_ValidateUsernamePasswordVGAuth_ImpersonateVGAuth_ValidateSamlBearerTokenAuth_AuthenticateUserProcMgr_ImpersonateUserStartsysconfPosix_Getpwnam_rgeteuidVix_TranslateSystemErrorProcMgr_ImpersonateUserStop__VMAutomationMsgParserInitRequest__VMAutomationMsgParserGetString__VMAutomationMsgParserGetOptionalString__VMAutomationMsgParserGetOptionalStringsstrrchrFile_DeleteDirectoryTreeFile_DeleteEmptyDirectoryVGAuth_ShutdownVGAuth_AddAliasVGAuth_RemoveAliasByCertVGAuth_RemoveAliasVGAuth_FreeUserAliasListVGAuth_QueryUserAliasesStr_AsprintfDynBuf_InitDynBuf_TrimDynBuf_DetachDynBuf_DestroyProcMgr_FreeProcListg_hash_table_replaceg_hash_table_lookupProcMgr_ListProcessesg_regex_newg_regex_matchFile_ListDirectoryUnicode_AllocWithLengthg_regex_unrefg_clear_errorPosix_OpenwriteVix_TranslateErrnoFile_GetTimesFile_SetTimesPosix_ChownFile_SetFilePermissionsTimeUtil_UnixTimeToNtTimeVGAuth_FreeMappedAliasListVGAuth_QueryMappedAliasesFile_GetPathNameHashTable_LookupgetpidProcMgr_KillByPidPosix_StatfsNetUtil_GetPrimaryNicxdr_GuestNicxdr_freeFile_IsSameFile__VMAutomationMsgParserGetDataHgfsServerManager_ProcessPacketFile_CreateDirectoryHierarchyExVixMsg_ParseWriteVariableRequestgetpgrpUtil_HasAdminPrivFile_MakeTempEx2File_CreateDirectoryExSystem_SetEnvHashTable_ReplaceOrInsertFile_MovePosix_GetenvcallocstrdupLogVAuth_GetPwnamAuth_AuthenticateSelfgetuidPosix_Getpwuid_rAuth_AuthenticateUserPAMCodeSet_ValidatePosix_DlopendlsymdlerrordlcloseStr_StrlenUnicode_IsBufferValidVixMsg_InitResponseMsgVixMsg_AllocResponseMsgVixMsg_AllocRequestMsgStr_StrcpyVixMsg_ValidateRequestMsgVixMsg_ValidateResponseMsgVixMsg_ValidateCommandInfoTableWarningVixAsyncOp_GetDebugStrForOpCodeVixMsg_GetCommandSecurityCategoryVixMsg_AllocGenericRequestMsgVixMsg_ParseGenericRequestMsgVixPropertyList_DeserializeVixMsg_MallocClientDatamallocVixMsg_EncodeStringVixMsg_ObfuscateNamePasswordVixMsg_ReallocClientDatareallocVixMsg_StrdupClientDataBase64_DecodedLengthBase64_Decode__VMAutomationMsgParserInitResponseVMAutomation_VerifyRequestLengthVMAutomationMsgParserGetRemainingDataVixMsg_ParseSimpleResponseWithString__VMAutomationMsgParserGetPropertyListVixPropertyList_MarkAllSensitiveVixPropertyListAppendPropertyVixPropertyList_FindPropertyUnicode_EscapeBufferVixPropertyList_DeserializeNoClobberVixPropertyList_GetStringVixPropertyList_SetStringSensitiveVixPropertyList_GetIntegerVixPropertyList_GetBoolVixPropertyList_GetInt64VixPropertyList_SetInt64VixPropertyList_GetBlobVixPropertyList_SetBlobVixPropertyList_SetBlobSensitiveVixPropertyList_GetPtrVixPropertyList_SetPtrVixPropertyList_PropertyExistsVixPropertyList_NumItemsVixPropertyList_EmptyVix_TranslateGuestRegistryErrorVix_TranslateCryptoErrorstrerrorimpersonationEnabledImpersonateInitImpersonate_RunasMXUser_AcquireRecLockImpersonateRunasMXUser_ReleaseRecLockMXUser_CreateSingletonRecLockIntImpersonate_OwnerImpersonateOwnerImpersonate_DoImpersonateDoImpersonate_UndoImpersonateGetTLSImpersonateUndoImpersonate_WhoImpersonate_ForceRootImpersonateForceRootImpersonate_UnforceRootImpersonateUnforceRootId_SetGidinitgroupsId_SetRESUidPosix_SetenvErr_Errno2Stringlibhgfs.so.0libvgauth.so.0libvmtools.so.0libdl.so.2libpthread.so.0libglib-2.0.so.0libc.so.6__environlibtirpc.so.3_edata__bss_start_endlibvix.soGLIBC_2.2.5TIRPC_0.3.0GLIBC_2.14GLIBC_2.4g ui  P{ r ui ii ui 0!v8!u@!@!`! /h!pp! /x!ˠ! /!Ӡ! /!! /!! /!!ծ!!!(!-@!D!\!s!!!(0!H!į`!Xx!!!!1!E!x! !8!`P!h!!z!p!!8!`!!!!!0!0H!߰!!P !p8!P!.!IX!p!e!!!!@!!!0!hH!ֱ`!x! !!#!A!Z !v8!!!!Ʋ!!!(!)@!ȧX!p!D0!``!!y!0!XP!h!!!@!Ш!!!ٳ!!!(h!.!L!i!P!x!!!!!!!(!P0!H!`!ִx!!!Ъ!!!@!h !8!P!"h!!!!@!`!!@!(!Ь@!X!^p!y! !H!p!!!Э!0!H!@"r0"1!!!!Z!^!z!!!!!!!!!!!!!! !(!0! 8! @! H! P! X!`!h!p!x!!!!!!!!!!!!!!!!!!!! ! !!(!"0!#8!$@!%H!P!&X!'`!(h!)p!*x!+!,!-!.!/!0!1!2!3!4!!5!6!7!8!!9!:!!;!< !=(!>0!?8!@@!AH!BP!X!C`!Dh!Ep!Fx!G!H!I!J!K!!M!!N!O!P!Q!R!S!!!T!U!V!W!X !Y(![0!\8!]@!_H!`P!aX!b`!ch!dp!ex!f!g!h!!i!j!k!l!m!n!o!p!!q!r!!s!t!u!v!w !x(!y0!{8!|@!H!}P!~X!`!h!p!x!!!!!!!!!!!!!!!!!!!!! !(!0!8!@!H!P!X!`!h!p!x!!!!!!!!!!!!!!!!!!!!! !(!0!8!@!H!P!X!`!h!p!x!!!! HH!HtH5!%!hhhhhhhhqhah Qh Ah 1h !h hhhhhhhhhhqhahQhAh1h!hhhh h!h"h#h$h%h&h'qh(ah)Qh*Ah+1h,!h-h.h/h0h1h2h3h4h5h6h7qh8ah9Qh:Ah;1h<!h=h>h?h@hAhBhChDhEhFhGqhHahIQhJAhK1hL!hMhNhOhPhQhRhShThUhVhWqhXahYQhZAh[1h\!h]h^h_h`hahbhchdhehfhgqhhahiQhjAhk1hl!hmhnhohphqhrhshthuhvhwqhxahyQhzAh{1h|!h}h~hhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqhahQhAh1h!hhhhhhhhhhhqha%%!D%!D%!D% !D%!D%!D%!D%!D%!D%ݐ!D%Ր!D%͐!D%Ő!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%ݏ!D%Տ!D%͏!D%ŏ!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%ݎ!D%Վ!D%͎!D%Ŏ!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%ݍ!D%Ս!D%͍!D%ō!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%݌!D%Ռ!D%͌!D%Ō!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%݋!D%Ջ!D%͋!D%ŋ!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D%]!D%U!D%M!D%E!D%=!D%5!D%-!D%%!D%!D%!D% !D%!D%!D%!D%!D%!D%݊!D%Պ!D%͊!D%Ŋ!D%!D%!D%!D%!D%!D%!D%!D%!D%}!D%u!D%m!D%e!D% % H% @H=!H!H9tH6!Ht H=!H5!H)HHH?HHtH-!HtfD=u!u+UH= !Ht H=^l!dM!]wUHSHH<"ttfHt<"u<"HH.H„t\t?"tZJHufDH)HӀ; uDH; tH]H[]@zt JHHf.HATIU1SHdH%(HD$1H$HHtHHHHH$I$HHL$dH3 %(u H[]A\ff.@H=H1H SHLH="HtKtH=Ӝ"&H@H HH=TyH H<1H=*Off.fAVIAUAATIULSHHHEAVD1LH5H=HHH} ZE1YHP1H7H߉]@t[]A\A]A^[H ]A\HIA]1H=lA^ff.@AWAVIAUATUSH_HHHdH%(HD$81HG0HHD$ HD$(H@D$HD$0HD$I~HT$ HHHH$I1E1E1H|$0-@HqH{LLt$PHD$XHHD$`HD$hHD$pHD$xL$H$HDŽ$HDŽ$HDŽ$HDŽ$H{LSHBHHpHrH2H1HH5IH1OH1[Ht7HHt/HNHt&LNMtAH5 11 f.1ff.fATUS1H dH%(HD$1HtCHL$LHH5/HHH$HD$JD#HL$dH3 %(Hu H []A\ff.fHt;SHHHtH{HtH{bH{YH[Pff.@AUATUSHHHdH%(HD$1D$u-\~.H HH= C1HH5HHH{0HHH1HT$dH3%(H[]A\A]H{Ht$H{oAątD$H{D+HHL }.MtAuIcL}}.T$1HAH dff.@ATUHSHdH%(H$1HtzH1H5HR¸u5HtpIHHt1L1LHH5FH$dH3 %(u1HĐ[]A\HtHHH1R1IfHdH%(HD$1|$H=u|.Ht$3DD$HAH 1H=HT$dH3%(u1Hff.HtSHH?H[fff.@UHSHH?HtH@SHH;HuHH[]9fSHH?$H{H{H{@HtTH[ff.AVAUATI1US>HW{.IM.A|$8HfE1I,1f.L9s0}?M1ImHHkHHHNHt)MtHCI9D${8HkHtIHHuMt MMeH[]A\A]A^DHID$HH;CtfHmHHMH9EuAD$(HLML9 H ZE(IT$0E8HU0HP1HE@LXZE1tHz.HQH H*1H=rfH-y.@[]L%y.A\A]A^ATUSHHH?dH%(HD$1D$!t]s1HH5HH,H{HHH1HT$dH3%(H[]A\ÐH;Ht$3H;LctD$P1HL`HH@H@H@ D$E(E8HHE0HEHHHE@=H%P;ff.H1H=yx.t HDH=w.1H HH=Hw.w.1Hff.@ATL%rUHS1fDHHlLHtHÀ|uH[]A\fATIUHSuL[]A\fHhHHtHxHLb[]A\ff.HH=w.|t H@HH H=H=v.1Hv.v.Hff.@AV@=v.AUIATHv.UH v.SHH=|v.HH8[jf=LsHHtHIM)I~H3LIH{C4H}=H=v.LHLHL#MuHH=u.Hu.Hu.Hu.Hu.H=h!H5h!1H {I}(Hu.HtH!H5A1H E HH=- h!1[]A\A]A^@Hig!@Hu.fDHH=t.tM=t.H=t.H 1H H=Ht.t.H=qt.tM=at.LH=]t.`H I1HH=*H1t.t.:H=3t.HZf.=>t.Dff.H=-t.H5t.ff.fAWAVAUIATIUSHHH|$H$L$LL$dH%(HD$81HtHELHI< u IA< t<"L$LLFLAHA ErEMxLLH511IMu8Ll$ H|$HH=r.fHCD$)D$ nLLHD$ H|$ HCHt HCHHtHaHHEL|$L{0H11H5HH_LHHH$L1IH  HH=HHL$8dH3 %(HH[]A\A]A^A_fI"LHeUE1LfDLH5115IMfE1 LIܻ 6Off.@Hq.HtH;xuH9xt H@HHuff.@UHSHHw[HHcH>f. II1H HxH=HH[]f.IH 1HH=W|@떐f{fDkfD [fD'NKfDAWAVAUATIUSHxHt$(H\$HHT$0HdH%(HD$h1HD$PHD$XHI;HH IH AŅ DNM1HhLH5n1HiLH5VH$1H\LH5:HD$1HMLH5HD$HD$H꾗HHD$ 0IHHLL$(LH|$PH|$ {LsHkH|$aH|$WH|$MH<$DLL$(HL$hdH3 %(LHx[]A\A]A^A_fLHIHPHaH`IH0HNH@IHLH$IHH6IHHIHHdHIHH<$tH$HIHtH|$tHT$H~IHNH|$tHT$HXIH(H|$tHT$H2IHHT$ HIHD꾧H(IHH|$`HD$8HD$`LL$8 HT$`H߾H|$`IHtLL$8LL$8MlH5LHIHH5LHIHH5sLHkIH{H5LH@IHPH55LeHIH%H5%L:HIHH5LHIHH5LHIHH5LHiIHyH5LH>IHNH5LcHIH#H5L8HIHH5L HIHH5LHIHH5TLHgIHwH5:LHH$HL$dH3 %(uhH(DHt$Ht?H|$Lq_.H r1HH=fDH=$ͼff.fAVHAUATUSHPdH%(HD$H1H@Ht$HD$0HHD$HDHT$HD$HD$HD$ HD$8wHH|$HE1Hl$Hts菹HD0I1HHl$(H?HD$(HҸE4$Hu)1HL$HdH3 %(HHP[]A\A]A^Et H|$H|$ DH|$HHT$Ht$E11H|$LL$ ϾHujHt$ H|$HL$0HH}HD$ H|$AH].yH|$Hmd"Hl$HDHHH|$E1ȷHl$HH@HH趺fDAVAAUL-ATUH-SH`dH%(HD$X1H@HT$HD$0LHt$HD$HEE1HD$HD$HD$ HD$8^HHHl$Ht6胷HD0Iչ1HHl$(H3HD$(HƶEuHl$Ht6CHD0I蕹1HHl$(HHD$(H膶EuHtEH|$ HL$XdH3 %(HH`[]A\A]A^fDH|$fHEHT$Ht$HIDH|$LL$ LD$@HD$@Hl$H肾HuMHt$ H|$HL$0脷HHu\HD$ AHB[.5Hb"fHHH|$H|$ HH^{ff.AWAVAUATUSHxt$ dH%(HD$h1MIԉMIHD$HD$HtHD$ HHt`D$ tJ=L!D;Pw01҃ LLH=Z. H|$|H\$Ht6HD(IO1HH\$0H譸HD$0H@E,$HL$hdH3 %(HHx[]A\A]A^A_fDPy pt bHT$Ht$L&HHDHt$H|${H IH|$HH|$H_"@HT$Ht$L辸HHHD$Lt$0Lt$ H$ڳFIAUu HnH)H<$HLLD$ HI蟴H|$ VHT$ ;B@E1MAMH1LLd$( $HD$(L覲 $AMMLfDLLHfH HH=W| A}H $HIH=#1FMAiIH|$_H HIHB^"1H=ϻ9H fDA M 蚴f.AUATUSHo/ w2Iԋ_ WHHHurumt$ A1H H H= /I1H HH= HH[]A\A]D@HSM1dHHuH]"LH WHH=HLE1覹HH[]A\A]LkLDt$ H9t1H H 1H=3'SfD@ML1HLff.fHIȹHHHdH%(HD$1HH<$HD$dH3%(uH譲ff.fSHHH=["dH%(HD$1XH=T.H["u#HtشHD$dH3%(uH[fHHH<$o(AWA?IAVIAUIHATUHH=SHHdH%(HD$81Ld$ H$HD$LHD$HD$mHHH|$HL$1Hĸ H=MS.蘱HAS.Iپ IEDE1H (HH=0UHHt$8dH34%(HH[]A\A]A^A_M7IL⾋H=^HHQH$8?M;u9LD$Mt_HM3MLHD$ PHT$Ht$HXZLD$L⾗H=\HHtf.HT$HHHHM3LMHD$ PLD$ HT$Ht$[Y^H|$H|vfAWAHAVIAUIATU1SHHH $L|$`HH=~LdH%(H$1HD$(HD$0HD$8HD$@HD$HFIHH|$HL-Q.L 1HH=Q.lH$HL(1M龀LH HDC1MH HV H=׵LH$dH3%(HĘ[]A\A]A^A_ËK4LD$(LH=YDIHHl$(Hl}`K8LD$0L H=1IHKDE1 IH iH[H=HHt$XdH34%(H`[]A\fDM7LD$L⾂%H=THHbHD$Ht8uIM;LD$L⾍%H= HHHD$Ht8tE@wMDLD$ L⾞%H=ʜHH}@uHD$ Hq8hMHLD$(L⾪%H=J腜HHHH9HHwHI"LH HqH={HLE1藥11HL$H=2Hus1}@U?HE1ɉD$HHD$(HD$PHD$0HD$XjHL$(Ht$ H|$LD$PHXZHu/H|$Ht MHu-H<$_HHHH۞HHff.ATHAG&UHH=SH`dH%(HD$X1Ld$@HD$HD$L-HHtuH|$Ht薝Ht HIHH|$\DE1 IH gHyH=$HHt$XdH34%(H`[]A\@M7LD$L &H=tHHcHD$Ht8uJM;LD$ L&H=,HHHD$ Ht8t}?wMCLD$(L&&H=HH}?uHD$(Hv8mHT$HHHHQF"LMH 3HH=ƣHLE111HL$H=}HE?HT$ Ht$H|$u5E11$HHuOH|$Ht 轛HuZH|$#HL$0E1E1D$0HD$(HD$8™HH5HH(HHH뙐AWA;AVAUATIUH&SHHT$L$dH %(H$1HHLH=D$THD$XHD$`HD$p=-GHH1E1E1E1LHL@H8|$THt$pڜH|$`Ht{HH|$XE?ED$1IH .H` H=HH$dH3 %(HĨ[]A\A]A^A_f.AL$7LD$hL꾥&H=BHHu:L|$hME7EuC1E1E1H|$X=1E1E1E1HHHHT$XLHHuHoC"LkH 1HڨH=HLE1H= 11HL$`蛢HHHt$hH|$`11LL$pLD$T貛HHL5/;-H {HI.HLHD$81蛙DD$THLHD$(EHD$xH\$HHD$ HD$@Ld$0HD$ HT$pH@H"LH==H HHLE1FE3}7D$D|$$];Ll$PL\$(Y1Lu?CE1MHDGLt$0EHD$8HH17.Ht*IHHH9u[HHH9KH@HHuIL9uDD$(ELt$0E9H LH1H=MrE1ҺH5BLLT$(vLT$(!L1诓Ld$XLRLT$(IM|$`LLT$(HLT$(L˛L9|$xED$`H 1H>H=ڙ(!PD$D(!蝘IL`L0D$DAEH=5.IuLAEϚ' ŕT$D1H5(HI}H|$LHL@DfDH=5.Ht$DǒIH;E7I;EEe1SA9EeD$$A)McHD$H`L9LFIaE)踗EEL$DEHt$IH1HĒHcȋt$$LIuLH B8EDH|$HITfHp0LH LL@HPVp(VH0 AZA[HIAL9JDE1H|$H+HD$MH=H HG L0DE1LH|$hdH3<%(Hx[]A\A]A^A_D苗1蔸L53.MuVfDMvHMtGIF0MN LMFINIVPAF(PI6BAXAYHtHA`E1E10D+IHIzIJ1E1LHHAMDHIHH9HN3.H3HcHu 1H@HHt'H;HuIM9HKH{f.LF HVLHLN(HvjMjLDfZYHtIA`HE1VE1HD$H&L9LFI'E),Ht$DHMIH1@wA`E1DIH_IB1Ld$(MLt$8Hl$0LIrHH!2.I$Hu6fDH@HHt'H;PuIM9uILd$(Hl$0'fDHtE1fDIL9tHUHIHH;UOHEHcI9 $uL@ HpLLH(HPjHjMLD^_HtIHLd$(Hl$0A`E1IDD$D1E1H jHsH=”5DH=0.Ht$D跌fA`E18 E1H[軏EEE1AH 1H'H=&K1AWHAOAVAUATUHH=SHHt$L$H$LdH%(H$1HD$hHD$pHD$xHDŽ$tHHhLuGI'E?DeCD$ EDD)D$E9ZM7LD$hLH=ٽ贌HHM;HD$h8HT$xHHHH$L-AVLLATL$0H=͓HH-6"IDQH QHPLEL$1HÒH$H|$0H Ht1H$11HDŽ$HIڍHD$HH|$h‰D$(uH|$hH|$h>AH|$hIHD$pdD$(IEH|$ HL$HAGE1H\$8E1HHl$@HLDd$0I"DHD$pIcAL$HL9-HD$p11HHL HL‰uLV@M1H ڻHkH=2WH|$xE1SH=wIH$H|$pL(Ht/E~%EoE1IIJ<'ӇH|$pM9ućDE1 IH OH!H=̐HH$dH34%(Hĸ[]A\A]A^A_D$6Dd$0H\$8Hl$@D$ EuDD$0A9HLcDD|$@E1)H\$HN,L$8MHLt$XHl$P@fHH蕴HcH,H;l$%AD9d$ID;d$8_HD$0|$(E,HD$pJ,8uHT$hI11H ΑH5KHHILHcH,^{fL$L H=ٹ贈HHL$DE;1H HH=+EEH 1HH=ՏA9DE1)HHT$L$8讍HT$IH$HHHD$IEH9D$ L$80DD$0IEHt$H$AUH$HPH$H H$1H)\HH$H$EHcD$0AT$Ll$ Dd$(Ll$D|$0L4HDH\$HHl$(HD$H$I8DHHLLHHTHI舄L9t$HD$pJ0EuHT$hI11H H5Ŗ HH|$hHt$pH葃DE1IH qH H=d艉HH\$hdH3%(Hx[]A\A]A^A_M7LD$0LH=蔂HHM?LD$ LH=lHHM;LD$(LH=ɲDHHHT$8H6HHH,"LH=H yHgHLE1蔈H|$0?u H=ؑH|$0iH|$0AǁEE1i$IHuKsDHǺ1茈o8Hƒ!$$=L~D$L1L H -1H5.bIHuE11һH|$8HT$L$H|$8製L$HT$XDHt$(D$HH4$+DL$H4$HDD $3D $D߂HT$0:MH 11H5诀IMX8LD$LL`Ld$@H$H$H=".fHBE3HT$)D$@cLD$LHD$@LL$蚄H|$@HT$IL$HHBtۦHT$L$LbMLLD$H$4H$LcHD$HB0zH$1H5HI2H|$踅LH́LE1H|$8HH|$8LD$@H$~H$H HH=1DH謅H|$8H|$8註HIE1jLH511 IYE1E1E11һD $|8I-~EEH=H HH1D $D詀UEEH Ʈ1HŘH=܄+E1E1E11һ |M83{H1һ{8I}H늻 l~E11EfATHAYUHH=%SHdH%(H$1Ld$0H$HD$L|HHt\H<$DE1 IH ƬH8H=HH$dH34%(H[]A\DMULD$LH=q|HHuHD$8mDe3A HHHHCH&"LLL$H=H H݋HLE1H|$zAuTA0A@`H<$7fH H1H=迂f.H|$HL$ HT$Ht$LD$(肁H [HtFAHA&HL$ HT$Ht$IH|$DH H֋H=)y8xH%DH|$Ht$@葂t$\T$`AtuGA tUKH|$$'y8@xH H*HH=y1蜁uOH|$~x8wH 8HHH=(1KVH}?1ۄHHD$ H}71ÄHD$tx8IwE $LD$H ʩHH 1H=݀zAWA7AVIAUATUSHg'HH$dH %(HL$x1HHHT$`H=pD$<HD$@HD$HHD$P,yHH|$DCH ͦ1HTH={AzLd$pE1D\$MHE1HD$p1HD$xHt HD$pHEMtHD$xIMtE]C=w(HɗHcH>I LDH$8dH3 %(L)1HH[]A\A]A^A_@LsD\$_DDT$H5@LؘDT$DCAE A@=a HHcH>Ld$pE1A DLd$pA DT$H5#DT$H5gDT$H5ODT$H57DT$H5`DT$H5/DT$H5DT$H5DT$H5DT$H5DT$H5<~DT$H5Y~wDT$H5'~_DT$H5 GDT$H5~/DT$H5DT$H5k}DT$H5r~DT$H5܄DT$H5}DT$H5~DT$H5}DT$H5k}oDT$H5}WDT$H5|?DT$H5}'DT$H52}DT$H5}HT$xHt$pL辢IHHt$xH|$pHDŽ$GuHxH$uHt$xH$L$H|$pHIx$H$AH|$p2mH$Ld$pHD$xAMHE1HD$p|DHT$LHL$pHLd$pE1I.Ht$HT$pHILd$pE1 fDHLd$pE1IHLd$pE1IHLd$pE1IH$H߾HDŽ$迺IHuCH"L}H=vH H}HLE1!uH$dH$DCMH YfH2} H=u1tLd$pE1fAAH ͛H| H=pu1tALd$pE1AAH L$A<HپLH=țHDŽ$HDŽ$HDŽ$HDŽ$lIHC;K7LL$H=iD$0mIHH$8 #Dc3A "H$HIHXL"H{H=UtH H MLDH1ATL$Ps_AXH$j,H$j9*H$H$H$FqL$LM/H$-A9uH$8/.'m/H$ l/H$hiH$[iH$ιH$聨MDCH nfDL$AOHپJLH=D\$HDŽ$HDŽ$jD\$HIH$D\$D\$H={D\$oD\$ILH EzHr1LL$pD\$kDCMH T@Hy H=Sr1vqLd$pD\$fDL$A;HپLH=D\$HDŽ$HDŽ$iD\$HI4H$HWD\$HI H"DK3LyH H{H=qHLE1pK3DC7LL$H=ݙsD\$HIC3L$D\$D$(O H$H=*zHD$ mLH$HD$/D\$I1M'L|$8AH\$H\$ D\$Hl$ l$(Ll$0Lt$(L聦IH !LfHT$11MLH5zRiH|$IufM#"L`fLXfLd$HA7iH\D9#&H$H.IHtHIHTLH\$Hl$ ALt$(Ll$0eD\$H|$D\$MeH$.D\$H$D\$.D\$H$D\$֤MDCH #L$A;HپJLH=D\$HDŽ$*gD\$HIH$D\$fD\$H=(xD\$kD\$IfDMᾀ1L H vD\$HnLd$pgMDCH ߖZf.L$HپD\$L%wA?LHDŽ$H=L$HDŽ$LL$:fD\$HIXLL$K;L$&H=̖LfD\$HI"H$H荲D\$HIHT"LPuL$H nH*wH=mHLE1l{3D\$PH=.H$H%H$HmD\$D$H$iD\$H$L$Lݕ1H tD\$H$mLL$p$fD\$H$D\$|D\$fDH$D\$MDCH pkH$H߾HDŽ$7IHH"LK3LsH HuH=ulHLE1kLc3dA9pAD$bAJ{3gu!b8< 3aIH$}H$0MDCH BDHLd$pE1IHt$HT$pHD\$Ld$pD\$IfDH$H߾HDŽ$ "IH$H "LrH H0sH=:kHLE1VjCH5kH=^l@D$(dH "HL$H$HD$HL$ HfH|$FlIH"I|$Ht$ [dL$L$D\$(IT$MI $L$EHHT$LL$8LD$08HHHT$HD$@HHL$@HHHD$LD$0ILL$8HD$HH5 #RH߀H)HHD$1aAYAZpLHHD$_H|$_fH$D\$HHD$HDŽ$HDŽ$fcD\$HIH@ H|$D\$HP`D\$HIuPH|$1H$H$gD\$HIu&H$HDŽ$HD$pH$HD$xH|$D\$~bH= LaL^D\$Ld$pME1&HT$Ht$HL$pHD\$ Ld$pD\$IfHT$LHL$pH英Ld$pE1IHDŽ$HDŽ$HDŽ$ALAMVL$ADHپxLH=*_IHC;HcK7D[CD$L$L⾊D\$H=H`IHDHcL$L$L⾑H=`IHH$A8H$8H$HIHL "H$L$D\$MU D\$H;pH=gQH P1(f^_H$ ]D\$H$H$D\$hu2H$@`D\$7!C-#AH$fDH$諛MDCH }H$H߾HDŽ$+踪IHH"LmH HnH=eHLE1eC@D$ \HD$HHL$Hm+HD$@IHD$ HL$0HD$1HpHHHHHD$8H!1H$H\$HLHl$PHHD$(L|$hLt$XLl$`-fLIH HH5:l11]IIݚHHMw HD$M@L跚HL$HI5IIG(HLH5yPH|$81E]AZA[IHH$Ht$0HH9H)LHhH1LL$H]LHH[ZLL$LNZH|$DZLLD\$^D\$H$C7IċC;A< L^D\$H$C;xC?L<{D\$D$^D\$IH$HD$HH$D\$WH$WH$WLWD\$HD$LH iiHaD\$HD$pI1ZD\$H$D\$D\$H$D\$裖MDCH 5Ht$HT$pHLd$pE1IfDHT$LHL$pHLd$pE1I^H|$pHYE1E1\fHt$pHCLd$pE1IHDŽ$Dc3HDŽ$EL$A;Hپ"LH=[VXIHH$1HIHK3L$L"H=[IHuaS3H$L$H #H=4-HDŽ$CWH|$tH= -H$HD$xHY#HD$pH$7H$Ld$pE1DC3HDŽ$L$HDŽ$HDŽ$D\$DT$ ACHLH=WD\$HI HC;HcK7D$(DT$ HD$L$L D\$H=DT$ lWD\$HIr H$8W H$HDD\$HI: H "LfL$H EH\fH=x^HLE1]H$DcWD\$DT$ H$H$D\$0&^DT$ D\$0D$A@ADd$ HHH H9L$H|$t$|$09L$WL|$@HcLcH\$HHDHl$PMDLt$X\$ MILl$`ID\$8+IH9D$-DIM9?IK|u?VDH$H߾HDŽ$跡IHu H$蒣H$ELd$pE1SHDŽ$HDŽ$AMAL$A@Hپ{LH=|TIHHcK7D[?L$L⾌D\$H=TIHH$A8H$H辠IHL!D$HcH=\H AMLDHHqPL$1 [AXAYH$QRD\$H$E1ҾRH$ fH$賐MDCH HHLd$pE1IH$HH$HDŽ$HDŽ$HDŽ$^IHH$HsIHuhLD!H@bHqH H=ZMLDH1$L$Y{3XZ$ A H$H$規MDCH DT$1t@Ld$pE1A DH !Hn 1H=ZD\$A%N,YLd$pD\$G@HD$E1MD$H 1HcpH=YXH=b VDt$ IEmHD$H HpH=gY1XLOOH|$EOH$踟H$kH!MDCHD$pH QLH$NH$NxYDA 1AA;HLH=oPD\$HI0HcK7DT$ D\$(HD$jK7L$LRH=PD\$HIH$8H$H赜D\$HIH|!Lx_L$H H_H=WHLE1WH$MD\$ D\$UH$1H$LH5`IH$ H$H$行MD\$R-DK7L$LRH=~OD\$HICH$8 H$H聛D\$HI HH!LD^L$H }H`H=VHLE1UH$MD\$ H$D\$PD\$ H$D\$tLD\$L$D\$HDŽ$LLLD$yLcL"TLD$H$J H$LLHD$詎H$LL$H$ A9LD?H$LL$D\$H ~Hj1H=UATH*E1E1HD$HD$HD$ HD$HD$@H$LL$(nH|$VH|$ KLL$(L KH|$KH|$JLJHD$@MDCH HD$pH }H.j1H=TAS0H|$JTH r}HSj1H=TASD\$L$ACHپkLH=g}D\$LIHC;HcK7D\$D$2L$A?HپpLH=;}D\$KIHeHcK7D\$OHt$L1MH [HWLHLI4J8MIH|$IMD\$HAwI-A@H$D\$薈D$D\$H=P\D\$OD\$IfDH$Ld$pHHtpL$~XDaH\$J E1D\$LIf.H$HH<HI9uD\$H\$H$D\$HD\$D\$MDCH P|+HD$pLAuHLd$pKH5D}H=g1LL$(L|$hH\$HLt$Hl$PLt$XLl$ Ll$`QLL$(H$LL$(藘LL$(Lt$H\$HAHl$PLt$XLl$ Ll$`L|$hH\$HHl$PLt$XLl$`HD$E1E1HD$HD$ H TxH=i1H=QPH$AwGH$jGA"1D\$E1H zH=gA'H=6Q[PD\$H$D\$GH$GH$FLFD\$YAH=Y?MLH$HD$D\$HI[Ld$L|$ H\$QH_HIFMLLH5Z115ILHZFLIOFHH$YHHuL|$ H\$Ld$H$D\$HD$LxH WHOD\$HD$pI1HD\$ H=XD\$+LH=XH$LH=XH$LD\$IjLMH\$Hl$ Lt$(Ll$0A`ELXED\$hA HYH=5OATNH\$HHl$PE1HD$Lt$XLl$`HD$AHD$ mEE18DE1HD$HD$IHd*HD$ HD$@xA"NH$D\$DT$H$跃DT$D\$DT$-EQA MMH\$Hl$ LLt$(Ll$0A!DLDD\$HD$ Ll$ H\$HE1AHl$PLt$XHD$HD$Ll$`H$A9H$D\$Ll$ H\$HAHl$PLt$XHD$Ll$`HL$FA A<$eLD\$lCD\$LD\$FD\$t$H$LL$HhMD\$ D$H$H$D\$HD$BH$BH$BLBD$D\$D\$^GD\$ CH TuHbDH=dL1KD\$H$A!N蹒H$lD\$eAD\$8L|$@1H\$HHl$PHLt$XLl$`HD\$HDT$8HL$T$@IHL$DT$8IH$D\$HH|$(HL$uBH@H92T$@IT$H$0A$H$HPH$ |$ D9T$0T$HcD$01L|$(|$ Hl$8H$D\$ L DLd$AHDH\$0LHLt$@ILl$HIH =LH5_S1H$H$H,1HICLD$LDIHHBL@L9uLd$D\$ L|$(H\$0Hl$8Lt$@Ll$HH$H$D\$H$MD\$ ALL|$@H\$HD\$8Hl$PLt$XLl$`DH$L|$8H\$Hl$ Lt$(Ll$0D\$CF8Y@8r?I$H$=CH$A!N?H$?%H ipH`1H=jIAHH$̏H$~D\$xHDŽ$>LD\$ED\$H$H$H$1KH=,-VH$9EH$H= -HF-D\$H q1HMRH=HH\$AD\$GH$D\$D\$H\$AH$D\$MD\$m>8=H$I葎H$D}D\$=H$H$D\$HL$jD\$HIHL$H$HsH$H$D\$H$=LCD\$H$"H$Ht$1D\$8H VOHfKDT$(H)@DT$(D\$8HH$H mH_1H=GA.FH$HX0[HH{8O>HX0[fAWHcAVIAUIATUSHH;HIą,1D{HIHcՋtD~kCHHEHL9HIHcՋuH*-CHtHAHfu;H-CHtHAfDHHL@Ht.HIDIUHH)HfH{H5H9uL4H[]A\A]A^A_fH[]A\A]A^A_@Me1HHt$(HT$0HL$8LD$@LL$Ht7)D$P)L$`)T$p)$)$)$)$)$dH%(HD$1H$HH5lHD$HD$ HD$$D$0{9HD$dH3%(uH7ff.3UHSHdH%(HD$1.IHHH0HP8HHE5u!H<$tHt$dH34%(HuH[]H186ff.@USHdH%(HD$1Hh0He6HS8IHH>u%H<$tHL$dH3 %(HuH[]@H1~76AWAVAUIATIUSHHdH%(HD$15HkHH6L~5HjLH6H= -H-HHLL%-Hh -1H<$-ŅT1H<$-Ņ^H<$-ŅH<$1-Hq3HL$dH3 %(H[]A\A]A^A_fDH=Fj>IHKH- H5iL}` HuL=HHUHHL9uH=i1L5-:H<$-A躺HH5jH=]i1TH<$-151f.H=Yi:fH=\i:fH<$l-A躶HH<$L-A躸Hk@{=H=iH1*:L:eDH=i1:K;=H=DiH19-P3HgA9AUAATIUSHHtkHHHH7H9v}HPH9u$1HH31tH[]A\A]@HDL1H=ia9H'[]A\A]Ð1HH=Bi=9H'[]A\A]D1DH=TiL9'DDLH=i8eff.=-u~1H .-H'-HH=u76'"W-1-2-3-4-5f--\f-- -USHA DQILI‹ALLL)IAI9u3HA3uT1Hts3IHLHJH[]fD1aH5tH=h7H'[]f.HL$ 1HA3EH=h7H'[]HL$ 1fH5#tH=)tq7'jDGI3fG1 G 3DGGGHtHF#HGHHGW'O+G/@AWAVAUATE1UHi3SHHwXH<$HHIMƉT$ M"5L$ H4$ILHI7HtMtI|$3HL3MtImHL[]A\A]A^A_@AWAAVMAUATUHSH(Aăt$ HT$AuAvt H1E1MLO/IHPH4*HT$1H4HT$H иfC*3CD$ C 3CHD$kHC#HSCHCD{/EuAGv Au'Hl+3MtHIULL+EH(H[]A\A]A^A_fDE1+'HtRHvL? uAO v9WDGHʋOHI9rAwfHD'fff.@SHC4Hu9S 2v6Kw+Ct%CtsHT,sHH9Ѻ'HB['[fHt7H2v1SH3Hu { 2v Cu[D'[f'f.HHutHtoATIUHSHHHw4Hu>{BvIK;s?S DCH|1ELH9w/| CHSCu$HL <1uHUI $[]A\@f[']A\fHe 1@Hxt Ht1Ptq9tH1H5wH=}dX01Høff.HowHcH H HʀztHBff.f1wHcH H HʀztBAWAVAUATUSH8dH%(HD$(1H\$pHD$HD$ HAIAIEHMHL$1HL$LHT$ 0LT$HHHD$ Hx;MDLDk-HHHT$ Ld$Dh3P7Mt H{L.H+1L(HHt$(dH34%(uIH8[]A\A]A^A_fD;념Ld$fE1fDLd$*ff.@AUATUSHHHujHteHHIIf.sH1HHu@{:vMS7C {Hr;HH9w8uTC3A$HH[]A\A]HH[]A\A]DH'[H]A\A]f1Hs;L&HtH.AVAAUIATIUHSHdH%(HD$13.HH$.H6H $IHLLH1u2H:&H\$dH3%(;H[]A\A]A^@H$L$EI|$-HHL $IMIL9sWHL-"fD\2HHA40@qI9v2@A<8uH@1HI9wHL)L9w{Hp%Lu10DI|$Ml$,IHt1L $HHaIL9[fDH%fDH5JkH=vk1-(UHSHHt&H'HHHHߺ[] D1H7ff.fAWAVAUATIUHSH8HT$dH%(HD$(1HD$H<'IHXE1Ht H%'ILH+IHMtIVLH7$K7L`HtLIUHM$A$HL$1HL.HV$H1LID(L|$ (HD$ L#E,$Hu HD$HL$HHL$(dH3 %(Hu/H8[]A\A]A^A_fE1d&@'-HtHtSHF/Ht[1D[AWAVAUIATUHSH(dH%(HD$1HtHHt$.|$I1LH@LL-1u"aDPHHHHVHt;Hq\uQAPVHHHuHL)L +IIL*HL$LLHI!&t=HD$L9w3tL9AMtkHD$LIE!fLE1!L!L}1H\$dH3%(u^H([]A\A]A^A_Hh!LY!LE1E!릺H5gH=g1Y)D$@Ht?atHDHH1ɾff.fAWI1AVAUATUSHH8dH%(HD$(1HL$HT$HD$Ld$IHMthLt$ LLH,|$ HLd$HT$I1M@Ht$(dH34%(LH8[]A\A]A^A_fH_LLt$ "LI|+|$ tQHl$LAHuSHADLH$"LI|+|$ H $IHl$HHL11IHHT$HT$ HT$1LILd$ $#LW $AHt1HD8I)"1HH\$ H#HE<$HHD H!1HHl$ HM#HD#DMHT$11Lt$ 7@Mg1Lt$ HHl$1!I@HDIHePI;I?A,HfDHHdE1PHHI1ҾH=kHGH+HHWHHHLJI)I9rMtIHHH1fHIȉ1HLH=XS''HfAUATULSHdH%(HD$1Hu*I1HL$dH3 %(uHH[]A\A]fDIIAH"HuH$HDLHuH$HU$ @ATHIA3UHH=jSH dH%(HD$1HH&HuMMHھ H=tj_HT$dH3%(u H []A\ff.fAWAVAUATUSH8H|$LL$dH%(HD$(1u0IH\$(dH3%(.H8[]A\A]A^A_fDMH|$LD$ LA!HuMt\HD$ 1HD$IDLL#II9vU1HLtdHD$ LHNt ILt$ 9teMuHt$1DH=/U*%'7Ht$1DH=GU %'Ht$DH=U$fMuHD$HT$H1Ht$1DH=V$'fAUATAUHSHHdH%(HD$1Ht[MHI Ht Ht$dH34%(uPH[]A\A]DH$HDH^HuH$IUHH=a$kff.USHHdH%(HD$1HuHL$dH3 %(Hu6H[]@LIHtHH4$1HHAUAATIUHcSHHHdH%(HD$1Ht{ucHCkMt*CDkHD$dH3%(uJH[]A\A]H`!HLHCH@HcS1H<$HH{;ff.AUAATIUSHHHodH%(HD$1HtuNHHCMt L1HCCDkHD$dH3%(u7H[]A\A]f.Hx1HH,$HHHkfH@AUATUSHdH%(HD$1HHHHIDt[HH]HtzHC HECuڀ{Lct"MtL1LL$$H"LcL@{H{tHcSH<$Ht 1H{y@HD$dH3%(u H[]A\A]HtHHt@H@ Huf.AWAVIAUIATUSH(HHHEHIA1H$HtEL=eEt{t*{HM CIcL>HckHH[ HuHLL$3IIHLL$E1H eIfHEt {IWC:CCD:{CHcH>&H5eH=d1H$E1LIMtIEH$H([]A\A]A^A_@H[ HHf.H[ H Hf.LSLL$HL$M5LLT$\LT$1ҍhHcLHtHL$LL$H5dH=bcLL$HL$H$jfDH[ HH!Zf.H$E1LME1H$pH$H{YCMO LT$K< LL$ALcHsLLT$LL$H c@MH[ @AHCMO KD: AACMO CD: AH{HT$LT$LT$HT$MO LL$ALcHsK< LLT$LL$H bZf.ACMO CD: A1H$pH$sH5BbH=%1@H<$ImF]H$4HAUA(ATIUSHHHHhD(fPttu@ H@I$Ht7Hr Hu >@HHV HuHF H@ HH1[]A\A]I$fH͐MtnILMu$fDMR MtA92u~.MR MuEt LDpfD1t A9RHEMøAWAVAUATIUSHHH$DD$L$dH%(HD$81HD$0H`HHTH HcFL~H^H H9$HD$0IA HD$HD$/HD$|$AA6t>LL$A1LHuSA?AH ``HcH>fDHL$LsȐH5T`H=]_1tLH$UH$H\$8dH3%(HH[]A\A]A^A_fD;uBT-HD$0PHcLLh L;,$H\LtL|Hc~LH;$sfHc3N|-A|7V1LRA1H5~_H=^D$FHD$0Hxf.;BT-HD$0P0DHD$0Nt-PHxHc;L|$0;IGHD$0HxHHcLD;JT-HD$0HP@Mq\DpHD$0Hx"Ht$Lt$0L|$/IFlHc3Lt$01LIFHD$0Hx0kfD1@Aȹff.@A1fUSHdH%(HD$1H$HtYHHtQHIE1HHuH$HxHt~HHL$dH3 %(HuH[]ÐSH dH%(HD$1HD$HtYH1LL$A?HtHL$dH3 %(u5H [@H|$HHD$WZHD$pSH dH%(HD$1HD$HtYH1LL$AHtHL$dH3 %(u5H [@H|$HHD$HD$fSHdH%(HD$1H$HtBHt=HE1I Hu H$RHL$dH3 %(uH[@hSHdH%(HD$1H$HtB1IAHu H$ZBHL$dH3 %(uH[DSHdH%(HD$1H$HtJHtEHE1I HuH$HtRHL$dH3 %(uH[fD`SHdH%(HD$1H$HtB1IAHu H$ZBHL$dH3 %(uH[D SHdH%(HD$1H$HtJHtEHE1I Hu H$HRHHL$dH3 %(uH[f.` SHdH%(HD$1H$HtBH1IAHu H$HZBHL$dH3 %(uH[ ATUHSHdH%(HD$1HH$MHELIIE1IHu9H$Hcx~-Hxt&}FH $HHHcQHqH\$dH3%(LuH[]A\@A USH(dH%(HD$1HD$HtXHLL$1A<HtH\$dH3%(u2H([]H|$HHD$OHD$ʐp USH(dH%(HD$1HD$HtXHLL$1AHtH\$dH3%(u2H([]H|$HHD$HD$ SHdH%(HD$1H$HtJHtEHE1I Hu H$HRHHL$dH3 %(uH[f.` SHdH%(HD$1H$HtBH1IAHu H$HZBHL$dH3 %(uH[ HE11dH%(HD$1IH$31HuH<$HL$dH3 %(uH HtH1HtDHR Hu1Dff.@HtH?f.fD1tVtatltOtrt} t  oBHDfiBf f.hBf.jBf.f.lBf.mBf.nBf.HH5VH=THf.USHn+H THcH> HH=`TH1>HH[]@f#NfH5'V1H=S ff {fD"NkfD!N[fDKfD;fD+fD$NfD&N fDfDfDSH ;t[Dc[ff.Hݚ ATUS8u[]A\HIHH=8-Ht3 HHLH=-Ht2 []A\fDH=-EpH5T HH=٪-EpH5T Hff.H- S8u [fDHH=-Ht) H H=s-Ht.[DH=Y-EpH5>Tp HH=9-EpH5TP Hff.USHH 8u H[]@HHH=-Ht6A HHH=ũ-Ht83H[]f.H=-EpH5SHH=-EpH5fSHHݘ S8u [fDH=A-Htt HQPH=-Htj[ÐH=-Hto[fDH=-EpH5RHH=-EpH5RHlH=-EpH5RHvH 8t@SH=p-Htc H8q HHt)H=J-Ht]H[H=(D @CH5RH=F1&fDH=-EpH5QHH=-EpH5QHH= S8u [fDH=-Ht$: H=-Ht,[H=q-EpH5VQHH=Q-EpH56QhHH S8u [fDH=-Ht$oH=-Ht,g[H=-EpH5PHH=-EpH5PHff.H-HtHHtHi-H@H5[PH=DXATUSHDcHxA9j{sH;7 sAąxiH3H=OHs H=OHs(H=OH; HEHtzEEu[]A\EH5dOH=C1_E[]A\f.kH5+OH=C1&fDH5 OH=fCUSHH $HH $HdH%(H$ 1H\$Ht$@HH\$At||$\H$LD$H޹ u7H|$Ht(+H$ dH3 %(u\H []fDt$\H=NH118HH=:NH11USHH $HH $HXdH%(H$H 1H\$H\$L1HT$@HLD$ HHD$Hp;HD$x&HD$pH8nHD$H=/MH0HD$H=MHp HD$H=MHp(H}HEH$H dH3 %(uGHX []fD4H=MH1S=H5~LH=@1yd@SHH $HH $HP dH%(H$H 1Ht$HT$@HLD$Ht$uH|$Ht (fDHH=LH11H$H dH3 %(u HP [ff.ffDHH%s: Timed out waiting for thaw. %s: Unable to send results from polling the result program. %s: Failed to get string args %s: Got request to freeze '%s', timeout %d %s: Failed to Freeze drives '%s' %s: Starting timer callback %d /bin/mount -t vmhgfs .host:/ /mnt/hgfs/usr/bin/mount -t vmhgfs .host:/ /mnt/hgfs/usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other/usr/bin/vmhgfs-fuse --enabled%s: ERROR: opening mounted file system table -> %d %s: vmhgfs-fuse -> FUSE not installed %s: vmhgfs-fuse -> %d: not supported on this kernel version %s: mnt fs "%s" type "%s" dir "%s" %s: no mount point found, create %s %s: ERROR: vmhgfs mount point creation -> %d %s: failed to find mount -> %d %s: vmhgfs mount point not deleted %d %s: command %u, additionalError = %u vix%s: No drives are frozen. %s: Failed to thaw. Run_Program_Done%s %s %ld %d %d %ld%ld %d %ld%ld %d %svmsvc%s: Bad args, timeout '%s' enableNullDrivervmbackupexcludedFileSystemsignoreFrozenFileSystems%ld %d%s: returning %s %s: Got request to thaw %s: Failed to Thaw drives fuse.vmhgfs-fusevmhgfs.host://etc/mtab/mnt/hgfs%s: vmhgfs already mounted /usr/bin/mount%s: ERROR: no vmhgfs mount %s: Mounting: %s %ld %d ToolsDaemonTcloReceiveVixCommandToolsDaemonTcloReportProgramCompletedToolsDaemonCheckMountedHGFSToolsDaemonTcloMountHGFSToolsDaemonTcloSyncDriverThawToolsDaemonSyncDriverThawCallbackToolsDaemonTcloSyncDriverFreezeVix_1_Run_ProgramVix_1_Get_ToolsPropertiesVix_1_Relayed_CommandVix_1_Mount_Volumestcs_shutdowntcs_capabilitiestcs_io_freezeVix_1_SyncDriver_FreezeVix_1_SyncDriver_Thaw%s=%s%s%s%u%sguestoperations%s.disabled%<>&'"useVGAuth%s: vgauth usage is: %d "%s" %s%s returning %ld poweroff-scriptpoweropspoweron-scriptresume-scriptsuspend-scriptVMware Tools12.3.5 build-22544099StartProgramInGuestListProcessesInGuestTerminateProcessInGuestValidateCredentialsInGuestAcquireCredentialsInGuestReleaseCredentialsInGuestMakeDirectoryInGuestDeleteFileInGuestDeleteDirectoryInGuestMoveDirectoryInGuestMoveFileInGuestCreateTemporaryFileInGuestListFilesInGuestChangeFileAttributesInGuestInitiateFileTransferFromGuestInitiateFileTransferToGuestAddGuestAliasRemoveGuestAliasListGuestAliasesListGuestMappedAliasesCreateRegistryKeyInGuestListRegistryKeysInGuestDeleteRegistryKeyInGuestSetRegistryValueInGuestListRegistryValuesInGuestDeleteRegistryValueInGuestRemoveGuestAliasByCert%s: returning err %ld %svixTools.cMEM_ALLOC %s:%d vmtoolsdtruefalseloadUserProfilehostVerifiedUnset%s: opcode %d returning %ld %s: started '%s', pid %ld %s: returning '%s' %s: User: %s path: '%s' %s: User: %s path: %s %s: User: %s %s%s%s: Invalid offset value %lu ..NOT_IMPLEMENTED %s:%d %s%s%s%d/bin/shvixScript%s/%s%d%s"%s" %s "%s"%s: Failed to get the times. %s: Failed to set the times. (null)%s: command %d %s: User: %s %s: User: %s pid: %ld %s: User: %s src: %s dst: %s %s: File_Move failed. vmware%s: User: %s var: %s %s: User: %s reading %d vars %s%s=%s%s%s%s: Out of memory. failed to open mount file %s: User: %s filePath: %s %s: Deferring RunScript cleanup due to IO freeze %s: list proc cache timed out, purged key %d (found? %d) %s: started program '%s' has completed, exitCode %d %s: found duplicate entry in startedProcessList %s: Process Handle Invalidator is successfully detached %s: HGFS session Invalidator is successfully detached %s: HGFS session Invalidator detached %s: Process Handle Invalidator detached %s: error code 0x%Lx has no translation %s: translated VGAuth err 0x%Lx to Vix err %ld ReadEnvironmentVariableInGuestCreateTemporaryDirectoryInGuest%s%s%ld%s%d%d%d%s%d%ld%ld%s: File_GetSize(%s) returned %ld %s: Posix_Stat(%s) failed with %d %s%d%lu%lu%lu%d%d%d%s%s: Unable to get username from userhandle %p XXX failed to get username XXX%s: Invalid userToken pointer Unable to get the uid for username %s. %s: allowing interactive mode for user '%s' %s: Ticket Length Does Not Match Expected %s: Unsupported credentialType = %d %s: impersonation failed (%ld) %s: successfully impersonated user %s %s: User: %s args: progamPath: '%s', arguments: '%s', workingDir: '%s' %s: ProcMgr_GetImpersonatedUserInfo() failed fetching workingDirectory %s: Process Handle Invalidator registered %s: User: %s path: '%s' recursive: %d %s%d%s%s%s: ListAuth list results too large, truncating%s: failed to find cached data with key %d %s: euid mismatch validating cached data (want %d, got %d) %s: found all %d requested pids on the startedProcess list; finished %s: answer requires caching. have %d bytes %s: Invalid offset, offset is %d, maxResults is %d %s: pattern length is %d, value is '%s' %s: User: %s listing files in '%s' with pattern '%s' index %d, maxResults %d (offset %d) %s: bad regex pattern '%s' (%s);failing with INVALID_ARG %s: Unable to write the script to the temporary file, errno is %d. %s: Unable to close a file, errno is %d %s: Unable to create a temporary file, errno is %d. %s: Invalid attributes received for Posix Guest %s: Failed to set the owner/group Id %s: Failed to set the file permissions %s%s%s%d%s%s: ListMapped results too large, truncating%s: IO freeze restricted command %d %s: command %d disabled by configuration %s%s%d%s%d%s: proc list results too large, truncating%s: Invalid request with opcode %d received %s: User: %s dirPathName: %s createParent: %d %s: Received a request with an invalid opcode: %d %s: Invalid request message received %s: Unable to close a file, errno is %d. %s: User: %s name: %s value %s %s: HGFS session Invalidator registered %s unable to stat mount point %s %s%lu%lu%s%s: file system list results too large, truncating%s: File path cannot point to a symlink. %s: Invalid attributes received for Unix Guest %s: User: %s path: %s attrs: %d %s: Filepath cannot point to a symlink. %s: Unable to get access permissions for the file: %s %s: File_GetPathName failed for '%s', dirName='%s', baseName='%s'. %s: File_IsDirectory failed for '%s', err=%d. %s: Unable to get access permissions for the directory: %s %` n(((((((((((((((((((((((((((((((((((((((((((n(((((((((nnpnXn@n(n(((((((n(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((m(n@nmpnmm(mXnmhmPm8m mmnnn(lllllxl`lHl0llkHhXhXhXhHhXhHhXhXhXhXhXhXhXhHhHhXhXhHhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhHhXhXhXhXhXhXhXhHhXhXhXhXhXhXhXhXhXhXhXhHhXhXhXhHhXhXhXhXhXhXhXhHhHhHhHhHhHhHhHhHhHhXhXhXhXhHhHhXhHhHhHhXhXhXhXhHhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhHhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhXhHhipfXf(iH}zxP( t8rhqwXu(uxxH}H}uXx xnmkkXkj txjXj@jjXfpfXfXfpfXf@jVixToolsReleaseCredentialsVixToolsAcquireCredentialsVixToolsValidateCredentialsVixToolsInitiateFileTransferToGuestVixToolsInitiateFileTransferFromGuestVixToolsPrintFileSystemInfoVixToolsListFileSystemsVixToolsInvalidateInactiveHGFSSessionsVixToolsRegisterHgfsSessionInvalidatorVixToolsProcessHgfsPacketVixToolsSetFileAttributesVixToolsGetFileInfoVixToolsWriteVariableVixToolsGetAllEnvVarsForUserVixToolsReadEnvVariablesVixToolsReadVariableVixToolsGetTempFileVixToolsCreateTempFileIntVixToolsRunScriptVixToolsMoveObjectVixToolsCreateDirectoryVixToolsKillProcessVixToolsPrintFileExtendedInfoVixToolsListFilesVixToolsListDirectoryVixToolsListProcessesExGenerateDataVixToolsListProcCacheCleanup%d%u%d%dVixToolsListProcessesExVixToolsListProcessesVixTools_ProcessVixCommandVixToolsListMappedAliasesVixToolsListAuthAliasesVixToolsRemoveAuthAliasVixToolsAddAuthAliasVixToolsImpersonateUserImplExVixToolsImpersonateUserVixToolsObjectExistsVixToolsDeleteDirectoryVixToolsDeleteObjectVixToolsSetAPIEnabledPropertiesVixToolsTranslateVGAuthErrorVixToolsMonitorAsyncProcVixToolsRunProgramImplVixToolsInvalidateStaleProcHandlesVixToolsRegisterProcHandleInvalidatorVixToolsUpdateStartedProgramListVixToolsGetImpersonatedUsernameVixToolsStartProgramImplVixTools_StartProgramVixTools_RunProgramVixTools_UninitializeQueryVGAuthConfig%s:%d: PAM failure - %s (%d) pam_startUTF-8User not in UTF-8 Password not in UTF-8 libpam.so.0PAM up and running. pam_endpam_authenticatepam_setcredpam_acct_mgmtpam_strerrorSystem PAM libraries are unusable: %s PAM library does not contain required function: %s Failed to start PAM (error = %d). Auth_AuthenticateUserPAM%s(%u): Message body too short to contain string. %s(%u): Variable string is not NUL terminated before message end. %s(%u): Retrieved fixed string "%s" with trailing garbage. %s(%u): Variable string is not an UTF8 string. %s:%d, header information mismatch. %s(%u): %s header length %u is not supported (%zu is required). %s: Mismatch or NULL in command with op code %d at index %d. %s(%u): Message has only %zu bytes available when looking for %zu bytes od data. %s(%u): Retrieved an array of string with trailing garbage. VIX_COMMAND_COPY_FILE_FROM_GUEST_TO_HOSTVIX_COMMAND_COPY_FILE_FROM_HOST_TO_GUESTVIX_COMMAND_REVERT_TO_SNAPSHOTVIX_COMMAND_REGISTRY_KEY_EXISTSVIX_COMMAND_WIN32_WINDOW_MESSAGEVIX_COMMAND_CONSOLIDATE_SNAPSHOTSVIX_COMMAND_CANCEL_INSTALL_TOOLSVIX_COMMAND_UPGRADE_VIRTUAL_HARDWAREVIX_COMMAND_CREATE_RUNNING_VM_SNAPSHOTVIX_COMMAND_CONSOLIDATE_RUNNING_VM_SNAPSHOTVIX_COMMAND_GET_NUM_SHARED_FOLDERSVIX_COMMAND_GET_SHARED_FOLDER_STATEVIX_COMMAND_EDIT_SHARED_FOLDER_STATEVIX_COMMAND_REMOVE_SHARED_FOLDERVIX_COMMAND_RUN_SCRIPT_IN_GUESTVIX_COMMAND_CREATE_WORKING_COPYVIX_COMMAND_DISCARD_WORKING_COPYVIX_COMMAND_CHANGE_SCREEN_RESOLUTIONVIX_COMMAND_DELETE_GUEST_REGISTRY_KEYVIX_COMMAND_DELETE_GUEST_DIRECTORYVIX_COMMAND_DELETE_GUEST_EMPTY_DIRECTORYVIX_COMMAND_CREATE_TEMPORARY_FILEVIX_COMMAND_CHECK_USER_ACCOUNTVIX_CREATE_SESSION_KEY_COMMANDVIX_COMMAND_IS_DEVICE_CONNECTEDVIX_COMMAND_ENABLE_SHARED_FOLDERSVIX_COMMAND_MOUNT_HGFS_FOLDERSVIX_COMMAND_CREATE_LINKED_CLONEVIX_COMMAND_GET_GUEST_NETWORKING_CONFIGVIX_COMMAND_SET_GUEST_NETWORKING_CONFIGVIX_COMMAND_GET_PERFORMANCE_DATAVIX_COMMAND_GET_SNAPSHOT_SCREENSHOTVIX_COMMAND_WAIT_FOR_USER_ACTION_IN_GUESTVIX_COMMAND_CHANGE_VIRTUAL_HARDWAREVIX_COMMAND_GET_VMX_DEVICE_STATEVIX_COMMAND_HOT_PLUG_BEGIN_BATCHVIX_COMMAND_HOT_PLUG_COMMIT_BATCHVIX_COMMAND_TRANSFER_CONNECTIONVIX_COMMAND_TRANSFER_FINAL_DATAVIX_COMMAND_CHANGE_DISPLAY_TOPOLOGYVIX_COMMAND_SUSPEND_AND_RESUMEVIX_COMMAND_REMOVE_BULK_SNAPSHOTVIX_COMMAND_COPY_FILE_FROM_READER_TO_GUESTVIX_COMMAND_CHANGE_DISPLAY_TOPOLOGY_MODESVIX_COMMAND_CREATE_DIRECTORY_EXVIX_COMMAND_MOVE_GUEST_FILE_EXVIX_COMMAND_MOVE_GUEST_DIRECTORYVIX_COMMAND_CREATE_TEMPORARY_FILE_EXVIX_COMMAND_CREATE_TEMPORARY_DIRECTORYVIX_COMMAND_SET_GUEST_FILE_ATTRIBUTESVIX_COMMAND_COPY_FILE_FROM_GUEST_TO_READERVIX_COMMAND_READ_ENV_VARIABLESVIX_COMMAND_INITIATE_FILE_TRANSFER_FROM_GUESTVIX_COMMAND_INITIATE_FILE_TRANSFER_TO_GUESTVIX_COMMAND_ACQUIRE_CREDENTIALSVIX_COMMAND_RELEASE_CREDENTIALSVIX_COMMAND_VALIDATE_CREDENTIALSVIX_COMMAND_DELETE_GUEST_FILE_EXVIX_COMMAND_DELETE_GUEST_DIRECTORY_EXVIX_COMMAND_HOT_CHANGE_MONITOR_TYPEVIX_COMMAND_LIST_AUTH_PROVIDER_ALIASESVIX_COMMAND_LIST_AUTH_MAPPED_ALIASESVIX_COMMAND_CREATE_REGISTRY_KEYVIX_COMMAND_LIST_REGISTRY_KEYSVIX_COMMAND_DELETE_REGISTRY_KEYVIX_COMMAND_SET_REGISTRY_VALUEVIX_COMMAND_LIST_REGISTRY_VALUESVIX_COMMAND_DELETE_REGISTRY_VALUEVIX_COMMAND_REMOVE_AUTH_ALIAS_BY_CERTfoundryMsg.c%s:%d, %s too short. Unrecognized opVERIFY %s:%d requestresponse%s(%u): String is too long. VIX_COMMAND_UNKNOWNVIX_COMMAND_VM_POWERONVIX_COMMAND_VM_POWEROFFVIX_COMMAND_VM_RESETVIX_COMMAND_VM_SUSPENDVIX_COMMAND_RUN_PROGRAMVIX_COMMAND_KEYSTROKESVIX_COMMAND_READ_REGISTRYVIX_COMMAND_WRITE_REGISTRYVIX_COMMAND_CREATE_SNAPSHOTVIX_COMMAND_REMOVE_SNAPSHOTVIX_COMMAND_VM_CLONEVIX_COMMAND_DELETE_GUEST_FILEVIX_COMMAND_GUEST_FILE_EXISTSVIX_COMMAND_FIND_VMVIX_COMMAND_CALL_PROCEDUREVIX_COMMAND_INSTALL_TOOLSVIX_COMMAND_RELOAD_VMVIX_COMMAND_DELETE_VMVIX_COMMAND_WAIT_FOR_TOOLSVIX_COMMAND_ADD_SHARED_FOLDERVIX_COMMAND_OPEN_VMVIX_COMMAND_GET_HANDLE_STATEVIX_COMMAND_SAVE_WORKING_COPYVIX_COMMAND_CAPTURE_SCREENVIX_COMMAND_GET_TOOLS_STATEVIX_COMMAND_DIRECTORY_EXISTSVIX_COMMAND_LIST_PROCESSESVIX_COMMAND_MOVE_GUEST_FILEVIX_COMMAND_CREATE_DIRECTORYVIX_COMMAND_LIST_DIRECTORYVIX_COMMAND_REGISTER_VMVIX_COMMAND_UNREGISTER_VMVMXI_HGFS_SEND_PACKET_COMMANDVIX_COMMAND_KILL_PROCESSVIX_COMMAND_LOGOUT_IN_GUESTVIX_COMMAND_READ_VARIABLEVIX_COMMAND_WRITE_VARIABLEVIX_COMMAND_CONNECT_DEVICEVIX_COMMAND_GET_FILE_INFOVIX_COMMAND_SET_FILE_INFOVIX_COMMAND_MOUSE_EVENTSVIX_COMMAND_OPEN_TEAMVIX_COMMAND_ANSWER_MESSAGEVIX_COMMAND_HOT_EXTEND_DISKVIX_COMMAND_CONNECT_HOSTVIX_COMMAND_SAMPLE_COMMANDVIX_COMMAND_VM_PAUSEVIX_COMMAND_VM_UNPAUSEVIX_COMMAND_HOT_PLUG_CPUVIX_COMMAND_HOT_PLUG_MEMORYVIX_COMMAND_HOT_ADD_DEVICEVIX_COMMAND_HOT_REMOVE_DEVICEVIX_COMMAND_SET_SNAPSHOT_INFOVIX_COMMAND_SNAPSHOT_SET_MRUVIX_COMMAND_LOGOUT_HOSTVIX_COMMAND_TRANSFER_REQUESTVIX_COMMAND_LIST_FILESYSTEMSVIX_COMMAND_GENERATE_NONCEVIX_COMMAND_QUERY_CHILDRENVIX_COMMAND_LIST_FILESVIX_COMMAND_START_PROGRAMVIX_COMMAND_LIST_PROCESSES_EXVIX_COMMAND_TERMINATE_PROCESSVIX_COMMAND_ADD_AUTH_ALIASVIX_COMMAND_REMOVE_AUTH_ALIASVMAutomation_VerifyRequestLengthVixMsg_ParseSimpleResponseWithStringVixMsg_ValidateCommandInfoTable%s: attempted to send a non-UTF-8 string for property %d. %s:%d, pointer properties cannot be serialized. %s: non-UTF-8 string received for property %d. foundryPropertyListCommon.c8pP80PؚP0МP8jpPVixPropertyListDeserializeImplVixPropertyList_Serialize%s: crypto error = %d %s: errno = %d Foundry operation failed with system error: %s (%d), translated to %ld P@pPPPPPP@@PP@PpЫPPPPPPP PP0PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPVix_TranslateErrnoVix_TranslateCryptoErrorimpersonateLockimpersonate.cimpersonatePosix.cUSERHOMESHELLFailed to lookup owner for: %s. Reason: %s Failed to lookup user with uid: %u. Reason: %s Failed to get password entry for uid 0: %s Failed to get password entry for : %s. Reason: %s version=12.3.5.46049;X@Ⱥ @\x$X`H$(8 H$ x X 8 4 h ( X @ t 8 x h X p   <  X Xd H@(\8xX8HPH 8 8H|((H!8+|1(5:LtXtx8uXuuuu8vv8xxxhyy$|p|}(~@xTHh@x8 l(8<P؉tH x<Xl؎8ȏXؑTh8xLhX8 ؚL ( H X x!8!\!!!!!"D"xp""""h##Ȧ(#ئ<#T#8#H#x#(#Ȫ$xL$Xt$$$8$H$%L%%%%H%X &zRx $ FJ w?:*3$"D (\ADG } AAE 0tqBDC D0Z  AABA OD E TTFEE D(D0L8H@k8D0^ (A BBBH A(H GIKl0FBE B(A0A8K 8A0A(B BBBG yKXA`KZA8ܸEFID A(FP (A ABBC aHI G D@ < H$8)FBB B(A0E8J`, 8A0A(B BBBF ,p"FMT w DNH \lFBB B(A0A8D"PaC 8A0A(B BBBH X,FFB B(A0D8D` 8A0A(B BBBB PhQpShA`\cH0U A x$ PFQB B(A0D8Gy 8A0A(B BBBF 8ErC0$BAA F@o  AABA XTAFu8tAFBA A(G@ (A ABBH 0BAD G  AABD 8rH d A !JO$7ADD dDAD5AoX`BBB F(A0 (A BBBF |8t@S8A0](A IBB0@%FAA G0{  AABB BHD lAB4<eBDD Y ABJ qABtqH[ E H<HFIE H(H0H (A BBBE H` \XL(dFBB E(D0A8D 8A0A(B BBBC x1(EDF Q DAK L FBB B(D0A8D 8A0A(B BBBJ T P 0LDlWH4H X H Kh(E^XBEE B(D0D8G`yhXpExDI`i 8A0A(B BBBE P*BEB E(D0D8G`QhLp^8A0A(B BBBN`d4 gBEB B(D0D8GEOEDBVq 8A0A(B BBBG  ALN F ` D0f F @ FIB A(A0D 0A(A BBBD D 5FEI A(H0D  0A(A BBBG Ld BBB B(A0A8D! 8A0A(B BBBG L sFBA A(D@ (D ABBF V (D ABBI  H HW PCH u A 8 xEG P AC l\ FKJ H(A0K8D 8A0A(B BBBH MOSAZOUAp FMI E(A0C8J 8A0A(B BBBA HQAa^A0@ FOK DP  AABE <t HFOK DP  AABE XH`MXAP@ FNJ A(K0D` 0A(A BBBF D FOK D  AABG t]]A0@ \FOK D  AABE Lt MFHB B(D0I8G 8A0A(B BBBK BBB B(A0D8DcDJB| 8A0A(B BBBF AEJBEJAWIMA$zRx ,ܥ` q BKB B(A0K8G I_Kk 8A0A(B BBBA LNBHH J(A0K8D& 8A0A(B BBBD 0HBOK G  AABF H| FHE B(A0A8O 8A0A(B BBBE $t:FEB B(D0D8J 8A0A(B BBBE DNB H[BHHA+KQBHQB.IRATwA$zRx , 8^GEl G Nh^CU\G^$^/EU F ND^+ML\^ p^VJw G CE_WAw H V`X_pFEJ E(A0A8G@  8A0A(B BBBC D 8F0A(B BBBE d`G A 4a (HaqEDD0P AAA (thayEAD0W AAE HaFBB E(D0A8GP 8A0A(B BBBG  d\dBED A(D0} (A ABBE [ (F ABBB W (F ABBF dd@x$eAAD Q AAG ^ FAK e FAD e\DfFBB B(D0E8DPe8D0A(B BBBHdf=FEE B(A0D8D` 8D0A(B BBBG dXgaxgWEG D F gFPZ F FJ< h[DD ]ABEH EFBheC[h3(i-H< iAFBB B(A0A8Dp 8A0A(B BBBG \$jFBA A(D0i (D ABBH I (D ABBF H (F DBBJ j @jBEE D(D0D@k 0A(A BBBE (@lCEDD T LAJ Hl@lLFBB B(D0D8Dp 8A0A(B BBBJ Dm @m9RNHHHH\mBBB E(A0D8F`W 8A0A(B BBBI <n3HP o\FGB B(A0A8Gp 8A0A(B BBBC  q*HL U4qHK I8qDqPqWtb8qFBA D(D@r (A ABBG 0PqFMP D@R  AABA HHr~FBB B(A0A8Dp} 8A0A(B BBBG 8|sFBD D(G@} (A ABBF , spEAG0l AAE 8<0tBED D(G@T (A ABBH 8xtBED A(G@\ (A ABBK (u 8$uFBA A(D@ (A ABBA u&HuFBE E(A0A8D`9 8A0A(B BBBE LdyOJI C(G0s (C ABBA HJ0z}LzLBBB B(D0A8D& 8A0A(B BBBG },}(@}EAD0r AAB l}ED0Q AE \~ED0Q AE ~xED Y AE $xED X AF ED _ AG xED X AF D8ED [ AK hxED Z AD 0FAD D0  AABE (EAD@S AAA (EAD@S AAA dED [ AK <xED Z AD `XH J A |`1 a(JEAF J DAE  "EM F I44MAA M ABA ~ ABG l0LM G r F 4EAI P CAE y CAK $$LM G ~ B Y G ܇Q{DP |LM G l D $4LM G l D \PpLX\_ E 8HBAA  FBA r ABK 0EAG L@LBz AAG p 4 l|EAG L@I@ AAG (H EG L@I@ AA t H  D GNUvu@! /p /ˠ /Ӡ / / /ծ-D\s   (įX1Ex`z &'8(`)*+,-.0/߰27P8p9:.>IEFeGHIJ@KLMNhOֱPQ ST#UAWZXvY\]^Ʋ_`ac)dȧefDn`psyt0uXz{Шٳ(.LiPx(PִЪ@h"@`@Ь^y HpЭ@;HWgr Y n0!8!o`  !XEX60 oo5oo3oX!Z Z0Z@ZPZ`ZpZZZZZZZZZ[[ [0[@[P[`[p[[[[[[[[[\\ \0\@\P\`\p\\\\\\\\\]] ]0]@]P]`]p]]]]]]]]]^^ ^0^@^P^`^p^^^^^^^^^__ _0_@_P_`_p_________`` `0`@`P```p`````````aa a0a@aPa`apaaaaaaaaabb b0b@bPb`bpbbbbbbbbbcc c0c@cPc`cpcccccccccdd d0d@dPd`dpdddddddddee e0e@ePe`epeeeeeeeeeff f0f@fPf`fpfffffffffgg g0g@gPg`gpgggr1GA$3a1Yn GA$3p11130unGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA$3p1113}iGA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realignGA+GLIBCXX_ASSERTIONSvd GA*FORTIFYnGA+GLIBCXX_ASSERTIONS GA*FORTIFYvdlibvix.so-12.3.5-2.el8_10.2.x86_64.debugIyjl7zXZִF!t/&_ ]?Eh=ڊ2Nx<]vG 2J=s\U]%=uX:NTt\ m- rN1t8g2 H GaNXrT3w{Z)}S̭LOXNtTWD_بbP ylOD Q' }95pI1t3yT5/ľ"K?(8TT=m[q4dl/!bnVt3ahDh?5I=@:ʾ,ׯ-W~xݠqi|5:3x@Ω%?+s=~a+%r*ɶXW}+p4xUZ櫃WC [êU~nx+ygD L/WO_kݑ0dǾc̲50jDLU\Vz om*W%}Ut7e7h=2j{!Ria>-S" v%hAPq-P[1CWGI=}ClƋ-%̠qZgc+N$x %XK`4FWfhY5x[oNܷc#"X";p‚33" Vq;Gq.w0Uop|ЌS;ԜX*M9M+`a?@vx)0Es*6LB/ ~vLx/浽:Cs)16&;O]VQ& V(%NIZiФ2{tĝe Yn;1 zJX[?^(,.)' P'qa6H(k"/ 1&B/x0SGzg`6$,H&sfO"`u=[_/얏WI;p%rizû]S5pBT~K"1B' :O>7l/$erkJCDlҠ \Ҧٲ$t.Aq ;c8~7lQI`FvSK LĜDCuqE#Y)tC]y{кذN}fUvǙsSO!Kd=+wi>|Z159OG`c*cX;L'啙=zD^/R# 'tOң"Tze:}1 c_2j!7L+N!gYZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.modinfo.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata 88$o``( 08o33 Eo55TX6X60^BEEXhYYcZZ ngg w0u0uz}nn nnhL 00HH pp 0!08!8@!@ X!X`!0"@ @"@ 8o@|0" 1PK!2&q..libhgfsServer.sonuȯELF>0 @`'@8 @pp   8     00888$$PPP StdPPP Ptd<<QtdRtd  GNU-LH}:~(.V))@(BE|qX ry U7, F" @(  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeHgfsServerManager_Unregisterg_freeg_strdup_printfstrlenRpcChannel_Sendg_logPanicHgfsServerManager_ProcessPacketRpcChannel_SetRetVals__stack_chk_failToolsOnLoadVmCheck_GetVersiong_malloc0HgfsServerManager_RegisterVMTools_WrapArraylibhgfs.so.0libvmtools.so.0libpthread.so.0libglib-2.0.so.0libc.so.6_edata__bss_start_endlibhgfsServer.soGLIBC_2.4GLIBC_2.2.5ii ui            h p x                 HH HtH5 % hhhhhhhhqhah Qh Ah 1h !h h% D% D%  D% D% D% D% D% D% D% D% D% D% D% D% DH= H H9tH Ht H= H5 H)HHH?HHtHe HtfD=u u+UH=B Ht H=V YdM ]wSHZHH[6fDUHH=@SHLFLt}H=#LH5H=o1*Hm HHt HE11HHPHrt&HH1[]DH5H1H=H5H=1@SHHHWdH%(HD$1Ht[HCH8HIH  H$HpH HCH$HC HL$dH3 %(uH[fDH5ff.fUHSHHHWHdH%(H$1D$D$ HtH=jHEHt$ H|$tX|$ tQHUHHtQH= Ht7\H5H=1+HH=1 THHEHCHHHCHCH|$00H\$@HH- HD$HHD$0HHD$8HHD$`HHD$hHHD$xHHD$PHD$XHl$pH$H$D$wH|$`HD$D$ VH|$HD$(=H^ HG HH$dH3 %(ubHĨ[]1@HH=H01@H1H@H=`1BHHtoolboxtoolbox-dndvmsvcvmusrhgfsPlugin.cNOT_REACHED %s:%d hgfsd1 argument requiredftcs_capabilitiestcs_shutdownhgfsServertools.capability.hgfs_server %s %dSetting HGFS server capability failed! Unknown container '%s', not loading HGFS plugin.VM is not running in a hosted product skip HGFS client redirector initialization.HgfsServer_InitState() failed, canceling HGFS server init. version=12.3.5.46049;<(X(zRx $FJ w?:*3$"D\8EP(x<EPD  CAF EG l AG ,|EIN" AAH GNU  IVvf  @  o`  P h ooooo  P ` p  0 GA$3a1 M GA$3p1113 >GA*GA$annobin gcc 8.5.0 20210514GA$plugin name: gcc-annobinGA$running gcc 8.5.0 20210514GA*GA*GA! GA*FORTIFYGA+GLIBCXX_ASSERTIONS GA*GOW*GA*cf_protectionGA+omit_frame_pointerGA+stack_clashGA!stack_realign GA*FORTIFY GA+GLIBCXX_ASSERTIONSlibhgfsServer.so-12.3.5-2.el8_10.2.x86_64.debugz17zXZִF!t/O]?Eh=ڊ2N($7K> zRcEJ֨3hyI8*%;+~xN vך6Qվ8R(OU$$‰9%_EbY Vejod6gm@{FѶo@iw P Y*1_y ڪTONmj ٚE>uѷ;cFL1 >Цz;r6?%jO7Tc3='5MgYZ.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.modinfo.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata 88$o``4( (08o.Eo0T^Bhh  c@ @ n@ @ w0 0 }@@ 2PP<XXPP      0P P   @h Hh"4"",&1PK!:>g>g> sense.podnu[PK!>sense.pmnu[PK!̔`` @libvix.sonuȯPK!2&q..]XlibhgfsServer.sonuȯPK*}