ELF>i@@,+ UH@dH%(HD$81HHt$HD$HFHD$$D$ t0H|$1HT$8dH+%(uhH@]@HT$H|$H5|$HtHt+HH5HPtHuH1Huff.fUSHHdH%(HD$81HHt$HD$HFHD$$D$ HD$t6H|$1HT$8dH+%(utHH[]fHt$H|$tHl$H=HtHH=uHuHc@HUH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(u8H0]fDHHuӐHHuHff.@SH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$u=H(HtD$9D$t:H111HT$(dH+%(uUH0[fDHHuӐt_hHuHcDHHH;tЉfUH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uLHo(Ht!D$ +D$$tFH|$1HT$8dH+%(uWH@]f.HHuϐHt$H|$tHt$HHuHH@ATUH8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$uCH(HtD$9D$tHH111HT$(dH+%(H8]A\fDHHuftDHo8HuHtQHHHIHuLH@HHH;tHfDHHNATUH8fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$uCH(HtD$9D$tHH111HT$(dH+%(H8]A\fDHHuftDHo@HuHtQHHHIHuLH@HHH;tHfDHHNUH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uLHo(Ht!D$ +D$$tFH|$1HT$8dH+%(H@]fDHHuϐHt$ H|$tD$$t$ t19uhtHEuhHHuHHDHEHH;u;uhtˉuhHfH@ATUSH@fnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uYHD$Ho(Ht!\$ +\$$tJH|$1HT$8dH+%(H@[]A\HHuːHt$H|$tD$$Ld$uXHELH@H;u\H=tLH=u)HeHcZfDLL@HЉfATH0fnFdH%(HD$(1HH4$HD$HGfnȉD$fbfD$uDH(HtD$9D$tIH11E1HD$(dH+%(H0LA\@HHufHHRxH;IMtoI$H5LPtZHuLIHoHbL1HHP@L8fE1H"DIjfAUATUSHHfnFdH%(HD$81HHt$HD$HGfnȉD$(fbfD$ uWHD$Ho(Ht!D$ +D$$tHH|$1HT$8dH+%(HH[]A\A]HHu͐Ht$H|$tD$$Ld$lHEHH;Lm@MMnLLxLLLhHLIL$HE@HH)HHHL1HfDAoHH9uLLHH :I int C++: static vtkTypeBool IsTypeOf(const char *type) Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. V.IsA(string) -> int C++: vtkTypeBool IsA(const char *type) override; Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. V.SafeDownCast(vtkObjectBase) -> vtkXMLParser C++: static vtkXMLParser *SafeDownCast(vtkObjectBase *o) V.NewInstance() -> vtkXMLParser C++: vtkXMLParser *NewInstance() V.TellG() -> int C++: vtkTypeInt64 TellG() Used by subclasses and their supporting classes. These methods wrap around the tellg and seekg methods of the input stream to work-around stream bugs on various platforms. V.SeekG(int) C++: void SeekG(vtkTypeInt64 position) Used by subclasses and their supporting classes. These methods wrap around the tellg and seekg methods of the input stream to work-around stream bugs on various platforms. V.Parse() -> int C++: virtual int Parse() V.Parse(string) -> int C++: virtual int Parse(const char *inputString) V.Parse(string, int) -> int C++: virtual int Parse(const char *inputString, unsigned int length) Parse the XML input. V.InitializeParser() -> int C++: virtual int InitializeParser() When parsing fragments of XML, or when streaming XML, use the following three methods: - InitializeParser() initializes the parser but does not perform any actual parsing. - ParseChunk() parses a fragment of XML; this has to match to what was already parsed. - CleanupParser() finishes parsing; if there were errors, it will report them. V.ParseChunk(string, int) -> int C++: virtual int ParseChunk(const char *inputString, unsigned int length) When parsing fragments of XML, or when streaming XML, use the following three methods: - InitializeParser() initializes the parser but does not perform any actual parsing. - ParseChunk() parses a fragment of XML; this has to match to what was already parsed. - CleanupParser() finishes parsing; if there were errors, it will report them. V.CleanupParser() -> int C++: virtual int CleanupParser() When parsing fragments of XML, or when streaming XML, use the following three methods: - InitializeParser() initializes the parser but does not perform any actual parsing. - ParseChunk() parses a fragment of XML; this has to match to what was already parsed. - CleanupParser() finishes parsing; if there were errors, it will report them. V.SetFileName(string) C++: virtual void SetFileName(const char *_arg) Set and get file name. V.GetFileName() -> string C++: virtual char *GetFileName() Set and get file name. V.SetIgnoreCharacterData(int) C++: virtual void SetIgnoreCharacterData(int _arg) If this is off (the default), CharacterDataHandler will be called to process text within XML Elements. If this is on, the text will be ignored. V.GetIgnoreCharacterData() -> int C++: virtual int GetIgnoreCharacterData() If this is off (the default), CharacterDataHandler will be called to process text within XML Elements. If this is on, the text will be ignored. V.SetEncoding(string) C++: virtual void SetEncoding(const char *_arg) Set and get the encoding the parser should expect (nullptr defaults to Expat's own default encoder, i.e UTF-8). This should be set before parsing (i.e. a call to Parse()) or even initializing the parser (i.e. a call to InitializeParser()) V.GetEncoding() -> string C++: virtual char *GetEncoding() Set and get the encoding the parser should expect (nullptr defaults to Expat's own default encoder, i.e UTF-8). This should be set before parsing (i.e. a call to Parse()) or even initializing the parser (i.e. a call to InitializeParser()) HHHDGCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0GNUzRx  0DX l  4FBD S BBM ^BB4FBD S BBM ^BB EDPa AE (<EY B W(HEAD`j AAJ tED@ AG ED@ AG EDP AK (-FADP ABG ( -FADP ABG 8<EDP AG 0\^FAA D`  AABH gFD@ EE 8NFBA A(Dp (A ABBD 8NFBA A(Dp (A ABBD ,MFF0HOFDD n ABA DDB| ED@ AG (9FAD` ABJ ED@ AG ,FCD`{ ABE t     M v    -% -Q < ^ g N @N0 I" e 0 9 P 0 ";@ EJ(OT1Y7^NcTh`mlsy" """" C[" "">M"<7Qe{$6L` Mx O&Io  , D \ q    _ZL24PyvtkXMLParser_StaticNewv_ZL27PyvtkXMLParser_SafeDownCastP7_objectS0__ZL23PyvtkXMLParser_IsTypeOfP7_objectS0__ZL20PyvtkXMLParser_TellGP7_objectS0__ZL37PyvtkXMLParser_GetIgnoreCharacterDataP7_objectS0__ZL20PyvtkXMLParser_SeekGP7_objectS0__ZL26PyvtkXMLParser_GetFileNameP7_objectS0__ZL26PyvtkXMLParser_GetEncodingP7_objectS0__ZL37PyvtkXMLParser_SetIgnoreCharacterDataP7_objectS0__ZL18PyvtkXMLParser_IsAP7_objectS0__ZL26PyvtkXMLParser_NewInstanceP7_objectS0__ZL26PyvtkXMLParser_SetEncodingP7_objectS0__ZL26PyvtkXMLParser_SetFileNameP7_objectS0__ZL19PyvtkXMLParser_Type_ZL22PyvtkXMLParser_Methods_GLOBAL__sub_I_vtkXMLParserPython.cxx_ZL28PyvtkXMLParser_CleanupParserP7_objectS0__ZL25PyvtkXMLParser_ParseChunkP7_objectS0__ZL31PyvtkXMLParser_InitializeParserP7_objectS0__ZL20PyvtkXMLParser_ParseP7_objectS0_.LC0.LC1.LC2.LC4.LC3.LC5.LC6.LC7.LC8.LC9.LC10.LC11.LC12.LC13.LC14.LC16.LC17.LC18.LC19.LC15_ZN12vtkXMLParser11GetFileNameEv_ZN12vtkXMLParser22SetIgnoreCharacterDataEi_ZN12vtkXMLParser22GetIgnoreCharacterDataEv_ZN12vtkXMLParser11GetEncodingEv_ZN12vtkXMLParser3NewEv_ZNK12vtkXMLParser19NewInstanceInternalEv_ZN12vtkXMLParser11SetFileNameEPKcstrcmp_ZdaPvstrlen_Znammemcpy_ZN12vtkXMLParser11SetEncodingEPKc_ZN13vtkPythonArgs13ArgCountErrorEii_ZN13vtkPythonArgs17GetArgAsVTKObjectEPKcRbPyErr_Occurred_ZN13vtkPythonUtil20GetObjectFromPointerEP13vtkObjectBase__stack_chk_fail_ZN12vtkXMLParser3IsAEPKc_ZN13vtkObjectBase8IsTypeOfEPKc_ZN13vtkPythonArgs8GetValueERPcPyLong_FromLong_ZN13vtkPythonArgs19GetSelfFromFirstArgEP7_objectS1__ZN12vtkXMLParser5TellGEvPyLong_FromLongLong_GLOBAL_OFFSET_TABLE__ZN13vtkPythonArgs8GetValueERx_ZN12vtkXMLParser5SeekGEx_Py_NoneStructPyUnicode_FromStringAndSizePyErr_ClearPyBytes_FromStringAndSize_ZN13vtkPythonArgs8GetValueERiPyVTKObject_CheckPyVTKObject_GetObjectPyVTKObject_SetFlagPyvtkXMLParser_ClassNewPyVTKClass_AddPyvtkObject_ClassNewPyType_ReadyPyVTKAddFile_vtkXMLParserPyDict_SetItemString_Py_Dealloc_ZN12vtkXMLParser13CleanupParserEv_ZN13vtkPythonArgs8GetValueERj_ZN12vtkXMLParser10ParseChunkEPKcj_ZN12vtkXMLParser16InitializeParserEv_ZN13vtkPythonArgs13ArgCountErrorEiPKc_ZN12vtkXMLParser5ParseEv_ZN12vtkXMLParser5ParseEPKc_ZN12vtkXMLParser5ParseEPKcjPyType_TypePyVTKObject_DeletePyVTKObject_ReprPyVTKObject_StringPyObject_GenericGetAttrPyObject_GenericSetAttrPyVTKObject_AsBufferPyVTKObject_TraversePyVTKObject_GetSetPyVTKObject_NewPyObject_GC_Del,$`E%F&GHGI 'JE}L&?(?GMKI)NEqNOGPI*EANXGeM}*:I+ E1NKR\SaGm*TxI,EN9GKAYUcVnW*8*TI- EINiG{AUVW*;*TI.ZENXG*T*9ID/ENL *J & ?* (/ ?8 GI Md Kz I 0 E N: *=E <X &g Gt H Y Z [ G I 1x E N L *D ? @! A0 B] ?m @u A Bt@G*T:If2EN L2*>Y?i@qAB?@AB@G*TI"&#]"^"_\& aQ3ENGMcI34ENLdG)M<eEIq5ENG Mf"I6g6E+6sE6ENNN>LSdGMLhijI<+b<!?-@5AABSCt@!?-@5AABSCt@&?&(+?8K7"k0lXmnopqrs8t@u (  ( 8@ HX` h x 1` N@ 0( P   (08x @ H@X ` Thxp  l  7    ` 4H\p  , Lx<`   @0L0P0.symtab.strtab.shstrtab.rela.text.data.bss.text._ZN12vtkXMLParser11GetFileNameEv.text._ZN12vtkXMLParser22SetIgnoreCharacterDataEi.text._ZN12vtkXMLParser22GetIgnoreCharacterDataEv.text._ZN12vtkXMLParser11GetEncodingEv.rela.text._ZNK12vtkXMLParser19NewInstanceInternalEv.rela.text._ZN12vtkXMLParser11SetFileNameEPKc.rela.text._ZN12vtkXMLParser11SetEncodingEPKc.rodata.str1.1.rodata._ZN12vtkXMLParser3IsAEPKc.str1.1.rela.text._ZN12vtkXMLParser3IsAEPKc.rodata.str1.8.rela.text.startup.rela.init_array.rela.data.rel.rela.data.rel.local.comment.note.GNU-stack.note.gnu.property.rela.eh_frame.groupc@)8cH)9cP):cX);c` )=cl )>cx )Dc )J  @K) &,1 X  @P])@h])KF@])t2C2 0<@^x)2pp.@_0).@0_) . @H_ ) @0  @h`)"(0`2,12A2 Y20T@d)'6 *8 A gj