nix-archive-1(type directoryentry(nameincludenode(type directoryentry(nameffi.hnode(typeregularcontents7/* -----------------------------------------------------------------*-C-*- libffi 3.4.4 - Copyright (c) 2011, 2014, 2019, 2021, 2022 Anthony Green - Copyright (c) 1996-2003, 2007, 2008 Red Hat, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----------------------------------------------------------------------- */ /* ------------------------------------------------------------------- Most of the API is documented in doc/libffi.texi. The raw API is designed to bypass some of the argument packing and unpacking on architectures for which it can be avoided. Routines are provided to emulate the raw API if the underlying platform doesn't allow faster implementation. More details on the raw API can be found in: http://gcc.gnu.org/ml/java/1999-q3/msg00138.html and http://gcc.gnu.org/ml/java/1999-q3/msg00174.html -------------------------------------------------------------------- */ #ifndef LIBFFI_H #define LIBFFI_H #ifdef __cplusplus extern "C" { #endif /* Specify which architecture libffi is configured for. */ #ifndef ARM #define ARM #endif /* ---- System configuration information --------------------------------- */ /* If these change, update src/mips/ffitarget.h. */ #define FFI_TYPE_VOID 0 #define FFI_TYPE_INT 1 #define FFI_TYPE_FLOAT 2 #define FFI_TYPE_DOUBLE 3 #if 0 #define FFI_TYPE_LONGDOUBLE 4 #else #define FFI_TYPE_LONGDOUBLE FFI_TYPE_DOUBLE #endif #define FFI_TYPE_UINT8 5 #define FFI_TYPE_SINT8 6 #define FFI_TYPE_UINT16 7 #define FFI_TYPE_SINT16 8 #define FFI_TYPE_UINT32 9 #define FFI_TYPE_SINT32 10 #define FFI_TYPE_UINT64 11 #define FFI_TYPE_SINT64 12 #define FFI_TYPE_STRUCT 13 #define FFI_TYPE_POINTER 14 #define FFI_TYPE_COMPLEX 15 /* This should always refer to the last type code (for sanity checks). */ #define FFI_TYPE_LAST FFI_TYPE_COMPLEX #include #ifndef LIBFFI_ASM #if defined(_MSC_VER) && !defined(__clang__) #define __attribute__(X) #endif #include #include /* LONG_LONG_MAX is not always defined (not if STRICT_ANSI, for example). But we can find it either under the correct ANSI name, or under GNU C's internal name. */ #define FFI_64_BIT_MAX 9223372036854775807 #ifdef LONG_LONG_MAX # define FFI_LONG_LONG_MAX LONG_LONG_MAX #else # ifdef LLONG_MAX # define FFI_LONG_LONG_MAX LLONG_MAX # ifdef _AIX52 /* or newer has C99 LLONG_MAX */ # undef FFI_64_BIT_MAX # define FFI_64_BIT_MAX 9223372036854775807LL # endif /* _AIX52 or newer */ # else # ifdef __GNUC__ # define FFI_LONG_LONG_MAX __LONG_LONG_MAX__ # endif # ifdef _AIX /* AIX 5.1 and earlier have LONGLONG_MAX */ # ifndef __PPC64__ # if defined (__IBMC__) || defined (__IBMCPP__) # define FFI_LONG_LONG_MAX LONGLONG_MAX # endif # endif /* __PPC64__ */ # undef FFI_64_BIT_MAX # define FFI_64_BIT_MAX 9223372036854775807LL # endif # endif #endif /* The closure code assumes that this works on pointers, i.e. a size_t can hold a pointer. */ typedef struct _ffi_type { size_t size; unsigned short alignment; unsigned short type; struct _ffi_type **elements; } ffi_type; /* Need minimal decorations for DLLs to work on Windows. GCC has autoimport and autoexport. Always mark externally visible symbols as dllimport for MSVC clients, even if it means an extra indirection when using the static version of the library. Besides, as a workaround, they can define FFI_BUILDING if they *know* they are going to link with the static library. */ #if defined _MSC_VER # if defined FFI_BUILDING_DLL /* Building libffi.DLL with msvcc.sh */ # define FFI_API __declspec(dllexport) # elif !defined FFI_BUILDING /* Importing libffi.DLL */ # define FFI_API __declspec(dllimport) # else /* Building/linking static library */ # define FFI_API # endif #else # define FFI_API #endif /* The externally visible type declarations also need the MSVC DLL decorations, or they will not be exported from the object file. */ #if defined LIBFFI_HIDE_BASIC_TYPES # define FFI_EXTERN FFI_API #else # define FFI_EXTERN extern FFI_API #endif #ifndef LIBFFI_HIDE_BASIC_TYPES #if SCHAR_MAX == 127 # define ffi_type_uchar ffi_type_uint8 # define ffi_type_schar ffi_type_sint8 #else #error "char size not supported" #endif #if SHRT_MAX == 32767 # define ffi_type_ushort ffi_type_uint16 # define ffi_type_sshort ffi_type_sint16 #elif SHRT_MAX == 2147483647 # define ffi_type_ushort ffi_type_uint32 # define ffi_type_sshort ffi_type_sint32 #else #error "short size not supported" #endif #if INT_MAX == 32767 # define ffi_type_uint ffi_type_uint16 # define ffi_type_sint ffi_type_sint16 #elif INT_MAX == 2147483647 # define ffi_type_uint ffi_type_uint32 # define ffi_type_sint ffi_type_sint32 #elif INT_MAX == 9223372036854775807 # define ffi_type_uint ffi_type_uint64 # define ffi_type_sint ffi_type_sint64 #else #error "int size not supported" #endif #if LONG_MAX == 2147483647 # if FFI_LONG_LONG_MAX != FFI_64_BIT_MAX #error "no 64-bit data type supported" # endif #elif LONG_MAX != FFI_64_BIT_MAX #error "long size not supported" #endif #if LONG_MAX == 2147483647 # define ffi_type_ulong ffi_type_uint32 # define ffi_type_slong ffi_type_sint32 #elif LONG_MAX == FFI_64_BIT_MAX # define ffi_type_ulong ffi_type_uint64 # define ffi_type_slong ffi_type_sint64 #else #error "long size not supported" #endif /* These are defined in types.c. */ FFI_EXTERN ffi_type ffi_type_void; FFI_EXTERN ffi_type ffi_type_uint8; FFI_EXTERN ffi_type ffi_type_sint8; FFI_EXTERN ffi_type ffi_type_uint16; FFI_EXTERN ffi_type ffi_type_sint16; FFI_EXTERN ffi_type ffi_type_uint32; FFI_EXTERN ffi_type ffi_type_sint32; FFI_EXTERN ffi_type ffi_type_uint64; FFI_EXTERN ffi_type ffi_type_sint64; FFI_EXTERN ffi_type ffi_type_float; FFI_EXTERN ffi_type ffi_type_double; FFI_EXTERN ffi_type ffi_type_pointer; #if 0 FFI_EXTERN ffi_type ffi_type_longdouble; #else #define ffi_type_longdouble ffi_type_double #endif #ifdef FFI_TARGET_HAS_COMPLEX_TYPE FFI_EXTERN ffi_type ffi_type_complex_float; FFI_EXTERN ffi_type ffi_type_complex_double; #if 0 FFI_EXTERN ffi_type ffi_type_complex_longdouble; #else #define ffi_type_complex_longdouble ffi_type_complex_double #endif #endif #endif /* LIBFFI_HIDE_BASIC_TYPES */ typedef enum { FFI_OK = 0, FFI_BAD_TYPEDEF, FFI_BAD_ABI, FFI_BAD_ARGTYPE } ffi_status; typedef struct { ffi_abi abi; unsigned nargs; ffi_type **arg_types; ffi_type *rtype; unsigned bytes; unsigned flags; #ifdef FFI_EXTRA_CIF_FIELDS FFI_EXTRA_CIF_FIELDS; #endif } ffi_cif; /* ---- Definitions for the raw API -------------------------------------- */ #ifndef FFI_SIZEOF_ARG # if LONG_MAX == 2147483647 # define FFI_SIZEOF_ARG 4 # elif LONG_MAX == FFI_64_BIT_MAX # define FFI_SIZEOF_ARG 8 # endif #endif #ifndef FFI_SIZEOF_JAVA_RAW # define FFI_SIZEOF_JAVA_RAW FFI_SIZEOF_ARG #endif typedef union { ffi_sarg sint; ffi_arg uint; float flt; char data[FFI_SIZEOF_ARG]; void* ptr; } ffi_raw; #if FFI_SIZEOF_JAVA_RAW == 4 && FFI_SIZEOF_ARG == 8 /* This is a special case for mips64/n32 ABI (and perhaps others) where sizeof(void *) is 4 and FFI_SIZEOF_ARG is 8. */ typedef union { signed int sint; unsigned int uint; float flt; char data[FFI_SIZEOF_JAVA_RAW]; void* ptr; } ffi_java_raw; #else typedef ffi_raw ffi_java_raw; #endif FFI_API void ffi_raw_call (ffi_cif *cif, void (*fn)(void), void *rvalue, ffi_raw *avalue); FFI_API void ffi_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_raw *raw); FFI_API void ffi_raw_to_ptrarray (ffi_cif *cif, ffi_raw *raw, void **args); FFI_API size_t ffi_raw_size (ffi_cif *cif); /* This is analogous to the raw API, except it uses Java parameter packing, even on 64-bit machines. I.e. on 64-bit machines longs and doubles are followed by an empty 64-bit word. */ #if !FFI_NATIVE_RAW_API FFI_API void ffi_java_raw_call (ffi_cif *cif, void (*fn)(void), void *rvalue, ffi_java_raw *avalue) __attribute__((deprecated)); #endif FFI_API void ffi_java_ptrarray_to_raw (ffi_cif *cif, void **args, ffi_java_raw *raw) __attribute__((deprecated)); FFI_API void ffi_java_raw_to_ptrarray (ffi_cif *cif, ffi_java_raw *raw, void **args) __attribute__((deprecated)); FFI_API size_t ffi_java_raw_size (ffi_cif *cif) __attribute__((deprecated)); /* ---- Definitions for closures ----------------------------------------- */ #if FFI_CLOSURES #ifdef _MSC_VER __declspec(align(8)) #endif typedef struct { #if 0 void *trampoline_table; void *trampoline_table_entry; #else union { char tramp[FFI_TRAMPOLINE_SIZE]; void *ftramp; }; #endif ffi_cif *cif; void (*fun)(ffi_cif*,void*,void**,void*); void *user_data; #if defined(_MSC_VER) && defined(_M_IX86) void *padding; #endif } ffi_closure #ifdef __GNUC__ __attribute__((aligned (8))) #endif ; #ifndef __GNUC__ # ifdef __sgi # pragma pack 0 # endif #endif FFI_API void *ffi_closure_alloc (size_t size, void **code); FFI_API void ffi_closure_free (void *); #if defined(PA_LINUX) || defined(PA_HPUX) #define FFI_CLOSURE_PTR(X) ((void *)((unsigned int)(X) | 2)) #define FFI_RESTORE_PTR(X) ((void *)((unsigned int)(X) & ~3)) #else #define FFI_CLOSURE_PTR(X) (X) #define FFI_RESTORE_PTR(X) (X) #endif FFI_API ffi_status ffi_prep_closure (ffi_closure*, ffi_cif *, void (*fun)(ffi_cif*,void*,void**,void*), void *user_data) #if defined(__GNUC__) && (((__GNUC__ * 100) + __GNUC_MINOR__) >= 405) __attribute__((deprecated ("use ffi_prep_closure_loc instead"))) #elif defined(__GNUC__) && __GNUC__ >= 3 __attribute__((deprecated)) #endif ; FFI_API ffi_status ffi_prep_closure_loc (ffi_closure*, ffi_cif *, void (*fun)(ffi_cif*,void*,void**,void*), void *user_data, void *codeloc); #ifdef __sgi # pragma pack 8 #endif typedef struct { #if 0 void *trampoline_table; void *trampoline_table_entry; #else char tramp[FFI_TRAMPOLINE_SIZE]; #endif ffi_cif *cif; #if !FFI_NATIVE_RAW_API /* If this is enabled, then a raw closure has the same layout as a regular closure. We use this to install an intermediate handler to do the translation, void** -> ffi_raw*. */ void (*translate_args)(ffi_cif*,void*,void**,void*); void *this_closure; #endif void (*fun)(ffi_cif*,void*,ffi_raw*,void*); void *user_data; } ffi_raw_closure; typedef struct { #if 0 void *trampoline_table; void *trampoline_table_entry; #else char tramp[FFI_TRAMPOLINE_SIZE]; #endif ffi_cif *cif; #if !FFI_NATIVE_RAW_API /* If this is enabled, then a raw closure has the same layout as a regular closure. We use this to install an intermediate handler to do the translation, void** -> ffi_raw*. */ void (*translate_args)(ffi_cif*,void*,void**,void*); void *this_closure; #endif void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*); void *user_data; } ffi_java_raw_closure; FFI_API ffi_status ffi_prep_raw_closure (ffi_raw_closure*, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_raw*,void*), void *user_data); FFI_API ffi_status ffi_prep_raw_closure_loc (ffi_raw_closure*, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_raw*,void*), void *user_data, void *codeloc); #if !FFI_NATIVE_RAW_API FFI_API ffi_status ffi_prep_java_raw_closure (ffi_java_raw_closure*, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), void *user_data) __attribute__((deprecated)); FFI_API ffi_status ffi_prep_java_raw_closure_loc (ffi_java_raw_closure*, ffi_cif *cif, void (*fun)(ffi_cif*,void*,ffi_java_raw*,void*), void *user_data, void *codeloc) __attribute__((deprecated)); #endif #endif /* FFI_CLOSURES */ #if FFI_GO_CLOSURES typedef struct { void *tramp; ffi_cif *cif; void (*fun)(ffi_cif*,void*,void**,void*); } ffi_go_closure; FFI_API ffi_status ffi_prep_go_closure (ffi_go_closure*, ffi_cif *, void (*fun)(ffi_cif*,void*,void**,void*)); FFI_API void ffi_call_go (ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue, void *closure); #endif /* FFI_GO_CLOSURES */ /* ---- Public interface definition -------------------------------------- */ FFI_API ffi_status ffi_prep_cif(ffi_cif *cif, ffi_abi abi, unsigned int nargs, ffi_type *rtype, ffi_type **atypes); FFI_API ffi_status ffi_prep_cif_var(ffi_cif *cif, ffi_abi abi, unsigned int nfixedargs, unsigned int ntotalargs, ffi_type *rtype, ffi_type **atypes); FFI_API void ffi_call(ffi_cif *cif, void (*fn)(void), void *rvalue, void **avalue); FFI_API ffi_status ffi_get_struct_offsets (ffi_abi abi, ffi_type *struct_type, size_t *offsets); /* Useful for eliminating compiler warnings. */ #define FFI_FN(f) ((void (*)(void))f) /* ---- Definitions shared with assembly code ---------------------------- */ #endif #ifdef __cplusplus } #endif #endif ))entry(name ffitarget.hnode(typeregularcontents /* -----------------------------------------------------------------*-C-*- ffitarget.h - Copyright (c) 2012 Anthony Green Copyright (c) 2010 CodeSourcery Copyright (c) 1996-2003 Red Hat, Inc. Target configuration macros for ARM. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----------------------------------------------------------------------- */ #ifndef LIBFFI_TARGET_H #define LIBFFI_TARGET_H #ifndef LIBFFI_H #error "Please do not include ffitarget.h directly into your source. Use ffi.h instead." #endif #ifndef LIBFFI_ASM typedef unsigned long ffi_arg; typedef signed long ffi_sarg; typedef enum ffi_abi { FFI_FIRST_ABI = 0, FFI_SYSV, FFI_VFP, FFI_LAST_ABI, #if defined(__ARM_PCS_VFP) || defined(_WIN32) FFI_DEFAULT_ABI = FFI_VFP, #else FFI_DEFAULT_ABI = FFI_SYSV, #endif } ffi_abi; #endif #define FFI_EXTRA_CIF_FIELDS \ int vfp_used; \ unsigned short vfp_reg_free, vfp_nargs; \ signed char vfp_args[16] \ #define FFI_TARGET_SPECIFIC_VARIADIC #ifndef _WIN32 #define FFI_TARGET_HAS_COMPLEX_TYPE #endif /* ---- Definitions for closures ----------------------------------------- */ #define FFI_CLOSURES 1 #define FFI_GO_CLOSURES 1 #define FFI_NATIVE_RAW_API 0 #if defined (FFI_EXEC_TRAMPOLINE_TABLE) && FFI_EXEC_TRAMPOLINE_TABLE #ifdef __MACH__ #define FFI_TRAMPOLINE_SIZE 12 #define FFI_TRAMPOLINE_CLOSURE_OFFSET 8 #else #error "No trampoline table implementation" #endif #else #ifdef _WIN32 #define FFI_TRAMPOLINE_SIZE 16 #define FFI_TRAMPOLINE_CLOSURE_FUNCTION 12 #else #define FFI_TRAMPOLINE_SIZE 12 #endif #define FFI_TRAMPOLINE_CLOSURE_OFFSET FFI_TRAMPOLINE_SIZE #endif #endif ))))entry(namelibnode(type directoryentry(namelibffi.anode(typeregularcontentsĹ! / 0 0 0 0 1364 ` <      ' ' ' ' ' \\\\\lllllllllppppppppppffi_prep_cif_coreffi_prep_cifffi_prep_cif_varffi_prep_closureffi_get_struct_offsetsffi_type_complex_doubleffi_type_complex_floatffi_type_doubleffi_type_floatffi_type_pointerffi_type_sint64ffi_type_uint64ffi_type_sint32ffi_type_uint32ffi_type_sint16ffi_type_uint16ffi_type_sint8ffi_type_uint8ffi_type_voidffi_raw_sizeffi_raw_to_ptrarrayffi_ptrarray_to_rawffi_raw_callffi_prep_raw_closure_locffi_prep_raw_closureffi_java_raw_sizeffi_java_raw_to_ptrarrayffi_java_ptrarray_to_rawffi_java_raw_callffi_prep_java_raw_closure_locffi_prep_java_raw_closureopen_temp_exec_fileffi_closure_allocffi_data_to_code_pointerffi_closure_freeffi_tramp_is_presentffi_tramp_is_supportedffi_tramp_allocffi_tramp_set_parmsffi_tramp_get_addrffi_tramp_freeffi_prep_cif_machdepffi_prep_cif_machdep_varffi_callffi_call_goffi_closure_inner_SYSVffi_closure_inner_VFPffi_prep_closure_locffi_prep_go_closureffi_tramp_archffi_call_VFPffi_call_SYSVffi_go_closure_SYSVffi_closure_SYSVffi_go_closure_VFPffi_closure_VFPffi_closure_SYSV_altffi_closure_VFP_alttrampoline_code_tableffi_arm_trampolineprep_cif.o/ 0 0 0 644 2348 ` ELF(4( (CFhwV H@c:FC1"BDМ=8FXFRF)F@عUE @ ӈ# +hKEӪEW+5B D>X9h)8F@9h@F` ]8( Fˈ +  pGh/>hF" `.4F1h;)F $VU: *$## hC+4BؽC C+ C+ C+ xC+:hF2hFh:B2D-CFFF#F'ԣ #Yˆ *3hEFO,`5sE2h $VU: *0,'# hC+4Bؽ:hF2hFh:B2D C+ C+ C+ xC+ hC+-CFFF#F,;$S  ""44(F$ lF"F"F1F(FGF4$-CFChh4$ FOH_sEVK$h7B?mPaC0"JD-hBQh DBӒh*9F(F(11"ldD#dCj`P h(DB9F(`luE%eD`d@k`cmd'dB((GsKFh._3hBrhEEҩ)DIFA B&cIB؈E ؉h)R]KhBYh DBh+(F)F-OP (@#KKGFFTFhj^B.Fvksh l#(+DBcL0BL@3hiBhHB``)iJ3 <0B< ЁB iB aJaB?~3ia#Bxaasi#BqSaahBQh DBaӒh*(F!F(a#D11`/\FBO3ce k@"c8 *{FFRi*2i*ѹB?$:`4 k@"c1ji*e7FFRi*i*ѹB?:`Qh(DB!F(_#]г?𶀣t!$ P D@@ D@33( @CK@a< B[  C< da6KD0ab *y |*i*B?B?B?B?Opsi3i{)?iJ kBHJFFF[i+i+H`E?n0+ [ d! OqOI i+MFSh#EѓhHB(BH``2#aOAOp#h?~pJkE&J k@"c"ch?3iJkB k k@"c"c1H0B?a62a<"<0@#<0}h(DB?(?sh"m[s`1[1cl[ABPD[ ecdCC`(!iQ`ceꭅsh8@@ '2XPhG2FhA F32 + CX G232 +# F2-O@F@e@pPi #2BFF.8"F42`*Y`! !0Fh8"RE1F(RF(FF EO6H0F\7FP#hIF R"F?mh+Mh#RIF" FC! 42KD42B F8F(@Հ 2r *C?k0+re O1"#"IFFph+ +?P2 "@h)XhG2P32 +h2h+@(F8@@3F(@ }iQF(F(} "3F F"0xi0F#003@#3(ۺiOs|BM@@F8@ (F !0 "QFx0(!F3F "=i(O (F0F#0BF(F^F "#"IF@F(F0F#0 M!PFFE!PF O J (F0F,puIFXFh(Fi-O-)р@ FF 0+̀1,Ȁ ,8 4$$ O !HCH"D$0hhBHBɆ``LB*Di`5ShCS`1h,#hBbhDBh+D0(w F(5(F,`@ E@(ـ&@yO@\B#C@XB@(O0$3hhB@C8H`Bf`` Il`Ct`E00"$2D"@L B!H!P! !  08DT!!(!<,!4!4!!8!p!!t!! $+5?Rgo j  );K^9!<wu!$!,$d.LC0open_temp_exec_file_dir$topen_temp_exec_file_envopen_temp_exec_file_memfd.LC1.LC2.LANCHOR0.LC3open_temp_exec_file_mnt.LANCHOR1.LC4.LC5.LC6.LC7.LC8.LANCHOR2__errno_locationstrlenmemcpymkostempunlink__aeabi_unwind_cpp_pr1getenvmemfd_creategetmntent_rhasmntoptaccessendmntentsetmntentpthread_mutex_lockpthread_mutex_unlocksysconfpthread_mutex_initabort__aeabi_uidivmunmapopen_temp_exec_file__aeabi_unwind_cpp_pr0memsetwritemmapffi_tramp_is_supportedfopenstrncmp__getdelimfclosestatfsstrchrftruncateffi_closure_allocffi_tramp_allocffi_tramp_get_addrffi_data_to_code_pointerffi_closure_freeffi_tramp_freeffi_tramp_is_present 3 4@ 5Z 6^/b0 7 8 :/0/ 0 /0 < = = >*/.0> ?H/L0P @j/n0 A B C C D C E/0 AR EHL G G< F G GR G G E  / 0 / 0\ / ` 0 t /x 0 A H J K B( LH Ln Cz M L 4 / 0 N /$ 0( /, 04 O@ /D 0T Pf Qr Rx S / 0 T / 0 / 0 O / 0 U U P Q R S* V< LF RL S` Ut U R S G V/0p Mz X YT B\ A 4 B048,0 E4!V! Mp!x! M! \! M!;Bj!Y*9***** *(*0*8*8I@*H*L*P*X*`*d*    $(04<@H LTX`d.symtab.strtab.shstrtab.rel.text.data.bss.rodata.str1.4.ARM.extab.rel.ARM.exidx.rel.rodata.comment.note.GNU-stack.ARM.attributes8! @,h%! +"<02"?"0Np"hJ @0]T#lY @1 e0#n#~p#1$3 ) 2tramp.o/ 0 0 0 644 4076 ` ELF( 4(-O F(@ {iF(}h&O3"0FI"#F?j{h";h#hF?`WFh)a G3F2FF B"yi6DD4B:#X`3C+Ѻij``iBaai+;a+h jhZ`jh`ihhBahh(i(F hHFI F(F -C@ ]OQF@0F@0F(a@F(FF P*F0Ad,8(4 P  9F0(CEBE٨ (FCD0!F0F0"0+$ F ] (F$ F ] F(O30$ F ] 8@o ##bF(F8@F``hh `hBi+( hO2#(F"`#b88@$%j- -#@% #3F`F cahBF H(F8%H(F8H##b(F8$p@F$#j+"+M@+M #3F`F cahB0b(,-*i+#ݦiuih)hi:a hhH`hh`YiBXabi:ah YhQ`Yh `Ba H(Fp(H%(FpH#%#b$FO FF8F3i8FE@$8FM(Fh(F F8$8F%H"hci#`iea@3+ajiBн8@Hi!`ia2ajiBi+"h;a chS`ch`ihhBahh i FH8@$8L,(D/proc/%d/mapsr%lx-%lx %9s %lx %9s %ld %sGCC: (GNU) 11.4.0A0aeabi&7-A A   "(,$(@D ',X3:CINTdDek -'$;)NE$t.LANCHOR0$d.LC0.LC1.LC2mallocmmapmunmapgetpidsnprintffopenfeoffgets__isoc23_sscanffclose__aeabi_unwind_cpp_pr1open_temp_exec_filewrite__aeabi_unwind_cpp_pr0__aeabi_uidivffi_tramp_is_supportedpthread_mutex_lockffi_tramp_archsysconfpthread_mutex_unlockffi_tramp_allocffi_tramp_set_parmsffi_tramp_get_addrffi_tramp_free /0" @ Z       $ * </@0P Z/^0d h/ l0 r z/ ~0      ! 0 "N/R0f/j0r $| % "/0 )/*0* * ' + , , ,(./20< )J/*N0*d *p 'z + , , , )$0 )8 ,@J )`/d0     ,|,,**# **&* *(*0*8*.symtab.strtab.shstrtab.rel.text.data.bss.ARM.extab.rel.ARM.exidx.rodata.str1.4.comment.note.GNU-stack.ARM.attributes4 @H p %+<0 ?p$@; @ X J2d/Y0brp1  ] ffi.o/ 0 0 0 644 5996 ` ELF(<4( <FF@ ?0!)7` h@`0`@0FF`@0` @`0` @`0` x@`0` @`0(h-OF+ր؈Or@ *rњh*ɀh+ŀF؈Or@ *cњh*h+𳀐F؈Or@ *Tњh*h+؈Oq@ )Fљh) h+F؈Oq@ )7љh)s h+pЊF؈Oq@ )*ўh._3h+\؈Oq@ )ѝh-L+h+I؈Oq@ )ќh,9!h)6ȈOs@ +шh(T)U?+V?+Z?+[?+R?+X?+Y?+rW?+^U?O0+V?O0+Z?O0+[?O0+|R?O0+eX?O0+OO0O0O0O0pG(À-OFhDB@RO,Os@ +ѣh+h(ЛFB@[(ĈOs#@ +уh+h(КFB@Z(ĈOs#@ +уh+h(ЙFBsY(ĈOs#@ +уh+h(ИFB_X(ĈOs#@ +чh/8h0BMW(ĈOs#@ +цh.0h0B;V(ĈOs#@ +хh-(h0B)U(ĈOs#@ +фh, h0aET(аOs  +рhG(   pG-O ) ؋+ FOp C) уhhو+ FOp +؇h+ \F>V?h-+h+وOr @ *јh  ,,OU?+ F#CO+ \EW к+ P-*h2BU/*шOs @ +ѐh!F(сO }-OFF 0P`{`n0za*l)F)N+y# FMD{i1a#(a;a)FiK+¿ <&Z? ;T/6h)8!9A  و[F%EDh)FHF;iD7F+;# FMDziB*a`##;a{hixihD7F)!zhh+S3# FMD*э0+[" zinFa":a2Fa@2b*D`)aii P8bdD1byb)iݢ:j#0 FFc{cbk.mqF #c{j  KEHXo[0Fcjk >]{kj F ;kۋ(B:ܳ(O  0h+8#;NC45#F>j(,  fE+FqF[+b   [ {c{jKE00i&;k!F1b#Di0h 06+FqF1# 30+?{" jFa@2b*D`h}i2aB-"":ahBzh҈ R 0+?V[6& nFa@6bu`*:azia*F!-OFi%h+eg_]]QQ" ja;C3+8#+a_ 'wC Ѓh& 7WEX(Ъò+O $FO H2ODO H+i1AB@ր@@ cE@Ȁ @ A @ cE@ @ A @ cE@ @ A @ۀ cE@ @ A @̀ E @ A @ cE} @ A @ Eo @ A @ cEa @ A @ cES @ A @ cEE @ A w cE8 @ A j cE+ @ A ] cE @ A P cE @ A C cEAA,:C@a郄 ?3@7WE '#h+"3" """"JD+"Os a| FW"?@B"?(JFh+#`U$-GF@iFFO( F" `jF d h @ `h8( @^:8O E 4D @OLD0FGpiF-OFFz`rhF:bp0xa3h# si+@;``hnd3a;j9`+];i O {i{b[FEFFFF0i8O>(#si*8"|i;C3B9Ҹ:{jO;C3zbK?  ;jSEYO Ft"h(B̿!!sh  5 0K?;jSE{h0F:i9hhGpi,7F OaxbziO(-A F hFFF)()# F(;@@  `a` FF Wfa i+@@B@ h"F@@Fh0( ( @ A`0pGi@@-FFOS$@`]K `pGh(p |   0 x $dGCC: (GNU) 11.4.0A0aeabi&7-A A   "Ll#$"/F)H[q t} }  1 Fy "6J_%@se$t$dmemcpyabortffi_call_SYSVffi_call_VFP__aeabi_unwind_cpp_pr0ffi_prep_cif_machdepffi_prep_cif_machdep_varffi_callffi_call_goffi_closure_inner_SYSVffi_closure_inner_VFP__clear_cacheffi_prep_closure_locffi_tramp_is_presentffi_closure_SYSVffi_arm_trampolineffi_closure_VFPffi_closure_VFP_altffi_tramp_set_parmsffi_closure_SYSV_altffi_prep_go_closureffi_go_closure_SYSVffi_go_closure_VFPffi_tramp_archtrampoline_code_tableH   r l  / 0 / 0    / 0 / 0 /0  /0/06/:0L/P0T/X0n/!r0!**** * (*0*8*@*H*P*X*`*h*.symtab.strtab.shstrtab.rel.text.data.bss.ARM.extab.rel.ARM.exidx.comment.note.GNU-stack.ARM.attributes4 @H %+0?pp; @Px J0$S7cp71h   ssysv.o/ 0 0 0 644 13592 ` ELF(34( S  @HР>/ 0 Р  - -  `MP-0H P0- -  `M P-0H 0  ЍЍMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟOAaeabi5T    d"9xM0^u4H X  $a$dffi_call_VFPffi_call_SYSV__aeabi_unwind_cpp_pr0ffi_go_closure_SYSVffi_closure_SYSVffi_closure_inner_SYSVffi_go_closure_VFPffi_closure_VFPffi_closure_inner_VFPffi_closure_SYSV_altffi_closure_VFP_alttrampoline_code_tableffi_arm_trampoline  P ` ***.symtab.strtab.shstrtab.rel.text.data.bss.ARM.extab.rel.ARM.exidx.note.GNU-stack.ARM.attributes  @d2 % 0+ 00 0?p 0; @2 J$0Zp$0D0   d12j))entry(name libffi.lanode(typeregular executablecontents# libffi.la - a libtool library file # Generated by libtool (GNU libtool) 2.4.7 # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='libffi.so.8' # Names of this library. library_names='libffi.so.8.1.2 libffi.so.8 libffi.so' # The name of the static archive. old_library='libffi.a' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='' # Libraries that this one depends upon. dependency_libs='' # Names of additional weak libraries provided by this library weak_library_names='' # Version information for libffi. current=9 age=1 revision=2 # Is this an already installed library? installed=yes # Should we warn about portability when linking against -modules? shouldnotlink=no # Files to dlopen/dlpreopen dlopen='' dlpreopen='' # Directory that this library needs to be installed in: libdir='/gnu/store/ra43bgkx1diblsybv23rpd28zwp8klxs-libffi-3.4.4/lib' ))entry(name libffi.sonode(typesymlinktargetlibffi.so.8.1.2))entry(name libffi.so.8node(typesymlinktargetlibffi.so.8.1.2))entry(namelibffi.so.8.1.2node(typeregular executablecontentsELF(4x4 (pܲܲܲ88 ddd4QtdRtddddCW3*(I4+,0:S"? .P7KV;9<&2RB5=U% GA #'T L6DQ>J!NH1@8-CF M$)O /E%/`2 F`B$bEY D/023568:;<=>CDEGHIJLOQRSVP#4<Z(@s!gBMP^Wu{9%6'^@6u6(pB]Z(g[,^;¶#]Q[rabw;Z2QpE>E1T~y"aZ(]#y:;Fj(yW|3@  ]SF"  #Jzr% /6@, [ f b2  3 F 3m 7$ o z6  \$ q76 4 ?1p@ I56@ } Vذ 56  au6. 6 q46 4%6 U2 % 6$ m 3 G   v s̰ 4R l x 7 __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizeffi_prep_cifffi_prep_cif_varffi_type_sint32ffi_type_float__aeabi_unwind_cpp_pr0ffi_prep_closureffi_prep_closure_locffi_get_struct_offsetsffi_type_complex_doubleffi_type_complex_floatffi_type_doubleffi_type_pointerffi_type_sint64ffi_type_uint64ffi_type_uint32ffi_type_sint16ffi_type_uint16ffi_type_sint8ffi_type_uint8ffi_type_voidffi_raw_sizeffi_raw_to_ptrarrayffi_ptrarray_to_rawmemcpy__aeabi_unwind_cpp_pr1ffi_raw_callffi_callffi_prep_raw_closure_locffi_prep_raw_closureffi_java_raw_sizeabortffi_java_raw_to_ptrarrayffi_java_ptrarray_to_rawffi_java_raw_callffi_prep_java_raw_closure_locffi_prep_java_raw_closure__errno_locationstrlenmkostempunlinkgetenvmemfd_creategetmntent_rhasmntoptaccessendmntentsetmntentpthread_mutex_lockpthread_mutex_unlocksysconfpthread_mutex_initmunmapmemsetwritemmapfopenstrncmp__getdelimfclosestatfsstrchrftruncateffi_closure_allocffi_closure_freemallocgetpidsnprintffeoffgets__isoc23_sscanfffi_call_goffi_prep_go_closureraiselibgcc_s.so.1libc.so.6libffi.so.8LIBFFI_BASE_8.0LIBFFI_COMPLEX_8.0LIBFFI_CLOSURE_8.0LIBFFI_GO_CLOSURE_8.0GCC_3.5GLIBC_2.7GLIBC_2.38GLIBC_2.27GLIBC_2.4/gnu/store/hqpnggqlr3r9l6v2wpc9s98cfpxqksql-glibc-2.39/lib:/gnu/store/zc0labqnpq44i3ysrknr8rhz8kqs6nrk-gcc-11.4.0-lib/lib:/gnu/store/zc0labqnpq44i3ysrknr8rhz8kqs6nrk-gcc-11.4.0-lib/lib/gcc/arm-unknown-linux-gnueabihf/11.4.0/../../..  z q}C $}0UR$} Y U&y gii  ii dht Q@@+O 6D $( , 0 4 8<@DHLPTRX\J`dhlptx| "#$=F;%&'()K*7,-.5@--xGƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌxGƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌ|Ə ʌtƏ ʌlƏ ʌdƏ ʌ\Ə ʌTƏ ʌLƏ ʌDƏ ʌ<Ə ʌ4Ə ʌ,Ə ʌ$Ə ʌƏ ʌƏ ʌ Ə ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌƏ ʌ|Ə ʌtƏ ʌlƏ ʌdƏ ʌ\Ə ʌT0 0 R/GHKJxD{DzDBKXGpGΟH KxD J{DzDIKXGpG K J{DzDxk KX#K{DhK"{DppVj(CFhwV H@c:FC1"BDМ=8FhF" `.4F1h;)F $VU: *$## hC+4BؽC C+ C+ C+ xC+:hF2hFh:B2D-CFFFF AF, F FBFBF1F FGF-A FFChFF3# FBFCF2F)F FFpFJFzDFepv]!:9 Q?ۈ; +  0:0 pG0T: B0BT;h3CD0pG-AF@hpбF?%W/Vӈ; +/+&" hD;5Bؽ Fh;hh;C3D0D; D;0D; xD; hD;-CFFFFD AF, F FBFtBF1F FGF-A FFChFF3# FBF`CF2F)F FFFpFJFzDF:epP]OrDHFF0 hF_)*"" FF`(F#)F FmFF(FD K*{DD6Q`(FO!xrJFC(F> FFxT@O0!-AON@]pD~DDlFO@S!F8h*F|1FF F۱"(AF F(U !(U xC @]O0 @]vxx8F K{DB t M}Dl`L I FyD|(`8@,`O08w8"L |D aChɱM}D L F `먹 FICb@yD"@Ca8pOX3`i1 B r(49-OF{D-h+ xD1׀ )zDlB{Ul@v&!U\d+DBflBh-8hB\7B@aB``KBIBh D-xDŅB`E"hD*O΀hB\7B@*B``CdEb`P @(zDd"B`Cb``+m 🀢p% @V6 0C@F6 0D@00#*@@K@axDFk.B*RFdQR8i(Fhh BѫhBBJ`"`5a!pl(?"pGPW"}D@\3kB%CFc``#0xD1pOEh.%d%CE`b``hBOwOE"}BŁhB``?3ifJ2~DkBc qE B PP-?BiB*aaBi*? BjaaB𩁢hB``?ɮiJL&zDkBc aE B ``.?B"iB2aabi*?Braa.C80F`8DdAaCR6B?odB(+Luh-{/hBjhDEҩ)IFDC B-5{DsBؘE$؛h+4D{DshBYh DBh+8F!F,OP (@ 4{Dr/#4{Dr4FyD{D83HFhb]B%F-[nh q&(#DBilBhiBhlB``Ai$J3D <0B< ЁBv iB aJaB?m+ia#Bgaaki#B`SaaJzDrhBQh DB_Ӓh* FAF2(_JzDCD11p/cBKO2{DZe FBi*7FFRi**i*ѹB?:`( k@"cXbi*k/FFRi*2i*ѹB?:`E&k@%c h DBAF(3 cг?𾀣t!$ P D@@ D@33& @CK@aBk Ba CFcdQ5D(ahi*v"i*L@3B?B?ӬB?B?Opki+i)?iJkBJFlFF[i+i+wHxDl`E?U0+[ d! OqOI i+PFSh#BfK{DlhB(B.`F`2#aOAOp#`?eiYMJ}DkB%1 k@"c"cN?iMNJ~DkB&R%@k"c"c CIyDlB?a5*aF<"k@#csh8DB?(?kh[k`0K{D!R!m[lIB'IDyD( rKdC ec`iP`Ke/ԭxkh v$(`$’fN><̑V,z2ŽH 'NM~D}D2XPhG2FhA F32 + CX G232 +K" F{D"xڊ"-OFL|D%hkL|Dp>K{Dhh #2KAF{DF`.NFF~D4{`,]!" "F0F%D8BTE1F(TF(F"F BO4FHxDp FT7FK{DhFxh#"IFP JFCl{h+Myh"Q#IF <FBJ 6zDCl42KD42 F8#F(@ˀ"h2pbh*B?jK{Dh+nc O4"#@"IFFE h+ +?NL "|D2}JzDh)XxhG232 +ˀuK{Dh{h+~(FL7qIqHyD3xDNF( DhQF(F&(z "3FAF F"0h:0F_K"{DZ`^K{Dh3\H#3xD6(:iOs|BJTITHyDxD F8H D(F !0| "QFp0(!F3F "@Fh(O (F0F?K"{D`KF(F4F "#"IFPJF(F0F2K"{D`M!@F>FE!@FO4H(F0Fl$K{D,tvIF0Flyh(FVKzh{D"h``dЌf8 F^k\kVkڊԊkjjjB ҉-O-)׀6FF{Dh+ՀxD1,̀v , 4$D$%k!LC"D\0hhBlBE``Bb`4KhCK`DxD1 8&zDrh*hBQh DBh#D3`q(v F(8@0` F%` :lB@À(߀O @  \B#C@XB@(O0\3hsE ! cпlEۅ 0 GEe`0D0plU#"}D@*D\2 Bl5lhB𶅐``2@54{DdLpp(?:$ F '5A{Dl3QO5O4{Dh+D|D#i!YB`iB@)DE 4 "`{D!p$ k 4$/@(B$zDSlBm[SdCHeEC`M`xS+yDl@` ddECA`Pe`4#@!cp< +O3dFDh$dxh @B<F;F8Fi/Gi/DHEE@hBhE``,iJ0D <Bvvu8F L|Dt#hBbhDBӤh,(F8hD(F8(h8@>uF F@ h F@ؾ K{DshBYh DBӛh+F8 t-O ZF(\ D0LF( $O3" FI"#`FB0" 0#PFC`o pDa`(`;J#FDFzDDFDF B)6KNDOD{D4XiEF"V'aa`"` `3C+i"i`*` `BP0+;0+h ihY`ih `HxDiBKa{Dhh@hh:(ir(Fn  8FI*@F`(F^ vRvPvLv6vuuAK-G{D]V?h-+h+وOr @ *јh  ,,OU?+ F#CO+ \EW к+ P-*h2BU/*шOs @ +ѐh!F(сO }-OFF 0P`{`n0za*l)F)N+y# FMD{i1a#(a;a)FiK+¿ <&Z? ;T/6h)8!9A  و[F%EDh)FHF;iD7F+;# FMDziB*a`##;a{hixihPD7F)!zhh+S3# FMD*э0+[" zinFa":a2Fa@2b*D`)aii P8bdD1byb)iݢ:j#0 FFc{cbk.mqF #c{j  KEHXo[0Fcjk >]{kj F ;kۋ(B:ܳ(O  0h+8#;NC45#F>j(,  fE+FqF[+b   [ {c{jKE00i<&;k!F1b#Di0h 06+FqF1# 30+?{" jFa@2b*D`h}i2aB-"":ahBzh҈ R 0+?V[6& nFa@6bu`*:azia*F!-OFi%h+eg_]]QQ" ja;C3+8#+a_ 'wC Ѓh& 7WEX(Ъò+O $FO H2ODO H+i1AB@ր@@ cE@Ȁ @ A @ cE@ @ A @ cE@ @ A @ۀ cE@ @ A @̀ E @ A @ cE} @ A @ Eo @ A @ cEa @ A @ cES @ A @ cEE @ A w cE8 @ A j cE+ @ A ] cE @ A P cE @ A C cEAA,:C@a郄 ?3@7WE '#h+"3" """"JD+"Os a| FW"?@B"?(JFlh+#`U$-GF@iFFO( F" `jF d h @ `h8( @^:8O E 4D @OLD0FGpiF-OFFz`rhF:bp0xa3h# si+@;``hnd3a;j9`+];i O {i{b[FEFFFF0i8O>(#si*8"|i;C3B9Ҹ:{jO;C3zbK?  ;jSEYO Ft"h(B̿!!sh  5 0K?;jSE{h0F:i9hhGpi,7F OaxbziO(-AF hFFF-!- FJpM}DK{D `a` FiFc` xfa i+(x K J I{DzDyDB h"FIyDM}DL0\:Fh( ( L|D A`]KpGiL|DL|D0bKJ{D$`OP`]KXpG_S  @HР>/ 0 Р  - -  `MP-0;H P0- -  `M P-0PH 0  ЍЍMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟMϟOJpG$B@BOFB(pB(pAB(ApB(poB(`oB(`AoB(A`oB(`_B(P_B(PA_B(AP_B(POB(@OB(@AOB(A@OB(@?B(0?B(0A?B(A0?B(0/B( /B( A/B(A /B( B(B(AB(AB(B(B(AB(AB(FpG  pG pGO0)-@@pGO@O߀pG@-;> >>%>3>>>>> >$>>'>>> > >    /ffiXXXXXXronoexecr/proc/self/statusPaX:/selinux/proc/mountsselinuxfs libffiLIBFFI_TMPDIRTMPDIR/var/tmp/dev/shmHOME/etc/mtab/proc/%d/maps%lx-%lx %9s %lx %9s %ld %s;> >>%>3>>>>> >$>>'>>> > > }؀ĂlDtX,@T8X@\4ܨd0xTTpxĹ̹ȹ` <008y8y8777y899dYgq dh4ox   ( o oooo\o qpGCC: (GNU) 11.4.0A0aeabi&7-A A   "libffi.so.8.1.2.debug`F.shstrtab.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_d.gnu.version_r.rel.dyn.rel.plt.init.text.fini.rodata.ARM.extab.ARM.exidx.eh_frame.init_array.fini_array.data.rel.ro.dynamic.got.data.bss.comment.ARM.attributes.gnu_debuglink44p od px x %o\\2o  AopP   Y B((b ] th00rnt|Tpܲܲ8 ddhhll 0p&1Xt))entry(name pkgconfignode(type directoryentry(name libffi.pcnode(typeregularcontents7prefix=/gnu/store/ra43bgkx1diblsybv23rpd28zwp8klxs-libffi-3.4.4 exec_prefix=${prefix} libdir=${exec_prefix}/lib toolexeclibdir=${libdir} includedir=${prefix}/include Name: libffi Description: Library supporting Foreign Function Interfaces Version: 3.4.4 Libs: -L${toolexeclibdir} -lffi Cflags: -I${includedir} ))))))entry(namesharenode(type directoryentry(namedocnode(type directoryentry(name libffi-3.4.4node(type directoryentry(nameLICENSEnode(typeregularcontentsllibffi - Copyright (c) 1996-2022 Anthony Green, Red Hat, Inc and others. See source files for details. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ))entry(nameLICENSE-BUILDTOOLSnode(typeregularcontents IThe libffi source distribution contains certain code that is not part of libffi, and is only used as tooling to assist with the building and testing of libffi. This includes the msvcc.sh script used to wrap the Microsoft compiler with GNU compatible command-line options, make_sunver.pl, and the libffi test code distributed in the testsuite/libffi.bhaible directory. This code is distributed with libffi for the purpose of convenience only, and libffi is in no way derived from this code. msvcc.sh an testsuite/libffi.bhaible are both distributed under the terms of the GNU GPL version 2, as below. GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 2 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. ))))))entry(nameinfonode(type directoryentry(namelibffi.info.gznode(typeregularcontents)}ksȕ~O^P^m)-Zƪ%Dd6;PĚhYIMR&J<}4-oL& &y_-<^FIn4f_y*#`wBR@%W=Q~cuvt @4:A9|{zv:NNՇR}xjKe~t>L~?ջ 5]|wcxߎ`f÷g#lx?@f2ߍ7O/'GK/.ǦϧW^^!BN./<z\w>b(ju`v*>^\G3u \l^n^ s2xX1`r4<]l:P]7Pχ2 mt~\Áwyóqߓ/p1q3Ӣ3ؠ?zdg46c*̸]~'GO3Rk3Mچ&' fyCt:Q%(H0IVڇ6TQu*8fZ`|i+?vX>C|ւeM(/`E4T0]JudI0'p8&3 %8g`x~/Jll)BY%e Zȅ q9Rcy ]dJԁ+B,v" K^=ȭ/OcU_@F, <5B"nHÈFI$NJ `K 2aàeHt\ ɑ]es8[\v`$a,Fd *EFQ  2i+H9v#8Obٰ; 78ZYx9r+ @BRР 8|2ۤ1y[p r~ I/X>Yʈ)`硃H(9"o6tqtQiJ.]>9GMj0HeB|hdSuBCƖ f邉66urrpbf'FhІ4LgIrb9 s&~c^8Q]VU%WMw4 '4]84l=T0VY$3P{Ly"^\V|YV* XZpz+R9o6y]+J}n5o:wy`&JXBȗ͎#G#߆em"[-HNQ^+/!sJ~{1FR t©C%J&t2 ێH5=O΄v;C戕 \H @?d k6 ~Kj%[7VW$%} &rw@`g x?%kt%8Xx&sDlrbۙy9 R8aܡe%bf(QqX:`GZBS-+e0h*\v@̡>J`#?Ė,G!j)v q0g&&@P2f[ =ߟ!Swb8 1؛%i ^rtooeM#(1+inCՕӓ> oR<2C+nJq9}-U/j;8KM c0m|M?QޗL ʆ!KŜHdl| -:NS)ip`("/U.52Eɢ2'Z=Mƈ/$ ̼򆉙;=s\0c63PMNwƕ JcZӑC^b %^hx:X5> 3ֳRց2JU> }PMh_'lDFW3@& rk\) Bq"u0 I3 Cbj4K@qH5FtZ4F3Aցo5)rß Y+XT r<% d [9N0#$JTx=,  S0hR)7 X^OfyXuT9*v"ΗÊDB6wD+Ql0. f TyY# ީ}QU8Jg['$"y 53 V @ GGDgUuCiTߜ_XElm@nAr(y%JW2L(:ZXBI>%Hw!/ fA(G $+ج"R;K' {6LBK05Qe!Wōonhzàbe:wΑ?it:'˟gGN7cBo99oP4 `@: i#们Ƃ6Շf}T4]f̻<š$SW]]T[R5 >!>>y :&i3C"!@AS7 2zC=K!b2TBLNi7IgiELCV8`9Iiϕ8`:H = &H1lnBM318aeZ-\0Jo9EEQm= 2CŽ]S<F2q8뙕kLȁ:}n?Z:Z}+ݣ|Ou'2%âi7hAO!~w5ѻ4N2Fy6ԳENMk@N;'ga|{AN}ţgfzɼ1ZB~Vsq?|,gwyI'HlhBVkAUx$d+q%gډnZ \5wKNQ5T*"ЋWmy"#'ő431 5 qqP,+Mf.=? 2l!,%5eC#3\'[7mQc;û"K6E_Ų*;x; W*8qqT4LZC؎B/ۿ7|ϑ ҃}Usj?Tu}WF}g};# *׍FzTZ~UW"h^AnUT={f9/f=;t_kMWQ_ZH5ahFW]-{tv W`h}Sm( "w,6*6M`7?`Dij߁̺lpy3\Q~]8 |(0 ֠e:6S>ȕHWQģv4oCVʨ(R}Hta5(u(gU>_7 NT?hmnY}B}l{m?A9kjpֽrnr8J]@oյVS!X+/CV덤yޓ>X'|;X+m^_ڼAcqxJzd'l{m=cျ;m<< kpmOnrJMC^Bd_/jYAKR]qR3ҋC!5f1cM:##Q4QtgYx647tXZՠvtZ)kx|NP~vKtLZ@7h=L ʥH 2ȥt51_hS ^ dΕ[Z#}yM*ز}! Lٴ`afK˵szeު\y ֽ@`6ij61+ë,H5F6ce@~t1Rw?hN NǨdFl5ch Iݓ\pwr^4uFh&jz9e(ŲZn=7C ب<$txV:~t*+>O(q T^hK%JlQyvpoˎ$q_5jU(0; dt'`_~<wDBuhm<;lVx !*xNDD8!-Fe@$A5IYmR^E64%5- L$2}e L :0 ؄hfN*'Q |+ N9~z=n)iIdWow3[h1mny,VKd b0d8@VoHc5ӧ >CWQ/ lEgtXvRZb"7JB^˕ 2yLA>GQ|cScgqj5l]͎/Ӽy;4mfo !L_fU 6YZ-5z|T貣8Oڂ唝Q^^ pH"sPr]Jjuzc-YtEt|acY\HoW.lg؄X,qY 2_%W  kķcb;^_!ns<:nGGJ7^*[%әl6Ks]HѠ[a6,Ds2DڲcOP!{.ę(NH\57D.PkBS&4ltf=4-, |rr5s,#g&6f|o$ቓwlPmXr)AtR&y1YV4$pd͙1}_өQ]s%Yd.Eю2$U i,g-Ұz/9}˯%)9:l)4O\ӬezoC7(6}ۤEv}ucrOt87R\d V6T~}CC9k't˟ƙni Β8'aB:`)F]]b 2YZж4.3jW{ !Į`S?]]^Re;ubG\yUkӮUx6z.W 碎ߖx1j4 ~Wׁ^6mQͰ>6SuOC1w׍'LڡmӕT]p6lW*+hP!X&_YhSv@џc@5.#݌o9Lo6&!s=rm-YnvVNO*P+}e*7ayЂ_E4ʗ#8q;lt_ ֹs=GDQ4r8E|덇SfBPY*WQPCh^, 8oh'$,3H]k/"/a7Q:o>qOPYK'xֳi&Ɔ5ߘ-jm'-y.~ӝV_qPa.x`O2Xxgpo}y&d[{z pݭ-jf^lmI#5?JJѣ_z=[mR\aNz6)Y쨉ER72!Iik|CQ{GINjG.ÕbRX2@6Gq֑q~0D}SOE2$=ѧtDcE/=[o &%`-7ITOj g~dWZc`v㬄<%AJP}{\4NMr00; @śG`è]oA߄ NC(O_}q;0vC FovLEҔ#|\m'/k?F6KJ-bEwh\oc LLrv-J>z[>z5=˪{>PWUR]8)yg E-\VlY\W? 2TE̥OcV ,5FWnE g8$]/ l#2_, EmQrܫ؞Y]IK-K16a9NŌ(817Mxīb$gѝ;]E+ L啜wEXR\MZaנF\%+(GC_R:7Q9a6FI ѯA\誣#םk]SDYz,)9x+ 9VeofΜ:\c0}6%)Ge͛,6/IKLp1,ԓ UX -J_re21핉H; גu$DGǣ.IE+HZjQ%LM@Iu#qe0iEJ#{h']p4 r͐JIM%Om 16~<9'J![Ppk:>Lf)R$,MΊV_%Uxh'IZSKZK2_K<)n>+a(98s횯-'{.GrZT[|]^^~$xvq$[me[Q5"mJyF6٥ȵa`jզ0Y8\|=S5mui%o!8v2dZ|ςx ?d6!Ξc61̬R1T~Sz}1}kQk1԰N , bL'yd9/B8ɨi_bsZ(C28uhúveJjjKxr`1,bTp-sT#]I)--Pg#Ă)М…Nv2aORd;2CA| wM1K>a $ .kgLBbQD*GA2[;krTqM%""Bf$3j6~ެ_m:Q>ˬJs:dTgPLjZՎP4 Osc{5j"g%3ƴڄ9ŭTPi-)NI<3CC|ܭ 30%mMp;ڧӷV&`Ϝ=٬M7lܘIwi$,]tӃڍ4!nѓZIG)W4EӲn[^I5>nxP-ኊj_\Y "1o)?OȗU֞o!%W2?f'>LT$l#e^ IQV 8ueLy=.6zQQF]`= uUlP- F1E4'@zbt.h/t0pZ]:ccjp%lW'Q ]+^Y0=;&t1oF>X2o=x?yך52SmY^ǶZ,`>peӰ}fV/pEj’~oT+ z?&F+3kX^|5(\yl Ck"xTHSɑ~`TjHqHJH žx%%&""' `.ȝ+90*7y$DiԷk9B'JW}uOiE%cY^ jJOB{^Pr3NT??4UzhNn^2պ [Wpe- $助> Hb'n\Tﺪ }XL;J7VÅ1:< 6F^hr|82 l)nnj٤EyπI)ڧ0}I|l׃>/pBzNE[. O>&'6y>n`MtEIxaw@-0J éPNRB3hb%ߠ?| ;/rrljg̢]1|-xџE Cɕ'cNTZ/ҁ kgѡsf,r<!Ho42?eif\,Y=CSB%Cn?nco{8mZ׿`>ח_ >ؔOw{hmPOH,Vy h9_|HL6ҎރȄ~lBug55a7ʪ ,͌yDܯv>#kP|v4 <ԟ8x 4 hg5~F㈓]K-8rзYH h[_Y!N+ Jom[_ZhoԾ}j_ңpH<>>ZM4m?evvvwuShz$doא$@>Ar,žht:=^nz"m5=HG; @ONG>e/NG`Ӷ%I^$_̶V1 |N l{!A;o? @=_w^ミދf,|}z?hFntmk݋}(X_w_ VU5ѽZ*|4|~N]ugvrW+ ZSW0 V'wY֝_wwv_?  Mȟ+XQ&A%g/:))))entry(namemannode(type directoryentry(nameman3node(type directoryentry(nameffi.3.gznode(typeregularcontentsN0~ *P!F-j8,jꌓovЪjxg'9- n׿zH B'O3!MD!Kiogk 3FE1_N<:y PVB>VGw!C:jWug:AfMLQl<tew q1cj\8YmTX:zo_F%\$\^!N랎PL W8%[KEvAw.T;V[Q!+r?:z!زlrzٱ)mMEI`}Ø݁0I٦ 91_]=at>cY}R))entry(name ffi_call.3.gznode(typeregularcontents:}Vmo6_q˰D 5qWbc$3PDYD%R#)n;Re8ҽ>6X\I`ryB>g5KW%Yz_r|a6Bnʜ*N?WKӒ [-s|УX 'Mp_'AD*1͖W8Ay//`1z+sa+PJښ*IeJB{J:f߭4K%]+`{f1r u#1H=B1i@G F8#5ѵ4c7Rbɱ5*\M`rNc4w2 "6eZ9.EZj@2#A˹v HU9 َĹinI cjhicDCւv~fT$=ĕGBt;gax(.J#ȁ<),PkkjAMn4i3Zzl @ ʙ;jwؿٻǻ9Mđ^js?y$.DU;p + IOc5ED!,Vi#f/ o8M/k!F<8Z(H܈#/5@Uľ%^j'85}[b۾?7逈Fضr{8F`ý<+߀f[.+@ ڋB"}(\Tj׫вvӞ{1=2:4#}塬di3Pl(냍N+b|;_{z,EIrmݵ}-._G+~h`}&/xIu8醋x!oҫmzU=9CCgш}3Sx&)!:2h΂B/0ϔ`m I凜QγL_ lmG\+6釲lOA#rʰW|G1 |Ngqy5| Myy~0[=dxwL< 5h ))entry(nameffi_prep_cif.3.gznode(typeregularcontentsATM0WPRUlI4  xB,%N*;, x{cq}O_+KFG㾖 CEL#; H >qJiɅ͋;Tzg, p~1E..nnSKeۍqu4#C?w~odgB"ϋ'$d2QK9]췯llZg?Br\A_[:o;ZEEsY1jנ{ߠSf$C$g'.;~7idOFlnI e.K~k YLzDBIdh,Zg <`@gnЯ8iV kW*ͅg@Ǎu8-,2l<*]TOI L)p r {.C~))))))))))