ooo-build r12387 - in trunk: . patches/dev300
- From: noelpwer svn gnome org
- To: svn-commits-list gnome org
- Subject: ooo-build r12387 - in trunk: . patches/dev300
- Date: Tue, 29 Apr 2008 19:08:49 +0100 (BST)
Author: noelpwer
Date: Tue Apr 29 18:08:49 2008
New Revision: 12387
URL: http://svn.gnome.org/viewvc/ooo-build?rev=12387&view=rev
Log:
2008-04-26 Noel Power <noel power novell com>
* patches/dev300/apply: add these fixes for bracket handling and
array of array syntax handling. vba-brackets-params-fix.diff &
vba-negnumber-inparam-withoutbrackets.diff have been disabled while
evaluating this patch
* patches/dev300/cws-ab48.diff:
Added:
trunk/patches/dev300/cws-ab48.diff
Modified:
trunk/ChangeLog
trunk/patches/dev300/apply
Modified: trunk/patches/dev300/apply
==============================================================================
--- trunk/patches/dev300/apply (original)
+++ trunk/patches/dev300/apply Tue Apr 29 18:08:49 2008
@@ -1365,8 +1365,11 @@
#associating sheet and codename when insert a sheet
# sc-insert-sheet-codename.diff, i#80869, jianhua
-vba-brackets-params-fix.diff, i#79918, n#292861
-vba-negnumber-inparam-withoutbrackets.diff, n#294302
+# disable momentarily and remove if cws-ab48.diff
+# seems to do the same job
+#vba-brackets-params-fix.diff, i#79918, n#292861
+#vba-negnumber-inparam-withoutbrackets.diff, n#294302
+cws-ab48.diff
# hack for when resolving a symbol in the module ThisWorkbook
vba-symbol-searchhack-for-thisworkbook.diff
Added: trunk/patches/dev300/cws-ab48.diff
==============================================================================
--- (empty file)
+++ trunk/patches/dev300/cws-ab48.diff Tue Apr 29 18:08:49 2008
@@ -0,0 +1,6873 @@
+Index: basic/source/classes/disas.cxx
+===================================================================
+RCS file: /cvs/script/basic/source/classes/disas.cxx,v
+retrieving revision 1.26
+retrieving revision 1.26.16.2
+diff -u -p -u -p -b -w -B -r1.26 -r1.26.16.2
+--- basic/source/classes/disas.cxx 28 Jan 2008 13:59:35 -0000 1.26
++++ basic/source/classes/disas.cxx 4 Apr 2008 10:44:57 -0000 1.26.16.2
+@@ -98,7 +98,9 @@ static const char* pOp1[] = {
+ "RSET", // Speichern Objekt TOS ==> TOS-1
+ "REDIMP_ERASE",
+ "INITFOREACH",
+- "VBASET"
++ "VBASET",
++ "ERASE_CLEAR",
++ "ARRAYACCESS"
+ };
+
+ static const char* pOp2[] = {
+@@ -128,6 +130,7 @@ static const char* pOp2[] = {
+ // Neues ab Beta 3
+ "BASED", // TOS wird um BASE erhoeht, BASE davor gepusht
+ "ARGTYP", // Letzten Parameter in Argv konvertieren (+Typ)
++ "VBASETCLASS",
+ };
+
+ static const char* pOp3[] = {
+@@ -156,6 +159,7 @@ static const char* pOp3[] = {
+ "FIND_G", // Sucht globale Variable mit Spezialbehandlung wegen _GLOBAL_P
+ "DCREATE_REDIMP", // User defined Objekt-Array redimensionieren (+StringId+StringId)
+ "FIND_CM", // Search inside a class module (CM) to enable global search in time
++ "PUBLIC_P", // Module global Variable (persisted between calls)(+StringID+Typ)
+ };
+
+ static const char** pOps[3] = { pOp1, pOp2, pOp3 };
+@@ -188,6 +192,7 @@ static const Func pOperand2[] = {
+ &SbiDisas::StrOp, // Libnamen fuer Declare-Procs setzen (+StringId)
+ &SbiDisas::ImmOp, // TOS wird um BASE erhoeht, BASE davor gepusht
+ &SbiDisas::TypeOp, // Letzten Parameter in Argv konvertieren (+Typ)
++ &SbiDisas::StrOp, // VBASETCLASS (+StringId)
+ };
+
+ static const Func pOperand3[] = {
+@@ -216,6 +221,7 @@ static const Func pOperand3[] = {
+ &SbiDisas::VarOp, // Sucht globale Variable mit Spezialbehandlung wegen _GLOBAL_P
+ &SbiDisas::Str2Op, // User defined Objekt-Array redimensionieren (+StringId+StringId)
+ &SbiDisas::VarOp, // FIND_CM
++ &SbiDisas::VarDefOp, // PUBLIC_P
+ };
+
+
+@@ -248,7 +254,7 @@ SbiDisas::SbiDisas( SbModule* p, const S
+ nLine = 0;
+ nOff = 0;
+ nPC = 0;
+- nOp1 = nOp2 = nParts = (USHORT) 0;
++ nOp1 = nOp2 = nParts = 0;
+ eOp = _NOP;
+ // Label-Bits setzen
+ nOff = 0;
+@@ -266,7 +272,7 @@ SbiDisas::SbiDisas( SbModule* p, const S
+ case _CASEIS:
+ case _CASETO:
+ case _ERRHDL:
+- cLabels[ nOp1 >> 3 ] |= ( 1 << ( nOp1 & 7 ) );
++ cLabels[ (nOp1 & 0xffff) >> 3 ] |= ( 1 << ( nOp1 & 7 ) );
+ break;
+ default: break;
+ }
+@@ -291,7 +297,7 @@ BOOL SbiDisas::Fetch()
+ nPC = nOff;
+ if( nOff >= rImg.GetCodeSize() )
+ return FALSE;
+- const char* p = rImg.GetCode() + nOff;
++ const unsigned char* p = (const unsigned char*)( rImg.GetCode() + nOff );
+ eOp = (SbiOpcode) ( *p++ & 0xFF );
+ if( eOp <= SbOP0_END )
+ {
+@@ -302,20 +308,20 @@ BOOL SbiDisas::Fetch()
+ }
+ else if( eOp <= SbOP1_END )
+ {
+- nOff += 3;
++ nOff += 5;
+ if( nOff > rImg.GetCodeSize() )
+ return FALSE;
+- nOp1 = *p++ & 0xFF; nOp1 |= *p << 8;
++ nOp1 = *p++; nOp1 |= *p++ << 8; nOp1 |= *p++ << 16; nOp1 |= *p++ << 24;
+ nParts = 2;
+ return TRUE;
+ }
+ else if( eOp <= SbOP2_END )
+ {
+- nOff += 5;
++ nOff += 9;
+ if( nOff > rImg.GetCodeSize() )
+ return FALSE;
+- nOp1 = *p++ & 0xFF; nOp1 |= *p++ << 8;
+- nOp2 = *p++ & 0xFF; nOp2 |= *p << 8;
++ nOp1 = *p++; nOp1 |= *p++ << 8; nOp1 |= *p++ << 16; nOp1 |= *p++ << 24;
++ nOp2 = *p++; nOp2 |= *p++ << 8; nOp2 |= *p++ << 16; nOp2 |= *p++ << 24;
+ nParts = 3;
+ return TRUE;
+ }
+@@ -349,21 +355,23 @@ void SbiDisas::Disas( String& r )
+
+ BOOL SbiDisas::DisasLine( String& rText )
+ {
+- char cBuf[ 30 ];
++ char cBuf[ 100 ];
+ const char* pMask[] = {
+ "%08" SAL_PRIXUINT32 " ",
+ "%08" SAL_PRIXUINT32 " %02X ",
+- "%08" SAL_PRIXUINT32 " %02X %04X ",
+- "%08" SAL_PRIXUINT32 " %02X %04X %04X " };
++ "%08" SAL_PRIXUINT32 " %02X %08X ",
++ "%08" SAL_PRIXUINT32 " %02X %08X %08X " };
+ rText.Erase();
+ if( !Fetch() )
+ return FALSE;
+ // Neue Zeile?
+- if( eOp == _STMNT && (short) nOp1 != nLine )
++ if( eOp == _STMNT && nOp1 != nLine )
+ {
+ // Zeile raussuchen
+ String aSource = rImg.aOUSource;
+- USHORT n = 0, l = nLine = nOp1;
++ nLine = nOp1;
++ USHORT n = 0;
++ USHORT l = (USHORT)nLine;
+ while( --l ) {
+ n = aSource.SearchAscii( "\n", n );
+ if( n == STRING_NOTFOUND ) break;
+@@ -449,7 +457,7 @@ BOOL SbiDisas::DisasLine( String& rText
+
+ void SbiDisas::StrOp( String& rText )
+ {
+- String aStr = rImg.GetString( nOp1 );
++ String aStr = rImg.GetString( (USHORT)nOp1 );
+ ByteString aByteString( aStr, RTL_TEXTENCODING_ASCII_US );
+ const char* p = aByteString.GetBuffer();
+ if( p )
+@@ -461,7 +469,7 @@ void SbiDisas::StrOp( String& rText )
+ else
+ {
+ rText.AppendAscii( "?String? " );
+- rText += nOp1;
++ rText += (USHORT)nOp1;
+ }
+ }
+
+@@ -555,17 +563,17 @@ void SbiDisas::CharOp( String& rText )
+ rText += '\'';
+ else
+ rText.AppendAscii( "char " ),
+- rText += nOp1;
++ rText += (USHORT)nOp1;
+ }
+
+ // Variable ausgeben: String-ID und Typ
+
+ void SbiDisas::VarOp( String& rText )
+ {
+- rText += rImg.GetString( nOp1 & 0x7FFF );
++ rText += rImg.GetString( (USHORT)(nOp1 & 0x7FFF) );
+ rText.AppendAscii( "\t; " );
+ // Der Typ
+- USHORT n = nOp1;
++ UINT32 n = nOp1;
+ nOp1 = nOp2;
+ TypeOp( rText );
+ if( n & 0x8000 )
+@@ -576,7 +584,7 @@ void SbiDisas::VarOp( String& rText )
+
+ void SbiDisas::VarDefOp( String& rText )
+ {
+- rText += rImg.GetString( nOp1 );
++ rText += rImg.GetString( (USHORT)(nOp1 & 0x7FFF) );
+ rText.AppendAscii( "\t; " );
+ // Der Typ
+ nOp1 = nOp2;
+@@ -590,7 +598,7 @@ void SbiDisas::OffOp( String& rText )
+ rText += String::CreateFromInt32( nOp1 & 0x7FFF );
+ rText.AppendAscii( "\t; " );
+ // Der Typ
+- USHORT n = nOp1;
++ UINT32 n = nOp1;
+ nOp1 = nOp2;
+ TypeOp( rText );
+ if( n & 0x8000 )
+@@ -626,7 +634,7 @@ void SbiDisas::TypeOp( String& rText )
+ else
+ {
+ rText.AppendAscii( "type " );
+- rText += nOp1;
++ rText += (USHORT)nOp1;
+ }
+ }
+ #ifdef HP9000
+@@ -648,8 +656,8 @@ void SbiDisas::StmntOp( String& rText )
+ {
+ rText += String::CreateFromInt32( nOp1 );
+ rText += ',';
+- USHORT nCol = nOp2 & 0xFF;
+- USHORT nFor = nOp2 / 0x100;
++ UINT32 nCol = nOp2 & 0xFF;
++ UINT32 nFor = nOp2 / 0x100;
+ rText += String::CreateFromInt32( nCol );
+ rText.AppendAscii( " (For-Level: " );
+ rText += String::CreateFromInt32( nFor );
+Index: basic/source/comp/exprgen.cxx
+===================================================================
+RCS file: /cvs/script/basic/source/comp/exprgen.cxx,v
+retrieving revision 1.16
+retrieving revision 1.16.150.1
+diff -u -p -u -p -b -w -B -r1.16 -r1.16.150.1
+--- basic/source/comp/exprgen.cxx 12 Oct 2006 14:26:47 -0000 1.16
++++ basic/source/comp/exprgen.cxx 4 Apr 2008 10:52:57 -0000 1.16.150.1
+@@ -182,6 +182,7 @@ void SbiExprNode::GenElement( SbiOpcode
+ nId |= 0x8000;
+ aVar.pPar->Gen();
+ }
++
+ SbiProcDef* pProc = aVar.pDef->GetProcDef();
+ // per DECLARE definiert?
+ if( pProc )
+@@ -194,6 +195,18 @@ void SbiExprNode::GenElement( SbiOpcode
+ nId = ( nId & 0x8000 ) | pGen->GetParser()->aGblStrings.Add( pProc->GetAlias() );
+ }
+ pGen->Gen( eOp, nId, sal::static_int_cast< UINT16 >( GetType() ) );
++
++ if( aVar.pvMorePar )
++ {
++ SbiExprListVector* pvMorePar = aVar.pvMorePar;
++ SbiExprListVector::iterator it;
++ for( it = pvMorePar->begin() ; it != pvMorePar->end() ; ++it )
++ {
++ SbiExprList* pExprList = *it;
++ pExprList->Gen();
++ pGen->Gen( _ARRAYACCESS );
++ }
++ }
+ }
+
+ // Erzeugen einer Argv-Tabelle
+Index: basic/source/comp/exprnode.cxx
+===================================================================
+RCS file: /cvs/script/basic/source/comp/exprnode.cxx,v
+retrieving revision 1.17
+retrieving revision 1.17.60.1
+diff -u -p -u -p -b -w -B -r1.17 -r1.17.60.1
+--- basic/source/comp/exprnode.cxx 30 Aug 2007 09:59:55 -0000 1.17
++++ basic/source/comp/exprnode.cxx 4 Apr 2008 10:53:41 -0000 1.17.60.1
+@@ -83,6 +83,7 @@ SbiExprNode::SbiExprNode( SbiParser* p,
+ eNodeType = SbxVARVAL;
+ aVar.pDef = (SbiSymDef*) &r;
+ aVar.pPar = l;
++ aVar.pvMorePar = NULL;
+ aVar.pNext= NULL;
+
+ // Funktionsergebnisse sind nie starr
+@@ -121,6 +122,14 @@ SbiExprNode::~SbiExprNode()
+ {
+ delete aVar.pPar;
+ delete aVar.pNext;
++ SbiExprListVector* pvMorePar = aVar.pvMorePar;
++ if( pvMorePar )
++ {
++ SbiExprListVector::iterator it;
++ for( it = pvMorePar->begin() ; it != pvMorePar->end() ; ++it )
++ delete *it;
++ delete pvMorePar;
++ }
+ }
+ }
+
+Index: basic/source/comp/exprtree.cxx
+===================================================================
+RCS file: /cvs/script/basic/source/comp/exprtree.cxx,v
+retrieving revision 1.21
+retrieving revision 1.21.6.2
+diff -u -p -u -p -b -w -B -r1.21 -r1.21.6.2
+--- basic/source/comp/exprtree.cxx 27 Feb 2008 10:33:36 -0000 1.21
++++ basic/source/comp/exprtree.cxx 4 Apr 2008 10:57:36 -0000 1.21.6.2
+@@ -46,11 +46,13 @@
+ |*
+ ***************************************************************************/
+
+-SbiExpression::SbiExpression( SbiParser* p, SbiExprType t )
++SbiExpression::SbiExpression( SbiParser* p, SbiExprType t, SbiExprMode eMode )
+ {
+ pParser = p;
+- bError = bByVal = bBased = FALSE;
++ bError = bByVal = bBased = bBracket = FALSE;
++ nParenLevel = 0;
+ eCurExpr = t;
++ m_eMode = eMode;
+ pNext = NULL;
+ pExpr = (t != SbSTDEXPR ) ? Term() : Boolean();
+ if( t != SbSYMBOL )
+@@ -66,7 +68,7 @@ SbiExpression::SbiExpression( SbiParser*
+ pParser = p;
+ eCurExpr = SbOPERAND;
+ pNext = NULL;
+- bError = bByVal = bBased = FALSE;
++ bError = bByVal = bBased = bBracket = FALSE;
+ pExpr = new SbiExprNode( pParser, n, t );
+ pExpr->Optimize();
+ }
+@@ -75,7 +77,7 @@ SbiExpression::SbiExpression( SbiParser*
+ {
+ pParser = p;
+ pNext = NULL;
+- bError = bByVal = bBased = FALSE;
++ bError = bByVal = bBased = bBracket = FALSE;
+ eCurExpr = SbOPERAND;
+ pExpr = new SbiExprNode( pParser, r );
+ }
+@@ -84,7 +86,7 @@ SbiExpression::SbiExpression( SbiParser*
+ {
+ pParser = p;
+ pNext = NULL;
+- bError = bByVal = bBased = FALSE;
++ bError = bByVal = bBased = bBracket = FALSE;
+ eCurExpr = SbOPERAND;
+ pExpr = new SbiExprNode( pParser, r, SbxVARIANT, pPar );
+ }
+@@ -93,7 +95,7 @@ SbiExpression::SbiExpression( SbiParser*
+ {
+ pParser = p;
+ pNext = NULL;
+- bError = bByVal = bBased = FALSE;
++ bError = bByVal = bBased = bBracket = FALSE;
+ eCurExpr = SbOPERAND;
+ pExpr = new SbiExprNode( pParser, NULL, t, NULL );
+ }
+@@ -119,7 +121,7 @@ static BOOL DoParametersFollow( SbiParse
+ // Aber nur, wenn CALL-aehnlich!
+ if( !p->WhiteSpace() || eCurExpr != SbSYMBOL )
+ return FALSE;
+- if ( eTok == NUMBER || eTok == FIXSTRING
++ if ( eTok == NUMBER || eTok == MINUS || eTok == FIXSTRING
+ || eTok == SYMBOL || eTok == COMMA || eTok == DOT )
+ {
+ return TRUE;
+@@ -183,7 +185,7 @@ static SbiSymDef* AddSym
+
+ // Zur Zeit sind sogar Keywords zugelassen (wg. gleichnamiger Dflt-Properties)
+
+-SbiExprNode* SbiExpression::Term()
++SbiExprNode* SbiExpression::Term( void )
+ {
+ if( pParser->Peek() == DOT )
+ {
+@@ -216,6 +218,7 @@ SbiExprNode* SbiExpression::Term()
+ String aSym( pParser->GetSym() );
+ SbxDataType eType = pParser->GetType();
+ SbiParameters* pPar = NULL;
++ SbiExprListVector* pvMoreParLcl = NULL;
+ // Folgen Parameter?
+ SbiToken eNextTok = pParser->Peek();
+ // Ist es ein benannter Parameter?
+@@ -242,10 +245,24 @@ SbiExprNode* SbiExpression::Term()
+
+ if( DoParametersFollow( pParser, eCurExpr, eTok = eNextTok ) )
+ {
+- pPar = new SbiParameters( pParser );
++ bool bStandaloneExpression = (m_eMode == EXPRMODE_STANDALONE);
++ pPar = new SbiParameters( pParser, bStandaloneExpression );
++ bError |= !pPar->IsValid();
++ if( !bError )
++ bBracket = pPar->IsBracket();
++ eTok = pParser->Peek();
++
++ // i75443 check for additional sets of parameters
++ while( eTok == LPAREN )
++ {
++ if( pvMoreParLcl == NULL )
++ pvMoreParLcl = new SbiExprListVector();
++ SbiParameters* pAddPar = new SbiParameters( pParser );
++ pvMoreParLcl->push_back( pAddPar );
+ bError |= !pPar->IsValid();
+ eTok = pParser->Peek();
+ }
++ }
+ // Es koennte ein Objektteil sein, wenn . oder ! folgt
+ // Bei . muss aber die Variable bereits definiert sein; wenn pDef
+ // nach der Suche NULL ist, isses ein Objekt!
+@@ -350,6 +367,7 @@ SbiExprNode* SbiExpression::Term()
+ if( !pPar )
+ pPar = new SbiParameters( pParser,FALSE,FALSE );
+ pNd->aVar.pPar = pPar;
++ pNd->aVar.pvMorePar = pvMoreParLcl;
+ if( bObj )
+ {
+ // AB, 8.1.95: Objekt kann auch vom Typ SbxVARIANT sein
+@@ -486,11 +504,30 @@ SbiExprNode* SbiExpression::Operand()
+ pParser->Next();
+ pRes = new SbiExprNode( pParser, pParser->GetSym() ); break;
+ case LPAREN:
++ nParenLevel++;
+ pParser->Next();
+ pRes = Boolean();
+ if( pParser->Peek() != RPAREN )
++ {
++ // If there was a LPARAM, it does not belong to the expression
++ if( nParenLevel == 1 && m_eMode == EXPRMODE_LPAREN_PENDING )
++ m_eMode = EXPRMODE_LPAREN_NOT_NEEDED;
++ else
+ pParser->Error( SbERR_BAD_BRACKETS );
+- else pParser->Next();
++ }
++ else
++ {
++ pParser->Next();
++ if( nParenLevel == 1 && m_eMode == EXPRMODE_LPAREN_PENDING )
++ {
++ SbiToken eTokAfterRParen = pParser->Peek();
++ if( eTokAfterRParen == EQ || eTokAfterRParen == LPAREN )
++ m_eMode = EXPRMODE_ASSUMING_ARRAY;
++ else
++ m_eMode = EXPRMODE_STANDARD;
++ }
++ }
++ nParenLevel--;
+ pRes->bComposite = TRUE;
+ break;
+ default:
+@@ -619,6 +656,8 @@ SbiExprNode* SbiExpression::Comp()
+ for( ;; )
+ {
+ SbiToken eTok = pParser->Peek();
++ if( m_eMode == EXPRMODE_ASSUMING_ARRAY )
++ break;
+ if( eTok != EQ && eTok != NE && eTok != LT
+ && eTok != GT && eTok != LE && eTok != GE )
+ break;
+@@ -813,18 +852,33 @@ void SbiExprList::addExpression( SbiExpr
+ // Dann handelt es sich um eine Funktion ohne Parameter
+ // respektive um die Angabe eines Arrays als Prozedurparameter.
+
+-SbiParameters::SbiParameters( SbiParser* p, BOOL bConst, BOOL bPar) :
++// #i79918/#i80532: bConst has never been set to true
++// -> reused as bStandaloneExpression
++//SbiParameters::SbiParameters( SbiParser* p, BOOL bConst, BOOL bPar) :
++SbiParameters::SbiParameters( SbiParser* p, BOOL bStandaloneExpression, BOOL bPar) :
+ SbiExprList( p )
+ {
+- if (bPar)
+- {
++ if( !bPar )
++ return;
++
+ SbiExpression *pExpr;
+ SbiToken eTok = pParser->Peek();
+
+ // evtl. Klammer auf weg:
++ bool bAssumeExprLParenMode = false;
++ bool bAssumeArrayMode = false;
+ if( eTok == LPAREN )
+ {
+- bBracket = TRUE; pParser->Next(); eTok = pParser->Peek();
++ if( bStandaloneExpression )
++ {
++ bAssumeExprLParenMode = true;
++ }
++ else
++ {
++ bBracket = TRUE;
++ pParser->Next();
++ eTok = pParser->Peek();
++ }
+ }
+
+ // Ende-Test
+@@ -844,14 +898,38 @@ SbiParameters::SbiParameters( SbiParser*
+ if( eTok == COMMA )
+ {
+ pExpr = new SbiExpression( pParser, 0, SbxEMPTY );
+- if( bConst )
+- pParser->Error( SbERR_SYNTAX ), bError = TRUE;
++ //if( bConst )
++ // pParser->Error( SbERR_SYNTAX ), bError = TRUE;
+ }
+ // Benannte Argumente: entweder .name= oder name:=
+ else
+ {
+- pExpr = bConst ? new SbiConstExpression( pParser )
+- : new SbiExpression( pParser );
++ if( bAssumeExprLParenMode )
++ {
++ pExpr = new SbiExpression( pParser, SbSTDEXPR, EXPRMODE_LPAREN_PENDING );
++ bAssumeExprLParenMode = FALSE;
++
++ SbiExprMode eModeAfter = pExpr->m_eMode;
++ if( eModeAfter == EXPRMODE_LPAREN_NOT_NEEDED )
++ {
++ bBracket = TRUE;
++ }
++ else if( eModeAfter == EXPRMODE_ASSUMING_ARRAY )
++ {
++ // Expression "looks" like an array assignment
++ // a(...)[(...)] = ?, RPAREN is already parsed
++ bBracket = TRUE;
++ bAssumeArrayMode = true;
++ eTok = NIL;
++ }
++ }
++ else
++ pExpr = new SbiExpression( pParser );
++
++ //pExpr = bConst ? new SbiConstExpression( pParser )
++ // : new SbiExpression( pParser );
++ if( !bAssumeArrayMode )
++ {
+ if( pParser->Peek() == ASSIGN )
+ {
+ // VBA mode: name:=
+@@ -860,11 +938,12 @@ SbiParameters::SbiParameters( SbiParser*
+ delete pExpr;
+ pParser->Next();
+ pExpr = new SbiExpression( pParser );
+- if( bConst )
+- pParser->Error( SbERR_SYNTAX ), bError = TRUE;
++ //if( bConst )
++ // pParser->Error( SbERR_SYNTAX ), bError = TRUE;
+ }
+ pExpr->GetName() = aName;
+ }
++ }
+ pExpr->pNext = NULL;
+ if( !pLast )
+ pFirst = pLast = pExpr;
+@@ -872,6 +951,10 @@ SbiParameters::SbiParameters( SbiParser*
+ pLast->pNext = pExpr, pLast = pExpr;
+ nExpr++;
+ bError |= !pExpr->IsValid();
++
++ if( bAssumeArrayMode )
++ break;
++
+ // Naechstes Element?
+ eTok = pParser->Peek();
+ if( eTok != COMMA )
+@@ -904,7 +987,6 @@ SbiParameters::SbiParameters( SbiParser*
+ }
+ nDim = nExpr;
+ }
+-}
+
+ /***************************************************************************
+ |*
+Index: basic/source/comp/parser.cxx
+===================================================================
+RCS file: /cvs/script/basic/source/comp/parser.cxx,v
+retrieving revision 1.22
+retrieving revision 1.22.54.1
+diff -u -p -u -p -b -w -B -r1.22 -r1.22.54.1
+--- basic/source/comp/parser.cxx 6 Sep 2007 13:54:06 -0000 1.22
++++ basic/source/comp/parser.cxx 1 Apr 2008 09:20:30 -0000 1.22.54.1
+@@ -484,9 +484,13 @@ SbiExprNode* SbiParser::GetWithVar()
+
+ void SbiParser::Symbol()
+ {
+- SbiExpression aVar( this, SbSYMBOL );
++ SbiExprMode eMode = bVBASupportOn ? EXPRMODE_STANDALONE : EXPRMODE_STANDARD;
++ SbiExpression aVar( this, SbSYMBOL, eMode );
+
+ bool bEQ = ( Peek() == EQ );
++ if( !bEQ && bVBASupportOn && aVar.IsBracket() )
++ Error( SbERR_EXPECTED, "=" );
++
+ RecursiveMode eRecMode = ( bEQ ? PREVENT_CALL : FORCE_CALL );
+ bool bSpecialMidHandling = false;
+ SbiSymDef* pDef = aVar.GetRealVar();
+Index: basic/source/inc/disas.hxx
+===================================================================
+RCS file: /cvs/script/basic/source/inc/disas.hxx,v
+retrieving revision 1.6
+retrieving revision 1.6.74.1
+diff -u -p -u -p -b -w -B -r1.6 -r1.6.74.1
+--- basic/source/inc/disas.hxx 3 Aug 2007 09:55:30 -0000 1.6
++++ basic/source/inc/disas.hxx 31 Mar 2008 11:50:49 -0000 1.6.74.1
+@@ -48,9 +48,9 @@ class SbiDisas {
+ UINT32 nOff; // aktuelle Position
+ UINT32 nPC; // Position des Opcodes
+ SbiOpcode eOp; // Opcode
+- USHORT nOp1, nOp2; // Operanden
+- short nParts; // 1, 2 oder 3
+- short nLine; // aktuelle Zeile
++ UINT32 nOp1, nOp2; // Operanden
++ UINT32 nParts; // 1, 2 oder 3
++ UINT32 nLine; // aktuelle Zeile
+ BOOL DisasLine( String& );
+ BOOL Fetch(); // naechster Opcode
+ public:
+Index: basic/source/inc/expr.hxx
+===================================================================
+RCS file: /cvs/script/basic/source/inc/expr.hxx,v
+retrieving revision 1.12
+retrieving revision 1.12.6.1
+diff -u -p -u -p -b -w -B -r1.12 -r1.12.6.1
+--- basic/source/inc/expr.hxx 27 Feb 2008 10:33:49 -0000 1.12
++++ basic/source/inc/expr.hxx 31 Mar 2008 11:51:59 -0000 1.12.6.1
+@@ -53,10 +53,15 @@ class SbiCodeGen;
+ class SbiSymDef;
+ class SbiProcDef;
+
++
++#include <vector>
++typedef ::std::vector<SbiExprList*> SbiExprListVector;
++
+ struct SbVar { // Variablen-Element:
+ SbiExprNode* pNext; // Weiteres Element (bei Strukturen)
+ SbiSymDef* pDef; // Symboldefinition
+ SbiExprList* pPar; // optionale Parameter (wird geloescht)
++ SbiExprListVector* pvMorePar; // Array of arrays foo(pPar)(avMorePar[0])(avMorePar[1])...
+ };
+
+ enum SbiExprType { // Expression-Typen:
+@@ -66,6 +71,15 @@ enum SbiExprType { // Expression-Typ
+ SbOPERAND // Variable/Funktion
+ };
+
++enum SbiExprMode { // Expression context:
++ EXPRMODE_STANDARD, // default
++ EXPRMODE_STANDALONE, // a param1, param2 OR a( param1, param2 ) = 42
++ EXPRMODE_LPAREN_PENDING, // start of parameter list with bracket, special handling
++ EXPRMODE_LPAREN_NOT_NEEDED, // pending LPAREN has not been used
++ EXPRMODE_ASSUMING_ARRAY, // '=' or '(' found after ')' on ParenLevel 0, stopping
++ // expression, assuming array syntax a(...)[(...)] = ?
++};
++
+ enum SbiNodeType {
+ SbxNUMVAL, // nVal = Wert
+ SbxSTRVAL, // aStrVal = Wert, before #i59791/#i45570: nStringId = Wert
+@@ -136,6 +150,7 @@ public:
+ short GetDepth(); // Tiefe eines Baumes berechnen
+ const String& GetString() { return aStrVal; }
+ SbiExprList* GetParameters() { return aVar.pPar; }
++ SbiExprListVector* GetMoreParameters() { return aVar.pvMorePar; }
+
+ void Optimize(); // Baumabgleich
+
+@@ -152,9 +167,12 @@ protected:
+ SbiExpression* pNext; // Link bei Parameterlisten
+ SbiExprNode* pExpr; // Der Expression-Baum
+ SbiExprType eCurExpr; // Art des Ausdrucks
++ SbiExprMode m_eMode; // Expression context
+ BOOL bBased; // TRUE: einfacher DIM-Teil (+BASE)
+ BOOL bError; // TRUE: Fehler
+ BOOL bByVal; // TRUE: ByVal-Parameter
++ BOOL bBracket; // TRUE: Parameter list with brackets
++ USHORT nParenLevel;
+ SbiExprNode* Term();
+ SbiExprNode* ObjTerm( SbiSymDef& );
+ SbiExprNode* Operand();
+@@ -169,7 +187,7 @@ protected:
+ SbiExprNode* Comp();
+ SbiExprNode* Boolean();
+ public:
+- SbiExpression( SbiParser*, SbiExprType = SbSTDEXPR ); // Parsender Ctor
++ SbiExpression( SbiParser*, SbiExprType = SbSTDEXPR, SbiExprMode eMode = EXPRMODE_STANDARD ); // Parsender Ctor
+ SbiExpression( SbiParser*, const String& );
+ SbiExpression( SbiParser*, double, SbxDataType = SbxDOUBLE );
+ SbiExpression( SbiParser*, const SbiSymDef&, SbiExprList* = NULL );
+@@ -180,6 +198,7 @@ public:
+ BOOL IsBased() { return bBased; }
+ void SetByVal() { bByVal = TRUE; }
+ BOOL IsByVal() { return bByVal; }
++ BOOL IsBracket() { return bBracket; }
+ BOOL IsValid() { return pExpr->IsValid(); }
+ BOOL IsConstant() { return pExpr->IsConstant(); }
+ BOOL IsVariable() { return pExpr->IsVariable(); }
+Index: basic/source/inc/opcodes.hxx
+===================================================================
+RCS file: /cvs/script/basic/source/inc/opcodes.hxx,v
+retrieving revision 1.12
+retrieving revision 1.12.60.1
+diff -u -p -u -p -b -w -B -r1.12 -r1.12.60.1
+--- basic/source/inc/opcodes.hxx 30 Aug 2007 10:00:44 -0000 1.12
++++ basic/source/inc/opcodes.hxx 4 Apr 2008 10:13:31 -0000 1.12.60.1
+@@ -100,6 +100,7 @@ enum SbiOpcode {
+ _INITFOREACH,
+ _VBASET, // VBA-like Set
+ _ERASE_CLEAR, // Erase array and clear variable
++ _ARRAYACCESS, // Assign parameters to TOS and get value, used for array of arrays
+ SbOP0_END,
+
+ // Alle Opcodes mit einem Operanden
+Index: basic/source/inc/runtime.hxx
+===================================================================
+RCS file: /cvs/script/basic/source/inc/runtime.hxx,v
+retrieving revision 1.35
+retrieving revision 1.35.60.1
+diff -u -p -u -p -b -w -B -r1.35 -r1.35.60.1
+--- basic/source/inc/runtime.hxx 30 Aug 2007 10:01:05 -0000 1.35
++++ basic/source/inc/runtime.hxx 4 Apr 2008 10:13:31 -0000 1.35.60.1
+@@ -451,6 +451,7 @@ class SbiRuntime
+ void StepPRINTF(), StepWRITE(), StepRENAME(), StepPROMPT();
+ void StepRESTART(), StepEMPTY(), StepLEAVE();
+ void StepLSET(), StepRSET(), StepREDIMP_ERASE(), StepERASE_CLEAR();
++ void StepARRAYACCESS();
+ // Alle Opcodes mit einem Operanden
+ void StepLOADNC( UINT32 ), StepLOADSC( UINT32 ), StepLOADI( UINT32 );
+ void StepARGN( UINT32 ), StepBASED( UINT32 ), StepPAD( UINT32 );
+Index: basic/source/runtime/runtime.cxx
+===================================================================
+RCS file: /cvs/script/basic/source/runtime/runtime.cxx,v
+retrieving revision 1.36
+retrieving revision 1.36.60.1
+diff -u -p -u -p -b -w -B -r1.36 -r1.36.60.1
+--- basic/source/runtime/runtime.cxx 30 Aug 2007 10:01:29 -0000 1.36
++++ basic/source/runtime/runtime.cxx 4 Apr 2008 10:28:24 -0000 1.36.60.1
+@@ -154,6 +154,7 @@ SbiRuntime::pStep0 SbiRuntime::aStep0[]
+ &SbiRuntime::StepINITFOREACH,// Init for each loop
+ &SbiRuntime::StepVBASET,// vba-like set statement
+ &SbiRuntime::StepERASE_CLEAR,// vba-like set statement
++ &SbiRuntime::StepARRAYACCESS,// access TOS as array
+ };
+
+ SbiRuntime::pStep1 SbiRuntime::aStep1[] = { // Alle Opcodes mit einem Operanden
+Index: basic/source/runtime/step0.cxx
+===================================================================
+RCS file: /cvs/script/basic/source/runtime/step0.cxx,v
+retrieving revision 1.29
+retrieving revision 1.29.60.1
+diff -u -p -u -p -b -w -B -r1.29 -r1.29.60.1
+--- basic/source/runtime/step0.cxx 30 Aug 2007 10:01:41 -0000 1.29
++++ basic/source/runtime/step0.cxx 4 Apr 2008 10:28:24 -0000 1.29.60.1
+@@ -908,6 +908,16 @@ void SbiRuntime::StepERASE_CLEAR()
+ lcl_clearImpl( refVar, eType );
+ }
+
++void SbiRuntime::StepARRAYACCESS()
++{
++ if( !refArgv )
++ StarBASIC::FatalError( SbERR_INTERNAL_ERROR );
++ SbxVariableRef refVar = PopVar();
++ refVar->SetParameters( refArgv );
++ PopArgv();
++ PushVar( CheckArray( refVar ) );
++}
++
+ // Einrichten eines Argvs
+ // nOp1 bleibt so -> 1. Element ist Returnwert
+
+Index: basic/util/defs/wntmsci12
+===================================================================
+RCS file: basic/util/defs/wntmsci12
+diff -N basic/util/defs/wntmsci12
+--- basic/util/defs/wntmsci12 30 Jan 2008 19:29:08 -0000 1.3
++++ /dev/null 1 Jan 1970 00:00:00 -0000
+@@ -1,6119 +0,0 @@
+-??$?_2V?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXNameAccess@container star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXNameContainer@container star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXStarBasicDialogInfo@script star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXStarBasicDialogInfo@script star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXStarBasicModuleInfo@script star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXStarBasicModuleInfo@script star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXStarBasicDialogInfo@script star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXStarBasicDialogInfo@script star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXStarBasicLibraryInfo@script star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXStarBasicLibraryInfo@script star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXStarBasicModuleInfo@script star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXStarBasicModuleInfo@script star@sun com@@@0123@@Z
+-??$?_3VOUString rtl@@@uno star@sun com@@YAXAAVAny 0123@ABVOUString rtl@@@Z
+-??$cppu_detail_getUnoType VXContainer@container star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXContainer@container star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXContainerListener@container star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXContainerListener@container star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXLibraryContainer@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXLibraryContainer@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXLibraryContainerPassword@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXLibraryContainerPassword@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXNameAccess@container star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXNameAccess@container star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXNameContainer@container star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXNameContainer@container star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXPersistentLibraryContainer@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXPersistentLibraryContainer@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStarBasicAccess@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicAccess@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStarBasicDialogInfo@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicDialogInfo@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStarBasicLibraryInfo@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicLibraryInfo@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStarBasicModuleInfo@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicModuleInfo@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXTypeProvider@lang star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeProvider@lang star@sun com@@@3456@@Z
+-??$getTypeFavourUnsigned C@cppu@@YAABVType uno@star sun@com@@PBC Z
+-??$getTypeFavourUnsigned C@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence C@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXNameAccess container@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXNameAccess@container star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXNameContainer container@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXNameContainer@container star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXPersistentLibraryContainer@script star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXStarBasicDialogInfo script@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicDialogInfo@script star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXStarBasicLibraryInfo script@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicLibraryInfo@script star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXStarBasicModuleInfo script@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicModuleInfo@script star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned VOUString@rtl@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence VOUString@rtl@@@2345@@Z
+-??$getTypeFavourUnsigned VOUString@rtl@@@cppu@@YAABVType uno@star sun@com@@PBVOUString rtl@@@Z
+-??$getTypeFavourUnsigned VType@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV12345@@Z
+-??$getTypeFavourUnsigned VType@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence VType@uno star@sun com@@@2345@@Z
+-??$makeAny V?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@@uno star@sun com@@YA?AVAny 0123@ABV?$Reference VXPersistentLibraryContainer@script star@sun com@@@0123@@Z
+-??0?$Guard VMutex@osl@@@osl@@QAE PAVMutex@1@@Z
+-??0?$Reference VXContainer@container star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@QAE PAVXContainerListener@container 234@@Z
+-??0?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAE PAVXInterface@1234@@Z
+-??0?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QAE PAVXLibraryContainer@script 234@@Z
+-??0?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXLibraryContainerPassword@script star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QAE ABVAny@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@QAE PAVXNameContainer@container 234@@Z
+-??0?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStarBasicAccess@script star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXStarBasicAccess@script star@sun com@@@uno star@sun com@@QAE PAVXStarBasicAccess@script 234@@Z
+-??0?$Reference VXStarBasicDialogInfo@script star@sun com@@@uno star@sun com@@QAE PAVXStarBasicDialogInfo@script 234@@Z
+-??0?$Reference VXStarBasicDialogInfo@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStarBasicLibraryInfo@script star@sun com@@@uno star@sun com@@QAE PAVXStarBasicLibraryInfo@script 234@@Z
+-??0?$Reference VXStarBasicModuleInfo@script star@sun com@@@uno star@sun com@@QAE PAVXStarBasicModuleInfo@script 234@@Z
+-??0?$Reference VXStarBasicModuleInfo@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Sequence C@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Sequence C@uno star@sun com@@QAE J@Z
+-??0?$Sequence VOUString@rtl@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Sequence VOUString@rtl@@@uno star@sun com@@QAE J@Z
+-??0?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@QAE XZ
+-??0Any uno@star sun@com@@QAE ABV01234@@Z
+-??0Any uno@star sun@com@@QAE PBXABVType@1234@@Z
+-??0Any uno@star sun@com@@QAE XZ
+-??0BasErrorLst@@QAE GG@Z
+-??0BasMgrContainerListenerImpl@@QAE PAVBasicManager@@VOUString rtl@@@Z
+-??0BasicError@@QAE ABV0@@Z
+-??0BasicError@@QAE KGABVString@@@Z
+-??0BasicError@@QAE XZ
+-??0BasicErrorManager@@QAE XZ
+-??0BasicLibInfo@@QAE ABVString@@@Z
+-??0BasicLibInfo@@QAE XZ
+-??0BasicLibs@@QAE XZ
+-??0BasicLibsBase@@QAE GG@Z
+-??0BasicManager@@IAE XZ
+-??0BasicManager@@QAE AAVSotStorage@@ABVString@@PAVStarBASIC@@PAV2 E@Z
+-??0BasicManager@@QAE PAVStarBASIC@@PAVString@@E Z
+-??0BasicManagerImpl@@QAE XZ
+-??0DialogContainer_Impl@@QAE PAVStarBASIC@@@Z
+-??0DialogInfo_Impl@@QAE ABVOUString@rtl@@V?$Sequence C@uno star@sun com@@@Z
+-??0Exception uno@star sun@com@@QAE ABV01234@@Z
+-??0Exception uno@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@1234@@Z
+-??0Exception uno@star sun@com@@QAE XZ
+-??0IllegalArgumentException lang@star sun@com@@QAE ABV01234@@Z
+-??0IllegalArgumentException lang@star sun@com@@QAE XZ
+-??0LibraryContainerInfo@@QAE XZ
+-??0LibraryContainer_Impl@@QAE PAVBasicManager@@@Z
+-??0LibraryInfo_Impl@@QAE ABVOUString@rtl@@V?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@1000 Z
+-??0List@@QAE GG@Z
+-??0ModuleContainer_Impl@@QAE PAVStarBASIC@@@Z
+-??0ModuleInfo_Impl@@QAE ABVOUString@rtl@@00 Z
+-??0NoSuchElementException container@star sun@com@@QAE ABV01234@@Z
+-??0NoSuchElementException container@star sun@com@@QAE XZ
+-??0OUString rtl@@AAE PAU_rtl_uString@@PAVDO_NOT_ACQUIRE 01@@Z
+-??0OUString rtl@@QAE ABV01@@Z
+-??0OUString rtl@@QAE PAU_rtl_uString@@W4__sal_NoAcquire@@@Z
+-??0OUString rtl@@QAE XZ
+-??0RuntimeException uno@star sun@com@@QAE ABV01234@@Z
+-??0RuntimeException uno@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@1234@@Z
+-??0SbxBaseRef@@QAE PAVSbxBase@@@Z
+-??0SbxObjectRef@@QAE PAVSbxObject@@@Z
+-??0SotStorageRef@@QAE PAVSotStorage@@@Z
+-??0SotStorageRef@@QAE XZ
+-??0SotStorageStreamRef@@QAE PAVSotStorageStream@@@Z
+-??0StarBASICRef@@QAE ABV0@@Z
+-??0StarBASICRef@@QAE PAVStarBASIC@@@Z
+-??0StarBASICRef@@QAE XZ
+-??0StarBasicAccess_Impl@@QAE PAVBasicManager@@@Z
+-??0Type uno@star sun@com@@QAE ABV01234@@Z
+-??0XContainerListener container@star sun@com@@QAE XZ
+-??0XElementAccess container@star sun@com@@QAE XZ
+-??0XEventListener lang@star sun@com@@QAE XZ
+-??0XInterface uno@star sun@com@@QAE XZ
+-??0XNameAccess container@star sun@com@@QAE XZ
+-??0XNameContainer container@star sun@com@@QAE XZ
+-??0XNameReplace container@star sun@com@@QAE XZ
+-??0XStarBasicAccess script@star sun@com@@QAE XZ
+-??0XStarBasicDialogInfo script@star sun@com@@QAE XZ
+-??0XStarBasicLibraryInfo script@star sun@com@@QAE XZ
+-??0XStarBasicModuleInfo script@star sun@com@@QAE XZ
+-??0XTypeProvider lang@star sun@com@@QAE XZ
+-??1?$Guard VMutex@osl@@@osl@@QAE XZ
+-??1?$Reference VXContainer@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXLibraryContainerPassword@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStarBasicAccess@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStarBasicDialogInfo@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStarBasicLibraryInfo@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStarBasicModuleInfo@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence C@uno star@sun com@@QAE XZ
+-??1?$Sequence VOUString@rtl@@@uno star@sun com@@QAE XZ
+-??1?$Sequence VType@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@UAE XZ
+-??1Any uno@star sun@com@@QAE XZ
+-??1BasErrorLst@@QAE XZ
+-??1BasMgrContainerListenerImpl@@UAE XZ
+-??1BasicError@@QAE XZ
+-??1BasicErrorManager@@QAE XZ
+-??1BasicLibInfo@@QAE XZ
+-??1BasicLibs@@QAE XZ
+-??1BasicLibsBase@@QAE XZ
+-??1BasicManager@@MAE XZ
+-??1BasicManagerImpl@@QAE XZ
+-??1DialogContainer_Impl@@UAE XZ
+-??1DialogInfo_Impl@@UAE XZ
+-??1Exception uno@star sun@com@@QAE XZ
+-??1IllegalArgumentException lang@star sun@com@@QAE XZ
+-??1LibraryContainerInfo@@QAE XZ
+-??1LibraryContainer_Impl@@UAE XZ
+-??1LibraryInfo_Impl@@UAE XZ
+-??1List@@QAE XZ
+-??1ModuleContainer_Impl@@UAE XZ
+-??1ModuleInfo_Impl@@UAE XZ
+-??1NoSuchElementException container@star sun@com@@QAE XZ
+-??1OUString rtl@@QAE XZ
+-??1RuntimeException uno@star sun@com@@QAE XZ
+-??1SbxBaseRef@@QAE XZ
+-??1SbxObjectRef@@QAE XZ
+-??1SotStorageRef@@QAE XZ
+-??1SotStorageStreamRef@@QAE XZ
+-??1StarBASICRef@@QAE XZ
+-??1StarBasicAccess_Impl@@UAE XZ
+-??1Type uno@star sun@com@@QAE XZ
+-??2OWeakObject cppu@@SAPAXI Z
+-??3OWeakObject cppu@@SAXPAX Z
+-??4?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QAAAAV01234 PAVXLibraryContainer@script 234@@Z
+-??4?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@QAAAAV01234 PAVXNameContainer@container 234@@Z
+-??4?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Sequence VOUString@rtl@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4LibraryContainerInfo@@QAEAAU0 ABU0@@Z
+-??4OUString rtl@@QAEAAV01 ABV01@@Z
+-??4SotStorageRef@@QAEAAV0 ABV0@@Z
+-??4SotStorageRef@@QAEAAV0 PAVSotStorage@@@Z
+-??4StarBASICRef@@QAEAAV0 ABV0@@Z
+-??4StarBASICRef@@QAEAAV0 PAVStarBASIC@@@Z
+-??8 YAEABVString@@0 Z
+-??9 YAEABVString@@0 Z
+-??9Type uno@star sun@com@@QBAEABV01234@@Z
+-??A?$Sequence VOUString@rtl@@@uno star@sun com@@QAAAAVOUString rtl@@J Z
+-??BSbxArrayRef@@QBEPAVSbxArray@@XZ
+-??BSbxBaseRef@@QBEPAVSbxBase@@XZ
+-??BSbxObjectRef@@QBEPAVSbxObject@@XZ
+-??BStarBASICRef@@QBEPAVStarBASIC@@XZ
+-??C?$Reference VXContainer@container star@sun com@@@uno star@sun com@@QBAPAVXContainer container@234 XZ
+-??C?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@QBAPAVXLibraryContainer script@234 XZ
+-??C?$Reference VXLibraryContainerPassword@script star@sun com@@@uno star@sun com@@QBAPAVXLibraryContainerPassword script@234 XZ
+-??C?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QBAPAVXNameAccess container@234 XZ
+-??C?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@QBAPAVXNameContainer container@234 XZ
+-??C?$Reference VXStarBasicDialogInfo@script star@sun com@@@uno star@sun com@@QBAPAVXStarBasicDialogInfo script@234 XZ
+-??C?$Reference VXStarBasicModuleInfo@script star@sun com@@@uno star@sun com@@QBAPAVXStarBasicModuleInfo script@234 XZ
+-??CSbxBaseRef@@QBEPAVSbxBase@@XZ
+-??CSbxObjectRef@@QBEPAVSbxObject@@XZ
+-??CSotStorageRef@@QBEPAVSotStorage@@XZ
+-??CSotStorageStreamRef@@QBEPAVSotStorageStream@@XZ
+-??CStarBASICRef@@QBEPAVStarBASIC@@XZ
+-??DSotStorageRef@@QBEAAVSotStorage@@XZ
+-??DSotStorageStreamRef@@QBEAAVSotStorageStream@@XZ
+-??DStarBASICRef@@QBEAAVStarBASIC@@XZ
+-??ISotStorageStreamRef@@QBEPAVSotStorageStream@@XZ
+-??R?$ImplClassData1 VXContainerListener@container star@sun com@@V?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXNameContainer@container star@sun com@@V?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXStarBasicAccess@script star@sun com@@V?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXStarBasicDialogInfo@script star@sun com@@V?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXStarBasicLibraryInfo@script star@sun com@@V?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXStarBasicModuleInfo@script star@sun com@@V?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??RGetGlobalMutex osl@@QAEPAVMutex 1@XZ
+-??_2uno star@sun com@@YAEABVAny 0123@AAVOUString rtl@@@Z
+-??_7BasMgrContainerListenerImpl@@6BOWeakObject cppu@@@
+-??_7BasMgrContainerListenerImpl@@6BXContainerListener container@star sun@com@@@
+-??_7BasMgrContainerListenerImpl@@6BXTypeProvider lang@star sun@com@@@
+-??_7BasicManager@@6B@
+-??_7DialogContainer_Impl@@6BOWeakObject cppu@@@
+-??_7DialogContainer_Impl@@6BXNameContainer container@star sun@com@@@
+-??_7DialogContainer_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7DialogInfo_Impl@@6BOWeakObject cppu@@@
+-??_7DialogInfo_Impl@@6BXStarBasicDialogInfo script@star sun@com@@@
+-??_7DialogInfo_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7LibraryContainer_Impl@@6BOWeakObject cppu@@@
+-??_7LibraryContainer_Impl@@6BXNameContainer container@star sun@com@@@
+-??_7LibraryContainer_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7LibraryInfo_Impl@@6BOWeakObject cppu@@@
+-??_7LibraryInfo_Impl@@6BXStarBasicLibraryInfo script@star sun@com@@@
+-??_7LibraryInfo_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7ModuleContainer_Impl@@6BOWeakObject cppu@@@
+-??_7ModuleContainer_Impl@@6BXNameContainer container@star sun@com@@@
+-??_7ModuleContainer_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7ModuleInfo_Impl@@6BOWeakObject cppu@@@
+-??_7ModuleInfo_Impl@@6BXStarBasicModuleInfo script@star sun@com@@@
+-??_7ModuleInfo_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7StarBasicAccess_Impl@@6BOWeakObject cppu@@@
+-??_7StarBasicAccess_Impl@@6BXStarBasicAccess script@star sun@com@@@
+-??_7StarBasicAccess_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_C _0CA@JIGCNJJM com?4sun?4star?4lang?4XTypeProvider?$AA@
+-??_C _0CC@PJIHHOKO com?4sun?4star?4container?4XContaine@
+-??_C _0CD@PODAOHBM com?4sun?4star?4container?4XNameAcce@
+-??_C _0CF@EPFMBHAF com?4sun?4star?4script?4XStarBasicAc@
+-??_C _0CG@HGBFBAND com?4sun?4star?4container?4XNameCont@
+-??_C _0CG@NLPGOBHE com?4sun?4star?4script?4XLibraryCont@
+-??_C _0CJ@JBAKMIHN com?4sun?4star?4script?4XStarBasicDi@
+-??_C _0CJ@LCBKFCGG com?4sun?4star?4script?4XStarBasicMo@
+-??_C _0CK@CGAOOMNE com?4sun?4star?4container?4XContaine@
+-??_C _0CK@NIOLGCLN com?4sun?4star?4script?4XStarBasicLi@
+-??_C _0CO@PAFFBLBI com?4sun?4star?4script?4XLibraryCont@
+-??_C _0DA@FMKPPBAP com?4sun?4star?4script?4XPersistentL@
+-??_ESotStorage@@$2PPPPPPPM A@AEPAXI Z
+-??_GBasMgrContainerListenerImpl@@UAEPAXI Z
+-??_GBasicError@@QAEPAXI Z
+-??_GBasicErrorManager@@QAEPAXI Z
+-??_GBasicLibInfo@@QAEPAXI Z
+-??_GBasicLibs@@QAEPAXI Z
+-??_GBasicManager@@MAEPAXI Z
+-??_GBasicManagerImpl@@QAEPAXI Z
+-??_GDialogContainer_Impl@@UAEPAXI Z
+-??_GDialogInfo_Impl@@UAEPAXI Z
+-??_GLibraryContainer_Impl@@UAEPAXI Z
+-??_GLibraryInfo_Impl@@UAEPAXI Z
+-??_GModuleContainer_Impl@@UAEPAXI Z
+-??_GModuleInfo_Impl@@UAEPAXI Z
+-??_GSotStorage@@MAEPAXI Z
+-??_GStarBasicAccess_Impl@@UAEPAXI Z
+-??_GStringErrorInfo@@UAEPAXI Z
+-??_GSvMemoryStream@@UAEPAXI Z
+-??_R0?AV?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@@8
+-??_R0?AVBasMgrContainerListenerImpl@@@8
+-??_R0?AVBasicManager@@@8
+-??_R0?AVDialogContainer_Impl@@@8
+-??_R0?AVDialogInfo_Impl@@@8
+-??_R0?AVDynamicErrorInfo@@@8
+-??_R0?AVErrorInfo@@@8
+-??_R0?AVException uno@star sun@com@@@8
+-??_R0?AVIllegalArgumentException lang@star sun@com@@@8
+-??_R0?AVLibraryContainer_Impl@@@8
+-??_R0?AVLibraryInfo_Impl@@@8
+-??_R0?AVModuleContainer_Impl@@@8
+-??_R0?AVModuleInfo_Impl@@@8
+-??_R0?AVNoSuchElementException container@star sun@com@@@8
+-??_R0?AVOWeakObject cppu@@@8
+-??_R0?AVRuntimeException uno@star sun@com@@@8
+-??_R0?AVSfxBroadcaster@@@8
+-??_R0?AVSotObject@@@8
+-??_R0?AVSotStorage@@@8
+-??_R0?AVStarBasicAccess_Impl@@@8
+-??_R0?AVStringErrorInfo@@@8
+-??_R0?AVSvMemoryStream@@@8
+-??_R0?AVSvRefBase@@@8
+-??_R0?AVSvStream@@@8
+-??_R0?AVXContainerListener container@star sun@com@@@8
+-??_R0?AVXElementAccess container@star sun@com@@@8
+-??_R0?AVXEventListener lang@star sun@com@@@8
+-??_R0?AVXInterface uno@star sun@com@@@8
+-??_R0?AVXNameAccess container@star sun@com@@@8
+-??_R0?AVXNameContainer container@star sun@com@@@8
+-??_R0?AVXNameReplace container@star sun@com@@@8
+-??_R0?AVXStarBasicAccess script@star sun@com@@@8
+-??_R0?AVXStarBasicDialogInfo script@star sun@com@@@8
+-??_R0?AVXStarBasicLibraryInfo script@star sun@com@@@8
+-??_R0?AVXStarBasicModuleInfo script@star sun@com@@@8
+-??_R0?AVXTypeProvider lang@star sun@com@@@8
+-??_R0?AVXWeak uno@star sun@com@@@8
+-??_R1A 33FA@SvRefBase@@8
+-??_R1A 37FA@SotObject@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA BasMgrContainerListenerImpl@@8
+-??_R1A ?0A@EA BasicManager@@8
+-??_R1A ?0A@EA DialogContainer_Impl@@8
+-??_R1A ?0A@EA DialogInfo_Impl@@8
+-??_R1A ?0A@EA DynamicErrorInfo@@8
+-??_R1A ?0A@EA ErrorInfo@@8
+-??_R1A ?0A@EA LibraryContainer_Impl@@8
+-??_R1A ?0A@EA LibraryInfo_Impl@@8
+-??_R1A ?0A@EA ModuleContainer_Impl@@8
+-??_R1A ?0A@EA ModuleInfo_Impl@@8
+-??_R1A ?0A@EA OWeakObject@cppu@@8
+-??_R1A ?0A@EA SfxBroadcaster@@8
+-??_R1A ?0A@EA SotObject@@8
+-??_R1A ?0A@EA SotStorage@@8
+-??_R1A ?0A@EA StarBasicAccess_Impl@@8
+-??_R1A ?0A@EA StringErrorInfo@@8
+-??_R1A ?0A@EA SvMemoryStream@@8
+-??_R1A ?0A@EA SvRefBase@@8
+-??_R1A ?0A@EA SvStream@@8
+-??_R1A ?0A@EA XContainerListener@container star@sun com@@8
+-??_R1A ?0A@EA XElementAccess@container star@sun com@@8
+-??_R1A ?0A@EA XEventListener@lang star@sun com@@8
+-??_R1A ?0A@EA XInterface@uno star@sun com@@8
+-??_R1A ?0A@EA XNameAccess@container star@sun com@@8
+-??_R1A ?0A@EA XNameContainer@container star@sun com@@8
+-??_R1A ?0A@EA XNameReplace@container star@sun com@@8
+-??_R1A ?0A@EA XStarBasicAccess@script star@sun com@@8
+-??_R1A ?0A@EA XStarBasicDialogInfo@script star@sun com@@8
+-??_R1A ?0A@EA XStarBasicLibraryInfo@script star@sun com@@8
+-??_R1A ?0A@EA XStarBasicModuleInfo@script star@sun com@@8
+-??_R1A ?0A@EA XTypeProvider@lang star@sun com@@8
+-??_R1A ?0A@EA XWeak@uno star@sun com@@8
+-??_R1A ?0A@EC XInterface@uno star@sun com@@8
+-??_R1BA ?0A@EA XTypeProvider@lang star@sun com@@8
+-??_R1BA ?0A@EC XInterface@uno star@sun com@@8
+-??_R1BE ?0A@EA XContainerListener@container star@sun com@@8
+-??_R1BE ?0A@EA XElementAccess@container star@sun com@@8
+-??_R1BE ?0A@EA XEventListener@lang star@sun com@@8
+-??_R1BE ?0A@EA XNameAccess@container star@sun com@@8
+-??_R1BE ?0A@EA XNameContainer@container star@sun com@@8
+-??_R1BE ?0A@EA XNameReplace@container star@sun com@@8
+-??_R1BE ?0A@EA XStarBasicAccess@script star@sun com@@8
+-??_R1BE ?0A@EA XStarBasicDialogInfo@script star@sun com@@8
+-??_R1BE ?0A@EA XStarBasicLibraryInfo@script star@sun com@@8
+-??_R1BE ?0A@EA XStarBasicModuleInfo@script star@sun com@@8
+-??_R1BE ?0A@EC XInterface@uno star@sun com@@8
+-??_R2?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@8
+-??_R2BasMgrContainerListenerImpl@@8
+-??_R2BasicManager@@8
+-??_R2DialogContainer_Impl@@8
+-??_R2DialogInfo_Impl@@8
+-??_R2DynamicErrorInfo@@8
+-??_R2ErrorInfo@@8
+-??_R2LibraryContainer_Impl@@8
+-??_R2LibraryInfo_Impl@@8
+-??_R2ModuleContainer_Impl@@8
+-??_R2ModuleInfo_Impl@@8
+-??_R2OWeakObject cppu@@8
+-??_R2SfxBroadcaster@@8
+-??_R2SotObject@@8
+-??_R2SotStorage@@8
+-??_R2StarBasicAccess_Impl@@8
+-??_R2StringErrorInfo@@8
+-??_R2SvMemoryStream@@8
+-??_R2SvRefBase@@8
+-??_R2SvStream@@8
+-??_R2XContainerListener container@star sun@com@@8
+-??_R2XElementAccess container@star sun@com@@8
+-??_R2XEventListener lang@star sun@com@@8
+-??_R2XInterface uno@star sun@com@@8
+-??_R2XNameAccess container@star sun@com@@8
+-??_R2XNameContainer container@star sun@com@@8
+-??_R2XNameReplace container@star sun@com@@8
+-??_R2XStarBasicAccess script@star sun@com@@8
+-??_R2XStarBasicDialogInfo script@star sun@com@@8
+-??_R2XStarBasicLibraryInfo script@star sun@com@@8
+-??_R2XStarBasicModuleInfo script@star sun@com@@8
+-??_R2XTypeProvider lang@star sun@com@@8
+-??_R2XWeak uno@star sun@com@@8
+-??_R3?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@8
+-??_R3BasMgrContainerListenerImpl@@8
+-??_R3BasicManager@@8
+-??_R3DialogContainer_Impl@@8
+-??_R3DialogInfo_Impl@@8
+-??_R3DynamicErrorInfo@@8
+-??_R3ErrorInfo@@8
+-??_R3LibraryContainer_Impl@@8
+-??_R3LibraryInfo_Impl@@8
+-??_R3ModuleContainer_Impl@@8
+-??_R3ModuleInfo_Impl@@8
+-??_R3OWeakObject cppu@@8
+-??_R3SfxBroadcaster@@8
+-??_R3SotObject@@8
+-??_R3SotStorage@@8
+-??_R3StarBasicAccess_Impl@@8
+-??_R3StringErrorInfo@@8
+-??_R3SvMemoryStream@@8
+-??_R3SvRefBase@@8
+-??_R3SvStream@@8
+-??_R3XContainerListener container@star sun@com@@8
+-??_R3XElementAccess container@star sun@com@@8
+-??_R3XEventListener lang@star sun@com@@8
+-??_R3XInterface uno@star sun@com@@8
+-??_R3XNameAccess container@star sun@com@@8
+-??_R3XNameContainer container@star sun@com@@8
+-??_R3XNameReplace container@star sun@com@@8
+-??_R3XStarBasicAccess script@star sun@com@@8
+-??_R3XStarBasicDialogInfo script@star sun@com@@8
+-??_R3XStarBasicLibraryInfo script@star sun@com@@8
+-??_R3XStarBasicModuleInfo script@star sun@com@@8
+-??_R3XTypeProvider lang@star sun@com@@8
+-??_R3XWeak uno@star sun@com@@8
+-??_R4BasMgrContainerListenerImpl@@6BOWeakObject cppu@@@
+-??_R4BasMgrContainerListenerImpl@@6BXContainerListener container@star sun@com@@@
+-??_R4BasMgrContainerListenerImpl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4BasicManager@@6B@
+-??_R4DialogContainer_Impl@@6BOWeakObject cppu@@@
+-??_R4DialogContainer_Impl@@6BXNameContainer container@star sun@com@@@
+-??_R4DialogContainer_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4DialogInfo_Impl@@6BOWeakObject cppu@@@
+-??_R4DialogInfo_Impl@@6BXStarBasicDialogInfo script@star sun@com@@@
+-??_R4DialogInfo_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4LibraryContainer_Impl@@6BOWeakObject cppu@@@
+-??_R4LibraryContainer_Impl@@6BXNameContainer container@star sun@com@@@
+-??_R4LibraryContainer_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4LibraryInfo_Impl@@6BOWeakObject cppu@@@
+-??_R4LibraryInfo_Impl@@6BXStarBasicLibraryInfo script@star sun@com@@@
+-??_R4LibraryInfo_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4ModuleContainer_Impl@@6BOWeakObject cppu@@@
+-??_R4ModuleContainer_Impl@@6BXNameContainer container@star sun@com@@@
+-??_R4ModuleContainer_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4ModuleInfo_Impl@@6BOWeakObject cppu@@@
+-??_R4ModuleInfo_Impl@@6BXStarBasicModuleInfo script@star sun@com@@@
+-??_R4ModuleInfo_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4SotStorage@@6BSvRefBase@@@
+-??_R4StarBasicAccess_Impl@@6BOWeakObject cppu@@@
+-??_R4StarBasicAccess_Impl@@6BXStarBasicAccess script@star sun@com@@@
+-??_R4StarBasicAccess_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4StringErrorInfo@@6B@
+-??_R4SvMemoryStream@@6B@
+-??_SSotStorage@@6BSvRefBase@@@
+-??_SStringErrorInfo@@6B@
+-??_SSvMemoryStream@@6B@
+-?AddLib BasicManager@@AAEPAVStarBASIC@@AAVSotStorage@@ABVString@@E Z
+-?CalcRelStorageName BasicLibInfo@@QAEXABVString@@@Z
+-?CheckModules BasicManager@@IBEXPAVStarBASIC@@E Z
+-?Clear SotStorageRef@@QAEXXZ
+-?Clear SotStorageStreamRef@@QAEXXZ
+-?ClearErrors BasicManager@@QAEXXZ
+-?Create BasicLibInfo@@SAPAV1 AAVSotStorageStream@@@Z
+-?CreateLib BasicManager@@AAEPAVStarBASIC@@ABVString@@00 Z
+-?CreateLib BasicManager@@AAEPAVStarBASIC@@ABVString@@@Z
+-?CreateLibForLibContainer BasicManager@@AAEPAVStarBASIC@@ABVString@@ABV?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@@Z
+-?CreateLibInfo BasicManager@@IAEPAVBasicLibInfo@@XZ
+-?CreateType BasicManager@@SAPAXXZ
+-?DoLoad BasicLibInfo@@QAEEXZ
+-?FindLibInfo BasicManager@@IBEPAVBasicLibInfo@@PAVStarBASIC@@@Z
+-?First BasErrorLst@@QAEPAVBasicError@@XZ
+-?First BasicLibsBase@@QAEPAVBasicLibInfo@@XZ
+-?GetDialogLibraryContainer BasicManager@@QBEABV?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@XZ
+-?GetFirstError BasicErrorManager@@QAEPAVBasicError@@XZ
+-?GetFirstError BasicManager@@QAEPAVBasicError@@XZ
+-?GetLib BasicLibInfo@@QBE?AVStarBASICRef@@XZ
+-?GetLib BasicManager@@QBEPAVStarBASIC@@ABVString@@@Z
+-?GetLib BasicManager@@QBEPAVStarBASIC@@G Z
+-?GetLibCount BasicManager@@QBEGXZ
+-?GetLibId BasicManager@@QBEGABVString@@@Z
+-?GetLibName BasicLibInfo@@QBEABVString@@XZ
+-?GetLibName BasicManager@@QAE?AVString@@G Z
+-?GetLibRef BasicLibInfo@@QAEAAVStarBASICRef@@XZ
+-?GetLibraryContainer BasicLibInfo@@QAE?AV?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@XZ
+-?GetModules StarBASIC@@QAEPAVSbxArray@@XZ
+-?GetNextError BasicErrorManager@@QAEPAVBasicError@@XZ
+-?GetNextError BasicManager@@QAEPAVBasicError@@XZ
+-?GetObject BasicLibsBase@@QBEPAVBasicLibInfo@@K Z
+-?GetObjects SbxObject@@QAEPAVSbxArray@@XZ
+-?GetParent SbxVariable@@QAEPAVSbxObject@@XZ
+-?GetPassword BasicLibInfo@@QBEABVString@@XZ
+-?GetPos BasicLibsBase@@QBEKPBVBasicLibInfo@@@Z
+-?GetRelStorageName BasicLibInfo@@QBEABVString@@XZ
+-?GetScriptLibraryContainer BasicManager@@QBEABV?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@XZ
+-?GetStdLib BasicManager@@ABEPAVStarBASIC@@XZ
+-?GetStorageName BasicLibInfo@@QBEABVString@@XZ
+-?GetStorageName BasicManager@@QBE?AVString@@XZ
+-?HasErrors BasicErrorManager@@QAEEXZ
+-?HasErrors BasicManager@@QAEEXZ
+-?HasLib BasicManager@@ABEEABVString@@@Z
+-?HasPassword BasicLibInfo@@QBEEXZ
+-?ImpCreateStdLib BasicManager@@IAEXPAVStarBASIC@@@Z
+-?ImpLoadLibary BasicManager@@IBEEPAVBasicLibInfo@@PAVSotStorage@@E Z
+-?ImpMgrNotLoaded BasicManager@@IAEXABVString@@@Z
+-?ImplEncryptStream BasicManager@@IBEEAAVSvStream@@@Z
+-?ImplLoadBasic BasicManager@@IBEEAAVSvStream@@AAVStarBASICRef@@@Z
+-?Init BasicManager@@AAEXXZ
+-?Insert BasErrorLst@@QAEXPAVBasicError@@K Z
+-?Insert BasicLibsBase@@QAEXPAVBasicLibInfo@@K Z
+-?InsertError BasicErrorManager@@QAEXABVBasicError@@@Z
+-?InsertGlobalUNOConstant BasicManager@@QAEXPBDABVAny uno@star sun@com@@@Z
+-?Is SbxBaseRef@@QBEEXZ
+-?Is SotStorageRef@@QBEEXZ
+-?Is SotStorageStreamRef@@QBEEXZ
+-?Is StarBASICRef@@QBEEXZ
+-?IsA BasicManager@@UBEEP6APAXXZ Z
+-?IsBasicModified BasicManager@@QBEEXZ
+-?IsExtern BasicLibInfo@@QBEEXZ
+-?IsFoundInPath BasicLibInfo@@QBEEXZ
+-?IsModified BasicManager@@QBEEXZ
+-?IsModified SbxBase@@QBEEXZ
+-?IsOf BasicManager@@SAEP6APAXXZ Z
+-?IsReference BasicLibInfo@@QAEAAEXZ
+-?IsReference BasicManager@@AAEEG Z
+-?IsSet SbxBase@@QBEEG Z
+-?Last BasicLibsBase@@QAEPAVBasicLibInfo@@XZ
+-?LegacyDeleteBasicManager BasicManager@@SAXAAPAV1@@Z
+-?LegacyPsswdBinaryLimitExceeded BasicManager@@QAE_NAAV?$Sequence VOUString@rtl@@@uno star@sun com@@@Z
+-?LoadBasicManager BasicManager@@IAEXAAVSotStorage@@ABVString@@E Z
+-?LoadLib BasicManager@@QAEEG Z
+-?LoadOldBasicManager BasicManager@@IAEXAAVSotStorage@@@Z
+-?Next BasErrorLst@@QAEPAVBasicError@@XZ
+-?Next BasicLibsBase@@QAEPAVBasicLibInfo@@XZ
+-?Prev BasicLibsBase@@QAEPAVBasicLibInfo@@XZ
+-?QueryDelete SotObject@@$R4CI 7PPPPPPPM@CA AEXXZ
+-?Remove BasicLibsBase@@QAEPAVBasicLibInfo@@PAV2@@Z
+-?RemoveLib BasicManager@@AAEEG Z
+-?RemoveLib BasicManager@@QAEEGE Z
+-?Reset BasicErrorManager@@QAEXXZ
+-?ResetFlag SbxBase@@QAEXG Z
+-?SetFlag SbxBase@@QAEXG Z
+-?SetFlagToAllLibs BasicManager@@IBEXFE Z
+-?SetFoundInPath BasicLibInfo@@QAEXE Z
+-?SetLib BasicLibInfo@@QAEXPAVStarBASIC@@@Z
+-?SetLibName BasicLibInfo@@QAEXABVString@@@Z
+-?SetLibName BasicManager@@AAEEGABVString@@@Z
+-?SetLibraryContainer BasicLibInfo@@QAEXABV?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@@Z
+-?SetLibraryContainerInfo BasicManager@@QAEXABULibraryContainerInfo@@@Z
+-?SetPassword BasicLibInfo@@QAEXABVString@@@Z
+-?SetPasswordVerified BasicLibInfo@@QAEXXZ
+-?SetRelStorageName BasicLibInfo@@QAEXABVString@@@Z
+-?SetStorageName BasicLibInfo@@QAEXABVString@@@Z
+-?StaticType BasicManager@@SAP6APAXXZXZ
+-?Store BasicLibInfo@@QAEXAAVSotStorageStream@@ABVString@@E Z
+-?Type BasicManager@@UBEP6APAXXZXZ
+-?acquire ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire Mutex@osl@@QAEEXZ
+-?addDialog StarBasicAccess_Impl@@UAAXABVOUString rtl@@0ABV?$Sequence C@uno star@sun com@@@Z
+-?addLibraryModulesImpl BasMgrContainerListenerImpl@@SAXPAVBasicManager@@V?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@VOUString rtl@@@Z
+-?addModule StarBasicAccess_Impl@@UAAXABVOUString rtl@@000 Z
+-?castFromXInterface ?$Reference@VXContainer container@star sun@com@@@uno star@sun com@@CAPAVXContainer container@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXLibraryContainer script@star sun@com@@@uno star@sun com@@CAPAVXLibraryContainer script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXLibraryContainerPassword script@star sun@com@@@uno star@sun com@@CAPAVXLibraryContainerPassword script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXNameAccess container@star sun@com@@@uno star@sun com@@CAPAVXNameAccess container@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXNameContainer container@star sun@com@@@uno star@sun com@@CAPAVXNameContainer container@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@CAPAVXPersistentLibraryContainer script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStarBasicDialogInfo script@star sun@com@@@uno star@sun com@@CAPAVXStarBasicDialogInfo script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStarBasicModuleInfo script@star sun@com@@@uno star@sun com@@CAPAVXStarBasicModuleInfo script@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXContainerListener container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXContainerListener container@345@@Z
+-?castToXInterface ?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?castToXInterface ?$Reference@VXLibraryContainer script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXLibraryContainer script@345@@Z
+-?castToXInterface ?$Reference@VXNameContainer container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXNameContainer container@345@@Z
+-?castToXInterface ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXPersistentLibraryContainer script@345@@Z
+-?castToXInterface ?$Reference@VXStarBasicAccess script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStarBasicAccess script@345@@Z
+-?castToXInterface ?$Reference@VXStarBasicDialogInfo script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStarBasicDialogInfo script@345@@Z
+-?castToXInterface ?$Reference@VXStarBasicLibraryInfo script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStarBasicLibraryInfo script@345@@Z
+-?castToXInterface ?$Reference@VXStarBasicModuleInfo script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStarBasicModuleInfo script@345@@Z
+-?copyToLibraryContainer@@YAXPAVStarBASIC@@ABULibraryContainerInfo@@@Z
+-?cpp_acquire uno@star sun@com@@YAXPAX Z
+-?cpp_queryInterface uno@star sun@com@@YAPAXPAXPAU_typelib_TypeDescriptionReference@@@Z
+-?cpp_release uno@star sun@com@@YAXPAX Z
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVXContainer@1234@@Z
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVXContainerListener@1234@@Z
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVXNameAccess@1234@@Z
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVXNameContainer@1234@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBC Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBV34567@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBVOUString rtl@@@Z
+-?cppu_detail_getUnoType lang@star sun@com@@YAABVType uno@234 PBVXTypeProvider@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXLibraryContainer@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXLibraryContainerPassword@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXPersistentLibraryContainer@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXStarBasicAccess@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXStarBasicDialogInfo@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXStarBasicLibraryInfo@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXStarBasicModuleInfo@1234@@Z
+-?createFromAscii OUString@rtl@@SA?AV12 PBD@Z
+-?createLibrary StarBasicAccess_Impl@@UAAXABVOUString rtl@@000 Z
+-?disposing BasMgrContainerListenerImpl@@UAAXABUEventObject lang@star sun@com@@@Z
+-?eStorageReadMode@@3GA
+-?eStreamReadMode@@3GA
+-?elementInserted BasMgrContainerListenerImpl@@UAAXABUContainerEvent container@star sun@com@@@Z
+-?elementRemoved BasMgrContainerListenerImpl@@UAAXABUContainerEvent container@star sun@com@@@Z
+-?elementReplaced BasMgrContainerListenerImpl@@UAAXABUContainerEvent container@star sun@com@@@Z
+-?equalsAscii OUString@rtl@@QBEEPBD Z
+-?get ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@QBAPAVXPersistentLibraryContainer script@345 XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXContainerListener@container star@sun com@@V?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXNameContainer@container star@sun com@@V?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXStarBasicAccess@script star@sun com@@V?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXStarBasicDialogInfo@script star@sun com@@V?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXStarBasicLibraryInfo@script star@sun com@@V?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXStarBasicModuleInfo@script star@sun com@@V?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$UnoType@C cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXContainer@container star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXLibraryContainerPassword@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStarBasicAccess@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStarBasicDialogInfo@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStarBasicLibraryInfo@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStarBasicModuleInfo@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXTypeProvider@lang star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VOUString rtl@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VType uno@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXContainer container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXContainerListener container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXLibraryContainer script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXLibraryContainerPassword script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXNameAccess container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXNameContainer container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXPersistentLibraryContainer script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStarBasicAccess script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStarBasicDialogInfo script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStarBasicModuleInfo script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXTypeProvider lang@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get BaseReference@uno star@sun com@@QBAPAVXInterface 2345@XZ
+-?getArray ?$Sequence@C uno@star sun@com@@QAAPACXZ
+-?getArray ?$Sequence@VOUString rtl@@@uno star@sun com@@QAAPAVOUString rtl@@XZ
+-?getByName DialogContainer_Impl@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getByName LibraryContainer_Impl@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getByName ModuleContainer_Impl@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getConstArray ?$Sequence@VOUString rtl@@@uno star@sun com@@QBAPBVOUString rtl@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXContainer@container star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXContainerListener@container star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXLibraryContainer@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXLibraryContainerPassword@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXNameAccess@container star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXNameContainer@container star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicAccess@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicDialogInfo@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicLibraryInfo@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStarBasicModuleInfo@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeProvider@lang star@sun com@@@2345@@Z
+-?getData DialogInfo_Impl@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getDialogContainer LibraryInfo_Impl@@UAA?AV?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@XZ
+-?getElementNames DialogContainer_Impl@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getElementNames LibraryContainer_Impl@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getElementNames ModuleContainer_Impl@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getElementType DialogContainer_Impl@@UAA?AVType uno@star sun@com@@XZ
+-?getElementType LibraryContainer_Impl@@UAA?AVType uno@star sun@com@@XZ
+-?getElementType ModuleContainer_Impl@@UAA?AVType uno@star sun@com@@XZ
+-?getExternalSourceURL LibraryInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getGlobalMutex Mutex@osl@@SAPAV12 XZ
+-?getImplementationId ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getLanguage ModuleInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getLength ?$Sequence@C uno@star sun@com@@QBAJXZ
+-?getLength ?$Sequence@VOUString rtl@@@uno star@sun com@@QBAJXZ
+-?getLength OUString@rtl@@QBEJXZ
+-?getLibraryContainer StarBasicAccess_Impl@@UAA?AV?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@XZ
+-?getLinkTargetURL LibraryInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getModuleContainer LibraryInfo_Impl@@UAA?AV?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@XZ
+-?getName DialogInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getName LibraryInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getName ModuleInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getPassword LibraryInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getSource ModuleInfo_Impl@@UAA?AVOUString rtl@@XZ
+-?getStarBasicAccess@@YA?AV?$Reference VXStarBasicAccess@script star@sun com@@@uno star@sun com@@PAVBasicManager@@@Z
+-?getTypeFromTypeClass detail@cppu@@YAABVType uno@star sun@com@@W4_typelib_TypeClass@@@Z
+-?getTypeFromTypeDescriptionReference detail@cppu@@YAABVType uno@star sun@com@@PBQAU_typelib_TypeDescriptionReference@@@Z
+-?getTypeLibType Type@uno star@sun com@@QBAPAU_typelib_TypeDescriptionReference@@XZ
+-?getTypes ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getValueType Any@uno star@sun com@@QBAABVType 2345@XZ
+-?hasByName DialogContainer_Impl@@UAAEABVOUString rtl@@@Z
+-?hasByName LibraryContainer_Impl@@UAAEABVOUString rtl@@@Z
+-?hasByName ModuleContainer_Impl@@UAAEABVOUString rtl@@@Z
+-?hasElements DialogContainer_Impl@@UAAEXZ
+-?hasElements LibraryContainer_Impl@@UAAEXZ
+-?hasElements ModuleContainer_Impl@@UAAEXZ
+-?hasValue Any@uno star@sun com@@QBAEXZ
+-?implCreateDialog@@YAPAVSbxObject@@V?$Sequence C@uno star@sun com@@@Z
+-?implGetDialogData@@YA?AV?$Sequence C@uno star@sun com@@PAVSbxObject@@@Z
+-?insertByName DialogContainer_Impl@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?insertByName LibraryContainer_Impl@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?insertByName ModuleContainer_Impl@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?insertLibraryImpl BasMgrContainerListenerImpl@@SAXABV?$Reference VXLibraryContainer@script star@sun com@@@uno star@sun com@@PAVBasicManager@@VAny 3456@VOUString rtl@@@Z
+-?iquery ?$Reference@VXContainer container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXLibraryContainer script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery BaseReference@uno star@sun com@@KAPAVXInterface 2345@PAV62345 ABVType@2345@@Z
+-?iquery_throw ?$Reference@VXLibraryContainerPassword script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXNameAccess container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw BaseReference@uno star@sun com@@KAPAVXInterface 2345@PAV62345 ABVType@2345@@Z
+-?is BaseReference@uno star@sun com@@QBAEXZ
+-?queryInterface ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?realloc ?$Sequence@VOUString rtl@@@uno star@sun com@@QAAXJ Z
+-?release ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXContainerListener container@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXNameContainer container@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicAccess script@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicDialogInfo script@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicLibraryInfo script@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXStarBasicModuleInfo script@star sun@com@@@cppu@@WBE AAXXZ
+-?release Mutex@osl@@QAEEXZ
+-?removeByName DialogContainer_Impl@@UAAXABVOUString rtl@@@Z
+-?removeByName LibraryContainer_Impl@@UAAXABVOUString rtl@@@Z
+-?removeByName ModuleContainer_Impl@@UAAXABVOUString rtl@@@Z
+-?replaceByName DialogContainer_Impl@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?replaceByName LibraryContainer_Impl@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?replaceByName ModuleContainer_Impl@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?s_cd ?1???R?$ImplClassData1@VXContainerListener container@star sun@com@@V?$WeakImplHelper1 VXContainerListener@container star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXNameContainer container@star sun@com@@V?$WeakImplHelper1 VXNameContainer@container star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXStarBasicAccess script@star sun@com@@V?$WeakImplHelper1 VXStarBasicAccess@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXStarBasicDialogInfo script@star sun@com@@V?$WeakImplHelper1 VXStarBasicDialogInfo@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXStarBasicLibraryInfo script@star sun@com@@V?$WeakImplHelper1 VXStarBasicLibraryInfo@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXStarBasicModuleInfo script@star sun@com@@V?$WeakImplHelper1 VXStarBasicModuleInfo@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_pType ?$Sequence@C uno@star sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@VOUString rtl@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@VType uno@star sun@com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?set ?$Reference@VXLibraryContainer script@star sun@com@@@uno star@sun com@@QAAEPAVXLibraryContainer script@345@@Z
+-?set ?$Reference@VXNameContainer container@star sun@com@@@uno star@sun com@@QAAEPAVXNameContainer container@345@@Z
+-?set ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@QAAEPAVXPersistentLibraryContainer script@345@@Z
+-?static_type XContainer@container star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XContainerListener@container star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XLibraryContainer@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XLibraryContainerPassword@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XNameAccess@container star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XNameContainer@container star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStarBasicAccess@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStarBasicDialogInfo@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStarBasicLibraryInfo@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStarBasicModuleInfo@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XTypeProvider@lang star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVXContainer@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVXContainerListener@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVXNameAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVXNameContainer@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@lang star@sun com@@YAABVType uno@345 PBVXTypeProvider@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXLibraryContainer@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXLibraryContainerPassword@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXPersistentLibraryContainer@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXStarBasicAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXStarBasicDialogInfo@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXStarBasicLibraryInfo@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXStarBasicModuleInfo@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-_TI2?AVIllegalArgumentException lang@star sun@com@@
+-_TI2?AVNoSuchElementException container@star sun@com@@
+-_TI2?AVRuntimeException uno@star sun@com@@
+-??$?0U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@?$allocator U?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE ABV?$allocator@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@1@@Z
+-??$_Construct PAVBasicManagerCreationListener@basic@@PAV12@@_STL@@YAXPAPAVBasicManagerCreationListener basic@@ABQAV12@@Z
+-??$_Construct U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U12@@_STL@@YAXPAU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@0 ABU10@@Z
+-??$_Destroy PAPAVBasicManagerCreationListener@basic@@@_STL@@YAXPAPAVBasicManagerCreationListener basic@@0 Z
+-??$_Destroy PAVBasicManagerCreationListener@basic@@@_STL@@YAXPAPAVBasicManagerCreationListener basic@@@Z
+-??$_Destroy U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@YAXPAU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@0@@Z
+-??$__copy_ptrs PAPAVBasicManagerCreationListener@basic@@PAPAV12@@_STL@@YAPAPAVBasicManagerCreationListener basic@@PAPAV12 00ABU__true_type@0@@Z
+-??$__default_constructed PAVBasicManager@@@_STL@@YAPAVBasicManager@@PAPAV1@@Z
+-??$__default_constructed_aux PAVBasicManager@@@_STL@@YAPAVBasicManager@@PAPAV1 ABU__false_type@0@@Z
+-??$__destroy PAPAVBasicManagerCreationListener@basic@@PAV12@@_STL@@YAXPAPAVBasicManagerCreationListener basic@@00 Z
+-??$__destroy_aux PAPAVBasicManagerCreationListener@basic@@@_STL@@YAXPAPAVBasicManagerCreationListener basic@@0ABU__true_type 0@@Z
+-??$__find PAPAVBasicManagerCreationListener@basic@@PAV12@@_STL@@YAPAPAVBasicManagerCreationListener basic@@PAPAV12 0ABQAV12@ABUrandom_access_iterator_tag 0@@Z
+-??$cppu_detail_getUnoType VXComponent@lang star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXComponent@lang star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXDocumentInfoSupplier@document star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXDocumentInfoSupplier@document star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXEmbeddedScripts@document star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXEmbeddedScripts@document star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInterface@uno star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInterface@uno star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXModel@frame star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXModel@frame star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXPropertySet@beans star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertySet@beans star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStorageBasedDocument@document star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStorageBasedDocument@document star@sun com@@@3456@@Z
+-??$fill_n PAPAVBasicManagerCreationListener@basic@@IPAV12@@_STL@@YAPAPAVBasicManagerCreationListener basic@@PAPAV12 IABQAV12@@Z
+-??$find PAPAVBasicManagerCreationListener@basic@@PAV12@@_STL@@YAPAPAVBasicManagerCreationListener basic@@PAPAV12 0ABQAV12@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInterface@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXModel frame@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXModel@frame star@sun com@@@2345@@Z
+-??$makeAny V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@uno star@sun com@@YA?AVAny 0123@ABV?$Reference VXInterface@uno star@sun com@@@0123@@Z
+-??$makeAny V?$Reference@VXModel frame@star sun@com@@@uno star@sun com@@@uno star@sun com@@YA?AVAny 0123@ABV?$Reference VXModel@frame star@sun com@@@0123@@Z
+-??$max I@_STL@@YAABIABI0 Z
+-??0?$Guard VMutex@osl@@@osl@@QAE AAVMutex@1@@Z
+-??0?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXDocumentInfoSupplier@document star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXEmbeddedScripts@document star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QAE PAVXModel@frame 234@@Z
+-??0?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@QAE PAVXPersistentLibraryContainer@script 234@@Z
+-??0?$Reference VXPropertySet@beans star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStorageBasedDocument@document star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$_Rb_tree V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAE ABU?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@ABV?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@1@@Z
+-??0?$_Rb_tree_base U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QAE ABV?$allocator@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@1@@Z
+-??0?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QAE ABU01@@Z
+-??0?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QAE PAU?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@1@@Z
+-??0?$_STLP_alloc_proxy PAPAVBasicManagerCreationListener@basic@@PAV12 V?$allocator@PAVBasicManagerCreationListener basic@@@_STL@@@_STL@@QAE ABV?$allocator@PAVBasicManagerCreationListener basic@@@1 PAPAVBasicManagerCreationListener@basic@@@Z
+-??0?$_STLP_alloc_proxy PAU?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@U12 V?$allocator@U?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@2@@_STL@@QAE ABV?$allocator@U?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@1 PAU?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@1@@Z
+-??0?$_Vector_base PAVBasicManagerCreationListener@basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAE ABV?$allocator@PAVBasicManagerCreationListener basic@@@1@@Z
+-??0?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@QAE ABV01@@Z
+-??0?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@QAE XZ
+-??0?$allocator U?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE ABV01@@Z
+-??0?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@QAE XZ
+-??0?$map V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE XZ
+-??0?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@QAE ABU01@@Z
+-??0?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@QAE ABV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@ABQAVBasicManager@@@Z
+-??0?$pair U?$_Rb_tree_iterator@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@_N _STL@@QAE ABU?$_Rb_tree_iterator@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@1 AB_N@Z
+-??0?$vector PAVBasicManagerCreationListener@basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAE ABV?$allocator@PAVBasicManagerCreationListener basic@@@1@@Z
+-??0ImplRepository basic@@AAE XZ
+-??0LibraryContainerInfo@@QAE V?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@0PAVOldBasicPassword@@@Z
+-??0Mutex osl@@QAE XZ
+-??0OUString rtl@@QAE PBDJGK@Z
+-??1?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXDocumentInfo@document star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXDocumentInfoSupplier@document star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXEmbeddedScripts@document star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXPropertySet@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStorageBasedDocument@document star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStorageBasedLibraryContainer@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$_Rb_tree V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAE XZ
+-??1?$_Rb_tree_base U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QAE XZ
+-??1?$_STLP_alloc_proxy PAPAVBasicManagerCreationListener@basic@@PAV12 V?$allocator@PAVBasicManagerCreationListener basic@@@_STL@@@_STL@@QAE XZ
+-??1?$_STLP_alloc_proxy PAU?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@U12 V?$allocator@U?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@2@@_STL@@QAE XZ
+-??1?$_Vector_base PAVBasicManagerCreationListener@basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAE XZ
+-??1?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@QAE XZ
+-??1?$allocator U?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE XZ
+-??1?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@QAE XZ
+-??1?$map V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE XZ
+-??1?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@QAE XZ
+-??1?$vector PAVBasicManagerCreationListener@basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAE XZ
+-??1ImplRepository basic@@UAE XZ
+-??1Mutex osl@@QAE XZ
+-??2 YAPAXIPAX@Z
+-??2WeakComponentImplHelperBase cppu@@SAPAXI Z
+-??3 YAXPAX0@Z
+-??3WeakComponentImplHelperBase cppu@@SAXPAX Z
+-??8_Rb_tree_base_iterator _STL@@QBE_NABU01@@Z
+-??9_Rb_tree_base_iterator _STL@@QBE_NABU01@@Z
+-??A?$map V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAEAAPAVBasicManager@@ABV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@Z
+-??C?$Reference VXDocumentInfoSupplier@document star@sun com@@@uno star@sun com@@QBAPAVXDocumentInfoSupplier document@234 XZ
+-??C?$Reference VXEmbeddedScripts@document star@sun com@@@uno star@sun com@@QBAPAVXEmbeddedScripts document@234 XZ
+-??C?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QBAPAVXModel frame@234 XZ
+-??C?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@QBAPAVXMultiServiceFactory lang@234 XZ
+-??C?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@QBAPAVXPersistentLibraryContainer script@234 XZ
+-??C?$Reference VXPropertySet@beans star@sun com@@@uno star@sun com@@QBAPAVXPropertySet beans@234 XZ
+-??C?$Reference VXStorageBasedDocument@document star@sun com@@@uno star@sun com@@QBAPAVXStorageBasedDocument document@234 XZ
+-??C?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QBEPAU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@1 XZ
+-??D?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QBEAAU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@1 XZ
+-??E?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QAEAAU01 XZ
+-??F?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@QAEAAU01 XZ
+-??R?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@QBE_NABV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@0 Z
+-??R?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@QBEABV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@ABU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@1@@Z
+-??RCreateImplRepository basic@@QAEPAVImplRepository 1@XZ
+-??_7ImplRepository basic@@6BOEventListenerAdapter utl@@@
+-??_7ImplRepository basic@@6BSfxListener@@@
+-??_B?1???RCreateImplRepository basic@@QAEPAVImplRepository 1@XZ 51
+-??_C _0BK@FHOIMODN com?4sun?4star?4frame?4XModel?$AA@
+-??_C _0BN@DBFOLCOP com?4sun?4star?4lang?4XComponent?$AA@
+-??_C _0CA@MIBACMNI com?4sun?4star?4beans?4XPropertySet?$AA@
+-??_C _0CH@FNAFICC com?4sun?4star?4document?4XEmbeddedS@
+-??_C _0CM@JJKIKDBC com?4sun?4star?4document?4XDocumentI@
+-??_C _0CM@ODPANLJO com?4sun?4star?4document?4XStorageBa@
+-??_EImplRepository basic@@W7AEPAXI Z
+-??_G?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@QAEPAXI Z
+-??_GImplRepository basic@@UAEPAXI Z
+-??_R0?AVImplRepository basic@@@8
+-??_R0?AVOEventListenerAdapter utl@@@8
+-??_R0?AVOldBasicPassword@@@8
+-??_R0?AVSfxHint@@@8
+-??_R0?AVSfxListener@@@8
+-??_R0?AVSfxSimpleHint@@@8
+-??_R0?AVXPersistentLibraryContainer script@star sun@com@@@8
+-??_R17?0A EA@SfxListener@@8
+-??_R1A ?0A@EA ImplRepository@basic@@8
+-??_R1A ?0A@EA OEventListenerAdapter@utl@@8
+-??_R1A ?0A@EA SfxListener@@8
+-??_R2ImplRepository basic@@8
+-??_R2OEventListenerAdapter utl@@8
+-??_R2SfxListener@@8
+-??_R3ImplRepository basic@@8
+-??_R3OEventListenerAdapter utl@@8
+-??_R3SfxListener@@8
+-??_R4ImplRepository basic@@6BOEventListenerAdapter utl@@@
+-??_R4ImplRepository basic@@6BSfxListener@@@
+-?GetErrorId BasicError@@QBEKXZ
+-?Instance ImplRepository@basic@@SAAAV12 XZ
+-?Notify ImplRepository@basic@@EAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?SetStorageName BasicManager@@QAEXABVString@@@Z
+-?_M_clear ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@IAEXXZ
+-?_M_create_node ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@IAEPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 ABU?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@2@@Z
+-?_M_empty_initialize ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@AAEXXZ
+-?_M_erase ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@AAEXPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@Z
+-?_M_insert ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@AAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 PAU_Rb_tree_node_base@2 0ABU?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@2 0@Z
+-?_M_insert_overflow ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@IAEXPAPAVBasicManagerCreationListener basic@@ABQAV34 ABU__true_type@2 I_N@Z
+-?_M_leftmost ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@IBEAAPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 XZ
+-?_M_lower_bound ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@ABEPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 ABV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@Z
+-?_M_rightmost ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@IBEAAPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 XZ
+-?_M_root ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@IBEAAPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 XZ
+-?_M_set ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@IAEXPAPAVBasicManagerCreationListener basic@@00 Z
+-?_S_color ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAAA_NPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@Z
+-?_S_key ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAABV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@Z
+-?_S_key ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAABV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAU_Rb_tree_node_base 2@@Z
+-?_S_left ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAAAPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 PAU32@@Z
+-?_S_parent ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAAAPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 PAU32@@Z
+-?_S_right ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAAAPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 PAU32@@Z
+-?_S_right ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAAAPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 PAU_Rb_tree_node_base@2@@Z
+-?_S_value ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@KAAAU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@2 PAU?$_Rb_tree_node@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@Z
+-?__copy_trivial _STL@@YAPAXPBX0PAX Z
+-?_disposing ImplRepository@basic@@EAEXABUEventObject lang@star sun@com@@@Z
+-?allocate ?$allocator@PAVBasicManagerCreationListener basic@@@_STL@@QBEPAPAVBasicManagerCreationListener basic@@IPBX Z
+-?allocate ?$allocator@U?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 IPBX@Z
+-?begin ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 XZ
+-?begin ?$map@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 XZ
+-?begin ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAEPAPAVBasicManagerCreationListener basic@@XZ
+-?castFromXInterface ?$Reference@VXDocumentInfoSupplier document@star sun@com@@@uno star@sun com@@CAPAVXDocumentInfoSupplier document@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXEmbeddedScripts document@star sun@com@@@uno star@sun com@@CAPAVXEmbeddedScripts document@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?castFromXInterface ?$Reference@VXModel frame@star sun@com@@@uno star@sun com@@CAPAVXModel frame@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXMultiServiceFactory lang@star sun@com@@@uno star@sun com@@CAPAVXMultiServiceFactory lang@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXPropertySet beans@star sun@com@@@uno star@sun com@@CAPAVXPropertySet beans@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@CAPAVXStorage embed@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStorageBasedDocument document@star sun@com@@@uno star@sun com@@CAPAVXStorageBasedDocument document@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXModel frame@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXModel frame@345@@Z
+-?castToXInterface ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStorage embed@345@@Z
+-?clear ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@QAAXXZ
+-?clear ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@QAAXXZ
+-?clear ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAEXXZ
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBVXPropertySet@1234@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBVXInterface 4567@@Z
+-?cppu_detail_getUnoType document@star sun@com@@YAABVType uno@234 PBVXDocumentInfoSupplier@1234@@Z
+-?cppu_detail_getUnoType document@star sun@com@@YAABVType uno@234 PBVXEmbeddedScripts@1234@@Z
+-?cppu_detail_getUnoType document@star sun@com@@YAABVType uno@234 PBVXStorageBasedDocument@1234@@Z
+-?cppu_detail_getUnoType frame@star sun@com@@YAABVType uno@234 PBVXModel@1234@@Z
+-?cppu_detail_getUnoType lang@star sun@com@@YAABVType uno@234 PBVXComponent@1234@@Z
+-?deallocate ?$allocator@PAVBasicManagerCreationListener basic@@@_STL@@QBEXPAPAVBasicManagerCreationListener basic@@I Z
+-?deallocate ?$allocator@U?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2 I@Z
+-?deleteBasicManager BasicManagerCleaner@basic@@SAXAAPAVBasicManager@@@Z
+-?end ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 XZ
+-?end ?$map@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 XZ
+-?end ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAEPAPAVBasicManagerCreationListener basic@@XZ
+-?erase ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAEXU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2@@Z
+-?erase ?$map@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAEXU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2@@Z
+-?erase ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAEPAPAVBasicManagerCreationListener basic@@PAPAV34@@Z
+-?get ?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@QBAPAVXInterface 2345@XZ
+-?get ?$UnoType@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXDocumentInfoSupplier@document star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXEmbeddedScripts@document star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXPropertySet@beans star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStorageBasedDocument@document star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXComponent lang@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXDocumentInfoSupplier document@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXEmbeddedScripts document@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInterface uno@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXModel frame@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXPropertySet beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStorageBasedDocument document@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getApplicationBasicManager BasicManagerRepository@basic@@SAPAVBasicManager@@_N Z
+-?getApplicationBasicManager ImplRepository@basic@@QAEPAVBasicManager@@_N Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXComponent@lang star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXDocumentInfoSupplier@document star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXEmbeddedScripts@document star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInterface@uno star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXPersistentLibraryContainer@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertySet@beans star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStorageBasedDocument@document star@sun com@@@2345@@Z
+-?getDocumentBasicManager BasicManagerRepository@basic@@SAPAVBasicManager@@ABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@Z
+-?getDocumentBasicManager ImplRepository@basic@@QAEPAVBasicManager@@ABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@Z
+-?impl_createApplicationBasicManager ImplRepository@basic@@AAEPAVBasicManager@@XZ
+-?impl_createManagerForModel ImplRepository@basic@@AAEPAVBasicManager@@ABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@Z
+-?impl_getDefaultAppBasicLibrary ImplRepository@basic@@AAEPAVStarBASIC@@XZ
+-?impl_getDocumentLibraryContainers_nothrow ImplRepository@basic@@AAE_NABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@AAV?$Reference VXPersistentLibraryContainer@script star@sun com@@@4567 1@Z
+-?impl_getDocumentStorage_nothrow ImplRepository@basic@@AAE_NABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@AAV?$Reference VXStorage@embed star@sun com@@@4567@@Z
+-?impl_getDocumentTitle_nothrow ImplRepository@basic@@AAE?AVOUString rtl@@ABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@Z
+-?impl_getLocationForModel ImplRepository@basic@@AAEAAPAVBasicManager@@ABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@Z
+-?impl_initDocLibraryContainers_nothrow ImplRepository@basic@@AAEXAAV?$Reference VXPersistentLibraryContainer@script star@sun com@@@uno star@sun com@@0 Z
+-?impl_notifyCreationListeners ImplRepository@basic@@AAEXABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@AAVBasicManager@@@Z
+-?impl_removeFromRepository ImplRepository@basic@@AAEXU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@@Z
+-?insert ?$map@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 U32@ABU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@2@@Z
+-?insert_unique ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 U32@ABU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@2@@Z
+-?insert_unique ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAE?AU?$pair U?$_Rb_tree_iterator@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@_STL@@_N 2@ABU?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@2@@Z
+-?iquery ?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXDocumentInfoSupplier document@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXEmbeddedScripts document@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXPropertySet beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXStorageBasedDocument document@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?key_comp ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QBE?AU?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@XZ
+-?key_comp ?$map@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QBE?AU?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@XZ
+-?lower_bound ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 ABV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@Z
+-?lower_bound ?$map@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@U?$OInterfaceCompare VXInterface@uno star@sun com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Rb_tree_iterator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@2@@2 ABV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@Z
+-?pRepository ?1???RCreateImplRepository@basic@@QAEPAVImplRepository 2@XZ 4PAV32@A
+-?push_back ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QAEXABQAVBasicManagerCreationListener basic@@@Z
+-?registerCreationListener BasicManagerRepository@basic@@SAXAAVBasicManagerCreationListener 2@@Z
+-?registerCreationListener ImplRepository@basic@@QAEXAAVBasicManagerCreationListener 2@@Z
+-?resetApplicationBasicManager BasicManagerRepository@basic@@SAXXZ
+-?revokeCreationListener BasicManagerRepository@basic@@SAXAAVBasicManagerCreationListener 2@@Z
+-?revokeCreationListener ImplRepository@basic@@QAEXAAVBasicManagerCreationListener 2@@Z
+-?set ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@QAAEPAVXPersistentLibraryContainer script@345 W4__sal_NoAcquire@@@Z
+-?set ?$Reference@VXPersistentLibraryContainer script@star sun@com@@@uno star@sun com@@QAAXABVBaseReference 2345@W4UnoReference_QueryThrow 2345@@Z
+-?set ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@QAAEABV12345@@Z
+-?set ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@QAAEPAVXStorage embed@345@@Z
+-?setApplicationBasicManager ImplRepository@basic@@QAEXPAVBasicManager@@@Z
+-?setBasicManager SfxLibraryContainer@basic@@QAEXPAVBasicManager@@@Z
+-?size ?$_Rb_tree@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@U?$pair $$CBV?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@PAVBasicManager@@@_STL@@U?$_Select1st U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7 U?$OInterfaceCompare@VXInterface uno@star sun@com@@@comphelper@@V?$allocator U?$pair@$$CBV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@PAVBasicManager@@@_STL@@@7@@_STL@@QBEIXZ
+-?size ?$vector@PAVBasicManagerCreationListener basic@@V?$allocator PAVBasicManagerCreationListener@basic@@@_STL@@@_STL@@QBEIXZ
+-?static_type XComponent@lang star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XDocumentInfoSupplier@document star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XEmbeddedScripts@document star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XInterface@uno star@sun com@@SAABVType 2345@PAX Z
+-?static_type XPersistentLibraryContainer@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XPropertySet@beans star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStorageBasedDocument@document star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBVXPropertySet@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@document star@sun com@@YAABVType uno@345 PBVXDocumentInfoSupplier@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@document star@sun com@@YAABVType uno@345 PBVXEmbeddedScripts@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@document star@sun com@@YAABVType uno@345 PBVXStorageBasedDocument@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@frame star@sun com@@YAABVType uno@345 PBVXModel@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@lang star@sun com@@YAABVType uno@345 PBVXComponent@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-??0BasicCollection@@QAE ABVString@@@Z
+-??0BasicStringList_Impl@@QAE AAVResId@@G Z
+-??0OGuard vos@@QAE AAVIMutex@1@@Z
+-??0ResId@@QAE GAAVResMgr@@@Z
+-??0SbClassData@@QAE XZ
+-??0SbClassFactory@@QAE XZ
+-??0SbClassModuleObject@@QAE PAVSbModule@@@Z
+-??0SbIfaceMapperMethod@@QAE ABVString@@PAVSbMethod@@@Z
+-??0SbMethodRef@@QAE PAVSbMethod@@@Z
+-??0SbModuleRef@@QAE PAVSbModule@@@Z
+-??0SbOLEFactory@@QAE XZ
+-??0SbProcedureProperty@@QAE ABVString@@W4SbxDataType@@@Z
+-??0SbTextPortions@@QAE GE@Z
+-??0SbTypeFactory@@QAE XZ
+-??0SbUnoFactory@@QAE XZ
+-??0SbxArrayRef@@QAE ABV0@@Z
+-??0SbxArrayRef@@QAE PAVSbxArray@@@Z
+-??0SbxArrayRef@@QAE XZ
+-??0SbxFactory@@QAE E@Z
+-??0SbxInfoRef@@QAE PAVSbxInfo@@@Z
+-??0SbxObjectRef@@QAE XZ
+-??0SbxProperty@@QAE ABV0@@Z
+-??0SbxProperty@@QAE ABVString@@W4SbxDataType@@@Z
+-??0SbxValues@@QAE XZ
+-??0SbxVariableRef@@QAE PAVSbxVariable@@@Z
+-??0StarBASIC@@QAE PAV0@E Z
+-??1BasicCollection@@EAE XZ
+-??1BasicStringList_Impl@@QAE XZ
+-??1OGuard vos@@UAE XZ
+-??1SbClassFactory@@UAE XZ
+-??1SbClassModuleObject@@UAE XZ
+-??1SbMethodRef@@QAE XZ
+-??1SbModuleRef@@QAE XZ
+-??1SbxArrayRef@@QAE XZ
+-??1SbxInfoRef@@QAE XZ
+-??1SbxProperty@@UAE XZ
+-??1SbxVariableRef@@QAE XZ
+-??1StarBASIC@@MAE XZ
+-??2StarBASIC@@SAPAXI Z
+-??3StarBASIC@@SAXPAX Z
+-??4SbxArrayRef@@QAEAAV0 ABV0@@Z
+-??4SbxArrayRef@@QAEAAV0 PAVSbxArray@@@Z
+-??4SbxInfoRef@@QAEAAV0 ABV0@@Z
+-??4SbxInfoRef@@QAEAAV0 PAVSbxInfo@@@Z
+-??4SbxObjectRef@@QAEAAV0 ABV0@@Z
+-??4SbxObjectRef@@QAEAAV0 PAVSbxObject@@@Z
+-??BSbMethodRef@@QBEPAVSbMethod@@XZ
+-??BSbxInfoRef@@QBEPAVSbxInfo@@XZ
+-??BSbxVariableRef@@QBEPAVSbxVariable@@XZ
+-??CSbxArrayRef@@QBEPAVSbxArray@@XZ
+-??CSbxInfoRef@@QBEPAVSbxInfo@@XZ
+-??CSbxVariableRef@@QBEPAVSbxVariable@@XZ
+-??_7BasicCollection@@6B@
+-??_7BasicCollection@@6BSbxBase@@@
+-??_7BasicCollection@@6BSvRefBase@@@
+-??_7OGuard vos@@6B@
+-??_7SbClassFactory@@6B@
+-??_7SbClassModuleObject@@6B@
+-??_7SbClassModuleObject@@6BSbxBase@@@
+-??_7SbClassModuleObject@@6BSvRefBase@@@
+-??_7SbIfaceMapperMethod@@6BSbxBase@@@
+-??_7SbIfaceMapperMethod@@6BSvRefBase@@@
+-??_7SbOLEFactory@@6B@
+-??_7SbProcedureProperty@@6BSbxBase@@@
+-??_7SbProcedureProperty@@6BSvRefBase@@@
+-??_7SbTypeFactory@@6B@
+-??_7SbUnoFactory@@6B@
+-??_7SbxFactory@@6B@
+-??_7SbxProperty@@6BSbxBase@@@
+-??_7SbxProperty@@6BSvRefBase@@@
+-??_7StarBASIC@@6B@
+-??_7StarBASIC@@6BSbxBase@@@
+-??_7StarBASIC@@6BSvRefBase@@@
+-??_8BasicCollection@@7B@
+-??_8SbClassModuleObject@@7B@
+-??_8SbIfaceMapperMethod@@7B@
+-??_8SbProcedureProperty@@7B@
+-??_8SbxProperty@@7B@
+-??_8StarBASIC@@7B@
+-??_DBasicCollection@@AAEXXZ
+-??_DSbClassModuleObject@@QAEXXZ
+-??_DSbIfaceMapperMethod@@QAEXXZ
+-??_DSbProcedureProperty@@AAEXXZ
+-??_DSbxProperty@@QAEXXZ
+-??_DStarBASIC@@IAEXXZ
+-??_EBasicCollection@@GFA AEPAXI@Z
+-??_EBasicCollection@@GIA AEPAXI@Z
+-??_ESbClassModuleObject@@WFA AEPAXI@Z
+-??_ESbClassModuleObject@@WKA AEPAXI@Z
+-??_EStarBASIC@@OFA AEPAXI@Z
+-??_EStarBASIC@@OKI AEPAXI@Z
+-??_GBasicCollection@@EAEPAXI Z
+-??_GOGuard vos@@UAEPAXI Z
+-??_GSbClassFactory@@UAEPAXI Z
+-??_GSbClassModuleObject@@UAEPAXI Z
+-??_GSbIfaceMapperMethod@@UAEPAXI Z
+-??_GSbProcedureProperty@@EAEPAXI Z
+-??_GSbxProperty@@UAEPAXI Z
+-??_GStarBASIC@@MAEPAXI Z
+-??_R0?AVBasicCollection@@@8
+-??_R0?AVOGuard vos@@@8
+-??_R0?AVSbClassFactory@@@8
+-??_R0?AVSbClassModuleObject@@@8
+-??_R0?AVSbIfaceMapperMethod@@@8
+-??_R0?AVSbMethod@@@8
+-??_R0?AVSbModule@@@8
+-??_R0?AVSbOLEFactory@@@8
+-??_R0?AVSbProcedureProperty@@@8
+-??_R0?AVSbTypeFactory@@@8
+-??_R0?AVSbUnoFactory@@@8
+-??_R0?AVSbxBase@@@8
+-??_R0?AVSbxFactory@@@8
+-??_R0?AVSbxMethod@@@8
+-??_R0?AVSbxObject@@@8
+-??_R0?AVSbxProperty@@@8
+-??_R0?AVSbxValue@@@8
+-??_R0?AVSbxVariable@@@8
+-??_R0?AVStarBASIC@@@8
+-??_R1A ?0A@EA BasicCollection@@8
+-??_R1A ?0A@EA OGuard@vos@@8
+-??_R1A ?0A@EA SbClassFactory@@8
+-??_R1A ?0A@EA SbClassModuleObject@@8
+-??_R1A ?0A@EA SbIfaceMapperMethod@@8
+-??_R1A ?0A@EA SbMethod@@8
+-??_R1A ?0A@EA SbModule@@8
+-??_R1A ?0A@EA SbOLEFactory@@8
+-??_R1A ?0A@EA SbProcedureProperty@@8
+-??_R1A ?0A@EA SbTypeFactory@@8
+-??_R1A ?0A@EA SbUnoFactory@@8
+-??_R1A ?0A@EA SbxBase@@8
+-??_R1A ?0A@EA SbxFactory@@8
+-??_R1A ?0A@EA SbxMethod@@8
+-??_R1A ?0A@EA SbxObject@@8
+-??_R1A ?0A@EA SbxProperty@@8
+-??_R1A ?0A@EA SbxValue@@8
+-??_R1A ?0A@EA SbxVariable@@8
+-??_R1A ?0A@EA StarBASIC@@8
+-??_R1FA ?0A@EA SfxListener@@8
+-??_R2BasicCollection@@8
+-??_R2OGuard vos@@8
+-??_R2SbClassFactory@@8
+-??_R2SbClassModuleObject@@8
+-??_R2SbIfaceMapperMethod@@8
+-??_R2SbMethod@@8
+-??_R2SbModule@@8
+-??_R2SbOLEFactory@@8
+-??_R2SbProcedureProperty@@8
+-??_R2SbTypeFactory@@8
+-??_R2SbUnoFactory@@8
+-??_R2SbxBase@@8
+-??_R2SbxFactory@@8
+-??_R2SbxMethod@@8
+-??_R2SbxObject@@8
+-??_R2SbxProperty@@8
+-??_R2SbxValue@@8
+-??_R2SbxVariable@@8
+-??_R2StarBASIC@@8
+-??_R3BasicCollection@@8
+-??_R3OGuard vos@@8
+-??_R3SbClassFactory@@8
+-??_R3SbClassModuleObject@@8
+-??_R3SbIfaceMapperMethod@@8
+-??_R3SbMethod@@8
+-??_R3SbModule@@8
+-??_R3SbOLEFactory@@8
+-??_R3SbProcedureProperty@@8
+-??_R3SbTypeFactory@@8
+-??_R3SbUnoFactory@@8
+-??_R3SbxBase@@8
+-??_R3SbxFactory@@8
+-??_R3SbxMethod@@8
+-??_R3SbxObject@@8
+-??_R3SbxProperty@@8
+-??_R3SbxValue@@8
+-??_R3SbxVariable@@8
+-??_R3StarBASIC@@8
+-??_R4BasicCollection@@6B@
+-??_R4BasicCollection@@6BSbxBase@@@
+-??_R4BasicCollection@@6BSvRefBase@@@
+-??_R4OGuard vos@@6B@
+-??_R4SbClassFactory@@6B@
+-??_R4SbClassModuleObject@@6B@
+-??_R4SbClassModuleObject@@6BSbxBase@@@
+-??_R4SbClassModuleObject@@6BSvRefBase@@@
+-??_R4SbIfaceMapperMethod@@6BSbxBase@@@
+-??_R4SbIfaceMapperMethod@@6BSvRefBase@@@
+-??_R4SbOLEFactory@@6B@
+-??_R4SbProcedureProperty@@6BSbxBase@@@
+-??_R4SbProcedureProperty@@6BSvRefBase@@@
+-??_R4SbTypeFactory@@6B@
+-??_R4SbUnoFactory@@6B@
+-??_R4SbxFactory@@6B@
+-??_R4SbxProperty@@6BSbxBase@@@
+-??_R4SbxProperty@@6BSvRefBase@@@
+-??_R4StarBASIC@@6B@
+-??_R4StarBASIC@@6BSbxBase@@@
+-??_R4StarBASIC@@6BSvRefBase@@@
+-?ActivateObject StarBASIC@@QAEXPBVString@@E Z
+-?AddClassModule SbClassFactory@@QAEXPAVSbModule@@@Z
+-?BreakHdl StarBASIC@@MAEGXZ
+-?BreakPoint StarBASIC@@AAEGGGG Z
+-?CError StarBASIC@@IAEEKABVString@@GGG Z
+-?Call StarBASIC@@UAEEABVString@@PAVSbxArray@@@Z
+-?Clear BasicCollection@@UAEXXZ
+-?Clear StarBASIC@@UAEXXZ
+-?ClearGlobalVars StarBASIC@@QAEXXZ
+-?CollAdd BasicCollection@@AAEXPAVSbxArray@@@Z
+-?CollItem BasicCollection@@AAEXPAVSbxArray@@@Z
+-?CollRemove BasicCollection@@AAEXPAVSbxArray@@@Z
+-?Compile StarBASIC@@QAEEPAVSbModule@@@Z
+-?Create SbClassFactory@@UAEPAVSbxBase@@GK Z
+-?Create SbOLEFactory@@UAEPAVSbxBase@@GK Z
+-?Create SbTypeFactory@@UAEPAVSbxBase@@GK Z
+-?CreateObject SbClassFactory@@UAEPAVSbxObject@@ABVString@@@Z
+-?CreateObject SbOLEFactory@@UAEPAVSbxObject@@ABVString@@@Z
+-?CreateObject SbTypeFactory@@UAEPAVSbxObject@@ABVString@@@Z
+-?CreateType BasicCollection@@SAPAXXZ
+-?CreateType SbClassModuleObject@@SAPAXXZ
+-?CreateType StarBASIC@@SAPAXXZ
+-?DeInitAllModules StarBASIC@@QAEXXZ
+-?Disassemble StarBASIC@@QAEEPAVSbModule@@AAVString@@@Z
+-?Error StarBASIC@@SAXK Z
+-?Error StarBASIC@@SAXKABVString@@@Z
+-?ErrorHdl StarBASIC@@MAEEXZ
+-?FatalError StarBASIC@@SAXK Z
+-?Find BasicCollection@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?Find SbClassModuleObject@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?Find StarBASIC@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?FindClass SbClassFactory@@QAEPAVSbModule@@ABVString@@@Z
+-?FindModule StarBASIC@@QAEPAVSbModule@@ABVString@@@Z
+-?FindSBXInCurrentScope StarBASIC@@SAPAVSbxBase@@ABVString@@@Z
+-?FindVarInCurrentScopy StarBASIC@@SAPAVSbxVariable@@ABVString@@AAG Z
+-?GetActiveMethod StarBASIC@@SAPAVSbMethod@@G Z
+-?GetActiveModule StarBASIC@@SAPAVSbModule@@XZ
+-?GetAll SbxObject@@UAEEW4SbxClassType@@@Z
+-?GetCol1 StarBASIC@@SAGXZ
+-?GetCol2 StarBASIC@@SAGXZ
+-?GetCreator SbMethod@@UBEKXZ
+-?GetCreator SbModule@@UBEKXZ
+-?GetCreator SbxObject@@UBEKXZ
+-?GetCreator SbxProperty@@UBEKXZ
+-?GetCreator StarBASIC@@UBEKXZ
+-?GetErl StarBASIC@@SAGXZ
+-?GetErrBasic StarBASIC@@SAKXZ
+-?GetErrorCode StarBASIC@@SAKXZ
+-?GetErrorMsg StarBASIC@@SA?AVString@@XZ
+-?GetErrorText StarBASIC@@SAABVString@@XZ
+-?GetFlags SbxBase@@QBEGXZ
+-?GetGlobalBreakHdl StarBASIC@@SA?AVLink@@XZ
+-?GetGlobalErrorHdl StarBASIC@@SA?AVLink@@XZ
+-?GetGlobalLanguageMode StarBASIC@@SA?AW4SbLanguageMode@@XZ
+-?GetHashCode SbxVariable@@QBEGXZ
+-?GetLanguageMode StarBASIC@@QAE?AW4SbLanguageMode@@XZ
+-?GetLine StarBASIC@@SAGXZ
+-?GetMethods SbxObject@@QAEPAVSbxArray@@XZ
+-?GetParameters SbxVariable@@QBEPAVSbxArray@@XZ
+-?GetProperties SbxObject@@QAEPAVSbxArray@@XZ
+-?GetResMgr ResId@@QBEPAVResMgr@@XZ
+-?GetSbxId SbMethod@@UBEGXZ
+-?GetSbxId SbModule@@UBEGXZ
+-?GetSbxId SbxObject@@UBEGXZ
+-?GetSbxId SbxProperty@@UBEGXZ
+-?GetSbxId StarBASIC@@UBEGXZ
+-?GetSfxFromVBError StarBASIC@@SAKG Z
+-?GetString BasicStringList_Impl@@QAE?AVString@@XZ
+-?GetVBErrorCode StarBASIC@@SAGK Z
+-?GetVar SbxHint@@QBEPAVSbxVariable@@XZ
+-?GetVersion SbMethod@@UBEGXZ
+-?GetVersion SbModule@@UBEGXZ
+-?GetVersion SbxObject@@UBEGXZ
+-?GetVersion SbxProperty@@UBEGXZ
+-?GetVersion StarBASIC@@UBEGXZ
+-?ImplInit ResId@@AAEXKAAVResMgr@@PAURSHEADER_TYPE@@@Z
+-?InitAllModules StarBASIC@@QAEXPAV1@@Z
+-?Initialize BasicCollection@@AAEXXZ
+-?Insert SbTextPortions@@QAEXABUSbTextPortion@@G Z
+-?Insert SbTextPortions@@QAEXPBUSbTextPortion@@GG Z
+-?Insert StarBASIC@@UAEXPAVSbxVariable@@@Z
+-?Is SbxArrayRef@@QBEEXZ
+-?Is SbxInfoRef@@QBEEXZ
+-?IsA BasicCollection@@UBEEP6APAXXZ Z
+-?IsA BasicCollection@@WFA BEEP6APAXXZ@Z
+-?IsA SbClassModuleObject@@UBEEP6APAXXZ Z
+-?IsA SbClassModuleObject@@WFA BEEP6APAXXZ@Z
+-?IsA StarBASIC@@UBEEP6APAXXZ Z
+-?IsA StarBASIC@@WFA BEEP6APAXXZ@Z
+-?IsCompilerError StarBASIC@@SAEXZ
+-?IsErr SbxValue@@QBEEXZ
+-?IsErrorTextAvailable BasicStringList_Impl@@QAEEXZ
+-?IsOf BasicCollection@@SAEP6APAXXZ Z
+-?IsOf SbClassModuleObject@@SAEP6APAXXZ Z
+-?IsOf StarBASIC@@SAEP6APAXXZ Z
+-?IsReset SbxBase@@QBEEG Z
+-?IsRunning StarBASIC@@SAEXZ
+-?IsVisible SbxBase@@QBEEXZ
+-?LoadData StarBASIC@@EAEEAAVSvStream@@G Z
+-?LoadOldModules StarBASIC@@QAEEAAVSvStream@@@Z
+-?MakeErrorText StarBASIC@@SAXKABVString@@@Z
+-?MakeModule32 StarBASIC@@QAEPAVSbModule@@ABVString@@ABVOUString rtl@@@Z
+-?MakeModule StarBASIC@@QAEPAVSbModule@@ABVString@@0 Z
+-?Notify BasicCollection@@EAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?Notify SbClassModuleObject@@UAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?RTError StarBASIC@@AAEEKABVString@@GGG Z
+-?RTError StarBASIC@@AAEEKGGG Z
+-?Remove SbTextPortions@@QAEXGG Z
+-?Remove StarBASIC@@UAEXPAVSbxVariable@@@Z
+-?RemoveClassModule SbClassFactory@@QAEXPAVSbModule@@@Z
+-?Replace SbTextPortions@@QAEXABUSbTextPortion@@G Z
+-?Replace SbTextPortions@@QAEXPBUSbTextPortion@@GG Z
+-?SetClassName SbxObject@@QAEXABVString@@@Z
+-?SetErrorData StarBASIC@@SAXKGGG Z
+-?SetFlags SbxBase@@QAEXG Z
+-?SetGlobalBreakHdl StarBASIC@@SAXABVLink@@@Z
+-?SetGlobalErrorHdl StarBASIC@@SAXABVLink@@@Z
+-?SetGlobalLanguageMode StarBASIC@@SAXW4SbLanguageMode@@@Z
+-?SetModified StarBASIC@@UAEXE Z
+-?SetRT ResId@@QBEABV1 K@Z
+-?StaticSuppressSfxResource StarBASIC@@SAXE Z
+-?StaticType BasicCollection@@SAP6APAXXZXZ
+-?StaticType SbClassModuleObject@@SAP6APAXXZXZ
+-?StaticType StarBASIC@@SAP6APAXXZXZ
+-?StepPoint StarBASIC@@AAEGGGG Z
+-?Stop StarBASIC@@SAXXZ
+-?StoreData StarBASIC@@EBEEAAVSvStream@@@Z
+-?Type BasicCollection@@UBEP6APAXXZXZ
+-?Type BasicCollection@@WFA BEP6APAXXZXZ
+-?Type SbClassModuleObject@@UBEP6APAXXZXZ
+-?Type SbClassModuleObject@@WFA BEP6APAXXZXZ
+-?Type StarBASIC@@UBEP6APAXXZXZ
+-?Type StarBASIC@@WFA BEP6APAXXZXZ
+-?_ForEach SbTextPortions@@QAEXGGP6AEABUSbTextPortion@@PAX Z1@Z
+-?_resize SbTextPortions@@IAEXI Z
+-?clear SbClassData@@QAEXXZ
+-?cloneTypeObjectImpl SbTypeFactory@@AAEPAVSbxObject@@ABV2@@Z
+-?createUserTypeImpl@@YAPAVSbxObject@@ABVString@@@Z
+-?getImplMethod SbIfaceMapperMethod@@QAEPAVSbMethod@@XZ
+-?getUnoListeners StarBASIC@@QAE?AVSbxArrayRef@@XZ
+-?implGetIndex BasicCollection@@AAEJPAVSbxVariable@@@Z
+-?implGetIndexForName BasicCollection@@AAEJABVString@@@Z
+-?isSet SbProcedureProperty@@QAE_NXZ
+-?runsInSetup@@YAEXZ
+-?setSet SbProcedureProperty@@QAEX_N Z
+-?triggerInitializeEvent SbClassModuleObject@@QAEXXZ
+-?triggerTerminateEvent SbClassModuleObject@@QAEXXZ
+-?xAddInfo BasicCollection@@0VSbxInfoRef@@A
+-?xItemInfo BasicCollection@@0VSbxInfoRef@@A
+-??$static_int_cast GH@sal@@YAGH Z
+-??0HighlightPortions@@QAE GE@Z
+-??0Pair@@QAE JJ@Z
+-??0Range@@QAE JJ@Z
+-??0SbJScriptMethod@@QAE ABVString@@W4SbxDataType@@PAVSbModule@@@Z
+-??0SbJScriptModule@@QAE ABVString@@@Z
+-??0SbMethod@@AAE ABV0@@Z
+-??0SbMethod@@AAE ABVString@@W4SbxDataType@@PAVSbModule@@@Z
+-??0SbModule@@QAE ABVString@@@Z
+-??0SbProperty@@AAE ABVString@@W4SbxDataType@@PAVSbModule@@@Z
+-??0SbxHint@@QAE KPAVSbxVariable@@@Z
+-??0SbxMethod@@QAE ABV0@@Z
+-??0SbxMethod@@QAE ABVString@@W4SbxDataType@@@Z
+-??0SimpleTokenizer_Impl@@QAE XZ
+-??0SyntaxHighlighter@@QAE XZ
+-??1SbClassData@@QAE XZ
+-??1SbErrorStack@@QAE XZ
+-??1SbIfaceMapperMethod@@UAE XZ
+-??1SbJScriptMethod@@UAE XZ
+-??1SbJScriptModule@@UAE XZ
+-??1SbMethod@@EAE XZ
+-??1SbModule@@MAE XZ
+-??1SbProcedureProperty@@EAE XZ
+-??1SbProperty@@EAE XZ
+-??1SbxHint@@UAE XZ
+-??1SbxMethod@@UAE XZ
+-??1SimpleTokenizer_Impl@@QAE XZ
+-??1SyntaxHighlighter@@QAE XZ
+-??_7SbJScriptMethod@@6BSbxBase@@@
+-??_7SbJScriptMethod@@6BSvRefBase@@@
+-??_7SbJScriptModule@@6B@
+-??_7SbJScriptModule@@6BSbxBase@@@
+-??_7SbJScriptModule@@6BSvRefBase@@@
+-??_7SbMethod@@6BSbxBase@@@
+-??_7SbMethod@@6BSvRefBase@@@
+-??_7SbModule@@6B@
+-??_7SbModule@@6BSbxBase@@@
+-??_7SbModule@@6BSvRefBase@@@
+-??_7SbProperty@@6BSbxBase@@@
+-??_7SbProperty@@6BSvRefBase@@@
+-??_7SbxHint@@6B@
+-??_7SbxMethod@@6BSbxBase@@@
+-??_7SbxMethod@@6BSvRefBase@@@
+-??_8SbJScriptMethod@@7B@
+-??_8SbJScriptModule@@7B@
+-??_8SbMethod@@7B@
+-??_8SbModule@@7B@
+-??_8SbProperty@@7B@
+-??_8SbxMethod@@7B@
+-??_DSbJScriptMethod@@QAEXXZ
+-??_DSbJScriptModule@@QAEXXZ
+-??_DSbMethod@@AAEXXZ
+-??_DSbModule@@IAEXXZ
+-??_DSbProperty@@AAEXXZ
+-??_DSbxMethod@@QAEXXZ
+-??_ESbJScriptModule@@WFA AEPAXI@Z
+-??_ESbJScriptModule@@WJA AEPAXI@Z
+-??_ESbModule@@OFA AEPAXI@Z
+-??_ESbModule@@OJA AEPAXI@Z
+-??_GSbClassData@@QAEPAXI Z
+-??_GSbErrorStack@@QAEPAXI Z
+-??_GSbJScriptMethod@@UAEPAXI Z
+-??_GSbJScriptModule@@UAEPAXI Z
+-??_GSbMethod@@EAEPAXI Z
+-??_GSbModule@@MAEPAXI Z
+-??_GSbProperty@@EAEPAXI Z
+-??_GSbxHint@@UAEPAXI Z
+-??_GSbxMethod@@UAEPAXI Z
+-??_GSimpleTokenizer_Impl@@QAEPAXI Z
+-??_R0?AVSbJScriptMethod@@@8
+-??_R0?AVSbJScriptModule@@@8
+-??_R0?AVSbProperty@@@8
+-??_R0?AVSbxHint@@@8
+-??_R1A ?0A@EA SbJScriptMethod@@8
+-??_R1A ?0A@EA SbJScriptModule@@8
+-??_R1A ?0A@EA SbProperty@@8
+-??_R1A ?0A@EA SbxHint@@8
+-??_R1A ?0A@EA SfxHint@@8
+-??_R1A ?0A@EA SfxSimpleHint@@8
+-??_R2SbJScriptMethod@@8
+-??_R2SbJScriptModule@@8
+-??_R2SbProperty@@8
+-??_R2SbxHint@@8
+-??_R2SfxHint@@8
+-??_R2SfxSimpleHint@@8
+-??_R3SbJScriptMethod@@8
+-??_R3SbJScriptModule@@8
+-??_R3SbProperty@@8
+-??_R3SbxHint@@8
+-??_R3SfxHint@@8
+-??_R3SfxSimpleHint@@8
+-??_R4SbJScriptMethod@@6BSbxBase@@@
+-??_R4SbJScriptMethod@@6BSvRefBase@@@
+-??_R4SbJScriptModule@@6B@
+-??_R4SbJScriptModule@@6BSbxBase@@@
+-??_R4SbJScriptModule@@6BSvRefBase@@@
+-??_R4SbMethod@@6BSbxBase@@@
+-??_R4SbMethod@@6BSvRefBase@@@
+-??_R4SbModule@@6B@
+-??_R4SbModule@@6BSbxBase@@@
+-??_R4SbModule@@6BSvRefBase@@@
+-??_R4SbProperty@@6BSbxBase@@@
+-??_R4SbProperty@@6BSvRefBase@@@
+-??_R4SbxHint@@6B@
+-??_R4SbxMethod@@6BSbxBase@@@
+-??_R4SbxMethod@@6BSvRefBase@@@
+-?Broadcast SbMethod@@UAEXK Z
+-?Call SbMethod@@UAEKPAVSbxValue@@@Z
+-?CanRead SbxBase@@QBEEXZ
+-?CanWrite SbxBase@@QBEEXZ
+-?Clear SbModule@@UAEXXZ
+-?ClearAllBP SbModule@@UAEXXZ
+-?ClearAllModuleVars StarBASIC@@QAEXXZ
+-?ClearBP SbModule@@UAEEG Z
+-?ClearPrivateVars SbModule@@IAEXXZ
+-?ClearUnoObjectsInRTL_Impl@@YAXPAVStarBASIC@@@Z
+-?ClearUnoObjectsInRTL_Impl_Rek@@YAXPAVStarBASIC@@@Z
+-?Count HighlightPortions@@QBEGXZ
+-?CreateType SbIfaceMapperMethod@@SAPAXXZ
+-?CreateType SbJScriptMethod@@SAPAXXZ
+-?CreateType SbJScriptModule@@SAPAXXZ
+-?CreateType SbMethod@@SAPAXXZ
+-?CreateType SbModule@@SAPAXXZ
+-?CreateType SbProcedureProperty@@SAPAXXZ
+-?CreateType SbProperty@@SAPAXXZ
+-?EndDefinitions SbModule@@IAEXE Z
+-?ExceedsLegacyModuleSize SbModule@@QAEEXZ
+-?Find SbModule@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?FindNextStmnt SbModule@@IBEPBEPBEAAG1 Z
+-?FindType SbModule@@QBEPBVSbxObject@@VString@@@Z
+-?GetBP SbModule@@UBEGG Z
+-?GetBPCount SbModule@@UBEGXZ
+-?GetCreator SbJScriptMethod@@UBEKXZ
+-?GetCreator SbJScriptModule@@UBEKXZ
+-?GetCreator SbProperty@@UBEKXZ
+-?GetCreator SbxMethod@@UBEKXZ
+-?GetDebugFlags SbMethod@@QAEGXZ
+-?GetFunctionForLine SbModule@@UAEPAVSbMethod@@G Z
+-?GetIfaceMapperMethod SbModule@@IAEPAVSbIfaceMapperMethod@@ABVString@@PAVSbMethod@@@Z
+-?GetInfo SbMethod@@UAEPAVSbxInfo@@XZ
+-?GetLineRange SbMethod@@QAEXAAG0 Z
+-?GetLocals SbMethod@@QAEPAVSbxArray@@XZ
+-?GetMethod SbModule@@IAEPAVSbMethod@@ABVString@@W4SbxDataType@@@Z
+-?GetModule SbProperty@@QAEPAVSbModule@@XZ
+-?GetProcedureProperty SbModule@@IAEPAVSbProcedureProperty@@ABVString@@W4SbxDataType@@@Z
+-?GetProperty SbModule@@IAEPAVSbProperty@@ABVString@@W4SbxDataType@@@Z
+-?GetRtl StarBASIC@@QAEPAVSbxObject@@XZ
+-?GetSbxId SbJScriptMethod@@UBEGXZ
+-?GetSbxId SbJScriptModule@@UBEGXZ
+-?GetSbxId SbProperty@@UBEGXZ
+-?GetSbxId SbxMethod@@UBEGXZ
+-?GetSource32 SbModule@@QBEABVOUString rtl@@XZ
+-?GetSource SbModule@@UBEABVString@@XZ
+-?GetStatics SbMethod@@QAEPAVSbxArray@@XZ
+-?GetValues_Impl SbxValue@@QBEABUSbxValues@@XZ
+-?GetVersion SbJScriptMethod@@UBEGXZ
+-?GetVersion SbJScriptModule@@UBEGXZ
+-?GetVersion SbProperty@@UBEGXZ
+-?GetVersion SbxMethod@@UBEGXZ
+-?GlobalRunDeInit SbModule@@IAEXXZ
+-?GlobalRunInit SbModule@@IAEXE Z
+-?Insert HighlightPortions@@QAEXABUHighlightPortion@@G Z
+-?Insert HighlightPortions@@QAEXPBUHighlightPortion@@GG Z
+-?IsA SbIfaceMapperMethod@@UBEEP6APAXXZ Z
+-?IsA SbJScriptMethod@@UBEEP6APAXXZ Z
+-?IsA SbJScriptModule@@UBEEP6APAXXZ Z
+-?IsA SbJScriptModule@@WFA BEEP6APAXXZ@Z
+-?IsA SbMethod@@UBEEP6APAXXZ Z
+-?IsA SbModule@@UBEEP6APAXXZ Z
+-?IsA SbModule@@WFA BEEP6APAXXZ@Z
+-?IsA SbProcedureProperty@@UBEEP6APAXXZ Z
+-?IsA SbProperty@@UBEEP6APAXXZ Z
+-?IsBP SbModule@@UBEEG Z
+-?IsBreakable SbModule@@UBEEG Z
+-?IsBroadcaster SbxVariable@@QBEEXZ
+-?IsCompiled SbModule@@UBEEXZ
+-?IsOf SbIfaceMapperMethod@@SAEP6APAXXZ Z
+-?IsOf SbJScriptMethod@@SAEP6APAXXZ Z
+-?IsOf SbJScriptModule@@SAEP6APAXXZ Z
+-?IsOf SbMethod@@SAEP6APAXXZ Z
+-?IsOf SbModule@@SAEP6APAXXZ Z
+-?IsOf SbProcedureProperty@@SAEP6APAXXZ Z
+-?IsOf SbProperty@@SAEP6APAXXZ Z
+-?LoadBinaryData SbModule@@QAEEAAVSvStream@@@Z
+-?LoadCompleted SbModule@@MAEEXZ
+-?LoadData SbJScriptModule@@EAEEAAVSvStream@@G Z
+-?LoadData SbMethod@@EAEEAAVSvStream@@G Z
+-?LoadData SbModule@@MAEEAAVSvStream@@G Z
+-?Notify SbModule@@MAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?Remove HighlightPortions@@QAEXGG Z
+-?Replace HighlightPortions@@QAEXABUHighlightPortion@@G Z
+-?Replace HighlightPortions@@QAEXPBUHighlightPortion@@GG Z
+-?Run SbModule@@IAEGPAVSbMethod@@@Z
+-?RunInit SbModule@@IAEXXZ
+-?SetBP SbModule@@UAEEG Z
+-?SetComment SbModule@@QAEXABVString@@@Z
+-?SetParent SbModule@@UAEXPAVSbxObject@@@Z
+-?SetSource32 SbModule@@QAEXABVOUString rtl@@@Z
+-?SetSource SbModule@@UAEXABVString@@@Z
+-?StartDefinitions SbModule@@IAEXXZ
+-?StaticType SbIfaceMapperMethod@@SAP6APAXXZXZ
+-?StaticType SbJScriptMethod@@SAP6APAXXZXZ
+-?StaticType SbJScriptModule@@SAP6APAXXZXZ
+-?StaticType SbMethod@@SAP6APAXXZXZ
+-?StaticType SbModule@@SAP6APAXXZXZ
+-?StaticType SbProcedureProperty@@SAP6APAXXZXZ
+-?StaticType SbProperty@@SAP6APAXXZXZ
+-?StoreBinaryData SbModule@@QAEEAAVSvStream@@@Z
+-?StoreBinaryData SbModule@@QAEEAAVSvStream@@G Z
+-?StoreData SbJScriptModule@@EBEEAAVSvStream@@@Z
+-?StoreData SbMethod@@EBEEAAVSvStream@@@Z
+-?StoreData SbModule@@MBEEAAVSvStream@@@Z
+-?Type SbIfaceMapperMethod@@UBEP6APAXXZXZ
+-?Type SbJScriptMethod@@UBEP6APAXXZXZ
+-?Type SbJScriptModule@@UBEP6APAXXZXZ
+-?Type SbJScriptModule@@WFA BEP6APAXXZXZ
+-?Type SbMethod@@UBEP6APAXXZXZ
+-?Type SbModule@@UBEP6APAXXZXZ
+-?Type SbModule@@WFA BEP6APAXXZXZ
+-?Type SbProcedureProperty@@UBEP6APAXXZXZ
+-?Type SbProperty@@UBEP6APAXXZXZ
+-?_ForEach HighlightPortions@@QAEXGGP6AEABUHighlightPortion@@PAX Z1@Z
+-?_resize HighlightPortions@@IAEXI Z
+-?getChar SimpleTokenizer_Impl@@AAEGXZ
+-?getHighlightPortions SimpleTokenizer_Impl@@QAEXKABVString@@AAVHighlightPortions@@@Z
+-?getHighlightPortions SyntaxHighlighter@@QAEXKABVString@@AAVHighlightPortions@@@Z
+-?getNextToken SimpleTokenizer_Impl@@AAEEAAW4TokenTypes@@AAPBG1 Z
+-?getSimpleTokenizer@@YAPAVSimpleTokenizer_Impl@@XZ
+-?getTokStr SimpleTokenizer_Impl@@AAE?AVString@@PBG0 Z
+-?gsl_getSystemTextEncoding@@YAGXZ
+-?initialize SyntaxHighlighter@@QAEXW4HighlighterLanguage@@@Z
+-?isAlpha BasicSimpleCharClass@@SAEG_N Z
+-?isLetter LetterTable@@QAE_NG Z
+-?notifyChange SyntaxHighlighter@@QAE?BVRange@@KJPBVString@@K Z
+-?parseLine SimpleTokenizer_Impl@@QAEGKPBVString@@@Z
+-?peekChar SimpleTokenizer_Impl@@AAEGXZ
+-?setKeyWords SimpleTokenizer_Impl@@QAEXPAPBDG Z
+-?testCharFlags SimpleTokenizer_Impl@@AAEEGG Z
+-_real 3ff0000000000000
+-compare_strings
+-??$static_int_cast GK@sal@@YAGK Z
+-??0?$PCodeBuffConvertor GK@@QAE PAEG@Z
+-??0?$PCodeBuffConvertor KG@@QAE PAEK@Z
+-??YOUString rtl@@QAEAAV01 ABV01@@Z
+-?GetBuffer ?$PCodeBuffConvertor@GK@@QAEPAEXZ
+-?GetBuffer ?$PCodeBuffConvertor@KG@@QAEPAEXZ
+-?GetSize ?$PCodeBuffConvertor@GK@@QAEKXZ
+-?GetSize ?$PCodeBuffConvertor@KG@@QAEGXZ
+-?copy OUString@rtl@@QBE?AV12 JJ@Z
+-??1SbErrorStackEntry@@QAE XZ
+-??_GSbErrorStackEntry@@QAEPAXI Z
+-??_GTransliterationWrapper utl@@QAEPAXI Z
+-?DeleteAndDestroy SbErrorStack@@QAEXGG Z
+-??$?0U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@?$allocator PAX@_STL@@QAE ABV?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@1@@Z
+-??$?0U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAE ABV?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@1@@Z
+-??$?8U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@1 U21@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@1 U?$equal_to@VOUString rtl@@@1 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@1@@_STL@@YA_NABU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@0 0@Z
+-??$?9U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 3@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@1 U?$equal_to@VOUString rtl@@@1 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@1@@_STL@@YA_NABU?$_Hashtable_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@0 0@Z
+-??$?_2UArrayWrapper script@star sun@com@@@uno star@sun com@@YAEABVAny 0123@AAUArrayWrapper script@123@@Z
+-??$?_2UCurrency oleautomation@bridge star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAUCurrency oleautomation@bridge 123@@Z
+-??$?_2UDate oleautomation@bridge star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAUDate oleautomation@bridge 123@@Z
+-??$?_2UDecimal oleautomation@bridge star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAUDecimal oleautomation@bridge 123@@Z
+-??$?_2V?$Reference VXComponentContext@uno star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXComponentContext@uno star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXHierarchicalNameAccess@container star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXIdlReflection@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXIdlReflection@reflection star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXInterface@uno star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXTypeDescription@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXTypeDescription@reflection star@sun com@@@0123@@Z
+-??$?_3C uno@star sun@com@@YAXAAVAny 0123@ABC Z
+-??$?_3F uno@star sun@com@@YAXAAVAny 0123@ABF Z
+-??$?_3G uno@star sun@com@@YAXAAVAny 0123@ABG Z
+-??$?_3J uno@star sun@com@@YAXAAVAny 0123@ABJ Z
+-??$?_3K uno@star sun@com@@YAXAAVAny 0123@ABK Z
+-??$?_3M uno@star sun@com@@YAXAAVAny 0123@ABM Z
+-??$?_3N uno@star sun@com@@YAXAAVAny 0123@ABN Z
+-??$?_3UCurrency oleautomation@bridge star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABUCurrency oleautomation@bridge 123@@Z
+-??$?_3UDate oleautomation@bridge star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABUDate oleautomation@bridge 123@@Z
+-??$?_3UDecimal oleautomation@bridge star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABUDecimal oleautomation@bridge 123@@Z
+-??$?_3UNamedArgument oleautomation@bridge star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABUNamedArgument oleautomation@bridge 123@@Z
+-??$?_3V?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXIdlClass@reflection star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXInterface@uno star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXInvocation@script star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXMultiServiceFactory@lang star@sun com@@@0123@@Z
+-??$?_3_J uno@star sun@com@@YAXAAVAny 0123@AB_J Z
+-??$?_3_K uno@star sun@com@@YAXAAVAny 0123@AB_K Z
+-??$_Construct U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U12@@_STL@@YAXPAU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@0 ABU10@@Z
+-??$_Destroy U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@YAXPAU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@0@@Z
+-??$_M_find VOUString@rtl@@@?$hashtable U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@1 ABVOUString@rtl@@@Z
+-??$__advance PBIH@_STL@@YAXAAPBIHABUrandom_access_iterator_tag 0@@Z
+-??$__distance PBI@_STL@@YAHABQBI0ABUrandom_access_iterator_tag 0@@Z
+-??$__less I@_STL@@YA?AU?$less I@0 PAI@Z
+-??$__lower_bound PBIIU?$less@I _STL@@H _STL@@YAPBIPBI0ABIU?$less I@0 PAH@Z
+-??$advance PBIH@_STL@@YAXAAPBIH Z
+-??$cppu_detail_getUnoType VXAllListener@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXAllListener@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXComponentContext@uno star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXComponentContext@uno star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXConstantTypeDescription@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXConstantTypeDescription@reflection star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXConstantsTypeDescription@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXConstantsTypeDescription@reflection star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXDefaultProperty@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXDefaultProperty@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXExactName@beans star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXExactName@beans star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXHierarchicalNameAccess@container star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXHierarchicalNameAccess@container star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXIdlClass@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlClass@reflection star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXIdlClassProvider@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlClassProvider@reflection star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXIdlMethod@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlMethod@reflection star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXIdlReflection@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlReflection@reflection star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXIntrospection@beans star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIntrospection@beans star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInvocation@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInvocation@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInvocationAdapterFactory@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInvocationAdapterFactory@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXMaterialHolder@beans star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXMaterialHolder@beans star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXMultiServiceFactory@lang star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXMultiServiceFactory@lang star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXServiceInfo@lang star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXServiceInfo@lang star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXTypeConverter@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeConverter@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXTypeDescription@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeDescription@reflection star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXTypeDescriptionEnumerationAccess@reflection star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeDescriptionEnumerationAccess@reflection star@sun com@@@3456@@Z
+-??$distance PBI@_STL@@YAHABQBI0 Z
+-??$find VOUString@rtl@@@?$hashtable U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@1 ABVOUString@rtl@@@Z
+-??$getTypeFavourUnsigned F@cppu@@YAABVType uno@star sun@com@@PBF Z
+-??$getTypeFavourUnsigned F@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence F@2345@@Z
+-??$getTypeFavourUnsigned J@cppu@@YAABVType uno@star sun@com@@PBJ Z
+-??$getTypeFavourUnsigned J@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence J@2345@@Z
+-??$getTypeFavourUnsigned K@cppu@@YAABVType uno@star sun@com@@PBK Z
+-??$getTypeFavourUnsigned M@cppu@@YAABVType uno@star sun@com@@PBM Z
+-??$getTypeFavourUnsigned N@cppu@@YAABVType uno@star sun@com@@PBN Z
+-??$getTypeFavourUnsigned UArrayWrapper@script star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBUArrayWrapper script@345@@Z
+-??$getTypeFavourUnsigned UCurrency@oleautomation bridge@star sun@com@@@cppu@@YAABVType uno@star sun@com@@PBUCurrency oleautomation@bridge 345@@Z
+-??$getTypeFavourUnsigned UDate@oleautomation bridge@star sun@com@@@cppu@@YAABVType uno@star sun@com@@PBUDate oleautomation@bridge 345@@Z
+-??$getTypeFavourUnsigned UDecimal@oleautomation bridge@star sun@com@@@cppu@@YAABVType uno@star sun@com@@PBUDecimal oleautomation@bridge 345@@Z
+-??$getTypeFavourUnsigned UNamedArgument@oleautomation bridge@star sun@com@@@cppu@@YAABVType uno@star sun@com@@PBUNamedArgument oleautomation@bridge 345@@Z
+-??$getTypeFavourUnsigned UParamInfo@reflection star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBUParamInfo reflection@345@@Z
+-??$getTypeFavourUnsigned UParamInfo@reflection star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence UParamInfo@reflection star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned UProperty@beans star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBUProperty beans@345@@Z
+-??$getTypeFavourUnsigned UProperty@beans star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence UProperty@beans star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXComponentContext uno@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXComponentContext@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXConstantTypeDescription reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXConstantTypeDescription@reflection star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXConstantTypeDescription reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence V?$Reference@VXConstantTypeDescription reflection@star sun@com@@@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXHierarchicalNameAccess container@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXHierarchicalNameAccess@container star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlClass@reflection star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence V?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXIdlMethod reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlMethod@reflection star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXIdlMethod reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence V?$Reference@VXIdlMethod reflection@star sun@com@@@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXIdlReflection reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlReflection@reflection star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXInvocation script@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInvocation@script star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXMultiServiceFactory lang@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXMultiServiceFactory@lang star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXTypeDescription reflection@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeDescription@reflection star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned VAny@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence VAny@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned VAny@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBVAny 2345@@Z
+-??$getTypeFavourUnsigned W4TypeClass@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence W4TypeClass@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned W4TypeClass@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBW4TypeClass 2345@@Z
+-??$getTypeFavourUnsigned _J@cppu@@YAABVType uno@star sun@com@@PB_J Z
+-??$getTypeFavourUnsigned _K@cppu@@YAABVType uno@star sun@com@@PB_K Z
+-??$static_int_cast GJ@sal@@YAGJ Z
+-??$static_int_cast J_J@sal@@YAJ_J Z
+-??0?$Reference VXAllListener@script star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXAllListener@script star@sun com@@@uno star@sun com@@QAE PAVXAllListener@script 234@@Z
+-??0?$Reference VXComponentContext@uno star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXComponentContext@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXConstantsTypeDescription@reflection star@sun com@@@uno star@sun com@@QAE ABVAny@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXDefaultProperty@script star@sun com@@@uno star@sun com@@QAE ABVAny@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXExactName@beans star@sun com@@@uno star@sun com@@QAE PAVXExactName@beans 234@W4__sal_NoAcquire@@@Z
+-??0?$Reference VXExactName@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXIdlClassProvider@reflection star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXIdlReflection@reflection star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXIdlReflection@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAE PAVXInterface@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXIntrospection@beans star@sun com@@@uno star@sun com@@QAE PAVXIntrospection@beans 234@W4__sal_NoAcquire@@@Z
+-??0?$Reference VXIntrospection@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXIntrospectionAccess@beans star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXIntrospectionAccess@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@QAE PAVXInvocation@script 234@@Z
+-??0?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXInvocationAdapterFactory@script star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXMaterialHolder@beans star@sun com@@@uno star@sun com@@QAE PAVXMaterialHolder@beans 234@W4__sal_NoAcquire@@@Z
+-??0?$Reference VXMaterialHolder@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXPropertySet@beans star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXServiceInfo@lang star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXTypeDescription@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXTypeDescriptionEnumeration@reflection star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXTypeDescriptionEnumeration@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXTypeDescriptionEnumerationAccess@reflection star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXTypeProvider@lang star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXTypeProvider@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Sequence F@uno star@sun com@@QAE XZ
+-??0?$Sequence J@uno star@sun com@@QAE XZ
+-??0?$Sequence UParamInfo@reflection star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Sequence VAny@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Sequence W4TypeClass@uno star@sun com@@@uno star@sun com@@QAE J@Z
+-??0?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@QAE XZ
+-??0?$_Hashtable_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAE PAU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@1 PAV?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@1@@Z
+-??0?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Const_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAE ABU?$_Ht_iterator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@1@@Z
+-??0?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAE PBU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@1 PBV?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@1@@Z
+-??0?$_STLP_alloc_proxy IU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@V?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@2@@_STL@@QAE ABV?$allocator@U?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@1 I@Z
+-??0?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAE ABV01@@Z
+-??0?$allocator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@QAE XZ
+-??0?$hash_map VOUString@rtl@@VAny uno@star sun@com@@UOUStringHash 2@U?$equal_to VOUString@rtl@@@_STL@@V?$allocator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAE XZ
+-??0?$hashtable U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAE IABUOUStringHash@rtl@@ABU?$equal_to VOUString@rtl@@@1 ABV?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@1@@Z
+-??0?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@QAE ABU01@@Z
+-??0?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@QAE ABVOUString@rtl@@ABVAny uno@star sun@com@@@Z
+-??0AllEventObject script@star sun@com@@QAE XZ
+-??0ArrayWrapper script@star sun@com@@QAE XZ
+-??0BasicAllListener_Impl@@QAE ABVOUString@rtl@@@Z
+-??0Currency oleautomation@bridge star@sun com@@QAE XZ
+-??0Date oleautomation@bridge star@sun com@@QAE XZ
+-??0Decimal oleautomation@bridge star@sun com@@QAE XZ
+-??0DeploymentException uno@star sun@com@@QAE ABV01234@@Z
+-??0DeploymentException uno@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@1234@@Z
+-??0EventObject lang@star sun@com@@QAE XZ
+-??0InvocationToAllListenerMapper@@QAE ABV?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@ABV?$Reference VXAllListener@script star@sun com@@@2345 ABVAny@2345@@Z
+-??0NamedArgument oleautomation@bridge star@sun com@@QAE XZ
+-??0OString rtl@@QAE PBGJGK@Z
+-??0OUString rtl@@QAE PAU_rtl_uString@@@Z
+-??0OUString rtl@@QAE PBG@Z
+-??0Property beans@star sun@com@@QAE ABU01234@@Z
+-??0Property beans@star sun@com@@QAE XZ
+-??0SbUnoAnyObject@@QAE ABVAny@uno star@sun com@@@Z
+-??0SbUnoClass@@QAE ABVString@@@Z
+-??0SbUnoClass@@QAE ABVString@@ABV?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@@Z
+-??0SbUnoMethod@@QAE ABVString@@W4SbxDataType@@V?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@_N Z
+-??0SbUnoObject@@QAE ABVString@@ABVAny uno@star sun@com@@@Z
+-??0SbUnoObjectRef@@QAE PAVSbUnoObject@@@Z
+-??0SbUnoProperty@@QAE ABVString@@W4SbxDataType@@ABUProperty beans@star sun@com@@J_N Z
+-??0SbxDimArrayRef@@QAE PAVSbxDimArray@@@Z
+-??0SbxDimArrayRef@@QAE XZ
+-??0Type uno@star sun@com@@QAE PAU_typelib_TypeDescriptionReference@@@Z
+-??0Type uno@star sun@com@@QAE W4TypeClass@1234 ABVOUString@rtl@@@Z
+-??0Type uno@star sun@com@@QAE XZ
+-??0XAllListener script@star sun@com@@QAE XZ
+-??0XInvocation script@star sun@com@@QAE XZ
+-??1?$Reference VXAllListener@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXComponentContext@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXConstantsTypeDescription@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXDefaultProperty@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXExactName@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIdlArray@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIdlClassProvider@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIdlField@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIdlReflection@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIntrospection@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIntrospectionAccess@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInvocationAdapterFactory@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXMaterialHolder@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXMultiComponentFactory@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXServiceInfo@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXTypeDescription@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXTypeDescriptionEnumeration@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXTypeDescriptionEnumerationAccess@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXTypeProvider@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence F@uno star@sun com@@QAE XZ
+-??1?$Sequence J@uno star@sun com@@QAE XZ
+-??1?$Sequence UParamInfo@reflection star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence UProperty@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence V?$Reference@VXConstantTypeDescription reflection@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence V?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence V?$Reference@VXIdlMethod reflection@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence VAny@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence W4TypeClass@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@UAE XZ
+-??1?$_STLP_alloc_proxy IU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@V?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@2@@_STL@@QAE XZ
+-??1?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAE XZ
+-??1?$allocator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@QAE XZ
+-??1?$hash_map VOUString@rtl@@VAny uno@star sun@com@@UOUStringHash 2@U?$equal_to VOUString@rtl@@@_STL@@V?$allocator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAE XZ
+-??1?$hashtable U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAE XZ
+-??1?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@QAE XZ
+-??1AllEventObject script@star sun@com@@QAE XZ
+-??1ArrayWrapper script@star sun@com@@QAE XZ
+-??1BasicAllListener_Impl@@UAE XZ
+-??1DeploymentException uno@star sun@com@@QAE XZ
+-??1EventObject lang@star sun@com@@QAE XZ
+-??1InvocationToAllListenerMapper@@UAE XZ
+-??1NamedArgument oleautomation@bridge star@sun com@@QAE XZ
+-??1OString rtl@@QAE XZ
+-??1Property beans@star sun@com@@QAE XZ
+-??1SbUnoAnyObject@@UAE XZ
+-??1SbUnoClass@@UAE XZ
+-??1SbUnoMethod@@UAE XZ
+-??1SbUnoObject@@UAE XZ
+-??1SbUnoObjectRef@@QAE XZ
+-??1SbUnoProperty@@EAE XZ
+-??1SbxDimArrayRef@@QAE XZ
+-??2?$Sequence UParamInfo@reflection star@sun com@@@uno star@sun com@@SAPAXI Z
+-??3?$Sequence UParamInfo@reflection star@sun com@@@uno star@sun com@@SAXPAX Z
+-??4?$Reference VXExactName@beans star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QAAAAV01234 PAVXInterface@1234@@Z
+-??4?$Reference VXIntrospection@beans star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXIntrospectionAccess@beans star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXMaterialHolder@beans star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXTypeDescriptionEnumeration@reflection star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXTypeProvider@lang star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Sequence VAny@uno star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4Any uno@star sun@com@@QAAAAV01234 ABV01234@@Z
+-??4SbxDimArrayRef@@QAEAAV0 ABV0@@Z
+-??4SbxDimArrayRef@@QAEAAV0 PAVSbxDimArray@@@Z
+-??4SbxVariableRef@@QAEAAV0 ABV0@@Z
+-??4SbxVariableRef@@QAEAAV0 PAVSbxVariable@@@Z
+-??4Type uno@star sun@com@@QAAAAV01234 ABV01234@@Z
+-??8BaseReference uno@star sun@com@@QBAEABV01234@@Z
+-??8BaseReference uno@star sun@com@@QBAEPAVXInterface 1234@@Z
+-??8Type uno@star sun@com@@QBAEABV01234@@Z
+-??8rtl@@YAEABVOUString 0@0 Z
+-??A?$Sequence J@uno star@sun com@@QAAAAJJ Z
+-??A?$Sequence W4TypeClass@uno star@sun com@@@uno star@sun com@@QAAAAW4TypeClass 1234@J Z
+-??A?$hash_map VOUString@rtl@@VAny uno@star sun@com@@UOUStringHash 2@U?$equal_to VOUString@rtl@@@_STL@@V?$allocator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAEAAVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-??BSbUnoObjectRef@@QBEPAVSbUnoObject@@XZ
+-??BSbxDimArrayRef@@QBEPAVSbxDimArray@@XZ
+-??C?$Reference VXAllListener@script star@sun com@@@uno star@sun com@@QBAPAVXAllListener script@234 XZ
+-??C?$Reference VXComponentContext@uno star@sun com@@@uno star@sun com@@QBAPAVXComponentContext 1234@XZ
+-??C?$Reference VXConstantTypeDescription@reflection star@sun com@@@uno star@sun com@@QBAPAVXConstantTypeDescription reflection@234 XZ
+-??C?$Reference VXConstantsTypeDescription@reflection star@sun com@@@uno star@sun com@@QBAPAVXConstantsTypeDescription reflection@234 XZ
+-??C?$Reference VXDefaultProperty@script star@sun com@@@uno star@sun com@@QBAPAVXDefaultProperty script@234 XZ
+-??C?$Reference VXExactName@beans star@sun com@@@uno star@sun com@@QBAPAVXExactName beans@234 XZ
+-??C?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@QBAPAVXHierarchicalNameAccess container@234 XZ
+-??C?$Reference VXIdlArray@reflection star@sun com@@@uno star@sun com@@QBAPAVXIdlArray reflection@234 XZ
+-??C?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@QBAPAVXIdlClass reflection@234 XZ
+-??C?$Reference VXIdlClassProvider@reflection star@sun com@@@uno star@sun com@@QBAPAVXIdlClassProvider reflection@234 XZ
+-??C?$Reference VXIdlField@reflection star@sun com@@@uno star@sun com@@QBAPAVXIdlField reflection@234 XZ
+-??C?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@QBAPAVXIdlMethod reflection@234 XZ
+-??C?$Reference VXIdlReflection@reflection star@sun com@@@uno star@sun com@@QBAPAVXIdlReflection reflection@234 XZ
+-??C?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@QBAPAVXInterface 1234@XZ
+-??C?$Reference VXIntrospection@beans star@sun com@@@uno star@sun com@@QBAPAVXIntrospection beans@234 XZ
+-??C?$Reference VXIntrospectionAccess@beans star@sun com@@@uno star@sun com@@QBAPAVXIntrospectionAccess beans@234 XZ
+-??C?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@QBAPAVXInvocation script@234 XZ
+-??C?$Reference VXInvocationAdapterFactory@script star@sun com@@@uno star@sun com@@QBAPAVXInvocationAdapterFactory script@234 XZ
+-??C?$Reference VXMaterialHolder@beans star@sun com@@@uno star@sun com@@QBAPAVXMaterialHolder beans@234 XZ
+-??C?$Reference VXMultiComponentFactory@lang star@sun com@@@uno star@sun com@@QBAPAVXMultiComponentFactory lang@234 XZ
+-??C?$Reference VXServiceInfo@lang star@sun com@@@uno star@sun com@@QBAPAVXServiceInfo lang@234 XZ
+-??C?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@QBAPAVXTypeConverter script@234 XZ
+-??C?$Reference VXTypeDescription@reflection star@sun com@@@uno star@sun com@@QBAPAVXTypeDescription reflection@234 XZ
+-??C?$Reference VXTypeDescriptionEnumeration@reflection star@sun com@@@uno star@sun com@@QBAPAVXTypeDescriptionEnumeration reflection@234 XZ
+-??C?$Reference VXTypeDescriptionEnumerationAccess@reflection star@sun com@@@uno star@sun com@@QBAPAVXTypeDescriptionEnumerationAccess reflection@234 XZ
+-??C?$Reference VXTypeProvider@lang star@sun com@@@uno star@sun com@@QBAPAVXTypeProvider lang@234 XZ
+-??C?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Const_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QBEPBU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@1 XZ
+-??CSbUnoObjectRef@@QBEPAVSbUnoObject@@XZ
+-??CSbxDimArrayRef@@QBEPAVSbxDimArray@@XZ
+-??D?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Const_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QBEABU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@1 XZ
+-??D?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QBEAAU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@1 XZ
+-??Hrtl@@YA?AVOUString 0@ABV10 0@Z
+-??R?$ImplClassData1 VXAllListener@script star@sun com@@V?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXInvocation@script star@sun com@@V?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@QBEABVOUString rtl@@ABU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@1@@Z
+-??R?$equal_to VOUString@rtl@@@_STL@@QBE_NABVOUString rtl@@0 Z
+-??R?$less I@_STL@@QBE_NABI0 Z
+-??ROUStringHash rtl@@QBEIABVOUString 1@@Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAC Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAF Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAG Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAJ Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAK Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAM Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAN Z
+-??_2uno star@sun com@@YAEABVAny 0123@AAVType 0123@@Z
+-??_2uno star@sun com@@YAEABVAny 0123@AA_J Z
+-??_2uno star@sun com@@YAEABVAny 0123@AA_K Z
+-??_7BasicAllListener_Impl@@6BOWeakObject cppu@@@
+-??_7BasicAllListener_Impl@@6BXAllListener script@star sun@com@@@
+-??_7BasicAllListener_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7InvocationToAllListenerMapper@@6BOWeakObject cppu@@@
+-??_7InvocationToAllListenerMapper@@6BXInvocation script@star sun@com@@@
+-??_7InvocationToAllListenerMapper@@6BXTypeProvider lang@star sun@com@@@
+-??_7SbUnoAnyObject@@6B@
+-??_7SbUnoAnyObject@@6BSbxBase@@@
+-??_7SbUnoAnyObject@@6BSvRefBase@@@
+-??_7SbUnoClass@@6B@
+-??_7SbUnoClass@@6BSbxBase@@@
+-??_7SbUnoClass@@6BSvRefBase@@@
+-??_7SbUnoMethod@@6BSbxBase@@@
+-??_7SbUnoMethod@@6BSvRefBase@@@
+-??_7SbUnoObject@@6B@
+-??_7SbUnoObject@@6BSbxBase@@@
+-??_7SbUnoObject@@6BSvRefBase@@@
+-??_7SbUnoProperty@@6BSbxBase@@@
+-??_7SbUnoProperty@@6BSvRefBase@@@
+-??_8SbUnoAnyObject@@7B@
+-??_8SbUnoClass@@7B@
+-??_8SbUnoMethod@@7B@
+-??_8SbUnoObject@@7B@
+-??_8SbUnoProperty@@7B@
+-??_C _0BL@FBBNBCLL com?4sun?4star?4uno?4TypeClass?$AA@
+-??_C _0BM@MMFLFOIN com?4sun?4star?4beans?4Property?$AA@
+-??_C _0BO@NJJCPOEG com?4sun?4star?4beans?4XExactName?$AA@
+-??_C _0BP@PCEDPGBI com?4sun?4star?4lang?4XServiceInfo?$AA@
+-??_C _0CA@NPPNKFE com?4sun?4star?4script?4XInvocation?$AA@
+-??_C _0CB@LEAKOFJB com?4sun?4star?4script?4XAllListener@
+-??_C _0CB@PEBKKNDK com?4sun?4star?4script?4ArrayWrapper@
+-??_C _0CC@CBAADNMP com?4sun?4star?4reflection?4XIdlClas@
+-??_C _0CC@EAIDOMEO com?4sun?4star?4reflection?4ParamInf@
+-??_C _0CC@NPJHEHPJ com?4sun?4star?4beans?4XIntrospectio@
+-??_C _0CD@DLNKLODH com?4sun?4star?4beans?4XMaterialHold@
+-??_C _0CD@EHHPMJFC com?4sun?4star?4reflection?4XIdlMeth@
+-??_C _0CD@GAHPDALP com?4sun?4star?4script?4XTypeConvert@
+-??_C _0CD@KJDJHPAK com?4sun?4star?4uno?4XComponentConte@
+-??_C _0CF@BJIPGNCJ com?4sun?4star?4script?4XDefaultProp@
+-??_C _0CH@CJPJMNHE com?4sun?4star?4lang?4XMultiServiceF@
+-??_C _0CH@DCNKOECK com?4sun?4star?4bridge?4oleautomatio@
+-??_C _0CH@MPOLNEKI com?4sun?4star?4reflection?4XIdlRefl@
+-??_C _0CI@OJFFCAPK com?4sun?4star?4script?4BasicErrorEx@
+-??_C _0CJ@JJDGKBPK com?4sun?4star?4reflection?4XTypeDes@
+-??_C _0CK@NJECPFCB com?4sun?4star?4reflection?4XIdlClas@
+-??_C _0CK@PLDJPHF com?4sun?4star?4bridge?4oleautomatio@
+-??_C _0CL@NLANBPJ com?4sun?4star?4bridge?4oleautomatio@
+-??_C _0CO@GMGHAFCO com?4sun?4star?4script?4XInvocationA@
+-??_C _0CP@HHBAJOCC com?4sun?4star?4container?4XHierarch@
+-??_C _0DA@JLOMPBFC com?4sun?4star?4bridge?4oleautomatio@
+-??_C _0DB@LGKOANJN com?4sun?4star?4reflection?4XConstan@
+-??_C _0DC@DCKEDJDN com?4sun?4star?4reflection?4XConstan@
+-??_C _0DK@HDINGMLK com?4sun?4star?4reflection?4XTypeDes@
+-??_DSbUnoAnyObject@@QAEXXZ
+-??_DSbUnoClass@@QAEXXZ
+-??_DSbUnoMethod@@QAEXXZ
+-??_DSbUnoObject@@QAEXXZ
+-??_DSbUnoProperty@@AAEXXZ
+-??_ESbUnoAnyObject@@WFA AEPAXI@Z
+-??_ESbUnoAnyObject@@WII AEPAXI@Z
+-??_ESbUnoClass@@WFA AEPAXI@Z
+-??_ESbUnoClass@@WIA AEPAXI@Z
+-??_ESbUnoObject@@WFA AEPAXI@Z
+-??_ESbUnoObject@@WKA AEPAXI@Z
+-??_G?$Sequence UParamInfo@reflection star@sun com@@@uno star@sun com@@QAEPAXI Z
+-??_G?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@QAEPAXI Z
+-??_GBasicAllListener_Impl@@UAEPAXI Z
+-??_GInvocationToAllListenerMapper@@UAEPAXI Z
+-??_GSbUnoAnyObject@@UAEPAXI Z
+-??_GSbUnoClass@@UAEPAXI Z
+-??_GSbUnoMethod@@UAEPAXI Z
+-??_GSbUnoObject@@UAEPAXI Z
+-??_GSbUnoProperty@@EAEPAXI Z
+-??_R0?AV?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@@8
+-??_R0?AVBasicAllListener_Impl@@@8
+-??_R0?AVBasicErrorException script@star sun@com@@@8
+-??_R0?AVCannotConvertException script@star sun@com@@@8
+-??_R0?AVDeploymentException uno@star sun@com@@@8
+-??_R0?AVIndexOutOfBoundsException lang@star sun@com@@@8
+-??_R0?AVInvalidTypeNameException reflection@star sun@com@@@8
+-??_R0?AVInvocationToAllListenerMapper@@@8
+-??_R0?AVNoSuchTypeNameException reflection@star sun@com@@@8
+-??_R0?AVSbUnoAnyObject@@@8
+-??_R0?AVSbUnoClass@@@8
+-??_R0?AVSbUnoMethod@@@8
+-??_R0?AVSbUnoObject@@@8
+-??_R0?AVSbUnoProperty@@@8
+-??_R0?AVWrappedTargetException lang@star sun@com@@@8
+-??_R0?AVXAllListener script@star sun@com@@@8
+-??_R0?AVXInvocation script@star sun@com@@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA BasicAllListener_Impl@@8
+-??_R1A ?0A@EA InvocationToAllListenerMapper@@8
+-??_R1A ?0A@EA SbUnoAnyObject@@8
+-??_R1A ?0A@EA SbUnoClass@@8
+-??_R1A ?0A@EA SbUnoMethod@@8
+-??_R1A ?0A@EA SbUnoObject@@8
+-??_R1A ?0A@EA SbUnoProperty@@8
+-??_R1A ?0A@EA XAllListener@script star@sun com@@8
+-??_R1A ?0A@EA XInvocation@script star@sun com@@8
+-??_R1BE ?0A@EA XAllListener@script star@sun com@@8
+-??_R1BE ?0A@EA XInvocation@script star@sun com@@8
+-??_R2?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@8
+-??_R2BasicAllListener_Impl@@8
+-??_R2InvocationToAllListenerMapper@@8
+-??_R2SbUnoAnyObject@@8
+-??_R2SbUnoClass@@8
+-??_R2SbUnoMethod@@8
+-??_R2SbUnoObject@@8
+-??_R2SbUnoProperty@@8
+-??_R2XAllListener script@star sun@com@@8
+-??_R2XInvocation script@star sun@com@@8
+-??_R3?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@8
+-??_R3BasicAllListener_Impl@@8
+-??_R3InvocationToAllListenerMapper@@8
+-??_R3SbUnoAnyObject@@8
+-??_R3SbUnoClass@@8
+-??_R3SbUnoMethod@@8
+-??_R3SbUnoObject@@8
+-??_R3SbUnoProperty@@8
+-??_R3XAllListener script@star sun@com@@8
+-??_R3XInvocation script@star sun@com@@8
+-??_R4BasicAllListener_Impl@@6BOWeakObject cppu@@@
+-??_R4BasicAllListener_Impl@@6BXAllListener script@star sun@com@@@
+-??_R4BasicAllListener_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4InvocationToAllListenerMapper@@6BOWeakObject cppu@@@
+-??_R4InvocationToAllListenerMapper@@6BXInvocation script@star sun@com@@@
+-??_R4InvocationToAllListenerMapper@@6BXTypeProvider lang@star sun@com@@@
+-??_R4SbUnoAnyObject@@6B@
+-??_R4SbUnoAnyObject@@6BSbxBase@@@
+-??_R4SbUnoAnyObject@@6BSvRefBase@@@
+-??_R4SbUnoClass@@6B@
+-??_R4SbUnoClass@@6BSbxBase@@@
+-??_R4SbUnoClass@@6BSvRefBase@@@
+-??_R4SbUnoMethod@@6BSbxBase@@@
+-??_R4SbUnoMethod@@6BSvRefBase@@@
+-??_R4SbUnoObject@@6B@
+-??_R4SbUnoObject@@6BSbxBase@@@
+-??_R4SbUnoObject@@6BSvRefBase@@@
+-??_R4SbUnoProperty@@6BSbxBase@@@
+-??_R4SbUnoProperty@@6BSvRefBase@@@
+-?Clear SbxObjectRef@@QAEXXZ
+-?Create SbUnoFactory@@UAEPAVSbxBase@@GK Z
+-?CreateObject SbUnoFactory@@UAEPAVSbxObject@@ABVString@@@Z
+-?CreateType AutomationNamedArgsSbxArray@@SAPAXXZ
+-?CreateType SbUnoAnyObject@@SAPAXXZ
+-?CreateType SbUnoClass@@SAPAXXZ
+-?CreateType SbUnoMethod@@SAPAXXZ
+-?CreateType SbUnoObject@@SAPAXXZ
+-?CreateType SbUnoProperty@@SAPAXXZ
+-?CreateType UnoClassMemberVariable@@SAPAXXZ
+-?Dbg_SbxDataType2String@@YA?AVString@@W4SbxDataType@@@Z
+-?Find SbUnoClass@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?Find SbUnoObject@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?Get UnoClassMemberVariable@@UBEEAAUSbxValues@@@Z
+-?GetClassName SbxObject@@QBEABVString@@XZ
+-?GetDims SbxDimArray@@QBEFXZ
+-?GetInfo SbUnoMethod@@UAEPAVSbxInfo@@XZ
+-?GetSbUnoObject@@YA?AVSbxObjectRef@@ABVString@@ABVAny uno@star sun@com@@@Z
+-?Impl_CreateUnoStruct@@YAPAVSbUnoObject@@ABVString@@@Z
+-?Impl_DumpMethods@@YA?AVString@@PAVSbUnoObject@@@Z
+-?Impl_DumpProperties@@YA?AVString@@PAVSbUnoObject@@@Z
+-?Impl_GetInterfaceInfo@@YA?AVString@@ABV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@ABV?$Reference VXIdlClass@reflection star@sun com@@@3456 G@Z
+-?Impl_GetSupportedInterfaces@@YA?AVString@@PAVSbUnoObject@@@Z
+-?Is SbxObjectRef@@QBEEXZ
+-?IsA AutomationNamedArgsSbxArray@@UBEEP6APAXXZ Z
+-?IsA SbUnoAnyObject@@UBEEP6APAXXZ Z
+-?IsA SbUnoAnyObject@@WFA BEEP6APAXXZ@Z
+-?IsA SbUnoClass@@UBEEP6APAXXZ Z
+-?IsA SbUnoClass@@WFA BEEP6APAXXZ@Z
+-?IsA SbUnoMethod@@UBEEP6APAXXZ Z
+-?IsA SbUnoObject@@UBEEP6APAXXZ Z
+-?IsA SbUnoObject@@WFA BEEP6APAXXZ@Z
+-?IsA SbUnoProperty@@UBEEP6APAXXZ Z
+-?IsA UnoClassMemberVariable@@UBEEP6APAXXZ Z
+-?IsEmpty SbxValue@@QBEEXZ
+-?IsNull SbxValue@@QBEEXZ
+-?IsObject SbxValue@@QBEEXZ
+-?IsOf AutomationNamedArgsSbxArray@@SAEP6APAXXZ Z
+-?IsOf SbUnoAnyObject@@SAEP6APAXXZ Z
+-?IsOf SbUnoClass@@SAEP6APAXXZ Z
+-?IsOf SbUnoMethod@@SAEP6APAXXZ Z
+-?IsOf SbUnoObject@@SAEP6APAXXZ Z
+-?IsOf SbUnoProperty@@SAEP6APAXXZ Z
+-?IsOf UnoClassMemberVariable@@SAEP6APAXXZ Z
+-?Notify SbUnoObject@@UAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?OUStringToOString rtl@@YA?AVOString 1@ABVOUString 1@GK Z
+-?Put UnoClassMemberVariable@@UAEEABUSbxValues@@@Z
+-?RTL_Impl_CreateUnoService@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?RTL_Impl_CreateUnoStruct@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?RTL_Impl_CreateUnoValue@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?RTL_Impl_EqualUnoObjects@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?RTL_Impl_GetDefaultContext@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?RTL_Impl_GetProcessServiceManager@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?RTL_Impl_HasInterfaces@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?RTL_Impl_IsUnoStruct@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?StaticType AutomationNamedArgsSbxArray@@SAP6APAXXZXZ
+-?StaticType SbUnoAnyObject@@SAP6APAXXZXZ
+-?StaticType SbUnoClass@@SAP6APAXXZXZ
+-?StaticType SbUnoMethod@@SAP6APAXXZXZ
+-?StaticType SbUnoObject@@SAP6APAXXZXZ
+-?StaticType SbUnoProperty@@SAP6APAXXZXZ
+-?StaticType UnoClassMemberVariable@@SAP6APAXXZXZ
+-?Type AutomationNamedArgsSbxArray@@UBEP6APAXXZXZ
+-?Type SbUnoAnyObject@@UBEP6APAXXZXZ
+-?Type SbUnoAnyObject@@WFA BEP6APAXXZXZ
+-?Type SbUnoClass@@UBEP6APAXXZXZ
+-?Type SbUnoClass@@WFA BEP6APAXXZXZ
+-?Type SbUnoMethod@@UBEP6APAXXZXZ
+-?Type SbUnoObject@@UBEP6APAXXZXZ
+-?Type SbUnoObject@@WFA BEP6APAXXZXZ
+-?Type SbUnoProperty@@UBEP6APAXXZXZ
+-?Type UnoClassMemberVariable@@UBEP6APAXXZXZ
+-?TypeToIdlClass@@YA?AV?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@ABVType 2345@@Z
+-?_M_bkt_num ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@ABEIABU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@2@@Z
+-?_M_bkt_num ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@ABEIABU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@2 I@Z
+-?_M_bkt_num_key ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@ABEIABVOUString rtl@@@Z
+-?_M_bkt_num_key ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@ABEIABVOUString rtl@@I Z
+-?_M_delete_node ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2@@Z
+-?_M_initialize_buckets ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@AAEXI Z
+-?_M_insert ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAEAAU?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@2 ABU32@@Z
+-?_M_list ?$_Stl_prime@_N _STL@@2QBIB
+-?_M_new_node ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 ABU?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@2@@Z
+-?_M_next_size ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@ABEII Z
+-?acquire ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@WBE AAXXZ
+-?allocate ?$allocator@U?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 IPBX@Z
+-?approveFiring BasicAllListener_Impl@@UAA?AVAny uno@star sun@com@@ABUAllEventObject script@456@@Z
+-?castFromXInterface ?$Reference@VXAllListener script@star sun@com@@@uno star@sun com@@CAPAVXAllListener script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXComponentContext uno@star sun@com@@@uno star@sun com@@CAPAVXComponentContext 2345@PAVXInterface 2345@@Z
+-?castFromXInterface ?$Reference@VXConstantTypeDescription reflection@star sun@com@@@uno star@sun com@@CAPAVXConstantTypeDescription reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXConstantsTypeDescription reflection@star sun@com@@@uno star@sun com@@CAPAVXConstantsTypeDescription reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXDefaultProperty script@star sun@com@@@uno star@sun com@@CAPAVXDefaultProperty script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXExactName beans@star sun@com@@@uno star@sun com@@CAPAVXExactName beans@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXHierarchicalNameAccess container@star sun@com@@@uno star@sun com@@CAPAVXHierarchicalNameAccess container@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIdlArray reflection@star sun@com@@@uno star@sun com@@CAPAVXIdlArray reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@CAPAVXIdlClass reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIdlClassProvider reflection@star sun@com@@@uno star@sun com@@CAPAVXIdlClassProvider reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIdlField reflection@star sun@com@@@uno star@sun com@@CAPAVXIdlField reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIdlMethod reflection@star sun@com@@@uno star@sun com@@CAPAVXIdlMethod reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIdlReflection reflection@star sun@com@@@uno star@sun com@@CAPAVXIdlReflection reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIntrospection beans@star sun@com@@@uno star@sun com@@CAPAVXIntrospection beans@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIntrospectionAccess beans@star sun@com@@@uno star@sun com@@CAPAVXIntrospectionAccess beans@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXInvocation script@star sun@com@@@uno star@sun com@@CAPAVXInvocation script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXInvocationAdapterFactory script@star sun@com@@@uno star@sun com@@CAPAVXInvocationAdapterFactory script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXMaterialHolder beans@star sun@com@@@uno star@sun com@@CAPAVXMaterialHolder beans@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXMultiComponentFactory lang@star sun@com@@@uno star@sun com@@CAPAVXMultiComponentFactory lang@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXServiceInfo lang@star sun@com@@@uno star@sun com@@CAPAVXServiceInfo lang@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXTypeConverter script@star sun@com@@@uno star@sun com@@CAPAVXTypeConverter script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXTypeDescription reflection@star sun@com@@@uno star@sun com@@CAPAVXTypeDescription reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXTypeDescriptionEnumeration reflection@star sun@com@@@uno star@sun com@@CAPAVXTypeDescriptionEnumeration reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXTypeDescriptionEnumerationAccess reflection@star sun@com@@@uno star@sun com@@CAPAVXTypeDescriptionEnumerationAccess reflection@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXTypeProvider lang@star sun@com@@@uno star@sun com@@CAPAVXTypeProvider lang@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXAllListener script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXAllListener script@345@@Z
+-?castToXInterface ?$Reference@VXExactName beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXExactName beans@345@@Z
+-?castToXInterface ?$Reference@VXHierarchicalNameAccess container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXHierarchicalNameAccess container@345@@Z
+-?castToXInterface ?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXIdlClass reflection@345@@Z
+-?castToXInterface ?$Reference@VXIdlMethod reflection@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXIdlMethod reflection@345@@Z
+-?castToXInterface ?$Reference@VXIntrospection beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXIntrospection beans@345@@Z
+-?castToXInterface ?$Reference@VXIntrospectionAccess beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXIntrospectionAccess beans@345@@Z
+-?castToXInterface ?$Reference@VXInvocation script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXInvocation script@345@@Z
+-?castToXInterface ?$Reference@VXMaterialHolder beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXMaterialHolder beans@345@@Z
+-?castToXInterface ?$Reference@VXMultiServiceFactory lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXMultiServiceFactory lang@345@@Z
+-?castToXInterface ?$Reference@VXTypeConverter script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXTypeConverter script@345@@Z
+-?castToXInterface ?$Reference@VXTypeDescriptionEnumeration reflection@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXTypeDescriptionEnumeration reflection@345@@Z
+-?castToXInterface ?$Reference@VXTypeProvider lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXTypeProvider lang@345@@Z
+-?checkUnoObjectType@@YA_NPAVSbUnoObject@@ABVString@@@Z
+-?clear ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAEXXZ
+-?clearUnoMethods@@YAXXZ
+-?compareTo OUString@rtl@@QBEJABV12@@Z
+-?concat OUString@rtl@@QBE?AV12 ABV12@@Z
+-?convertAny@@YA?AVAny uno@star sun@com@@ABV12345 ABVType@2345@@Z
+-?copy OUString@rtl@@QBE?AV12 J@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBUProperty@1234@@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBVXExactName@1234@@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBVXIntrospection@1234@@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBVXMaterialHolder@1234@@Z
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVXHierarchicalNameAccess@1234@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBF Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBJ Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBK Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBM Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBN Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBUUnoCharType 2@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBUUnoUnsignedShortType 2@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBUUnoVoidType 2@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBVAny 4567@@Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PB_J Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PB_K Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PB_N Z
+-?cppu_detail_getUnoType lang@star sun@com@@YAABVType uno@234 PBVXMultiServiceFactory@1234@@Z
+-?cppu_detail_getUnoType lang@star sun@com@@YAABVType uno@234 PBVXServiceInfo@1234@@Z
+-?cppu_detail_getUnoType oleautomation@bridge star@sun com@@YAABVType uno@345 PBUCurrency@12345@@Z
+-?cppu_detail_getUnoType oleautomation@bridge star@sun com@@YAABVType uno@345 PBUDate@12345@@Z
+-?cppu_detail_getUnoType oleautomation@bridge star@sun com@@YAABVType uno@345 PBUDecimal@12345@@Z
+-?cppu_detail_getUnoType oleautomation@bridge star@sun com@@YAABVType uno@345 PBUNamedArgument@12345@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBUParamInfo@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXConstantTypeDescription@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXConstantsTypeDescription@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXIdlClass@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXIdlClassProvider@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXIdlMethod@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXIdlReflection@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXTypeDescription@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVXTypeDescriptionEnumerationAccess@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBUArrayWrapper@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVBasicErrorException@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXAllListener@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXDefaultProperty@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXInvocation@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXInvocationAdapterFactory@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXTypeConverter@1234@@Z
+-?cppu_detail_getUnoType uno@star sun@com@@YAABVType 1234@PBVXComponentContext 1234@@Z
+-?cppu_detail_getUnoType uno@star sun@com@@YAABVType 1234@PBW4TypeClass 1234@@Z
+-?createAllListenerAdapter@@YA?AV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@ABV?$Reference VXInvocationAdapterFactory@script star@sun com@@@2345 ABV?$Reference@VXIdlClass reflection@star sun@com@@@2345 ABV?$Reference@VXAllListener script@star sun@com@@@2345 ABVAny@2345@@Z
+-?createAllObjectProperties@@YAXPAVSbxObject@@@Z
+-?createAllProperties SbUnoObject@@QAEXXZ
+-?createOLEObject_Impl@@YAPAVSbUnoObject@@ABVString@@@Z
+-?deallocate ?$allocator@U?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 I@Z
+-?disposing BasicAllListener_Impl@@UAAXABUEventObject lang@star sun@com@@@Z
+-?doIntrospection SbUnoObject@@QAEXXZ
+-?end ?$hash_map@VOUString rtl@@VAny uno@star sun@com@@UOUStringHash 2@U?$equal_to VOUString@rtl@@@_STL@@V?$allocator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@2 XZ
+-?end ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@2 XZ
+-?enum2int cppu@@YAEAAJABVAny uno@star sun@com@@@Z
+-?equalsIgnoreAsciiCase OUString@rtl@@QBEEABV12@@Z
+-?find ?$hash_map@VOUString rtl@@VAny uno@star sun@com@@UOUStringHash 2@U?$equal_to VOUString@rtl@@@_STL@@V?$allocator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@_STL@@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 VOUString@rtl@@UOUStringHash 5@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@2 ABVOUString@rtl@@@Z
+-?findUnoClass@@YAPAVSbxVariable@@ABVString@@@Z
+-?firing BasicAllListener_Impl@@UAAXABUAllEventObject script@star sun@com@@@Z
+-?firing_impl BasicAllListener_Impl@@EAEXABUAllEventObject script@star sun@com@@PAVAny uno@456@@Z
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXAllListener@script star@sun com@@V?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXInvocation@script star@sun com@@V?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$UnoType@F cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@J cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@K cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@M cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@N cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UArrayWrapper script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UCurrency oleautomation@bridge star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UDate oleautomation@bridge star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UDecimal oleautomation@bridge star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UNamedArgument oleautomation@bridge star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UParamInfo reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UProperty beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UUnoCharType cppu@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UUnoUnsignedShortType cppu@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@UUnoVoidType cppu@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXAllListener@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXComponentContext@uno star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXConstantTypeDescription@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXConstantsTypeDescription@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXDefaultProperty@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXExactName@beans star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXIdlClassProvider@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXIdlReflection@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXIntrospection@beans star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInvocationAdapterFactory@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXMaterialHolder@beans star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXServiceInfo@lang star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXTypeDescription@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXTypeDescriptionEnumerationAccess@reflection star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VAny uno@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VBasicErrorException script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXAllListener script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXComponentContext uno@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXConstantTypeDescription reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXConstantsTypeDescription reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXDefaultProperty script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXExactName beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXHierarchicalNameAccess container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXIdlClass reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXIdlClassProvider reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXIdlMethod reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXIdlReflection reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXIntrospection beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInvocation script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInvocationAdapterFactory script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXMaterialHolder beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXMultiServiceFactory lang@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXServiceInfo lang@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXTypeConverter script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXTypeDescription reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXTypeDescriptionEnumerationAccess reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@W4TypeClass uno@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@_J cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@_K cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@_N cppu@@SAABVType uno@star sun@com@@XZ
+-?getArray ?$Sequence@J uno@star sun@com@@QAAPAJXZ
+-?getArray ?$Sequence@V?$Reference VXConstantTypeDescription@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@QAAPAV?$Reference VXConstantTypeDescription@reflection star@sun com@@@2345 XZ
+-?getArray ?$Sequence@VAny uno@star sun@com@@@uno star@sun com@@QAAPAVAny 2345@XZ
+-?getArray ?$Sequence@W4TypeClass uno@star sun@com@@@uno star@sun com@@QAAPAW4TypeClass 2345@XZ
+-?getBasicObjectTypeName@@YA?AVString@@PAVSbxObject@@@Z
+-?getBooleanCppuType@@YAABVType uno@star sun@com@@XZ
+-?getCharCppuType@@YAABVType uno@star sun@com@@XZ
+-?getComponentContext_Impl@@YA?AV?$Reference VXComponentContext@uno star@sun com@@@uno star@sun com@@XZ
+-?getConstArray ?$Sequence@F uno@star sun@com@@QBAPBFXZ
+-?getConstArray ?$Sequence@UParamInfo reflection@star sun@com@@@uno star@sun com@@QBAPBUParamInfo reflection@345 XZ
+-?getConstArray ?$Sequence@UProperty beans@star sun@com@@@uno star@sun com@@QBAPBUProperty beans@345 XZ
+-?getConstArray ?$Sequence@V?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAPBV?$Reference VXIdlClass@reflection star@sun com@@@2345 XZ
+-?getConstArray ?$Sequence@V?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAPBV?$Reference VXIdlMethod@reflection star@sun com@@@2345 XZ
+-?getConstArray ?$Sequence@VAny uno@star sun@com@@@uno star@sun com@@QBAPBVAny 2345@XZ
+-?getConstArray ?$Sequence@VType uno@star sun@com@@@uno star@sun com@@QBAPBVType 2345@XZ
+-?getCoreReflection_HierarchicalNameAccess_Impl@@YA?AV?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@XZ
+-?getCoreReflection_Impl@@YA?AV?$Reference VXIdlReflection@reflection star@sun com@@@uno star@sun com@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBC Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBE Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBF Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBG Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBJ Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBK Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBM Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBN Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBUCurrency oleautomation@bridge 345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBUDate oleautomation@bridge 345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBUDecimal oleautomation@bridge 345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXAllListener@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXConstantsTypeDescription@reflection star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXDefaultProperty@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXExactName@beans star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXHierarchicalNameAccess@container star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlClass@reflection star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXIdlClassProvider@reflection star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXIntrospection@beans star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInvocation@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInvocationAdapterFactory@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXMaterialHolder@beans star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXMultiServiceFactory@lang star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXServiceInfo@lang star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeConverter@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXTypeDescriptionEnumerationAccess@reflection star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBVAny 2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBVBasicErrorException script@345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBVOUString rtl@@@Z
+-?getCppuVoidType@@YAABVType uno@star sun@com@@XZ
+-?getDbgObjectName@@YA?AVString@@PAVSbUnoObject@@@Z
+-?getDbgObjectNameImpl@@YA?AVString@@PAVSbUnoObject@@@Z
+-?getDefaultProp@@YAPAVSbxVariable@@PAV1@@Z
+-?getDefaultPropName SbUnoObject@@SA_NPAV1 AAVString@@@Z
+-?getDescription Type@uno star@sun com@@QBAXPAPAU_typelib_TypeDescription@@@Z
+-?getImplementationId ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getIntrospection InvocationToAllListenerMapper@@UAA?AV?$Reference VXIntrospectionAccess@beans star@sun com@@@uno star@sun com@@XZ
+-?getIntrospectionAccess SbUnoObject@@QAE?AV?$Reference VXIntrospectionAccess@beans star@sun com@@@uno star@sun com@@XZ
+-?getInvocation SbUnoObject@@QAE?AV?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@XZ
+-?getLength ?$Sequence@F uno@star sun@com@@QBAJXZ
+-?getLength ?$Sequence@J uno@star sun@com@@QBAJXZ
+-?getLength ?$Sequence@UParamInfo reflection@star sun@com@@@uno star@sun com@@QBAJXZ
+-?getLength ?$Sequence@UProperty beans@star sun@com@@@uno star@sun com@@QBAJXZ
+-?getLength ?$Sequence@V?$Reference VXConstantTypeDescription@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAJXZ
+-?getLength ?$Sequence@V?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAJXZ
+-?getLength ?$Sequence@V?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAJXZ
+-?getLength ?$Sequence@VAny uno@star sun@com@@@uno star@sun com@@QBAJXZ
+-?getLength ?$Sequence@VType uno@star sun@com@@@uno star@sun com@@QBAJXZ
+-?getNames AutomationNamedArgsSbxArray@@QAEAAV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getParamInfos SbUnoMethod@@QAEABV?$Sequence UParamInfo@reflection star@sun com@@@uno star@sun com@@XZ
+-?getStr OString@rtl@@QBEPBDXZ
+-?getStr OUString@rtl@@QBEPBGXZ
+-?getTypeClass Type@uno star@sun com@@QBA?AW4TypeClass 2345@XZ
+-?getTypeConverter_Impl@@YA?AV?$Reference VXTypeConverter@script star@sun com@@@uno star@sun com@@XZ
+-?getTypeDescriptorEnumeration@@YA?AV?$Reference VXTypeDescriptionEnumeration@reflection star@sun com@@@uno star@sun com@@ABVOUString rtl@@ABV?$Sequence W4TypeClass@uno star@sun com@@@2345 W4TypeDescriptionSearchDepth@reflection 345@@Z
+-?getTypeFavourUnsigned cppu@@YAABVType uno@star sun@com@@PBG Z
+-?getTypeName Type@uno star@sun com@@QBA?AVOUString rtl@@XZ
+-?getTypeProvider_Impl@@YA?AV?$Reference VXHierarchicalNameAccess@container star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getUnoAny SbUnoObject@@QAE?AVAny uno@star sun@com@@XZ
+-?getUnoTypeForSbxBaseType@@YA?AVType uno@star sun@com@@W4SbxDataType@@@Z
+-?getUnoTypeForSbxValue@@YA?AVType uno@star sun@com@@PAVSbxValue@@@Z
+-?getVBAConstant@@YAPAVSbxVariable@@ABVString@@@Z
+-?getValue Any@uno star@sun com@@QBAPBXXZ
+-?getValue InvocationToAllListenerMapper@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getValue SbUnoAnyObject@@QAEABVAny uno@star sun@com@@XZ
+-?getValueTypeClass Any@uno star@sun com@@QBA?AW4TypeClass 2345@XZ
+-?hasMethod InvocationToAllListenerMapper@@UAAEABVOUString rtl@@@Z
+-?hasProperty InvocationToAllListenerMapper@@UAAEABVOUString rtl@@@Z
+-?hashCode OUString@rtl@@QBEJXZ
+-?implCreateAll SbUnoObject@@AAEXXZ
+-?implCreateDbgProperties SbUnoObject@@AAEXXZ
+-?implGetExceptionMsg@@YA?AVString@@AAVException uno@star sun@com@@@Z
+-?implGetExceptionMsg@@YA?AVString@@AAVException uno@star sun@com@@ABV1@@Z
+-?implGetWrappedMsg@@YA?AVString@@AAVWrappedTargetException lang@star sun@com@@@Z
+-?implHandleBasicErrorException@@YAXAAVBasicErrorException script@star sun@com@@@Z
+-?implHandleWrappedTargetException@@YAXAAVWrappedTargetException lang@star sun@com@@@Z
+-?int2enum cppu@@YA?AVAny uno@star sun@com@@JABVType 3456@@Z
+-?invoke InvocationToAllListenerMapper@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@ABV?$Sequence VAny@uno star@sun com@@@3456 AAV?$Sequence@F 3456@AAV93456@@Z
+-?iquery ?$Reference@VXConstantsTypeDescription reflection@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXDefaultProperty script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXExactName beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXHierarchicalNameAccess container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXIdlClassProvider reflection@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXIntrospection beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXInvocation script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXInvocationAdapterFactory script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXMaterialHolder beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXMultiServiceFactory lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXNameAccess container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXPropertySet beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXServiceInfo lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXTypeConverter script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXTypeDescriptionEnumerationAccess reflection@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXTypeProvider lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?isInvocationBased SbUnoMethod@@QAE_NXZ
+-?isInvocationBased SbUnoProperty@@QAE_NXZ
+-?lastIndexOf OUString@rtl@@QBEJG Z
+-?query ?$Reference@VXExactName beans@star sun@com@@@uno star@sun com@@SA?AV12345 ABVBaseReference@2345@@Z
+-?query ?$Reference@VXIntrospection beans@star sun@com@@@uno star@sun com@@SA?AV12345 ABVBaseReference@2345@@Z
+-?query ?$Reference@VXMaterialHolder beans@star sun@com@@@uno star@sun com@@SA?AV12345 ABVBaseReference@2345@@Z
+-?queryInterface ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?realloc ?$Sequence@J uno@star sun@com@@QAAXJ Z
+-?realloc ?$Sequence@VAny uno@star sun@com@@@uno star@sun com@@QAAXJ Z
+-?release ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXAllListener script@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXInvocation script@star sun@com@@@cppu@@WBE AAXXZ
+-?resize ?$hashtable@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@VOUString rtl@@UOUStringHash 4@U?$_Select1st U?$pair@$$CBVOUString rtl@@VAny uno@star sun@com@@@_STL@@@2 U?$equal_to@VOUString rtl@@@2 V?$allocator@U?$pair $$CBVOUString@rtl@@VAny uno@star sun@com@@@_STL@@@2@@_STL@@QAEXI Z
+-?s_cd ?1???R?$ImplClassData1@VXAllListener script@star sun@com@@V?$WeakImplHelper1 VXAllListener@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXInvocation script@star sun@com@@V?$WeakImplHelper1 VXInvocation@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_pType ?$Sequence@F uno@star sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@J uno@star sun@com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@UParamInfo reflection@star sun@com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@UProperty beans@star sun@com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@V?$Reference VXConstantTypeDescription@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@V?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@V?$Reference VXIdlMethod@reflection star@sun com@@@uno star@sun com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@VAny uno@star sun@com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@W4TypeClass uno@star sun@com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?sbxToUnoValue@@YA?AVAny uno@star sun@com@@PAVSbxVariable@@@Z
+-?sbxToUnoValue@@YA?AVAny uno@star sun@com@@PAVSbxVariable@@ABVType 2345@PAUProperty beans@345@@Z
+-?sbxToUnoValueImpl@@YA?AVAny uno@star sun@com@@PAVSbxVariable@@_N Z
+-?set ?$Reference@VXExactName beans@star sun@com@@@uno star@sun com@@QAAEPAVXExactName beans@345@@Z
+-?set ?$Reference@VXHierarchicalNameAccess container@star sun@com@@@uno star@sun com@@QAAEPAVXHierarchicalNameAccess container@345@@Z
+-?set ?$Reference@VXIdlClass reflection@star sun@com@@@uno star@sun com@@QAAEPAVXIdlClass reflection@345@@Z
+-?set ?$Reference@VXIdlMethod reflection@star sun@com@@@uno star@sun com@@QAAEPAVXIdlMethod reflection@345@@Z
+-?set ?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@QAAEPAVXInterface 2345@@Z
+-?set ?$Reference@VXIntrospection beans@star sun@com@@@uno star@sun com@@QAAEPAVXIntrospection beans@345@@Z
+-?set ?$Reference@VXIntrospectionAccess beans@star sun@com@@@uno star@sun com@@QAAEPAVXIntrospectionAccess beans@345@@Z
+-?set ?$Reference@VXInvocation script@star sun@com@@@uno star@sun com@@QAAEPAVXInvocation script@345@@Z
+-?set ?$Reference@VXMaterialHolder beans@star sun@com@@@uno star@sun com@@QAAEPAVXMaterialHolder beans@345@@Z
+-?set ?$Reference@VXMultiServiceFactory lang@star sun@com@@@uno star@sun com@@QAAEPAVXMultiServiceFactory lang@345@@Z
+-?set ?$Reference@VXTypeConverter script@star sun@com@@@uno star@sun com@@QAAEPAVXTypeConverter script@345@@Z
+-?set ?$Reference@VXTypeDescriptionEnumeration reflection@star sun@com@@@uno star@sun com@@QAAEPAVXTypeDescriptionEnumeration reflection@345@@Z
+-?set ?$Reference@VXTypeProvider lang@star sun@com@@@uno star@sun com@@QAAEPAVXTypeProvider lang@345@@Z
+-?setValue Any@uno star@sun com@@QAAXPBXABVType 2345@@Z
+-?setValue InvocationToAllListenerMapper@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?static_type XAllListener@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XConstantsTypeDescription@reflection star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XDefaultProperty@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XExactName@beans star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XHierarchicalNameAccess@container star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XIdlClass@reflection star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XIdlClassProvider@reflection star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XIntrospection@beans star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XInvocation@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XInvocationAdapterFactory@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XMaterialHolder@beans star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XMultiServiceFactory@lang star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XServiceInfo@lang star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XTypeConverter@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XTypeDescriptionEnumerationAccess@reflection star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBUProperty@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBVXExactName@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBVXIntrospection@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBVXMaterialHolder@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVXHierarchicalNameAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@lang star@sun com@@YAABVType uno@345 PBVXMultiServiceFactory@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@lang star@sun com@@YAABVType uno@345 PBVXServiceInfo@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@oleautomation bridge@star sun@com@@YAABVType uno@456 PBUCurrency@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@oleautomation bridge@star sun@com@@YAABVType uno@456 PBUDate@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@oleautomation bridge@star sun@com@@YAABVType uno@456 PBUDecimal@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@oleautomation bridge@star sun@com@@YAABVType uno@456 PBUNamedArgument@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBUParamInfo@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXConstantTypeDescription@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXConstantsTypeDescription@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXIdlClass@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXIdlClassProvider@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXIdlMethod@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXIdlReflection@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXTypeDescription@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVXTypeDescriptionEnumerationAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBUArrayWrapper@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVBasicErrorException@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXAllListener@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXDefaultProperty@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXInvocation@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXInvocationAdapterFactory@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXTypeConverter@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@uno star@sun com@@YAABVType 2345@PBVXComponentContext 2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@uno star@sun com@@YAABVType 2345@PBW4TypeClass 2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?toAsciiLowerCase OUString@rtl@@QBE?AV12 XZ
+-?unoToSbxType@@YA?AW4SbxDataType@@ABV?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@@Z
+-?unoToSbxType@@YA?AW4SbxDataType@@W4TypeClass uno@star sun@com@@@Z
+-?unoToSbxValue@@YAXPAVSbxVariable@@ABVAny uno@star sun@com@@@Z
+-_TI3?AVDeploymentException uno@star sun@com@@
+-_real 00000000
+-_real 0000000000000000
+-_real 405fc00000000000
+-_real 40dfffc000000000
+-_real 41dfffffffc00000
+-_real 41f0000000000000
+-_real c060000000000000
+-_real c0e0000000000000
+-_real c1dfffffffc00000
+-??$cppu_detail_getUnoType VXPropertyAccess@beans star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertyAccess@beans star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXPropertyContainer@beans star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertyContainer@beans star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXPropertySetInfo@beans star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertySetInfo@beans star@sun com@@@3456@@Z
+-??$getCppuType UPropertyValue@beans star@sun com@@@@YAABVType uno@star sun@com@@PBV?$Sequence UPropertyValue@beans star@sun com@@@1234@@Z
+-??$getTypeFavourUnsigned UPropertyValue@beans star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBUPropertyValue beans@345@@Z
+-??$getTypeFavourUnsigned UPropertyValue@beans star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence UPropertyValue@beans star@sun com@@@2345@@Z
+-??$static_int_cast JI@sal@@YAJI Z
+-??0?$Reference VXPropertyAccess@beans star@sun com@@@uno star@sun com@@QAE PAVXPropertyAccess@beans 234@W4__sal_NoAcquire@@@Z
+-??0?$Reference VXPropertySetInfo@beans star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXPropertySetInfo@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Sequence UProperty@beans star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Sequence UProperty@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@QAE J@Z
+-??0?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@QAE XZ
+-??0?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@QAE XZ
+-??0PropertyExistException beans@star sun@com@@QAE ABV01234@@Z
+-??0PropertyExistException beans@star sun@com@@QAE XZ
+-??0PropertySetInfoImpl@@QAE XZ
+-??0PropertyValue beans@star sun@com@@QAE ABU01234@@Z
+-??0SbPropertyContainer@@QAE XZ
+-??0SbPropertySetInfo@@QAE ABVSbPropertyValueArr_Impl@@@Z
+-??0SbPropertySetInfo@@QAE XZ
+-??0SbPropertyValueArr_Impl@@QAE GE@Z
+-??0SbPropertyValues@@QAE XZ
+-??0XPropertyAccess beans@star sun@com@@QAE XZ
+-??0XPropertyContainer beans@star sun@com@@QAE XZ
+-??0XPropertySet beans@star sun@com@@QAE XZ
+-??0XPropertySetInfo beans@star sun@com@@QAE XZ
+-??1?$Reference VXPropertyAccess@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXPropertySetInfo@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@UAE XZ
+-??1?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@UAE XZ
+-??1PropertyExistException beans@star sun@com@@QAE XZ
+-??1PropertySetInfoImpl@@QAE XZ
+-??1PropertyValue beans@star sun@com@@QAE XZ
+-??1SbPropertyContainer@@UAE XZ
+-??1SbPropertySetInfo@@UAE XZ
+-??1SbPropertyValueArr_Impl@@QAE XZ
+-??1SbPropertyValues@@UAE XZ
+-??4?$Reference VXPropertySetInfo@beans star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXPropertySetInfo@beans star@sun com@@@uno star@sun com@@QAAAAV01234 PAVXPropertySetInfo@beans 234@@Z
+-??4PropertyValue beans@star sun@com@@QAEAAU01234 ABU01234@@Z
+-??C?$Reference VXPropertyAccess@beans star@sun com@@@uno star@sun com@@QBAPAVXPropertyAccess beans@234 XZ
+-??R?$ImplClassData1 VXPropertySetInfo@beans star@sun com@@V?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@V?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@V?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??_7SbPropertyContainer@@6BOWeakObject cppu@@@
+-??_7SbPropertyContainer@@6BXPropertyContainer beans@star sun@com@@@
+-??_7SbPropertyContainer@@6BXPropertySetInfo beans@star sun@com@@@
+-??_7SbPropertyContainer@@6BXTypeProvider lang@star sun@com@@@
+-??_7SbPropertySetInfo@@6BOWeakObject cppu@@@
+-??_7SbPropertySetInfo@@6BXPropertySetInfo beans@star sun@com@@@
+-??_7SbPropertySetInfo@@6BXTypeProvider lang@star sun@com@@@
+-??_7SbPropertyValues@@6BOWeakObject cppu@@@
+-??_7SbPropertyValues@@6BXPropertyAccess beans@star sun@com@@@
+-??_7SbPropertyValues@@6BXPropertySet beans@star sun@com@@@
+-??_7SbPropertyValues@@6BXTypeProvider lang@star sun@com@@@
+-??_C _0CB@CAMHJNFE com?4sun?4star?4beans?4PropertyValue@
+-??_C _0CD@NJJMBOP com?4sun?4star?4beans?4XPropertyAcce@
+-??_C _0CE@CNOPAMND com?4sun?4star?4beans?4XPropertySetI@
+-??_C _0CG@KNEDEFMB com?4sun?4star?4beans?4XPropertyCont@
+-??_GPropertyValue beans@star sun@com@@QAEPAXI Z
+-??_GSbPropertyContainer@@UAEPAXI Z
+-??_GSbPropertySetInfo@@UAEPAXI Z
+-??_GSbPropertyValues@@UAEPAXI Z
+-??_R0?AV?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@@8
+-??_R0?AV?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@@8
+-??_R0?AVPropertyExistException beans@star sun@com@@@8
+-??_R0?AVSbPropertyContainer@@@8
+-??_R0?AVSbPropertySetInfo@@@8
+-??_R0?AVSbPropertyValues@@@8
+-??_R0?AVXPropertyAccess beans@star sun@com@@@8
+-??_R0?AVXPropertyContainer beans@star sun@com@@@8
+-??_R0?AVXPropertySet beans@star sun@com@@@8
+-??_R0?AVXPropertySetInfo beans@star sun@com@@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@8
+-??_R1A ?0A@EA SbPropertyContainer@@8
+-??_R1A ?0A@EA SbPropertySetInfo@@8
+-??_R1A ?0A@EA SbPropertyValues@@8
+-??_R1A ?0A@EA XPropertyAccess@beans star@sun com@@8
+-??_R1A ?0A@EA XPropertyContainer@beans star@sun com@@8
+-??_R1A ?0A@EA XPropertySet@beans star@sun com@@8
+-??_R1A ?0A@EA XPropertySetInfo@beans star@sun com@@8
+-??_R1BE ?0A@EA XPropertySet@beans star@sun com@@8
+-??_R1BE ?0A@EA XPropertySetInfo@beans star@sun com@@8
+-??_R1BI ?0A@EA XPropertyAccess@beans star@sun com@@8
+-??_R1BI ?0A@EA XPropertyContainer@beans star@sun com@@8
+-??_R1BI ?0A@EC XInterface@uno star@sun com@@8
+-??_R2?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@8
+-??_R2?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@8
+-??_R2SbPropertyContainer@@8
+-??_R2SbPropertySetInfo@@8
+-??_R2SbPropertyValues@@8
+-??_R2XPropertyAccess beans@star sun@com@@8
+-??_R2XPropertyContainer beans@star sun@com@@8
+-??_R2XPropertySet beans@star sun@com@@8
+-??_R2XPropertySetInfo beans@star sun@com@@8
+-??_R3?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@8
+-??_R3?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@8
+-??_R3SbPropertyContainer@@8
+-??_R3SbPropertySetInfo@@8
+-??_R3SbPropertyValues@@8
+-??_R3XPropertyAccess beans@star sun@com@@8
+-??_R3XPropertyContainer beans@star sun@com@@8
+-??_R3XPropertySet beans@star sun@com@@8
+-??_R3XPropertySetInfo beans@star sun@com@@8
+-??_R4SbPropertyContainer@@6BOWeakObject cppu@@@
+-??_R4SbPropertyContainer@@6BXPropertyContainer beans@star sun@com@@@
+-??_R4SbPropertyContainer@@6BXPropertySetInfo beans@star sun@com@@@
+-??_R4SbPropertyContainer@@6BXTypeProvider lang@star sun@com@@@
+-??_R4SbPropertySetInfo@@6BOWeakObject cppu@@@
+-??_R4SbPropertySetInfo@@6BXPropertySetInfo beans@star sun@com@@@
+-??_R4SbPropertySetInfo@@6BXTypeProvider lang@star sun@com@@@
+-??_R4SbPropertyValues@@6BOWeakObject cppu@@@
+-??_R4SbPropertyValues@@6BXPropertyAccess beans@star sun@com@@@
+-??_R4SbPropertyValues@@6BXPropertySet beans@star sun@com@@@
+-??_R4SbPropertyValues@@6BXTypeProvider lang@star sun@com@@@
+-?GetData SbPropertyValueArr_Impl@@QBEPBQAUPropertyValue beans@star sun@com@@XZ
+-?GetIndex_Impl PropertySetInfoImpl@@ABEJABVOUString rtl@@@Z
+-?GetIndex_Impl SbPropertyValues@@ABEJABVOUString rtl@@@Z
+-?GetObject SbPropertyValueArr_Impl@@QBEPAUPropertyValue beans@star sun@com@@G Z
+-?Insert SbPropertyValueArr_Impl@@QAEXABQAUPropertyValue beans@star sun@com@@G Z
+-?RTL_Impl_CreatePropertySet@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?SbCompare_Properties_Impl@@YAHPBX0 Z
+-?SbCompare_PropertyValues_Impl@@YAHPBX0 Z
+-?acquire ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBI AAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBI AAXXZ
+-?addProperty SbPropertyContainer@@UAAXABVOUString rtl@@FABVAny uno@star sun@com@@@Z
+-?addPropertyChangeListener SbPropertyValues@@UAAXABVOUString rtl@@ABV?$Reference VXPropertyChangeListener@beans star@sun com@@@uno star@sun com@@@Z
+-?addVetoableChangeListener SbPropertyValues@@UAAXABVOUString rtl@@ABV?$Reference VXVetoableChangeListener@beans star@sun com@@@uno star@sun com@@@Z
+-?castFromXInterface ?$Reference@VXPropertyAccess beans@star sun@com@@@uno star@sun com@@CAPAVXPropertyAccess beans@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXPropertySetInfo beans@star sun@com@@@uno star@sun com@@CAPAVXPropertySetInfo beans@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXPropertyAccess beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXPropertyAccess beans@345@@Z
+-?castToXInterface ?$Reference@VXPropertySetInfo beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXPropertySetInfo beans@345@@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBUPropertyValue@1234@@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBVXPropertyAccess@1234@@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBVXPropertyContainer@1234@@Z
+-?cppu_detail_getUnoType beans@star sun@com@@YAABVType uno@234 PBVXPropertySetInfo@1234@@Z
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXPropertySetInfo@beans star@sun com@@V?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@V?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@V?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$UnoType@UPropertyValue beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXPropertyAccess@beans star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXPropertyContainer@beans star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXPropertySetInfo@beans star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXPropertyAccess beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXPropertyContainer beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXPropertySetInfo beans@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getArray ?$Sequence@UProperty beans@star sun@com@@@uno star@sun com@@QAAPAUProperty beans@345 XZ
+-?getArray ?$Sequence@UPropertyValue beans@star sun@com@@@uno star@sun com@@QAAPAUPropertyValue beans@345 XZ
+-?getConstArray ?$Sequence@UPropertyValue beans@star sun@com@@@uno star@sun com@@QBAPBUPropertyValue beans@345 XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertyAccess@beans star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertyContainer@beans star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXPropertySetInfo@beans star@sun com@@@2345@@Z
+-?getImplementationId ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getLength ?$Sequence@UPropertyValue beans@star sun@com@@@uno star@sun com@@QBAJXZ
+-?getProperties PropertySetInfoImpl@@QAA?AV?$Sequence UProperty@beans star@sun com@@@uno star@sun com@@XZ
+-?getProperties SbPropertyContainer@@UAA?AV?$Sequence UProperty@beans star@sun com@@@uno star@sun com@@XZ
+-?getProperties SbPropertySetInfo@@UAA?AV?$Sequence UProperty@beans star@sun com@@@uno star@sun com@@XZ
+-?getPropertyByName PropertySetInfoImpl@@QAA?AUProperty beans@star sun@com@@ABVOUString rtl@@@Z
+-?getPropertyByName SbPropertyContainer@@UAA?AUProperty beans@star sun@com@@ABVOUString rtl@@@Z
+-?getPropertyByName SbPropertySetInfo@@UAA?AUProperty beans@star sun@com@@ABVOUString rtl@@@Z
+-?getPropertySetInfo SbPropertyValues@@UAA?AV?$Reference VXPropertySetInfo@beans star@sun com@@@uno star@sun com@@XZ
+-?getPropertyValue SbPropertyValues@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getPropertyValues SbPropertyContainer@@UAA?AV?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@XZ
+-?getPropertyValues SbPropertyValues@@UAA?AV?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?hasPropertyByName PropertySetInfoImpl@@QAAEABVOUString rtl@@@Z
+-?hasPropertyByName SbPropertyContainer@@UAAEABVOUString rtl@@@Z
+-?hasPropertyByName SbPropertySetInfo@@UAAEABVOUString rtl@@@Z
+-?iquery ?$Reference@VXPropertyAccess beans@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?query ?$Reference@VXPropertyAccess beans@star sun@com@@@uno star@sun com@@SA?AV12345 ABVBaseReference@2345@@Z
+-?queryInterface ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBI AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBI AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?realloc ?$Sequence@UProperty beans@star sun@com@@@uno star@sun com@@QAAXJ Z
+-?release ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXPropertySetInfo beans@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@@cppu@@WBI AAXXZ
+-?release ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@@cppu@@WBI AAXXZ
+-?removeProperty SbPropertyContainer@@UAAXABVOUString rtl@@@Z
+-?removePropertyChangeListener SbPropertyValues@@UAAXABVOUString rtl@@ABV?$Reference VXPropertyChangeListener@beans star@sun com@@@uno star@sun com@@@Z
+-?removeVetoableChangeListener SbPropertyValues@@UAAXABVOUString rtl@@ABV?$Reference VXVetoableChangeListener@beans star@sun com@@@uno star@sun com@@@Z
+-?s_cd ?1???R?$ImplClassData1@VXPropertySetInfo beans@star sun@com@@V?$WeakImplHelper1 VXPropertySetInfo@beans star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData2@VXPropertySet beans@star sun@com@@VXPropertyAccess 2345@V?$WeakImplHelper2 VXPropertySet@beans star@sun com@@VXPropertyAccess 2345@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data2@2 A
+-?s_cd ?1???R?$ImplClassData2@VXPropertySetInfo beans@star sun@com@@VXPropertyContainer 2345@V?$WeakImplHelper2 VXPropertySetInfo@beans star@sun com@@VXPropertyContainer 2345@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data2@2 A
+-?s_pType ?$Sequence@UPropertyValue beans@star sun@com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?set ?$Reference@VXPropertySetInfo beans@star sun@com@@@uno star@sun com@@QAAEPAVXPropertySetInfo beans@345@@Z
+-?setPropertyValue SbPropertyValues@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?setPropertyValues SbPropertyContainer@@UAAXABV?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@@Z
+-?setPropertyValues SbPropertyValues@@UAAXABV?$Sequence UPropertyValue@beans star@sun com@@@uno star@sun com@@@Z
+-?static_type XPropertyAccess@beans star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XPropertyContainer@beans star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XPropertySetInfo@beans star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBUPropertyValue@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBVXPropertyAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBVXPropertyContainer@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@beans star@sun com@@YAABVType uno@345 PBVXPropertySetInfo@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-SbCompare_UString_PropertyValue_Impl
+-SbCompare_UString_Property_Impl
+-_TI2?AVPropertyExistException beans@star sun@com@@
+-?Disassemble SbModule@@QAEEAAVString@@@Z
+-?GetId SbMethod@@QBEKXZ
+-??$?_2UScriptEventDescriptor script@star sun@com@@@uno star@sun com@@YAEABVAny 0123@AAUScriptEventDescriptor script@123@@Z
+-??$?_2V?$Reference VXInputStreamProvider@io star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXInputStreamProvider@io star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXModel@frame star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXStringResourceSupplier@resource star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXStringResourceSupplier@resource star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXControl@awt star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXControl@awt star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXStringResourceManager@resource star@sun com@@@0123@@Z
+-??$_Construct V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V12345@@_STL@@YAXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@ABV12345@@Z
+-??$_Destroy PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@YAXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@0 Z
+-??$_Destroy V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@YAXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@Z
+-??$__destroy PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V12345@@_STL@@YAXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@00 Z
+-??$__destroy_aux PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@YAXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@0ABU__false_type 0@@Z
+-??$__uninitialized_copy PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@PAV12345@@_STL@@YAPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@PAV12345 00ABU__false_type@0@@Z
+-??$__uninitialized_fill_n PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@IV12345@@_STL@@YAPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@PAV12345 IABV12345@ABU__false_type 0@@Z
+-??$cppu_detail_getUnoType VXControl@awt star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXControl@awt star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXControlContainer@awt star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXControlContainer@awt star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXControlModel@awt star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXControlModel@awt star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXEventAttacher@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXEventAttacher@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInputStreamProvider@io star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInputStreamProvider@io star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXScriptEventsAttacher@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptEventsAttacher@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXScriptEventsSupplier@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptEventsSupplier@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXScriptListener@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptListener@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXScriptProvider@provider script@star sun@com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptProvider@provider script@star sun@com@@@3456@@Z
+-??$cppu_detail_getUnoType VXScriptProviderFactory@provider script@star sun@com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptProviderFactory@provider script@star sun@com@@@3456@@Z
+-??$cppu_detail_getUnoType VXScriptProviderSupplier@provider script@star sun@com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptProviderSupplier@provider script@star sun@com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStringResourceManager@resource star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceManager@resource star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStringResourceSupplier@resource star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceSupplier@resource star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXToolkit@awt star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXToolkit@awt star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXWindow@awt star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXWindow@awt star@sun com@@@3456@@Z
+-??$getTypeFavourUnsigned UScriptEventDescriptor@script star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBUScriptEventDescriptor script@345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXControl awt@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXControl@awt star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXControl awt@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence V?$Reference@VXControl awt@star sun@com@@@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXInputStreamProvider io@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInputStreamProvider@io star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXStringResourceManager resource@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceManager@resource star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXStringResourceSupplier resource@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceSupplier@resource star@sun com@@@2345@@Z
+-??0?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXControl@awt star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXControlContainer@awt star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXControlModel@awt star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXEventAttacher@script star@sun com@@@uno star@sun com@@QAE PAVXEventAttacher@script 234@W4__sal_NoAcquire@@@Z
+-??0?$Reference VXEventAttacher@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXEventListener@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXInputStream@io star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXInputStreamProvider@io star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXScriptEventsAttacher@script star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXScriptEventsSupplier@script star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXScriptListener@script star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXScriptListener@script star@sun com@@@uno star@sun com@@QAE PAVXScriptListener@script 234@@Z
+-??0?$Reference VXScriptProvider@provider script@star sun@com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXScriptProviderFactory@provider script@star sun@com@@@uno star@sun com@@QAE ABVAny@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXScriptProviderSupplier@provider script@star sun@com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStringResourceSupplier@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXToolkit@awt star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXWindow@awt star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXWindowPeer@awt star@sun com@@@uno star@sun com@@QAE PAVXWindowPeer@awt 234@@Z
+-??0?$Sequence V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE J@Z
+-??0?$Sequence VAny@uno star@sun com@@@uno star@sun com@@QAE J@Z
+-??0?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@QAE XZ
+-??0BasicScriptListener_Impl@@QAE PAVStarBASIC@@ABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@@Z
+-??0DialogAllListener_Impl@@QAE ABV?$Reference@VXScriptListener script@star sun@com@@@uno star@sun com@@ABVOUString rtl@@1 Z
+-??0DialogEventAttacher@@QAE XZ
+-??0RuntimeException uno@star sun@com@@QAE XZ
+-??0ScriptEvent script@star sun@com@@QAE XZ
+-??0ScriptEventDescriptor script@star sun@com@@QAE XZ
+-??0ServiceNotRegisteredException lang@star sun@com@@QAE ABV01234@@Z
+-??0ServiceNotRegisteredException lang@star sun@com@@QAE XZ
+-??0XScriptEventsAttacher script@star sun@com@@QAE XZ
+-??0XScriptListener script@star sun@com@@QAE XZ
+-??1?$Reference VXControl@awt star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXControlContainer@awt star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXControlModel@awt star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXEventAttacher@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXEventListener@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInputStream@io star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInputStreamProvider@io star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXScript@provider script@star sun@com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXScriptEventsAttacher@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXScriptEventsSupplier@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXScriptListener@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXScriptProvider@provider script@star sun@com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXScriptProviderFactory@provider script@star sun@com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXScriptProviderSupplier@provider script@star sun@com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStringResourceResolver@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStringResourceSupplier@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXToolkit@awt star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXWindow@awt star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXWindowPeer@awt star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence V?$Reference@VXControl awt@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@UAE XZ
+-??1BasicScriptListener_Impl@@UAE XZ
+-??1DialogAllListener_Impl@@UAE XZ
+-??1DialogEventAttacher@@UAE XZ
+-??1ScriptEvent script@star sun@com@@QAE XZ
+-??1ScriptEventDescriptor script@star sun@com@@QAE XZ
+-??1ServiceNotRegisteredException lang@star sun@com@@QAE XZ
+-??2?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@SAPAXIPAX Z
+-??3?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@SAXPAX Z
+-??4?$Reference VXEventAttacher@script star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXEventListener@lang star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXScriptEventsAttacher@script star@sun com@@@uno star@sun com@@QAAAAV01234 PAVXScriptEventsAttacher@script 234@@Z
+-??4?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??8Any uno@star sun@com@@QBAEABV01234@@Z
+-??B?$Reference VXControl@awt star@sun com@@@uno star@sun com@@QBAABV?$Reference VXInterface@uno star@sun com@@@1234 XZ
+-??B?$Reference VXControlModel@awt star@sun com@@@uno star@sun com@@QBAABV?$Reference VXInterface@uno star@sun com@@@1234 XZ
+-??C?$Reference VXControl@awt star@sun com@@@uno star@sun com@@QBAPAVXControl awt@234 XZ
+-??C?$Reference VXControlContainer@awt star@sun com@@@uno star@sun com@@QBAPAVXControlContainer awt@234 XZ
+-??C?$Reference VXEventAttacher@script star@sun com@@@uno star@sun com@@QBAPAVXEventAttacher script@234 XZ
+-??C?$Reference VXInputStreamProvider@io star@sun com@@@uno star@sun com@@QBAPAVXInputStreamProvider io@234 XZ
+-??C?$Reference VXScript@provider script@star sun@com@@@uno star@sun com@@QBAPAVXScript provider@script 234@XZ
+-??C?$Reference VXScriptEventsAttacher@script star@sun com@@@uno star@sun com@@QBAPAVXScriptEventsAttacher script@234 XZ
+-??C?$Reference VXScriptEventsSupplier@script star@sun com@@@uno star@sun com@@QBAPAVXScriptEventsSupplier script@234 XZ
+-??C?$Reference VXScriptListener@script star@sun com@@@uno star@sun com@@QBAPAVXScriptListener script@234 XZ
+-??C?$Reference VXScriptProvider@provider script@star sun@com@@@uno star@sun com@@QBAPAVXScriptProvider provider@script 234@XZ
+-??C?$Reference VXScriptProviderFactory@provider script@star sun@com@@@uno star@sun com@@QBAPAVXScriptProviderFactory provider@script 234@XZ
+-??C?$Reference VXScriptProviderSupplier@provider script@star sun@com@@@uno star@sun com@@QBAPAVXScriptProviderSupplier provider@script 234@XZ
+-??C?$Reference VXStringResourceSupplier@resource star@sun com@@@uno star@sun com@@QBAPAVXStringResourceSupplier resource@234 XZ
+-??C?$Reference VXWindow@awt star@sun com@@@uno star@sun com@@QBAPAVXWindow awt@234 XZ
+-??R?$ImplClassData1 VXScriptEventsAttacher@script star@sun com@@V?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXScriptListener@script star@sun com@@V?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??_7BasicScriptListener_Impl@@6BOWeakObject cppu@@@
+-??_7BasicScriptListener_Impl@@6BXScriptListener script@star sun@com@@@
+-??_7BasicScriptListener_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7DialogAllListener_Impl@@6BOWeakObject cppu@@@
+-??_7DialogAllListener_Impl@@6BXAllListener script@star sun@com@@@
+-??_7DialogAllListener_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_7DialogEventAttacher@@6BOWeakObject cppu@@@
+-??_7DialogEventAttacher@@6BXScriptEventsAttacher script@star sun@com@@@
+-??_7DialogEventAttacher@@6BXTypeProvider lang@star sun@com@@@
+-??_C _0BJ@GKPHEPBP com?4sun?4star?4awt?4XWindow?$AA@
+-??_C _0BK@EJJIPFNI com?4sun?4star?4awt?4XToolkit?$AA@
+-??_C _0BK@PKNDOPC com?4sun?4star?4awt?4XControl?$AA@
+-??_C _0BP@OPIMOKEJ com?4sun?4star?4awt?4XControlModel?$AA@
+-??_C _0CD@GNAOMNIB com?4sun?4star?4script?4XEventAttach@
+-??_C _0CD@LBKEFAD com?4sun?4star?4awt?4XControlContain@
+-??_C _0CE@CKIAMDPB com?4sun?4star?4script?4XScriptListe@
+-??_C _0CF@GAPNOPJO com?4sun?4star?4io?4XInputStreamProv@
+-??_C _0CK@BAKBONKH com?4sun?4star?4script?4XScriptEvent@
+-??_C _0CK@FIBEICFH com?4sun?4star?4script?4XScriptEvent@
+-??_C _0CK@IHGNODNO com?4sun?4star?4script?4ScriptEventD@
+-??_C _0CN@OEFJCKOO com?4sun?4star?4resource?4XStringRes@
+-??_C _0CN@PMMKPOPB com?4sun?4star?4script?4provider?4XSc@
+-??_C _0CO@BNKICGOC com?4sun?4star?4resource?4XStringRes@
+-??_C _0DE@IEIDOHF com?4sun?4star?4script?4provider?4XSc@
+-??_C _0DF@DLOLNKAJ com?4sun?4star?4script?4provider?4XSc@
+-??_G?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@QAEPAXI Z
+-??_GBasicScriptListener_Impl@@UAEPAXI Z
+-??_GDialogAllListener_Impl@@UAEPAXI Z
+-??_GDialogEventAttacher@@UAEPAXI Z
+-??_R0?AV?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@@8
+-??_R0?AVBasicScriptListener_Impl@@@8
+-??_R0?AVCannotCreateAdapterException script@star sun@com@@@8
+-??_R0?AVDialogAllListener_Impl@@@8
+-??_R0?AVDialogEventAttacher@@@8
+-??_R0?AVIntrospectionException beans@star sun@com@@@8
+-??_R0?AVServiceNotRegisteredException lang@star sun@com@@@8
+-??_R0?AVXScriptEventsAttacher script@star sun@com@@@8
+-??_R0?AVXScriptListener script@star sun@com@@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA BasicScriptListener_Impl@@8
+-??_R1A ?0A@EA DialogAllListener_Impl@@8
+-??_R1A ?0A@EA DialogEventAttacher@@8
+-??_R1A ?0A@EA XScriptEventsAttacher@script star@sun com@@8
+-??_R1A ?0A@EA XScriptListener@script star@sun com@@8
+-??_R1BE ?0A@EA XScriptEventsAttacher@script star@sun com@@8
+-??_R1BE ?0A@EA XScriptListener@script star@sun com@@8
+-??_R2?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@8
+-??_R2BasicScriptListener_Impl@@8
+-??_R2DialogAllListener_Impl@@8
+-??_R2DialogEventAttacher@@8
+-??_R2XScriptEventsAttacher script@star sun@com@@8
+-??_R2XScriptListener script@star sun@com@@8
+-??_R3?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@8
+-??_R3BasicScriptListener_Impl@@8
+-??_R3DialogAllListener_Impl@@8
+-??_R3DialogEventAttacher@@8
+-??_R3XScriptEventsAttacher script@star sun@com@@8
+-??_R3XScriptListener script@star sun@com@@8
+-??_R4BasicScriptListener_Impl@@6BOWeakObject cppu@@@
+-??_R4BasicScriptListener_Impl@@6BXScriptListener script@star sun@com@@@
+-??_R4BasicScriptListener_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4DialogAllListener_Impl@@6BOWeakObject cppu@@@
+-??_R4DialogAllListener_Impl@@6BXAllListener script@star sun@com@@@
+-??_R4DialogAllListener_Impl@@6BXTypeProvider lang@star sun@com@@@
+-??_R4DialogEventAttacher@@6BOWeakObject cppu@@@
+-??_R4DialogEventAttacher@@6BXScriptEventsAttacher script@star sun@com@@@
+-??_R4DialogEventAttacher@@6BXTypeProvider lang@star sun@com@@@
+-?RTL_Impl_CreateUnoDialog@@YAXPAVStarBASIC@@AAVSbxArray@@E Z
+-?SFURL_firing_impl@@YAXABUScriptEvent script@star sun@com@@PAVAny uno@345 ABV?$Reference@VXModel frame@star sun@com@@@7345@@Z
+-?_M_clear ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@IAEXXZ
+-?_M_insert_overflow ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@IAEXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@ABV34567 ABU__false_type@2 I_N@Z
+-?_M_set ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@IAEXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@00 Z
+-?acquire ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@WBE AAXXZ
+-?allocate ?$allocator@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@_STL@@QBEPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@IPBX Z
+-?approveFiring BasicScriptListener_Impl@@UAA?AVAny uno@star sun@com@@ABUScriptEvent script@456@@Z
+-?approveFiring DialogAllListener_Impl@@UAA?AVAny uno@star sun@com@@ABUAllEventObject script@456@@Z
+-?attachDialogEvents@@YAXPAVStarBASIC@@ABV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@ABV?$Reference VXControl@awt star@sun com@@@3456@@Z
+-?attachEvents DialogEventAttacher@@UAAXABV?$Sequence V?$Reference@VXInterface uno@star sun@com@@@uno star@sun com@@@uno star@sun com@@ABV?$Reference VXScriptListener@script star@sun com@@@3456 ABVAny@3456@@Z
+-?castFromXInterface ?$Reference@VXControl awt@star sun@com@@@uno star@sun com@@CAPAVXControl awt@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXControlContainer awt@star sun@com@@@uno star@sun com@@CAPAVXControlContainer awt@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXEventAttacher script@star sun@com@@@uno star@sun com@@CAPAVXEventAttacher script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXEventListener lang@star sun@com@@@uno star@sun com@@CAPAVXEventListener lang@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXInputStreamProvider io@star sun@com@@@uno star@sun com@@CAPAVXInputStreamProvider io@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXScript provider@script star@sun com@@@uno star@sun com@@CAPAVXScript provider@script 345@PAVXInterface 2345@@Z
+-?castFromXInterface ?$Reference@VXScriptEventsAttacher script@star sun@com@@@uno star@sun com@@CAPAVXScriptEventsAttacher script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXScriptEventsSupplier script@star sun@com@@@uno star@sun com@@CAPAVXScriptEventsSupplier script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXScriptListener script@star sun@com@@@uno star@sun com@@CAPAVXScriptListener script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXScriptProvider provider@script star@sun com@@@uno star@sun com@@CAPAVXScriptProvider provider@script 345@PAVXInterface 2345@@Z
+-?castFromXInterface ?$Reference@VXScriptProviderFactory provider@script star@sun com@@@uno star@sun com@@CAPAVXScriptProviderFactory provider@script 345@PAVXInterface 2345@@Z
+-?castFromXInterface ?$Reference@VXScriptProviderSupplier provider@script star@sun com@@@uno star@sun com@@CAPAVXScriptProviderSupplier provider@script 345@PAVXInterface 2345@@Z
+-?castFromXInterface ?$Reference@VXStringResourceManager resource@star sun@com@@@uno star@sun com@@CAPAVXStringResourceManager resource@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStringResourceSupplier resource@star sun@com@@@uno star@sun com@@CAPAVXStringResourceSupplier resource@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXWindow awt@star sun@com@@@uno star@sun com@@CAPAVXWindow awt@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXEventAttacher script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXEventAttacher script@345@@Z
+-?castToXInterface ?$Reference@VXEventListener lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXEventListener lang@345@@Z
+-?castToXInterface ?$Reference@VXScriptEventsAttacher script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXScriptEventsAttacher script@345@@Z
+-?castToXInterface ?$Reference@VXScriptListener script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXScriptListener script@345@@Z
+-?castToXInterface ?$Reference@VXScriptProvider provider@script star@sun com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXScriptProvider provider@script 345@@Z
+-?castToXInterface ?$Reference@VXStringResourceManager resource@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStringResourceManager resource@345@@Z
+-?castToXInterface ?$Reference@VXWindowPeer awt@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXWindowPeer awt@345@@Z
+-?compareToAscii OUString@rtl@@QBEJPBD Z
+-?cppu_detail_getUnoType awt@star sun@com@@YAABVType uno@234 PBVXControl@1234@@Z
+-?cppu_detail_getUnoType awt@star sun@com@@YAABVType uno@234 PBVXControlContainer@1234@@Z
+-?cppu_detail_getUnoType awt@star sun@com@@YAABVType uno@234 PBVXControlModel@1234@@Z
+-?cppu_detail_getUnoType awt@star sun@com@@YAABVType uno@234 PBVXToolkit@1234@@Z
+-?cppu_detail_getUnoType awt@star sun@com@@YAABVType uno@234 PBVXWindow@1234@@Z
+-?cppu_detail_getUnoType io@star sun@com@@YAABVType uno@234 PBVXInputStreamProvider@1234@@Z
+-?cppu_detail_getUnoType provider@script star@sun com@@YAABVType uno@345 PBVXScriptProvider@12345@@Z
+-?cppu_detail_getUnoType provider@script star@sun com@@YAABVType uno@345 PBVXScriptProviderFactory@12345@@Z
+-?cppu_detail_getUnoType provider@script star@sun com@@YAABVType uno@345 PBVXScriptProviderSupplier@12345@@Z
+-?cppu_detail_getUnoType resource@star sun@com@@YAABVType uno@234 PBVXStringResourceManager@1234@@Z
+-?cppu_detail_getUnoType resource@star sun@com@@YAABVType uno@234 PBVXStringResourceSupplier@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBUScriptEventDescriptor@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXEventAttacher@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXScriptEventsAttacher@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXScriptEventsSupplier@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXScriptListener@1234@@Z
+-?deallocate ?$allocator@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@_STL@@QBEXPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@I Z
+-?disposing BasicScriptListener_Impl@@UAAXABUEventObject lang@star sun@com@@@Z
+-?disposing DialogAllListener_Impl@@UAAXABUEventObject lang@star sun@com@@@Z
+-?firing BasicScriptListener_Impl@@UAAXABUScriptEvent script@star sun@com@@@Z
+-?firing DialogAllListener_Impl@@UAAXABUAllEventObject script@star sun@com@@@Z
+-?firing_impl BasicScriptListener_Impl@@EAEXABUScriptEvent script@star sun@com@@PAVAny uno@456@@Z
+-?firing_impl DialogAllListener_Impl@@EAEXABUAllEventObject script@star sun@com@@PAVAny uno@456@@Z
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXScriptEventsAttacher@script star@sun com@@V?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXScriptListener@script star@sun com@@V?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$UnoType@UScriptEventDescriptor script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXControl@awt star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXControlContainer@awt star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXControlModel@awt star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXEventAttacher@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInputStreamProvider@io star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXScriptEventsAttacher@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXScriptEventsSupplier@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXScriptListener@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXScriptProvider@provider script@star sun@com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXScriptProviderFactory@provider script@star sun@com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXScriptProviderSupplier@provider script@star sun@com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStringResourceSupplier@resource star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXToolkit@awt star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXWindow@awt star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXControl awt@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXControlContainer awt@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXControlModel awt@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXEventAttacher script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInputStreamProvider io@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXScriptEventsAttacher script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXScriptEventsSupplier script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXScriptListener script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXScriptProvider provider@script star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXScriptProviderFactory provider@script star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXScriptProviderSupplier provider@script star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStringResourceManager resource@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStringResourceSupplier resource@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXToolkit awt@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXWindow awt@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getArray ?$Sequence@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@uno star@sun com@@QAAPAV?$Reference VXInterface@uno star@sun com@@@2345 XZ
+-?getConstArray ?$Sequence@V?$Reference VXControl@awt star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAPBV?$Reference VXControl@awt star@sun com@@@2345 XZ
+-?getConstArray ?$Sequence@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAPBV?$Reference VXInterface@uno star@sun com@@@2345 XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXControl@awt star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXControlContainer@awt star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXControlModel@awt star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXEventAttacher@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptEventsAttacher@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptEventsSupplier@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptListener@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptProvider@provider script@star sun@com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptProviderFactory@provider script@star sun@com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXScriptProviderSupplier@provider script@star sun@com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceManager@resource star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXToolkit@awt star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXWindow@awt star@sun com@@@2345@@Z
+-?getImplementationId ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getLength ?$Sequence@V?$Reference VXControl@awt star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAJXZ
+-?getLength ?$Sequence@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAJXZ
+-?getModelFromBasic@@YA?AV?$Reference VXModel@frame star@sun com@@@uno star@sun com@@PAVSbxObject@@@Z
+-?getStringResourceFromDialogLibrary@@YA?AV?$Reference VXStringResourceManager@resource star@sun com@@@uno star@sun com@@ABVAny 2345@@Z
+-?getTypes ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?implFindDialogLibForDialog@@YA?AVAny uno@star sun@com@@ABV12345 PAVSbxObject@@@Z
+-?indexOf OUString@rtl@@QBEJGJ Z
+-?iquery ?$Reference@VXControl awt@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXControlContainer awt@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXControlModel awt@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXEventAttacher script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXNameContainer container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXScriptEventsSupplier script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXScriptProvider provider@script star@sun com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXScriptProviderFactory provider@script star@sun com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXScriptProviderSupplier provider@script star@sun com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXStringResourceManager resource@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXToolkit awt@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXWindow awt@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?push_back ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAEXABV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@Z
+-?query ?$Reference@VXEventAttacher script@star sun@com@@@uno star@sun com@@SA?AV12345 ABVBaseReference@2345@@Z
+-?queryInterface ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?release ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXScriptEventsAttacher script@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXScriptListener script@star sun@com@@@cppu@@WBE AAXXZ
+-?s_cd ?1???R?$ImplClassData1@VXScriptEventsAttacher script@star sun@com@@V?$WeakImplHelper1 VXScriptEventsAttacher@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXScriptListener script@star sun@com@@V?$WeakImplHelper1 VXScriptListener@script star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_pType ?$Sequence@V?$Reference VXControl@awt star@sun com@@@uno star@sun com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?s_pType ?$Sequence@V?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?set ?$Reference@VXEventAttacher script@star sun@com@@@uno star@sun com@@QAAEPAVXEventAttacher script@345@@Z
+-?set ?$Reference@VXEventListener lang@star sun@com@@@uno star@sun com@@QAAEPAVXEventListener lang@345@@Z
+-?set ?$Reference@VXScriptEventsAttacher script@star sun@com@@@uno star@sun com@@QAAEPAVXScriptEventsAttacher script@345@@Z
+-?set ?$Reference@VXScriptProvider provider@script star@sun com@@@uno star@sun com@@QAAEABV12345@@Z
+-?set ?$Reference@VXScriptProvider provider@script star@sun com@@@uno star@sun com@@QAAEABVBaseReference 2345@W4UnoReference_Query 2345@@Z
+-?set ?$Reference@VXScriptProvider provider@script star@sun com@@@uno star@sun com@@QAAEPAVXScriptProvider provider@script 345@@Z
+-?set ?$Reference@VXScriptProvider provider@script star@sun com@@@uno star@sun com@@QAAEPAVXScriptProvider provider@script 345@W4__sal_NoAcquire@@@Z
+-?set ?$Reference@VXStringResourceManager resource@star sun@com@@@uno star@sun com@@QAAEPAVXStringResourceManager resource@345@@Z
+-?size ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QBEIXZ
+-?static_type XControl@awt star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XControlContainer@awt star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XControlModel@awt star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XEventAttacher@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XScriptEventsAttacher@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XScriptEventsSupplier@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XScriptListener@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XScriptProvider@provider script@star sun@com@@SAABVType uno@456 PAX@Z
+-?static_type XScriptProviderFactory@provider script@star sun@com@@SAABVType uno@456 PAX@Z
+-?static_type XScriptProviderSupplier@provider script@star sun@com@@SAABVType uno@456 PAX@Z
+-?static_type XStringResourceManager@resource star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XToolkit@awt star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XWindow@awt star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@awt star@sun com@@YAABVType uno@345 PBVXControl@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@awt star@sun com@@YAABVType uno@345 PBVXControlContainer@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@awt star@sun com@@YAABVType uno@345 PBVXControlModel@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@awt star@sun com@@YAABVType uno@345 PBVXToolkit@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@awt star@sun com@@YAABVType uno@345 PBVXWindow@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@io star@sun com@@YAABVType uno@345 PBVXInputStreamProvider@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@provider script@star sun@com@@YAABVType uno@456 PBVXScriptProvider@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@provider script@star sun@com@@YAABVType uno@456 PBVXScriptProviderFactory@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@provider script@star sun@com@@YAABVType uno@456 PBVXScriptProviderSupplier@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@resource star@sun com@@YAABVType uno@345 PBVXStringResourceManager@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@resource star@sun com@@YAABVType uno@345 PBVXStringResourceSupplier@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBUScriptEventDescriptor@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXEventAttacher@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXScriptEventsAttacher@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXScriptEventsSupplier@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXScriptListener@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-_TI2?AVServiceNotRegisteredException lang@star sun@com@@
+-??$_Destroy PAVString@@@_STL@@YAXPAVString@@0 Z
+-??$_Destroy VString@@@_STL@@YAXPAVString@@@Z
+-??$__destroy PAVString@@V1@@_STL@@YAXPAVString@@00 Z
+-??$__destroy_aux PAVString@@@_STL@@YAXPAVString@@0ABU__false_type 0@@Z
+-??1?$_STLP_alloc_proxy PAVString@@V1 V?$allocator@VString@@@_STL@@@_STL@@QAE XZ
+-??1?$_Vector_base VString@@V?$allocator VString@@@_STL@@@_STL@@QAE XZ
+-??1?$allocator VString@@@_STL@@QAE XZ
+-??1?$vector VString@@V?$allocator VString@@@_STL@@@_STL@@QAE XZ
+-??_GString@@QAEPAXI Z
+-?Compile SbModule@@UAEEXZ
+-?Highlight StarBASIC@@QAEXABVString@@AAVSbTextPortions@@@Z
+-?deallocate ?$allocator@VString@@@_STL@@QBEXPAVString@@I Z
+-??$static_int_cast GW4SbxDataType@@@sal@@YAGW4SbxDataType@@@Z
+-?IsDocBasic StarBASIC@@QAEEXZ
+-_real 3fe0000000000000
+-?isFinite math@rtl@@YA_NN Z
+-_real c1e0000000000000
+-??0?$BufferTransformer GK@@QAE XZ
+-??0?$BufferTransformer KG@@QAE XZ
+-??0?$OffSetAccumulator GK@@QAE XZ
+-??0?$OffSetAccumulator KG@@QAE XZ
+-??0?$PCodeBufferWalker G@@QAE PAEG@Z
+-??0?$PCodeBufferWalker K@@QAE PAEK@Z
+-??0?$PCodeVisitor G@@QAE XZ
+-??0?$PCodeVisitor K@@QAE XZ
+-??1?$BufferTransformer GK@@UAE XZ
+-??1?$BufferTransformer KG@@UAE XZ
+-??1?$OffSetAccumulator GK@@UAE XZ
+-??1?$OffSetAccumulator KG@@UAE XZ
+-??1?$PCodeVisitor G@@UAE XZ
+-??1?$PCodeVisitor K@@UAE XZ
+-??A?$vector VString@@V?$allocator VString@@@_STL@@@_STL@@QAEAAVString@@I Z
+-??_7?$BufferTransformer GK@@6B@
+-??_7?$BufferTransformer KG@@6B@
+-??_7?$OffSetAccumulator GK@@6B@
+-??_7?$OffSetAccumulator KG@@6B@
+-??_7?$PCodeVisitor G@@6B@
+-??_7?$PCodeVisitor K@@6B@
+-??_B?1??offset ?$OffSetAccumulator@GK@@QAEKXZ 51
+-??_B?1??offset ?$OffSetAccumulator@KG@@QAEGXZ 51
+-??_G?$BufferTransformer GK@@UAEPAXI Z
+-??_G?$BufferTransformer KG@@UAEPAXI Z
+-??_G?$OffSetAccumulator GK@@UAEPAXI Z
+-??_G?$OffSetAccumulator KG@@UAEPAXI Z
+-??_G?$PCodeVisitor G@@UAEPAXI Z
+-??_G?$PCodeVisitor K@@UAEPAXI Z
+-??_R0?AV?$BufferTransformer GK@@@8
+-??_R0?AV?$BufferTransformer KG@@@8
+-??_R0?AV?$OffSetAccumulator GK@@@8
+-??_R0?AV?$OffSetAccumulator KG@@@8
+-??_R0?AV?$PCodeVisitor G@@@8
+-??_R0?AV?$PCodeVisitor K@@@8
+-??_R1A ?0A@EA ?$BufferTransformer@GK@@8
+-??_R1A ?0A@EA ?$BufferTransformer@KG@@8
+-??_R1A ?0A@EA ?$OffSetAccumulator@GK@@8
+-??_R1A ?0A@EA ?$OffSetAccumulator@KG@@8
+-??_R1A ?0A@EA ?$PCodeVisitor@G@@8
+-??_R1A ?0A@EA ?$PCodeVisitor@K@@8
+-??_R2?$BufferTransformer GK@@8
+-??_R2?$BufferTransformer KG@@8
+-??_R2?$OffSetAccumulator GK@@8
+-??_R2?$OffSetAccumulator KG@@8
+-??_R2?$PCodeVisitor G@@8
+-??_R2?$PCodeVisitor K@@8
+-??_R3?$BufferTransformer GK@@8
+-??_R3?$BufferTransformer KG@@8
+-??_R3?$OffSetAccumulator GK@@8
+-??_R3?$OffSetAccumulator KG@@8
+-??_R3?$PCodeVisitor G@@8
+-??_R3?$PCodeVisitor K@@8
+-??_R4?$BufferTransformer GK@@6B@
+-??_R4?$BufferTransformer KG@@6B@
+-??_R4?$OffSetAccumulator GK@@6B@
+-??_R4?$OffSetAccumulator KG@@6B@
+-??_R4?$PCodeVisitor G@@6B@
+-??_R4?$PCodeVisitor K@@6B@
+-?GetComment SbxInfo@@QBEABVString@@XZ
+-?GetHelpFile SbxInfo@@QBEABVString@@XZ
+-?GetHelpId SbxInfo@@QBEKXZ
+-?NeverRunsEver@@YAXXZ
+-?SetComment SbxInfo@@QAEXABVString@@@Z
+-?begin ?$vector@VString@@V?$allocator VString@@@_STL@@@_STL@@QAEPAVString@@XZ
+-?convert ?$PCodeBuffConvertor@GK@@QAEXXZ
+-?convert ?$PCodeBuffConvertor@KG@@QAEXXZ
+-?convertBufferOffSet ?$BufferTransformer@GK@@SAKPAEG Z
+-?convertBufferOffSet ?$BufferTransformer@KG@@SAGPAEK Z
+-?end ?$BufferTransformer@GK@@UAEXXZ
+-?end ?$BufferTransformer@KG@@UAEXXZ
+-?end ?$OffSetAccumulator@GK@@UAEXXZ
+-?end ?$OffSetAccumulator@KG@@UAEXXZ
+-?max ?$_Integer_limits@G$0A $0PPPP@$0?0$00 _STL@@SAGXZ
+-?max ?$_Integer_limits@K$0A $0PPPPPPPP@$0?0$00 _STL@@SAKXZ
+-?max ?1??offset@?$OffSetAccumulator GK@@QAEKXZ 4KB
+-?max ?1??offset@?$OffSetAccumulator KG@@QAEGXZ 4GB
+-?offset ?$OffSetAccumulator@GK@@QAEKXZ
+-?offset ?$OffSetAccumulator@KG@@QAEGXZ
+-?processParams ?$BufferTransformer@GK@@UAE_NXZ
+-?processParams ?$BufferTransformer@KG@@UAE_NXZ
+-?processParams ?$OffSetAccumulator@GK@@UAE_NXZ
+-?processParams ?$OffSetAccumulator@KG@@UAE_NXZ
+-?readParam ?$PCodeBufferWalker@G@@AAEGAAPAE Z
+-?readParam ?$PCodeBufferWalker@K@@AAEKAAPAE Z
+-?size ?$vector@VString@@V?$allocator VString@@@_STL@@@_STL@@QBEIXZ
+-?start ?$BufferTransformer@GK@@UAEXPAE Z
+-?start ?$BufferTransformer@KG@@UAEXPAE Z
+-?start ?$OffSetAccumulator@GK@@UAEXPAE Z
+-?start ?$OffSetAccumulator@KG@@UAEXPAE Z
+-?visitBuffer ?$PCodeBufferWalker@G@@QAEXAAV?$PCodeVisitor G@@@Z
+-?visitBuffer ?$PCodeBufferWalker@K@@QAEXAAV?$PCodeVisitor K@@@Z
+-_real 4060000000000000
+-??$_Construct VString@@V1@@_STL@@YAXPAVString@@ABV1@@Z
+-??$__uninitialized_copy PAVString@@PAV1@@_STL@@YAPAVString@@PAV1 00ABU__false_type@0@@Z
+-??$__uninitialized_fill_n PAVString@@IV1@@_STL@@YAPAVString@@PAV1 IABV1@ABU__false_type 0@@Z
+-??0?$_STLP_alloc_proxy PAVString@@V1 V?$allocator@VString@@@_STL@@@_STL@@QAE ABV?$allocator@VString@@@1 PAVString@@@Z
+-??0?$_Vector_base VString@@V?$allocator VString@@@_STL@@@_STL@@QAE ABV?$allocator@VString@@@1@@Z
+-??0?$allocator VString@@@_STL@@QAE ABV01@@Z
+-??0?$allocator VString@@@_STL@@QAE XZ
+-??0?$vector VString@@V?$allocator VString@@@_STL@@@_STL@@QAE ABV?$allocator@VString@@@1@@Z
+-?_M_clear ?$vector@VString@@V?$allocator VString@@@_STL@@@_STL@@IAEXXZ
+-?_M_insert_overflow ?$vector@VString@@V?$allocator VString@@@_STL@@@_STL@@IAEXPAVString@@ABV3 ABU__false_type@2 I_N@Z
+-?_M_set ?$vector@VString@@V?$allocator VString@@@_STL@@@_STL@@IAEXPAVString@@00 Z
+-?allocate ?$allocator@VString@@@_STL@@QBEPAVString@@IPBX Z
+-?push_back ?$vector@VString@@V?$allocator VString@@@_STL@@@_STL@@QAEXABVString@@@Z
+-_real bff0000000000000
+-??0LetterTable@@QAE XZ
+-?aLetterTable BasicSimpleCharClass@@0VLetterTable@@A
+-?isAlphaNumeric BasicSimpleCharClass@@SAEG_N Z
+-?isDigit BasicSimpleCharClass@@SAEG Z
+-?isLetterUnicode LetterTable@@QAE_NG Z
+-?Count SbTextPortions@@QBEGXZ
+-??$?0U?$pair $$CBVOUString@rtl@@J _STL@@@?$allocator PAX@_STL@@QAE ABV?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@1@@Z
+-??$?0U?$pair $$CBVOUString@rtl@@J _STL@@@?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@_STL@@@_STL@@QAE ABV?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@1@@Z
+-??$?8U?$pair $$CBVOUString@rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@1 U21@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@1 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@1@@_STL@@YA_NABU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@0 0@Z
+-??$?9U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@1 UeqName_Impl@5 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@1@@_STL@@YA_NABU?$_Hashtable_iterator U?$pair@$$CBVOUString rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@0 0@Z
+-??$?_2V?$Reference VXMacroExpander@util star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXMacroExpander@util star@sun com@@@0123@@Z
+-??$?_2V?$Reference VXStorageBasedDocument@document star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXStorageBasedDocument@document star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXNameAccess@container star@sun com@@@0123@@Z
+-??$_Construct U?$pair@$$CBVOUString rtl@@J _STL@@U12@@_STL@@YAXPAU?$pair $$CBVOUString@rtl@@J 0@ABU10@@Z
+-??$_Destroy U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@YAXPAU?$pair $$CBVOUString@rtl@@J 0@@Z
+-??$_M_find VOUString@rtl@@@?$hashtable U?$pair@$$CBVOUString rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@ABEPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@1 ABVOUString@rtl@@@Z
+-??$cppu_detail_getUnoType VXActiveDataSource@io star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXActiveDataSource@io star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXExtendedDocumentHandler@sax xml@star sun@com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInitialization@lang star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInitialization@lang star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXLibraryContainerExport@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXLibraryContainerExport@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXMacroExpander@util star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXMacroExpander@util star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXModifyListener@util star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXModifyListener@util star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXParser@sax xml@star sun@com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXParser@sax xml@star sun@com@@@3456@@Z
+-??$cppu_detail_getUnoType VXSimpleFileAccess@ucb star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXSimpleFileAccess@ucb star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStorage@embed star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStorage@embed star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStorageBasedLibraryContainer@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStorageBasedLibraryContainer@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStringSubstitution@util star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringSubstitution@util star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXTransactedObject@embed star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXTransactedObject@embed star@sun com@@@3456@@Z
+-??$find VOUString@rtl@@@?$hashtable U?$pair@$$CBVOUString rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@1 ABVOUString@rtl@@@Z
+-??$forEach VXModifyListener@util star@sun com@@V?$NotifySingleListener VXModifyListener@util star@sun com@@UEventObject lang@345@@OInterfaceContainerHelper cppu@@@OInterfaceContainerHelper cppu@@QAEXABV?$NotifySingleListener VXModifyListener@util star@sun com@@UEventObject lang@345@@01@@Z
+-??$getTypeFavourUnsigned E@cppu@@YAABVType uno@star sun@com@@PBE Z
+-??$getTypeFavourUnsigned V?$Reference@VXMacroExpander util@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXMacroExpander@util star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStorage@embed star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXStorageBasedDocument document@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStorageBasedDocument@document star@sun com@@@2345@@Z
+-??$makeAny E@uno star@sun com@@YA?AVAny 0123@ABE Z
+-??$makeAny V?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@@uno star@sun com@@YA?AVAny 0123@ABV?$Reference VXStorage@embed star@sun com@@@0123@@Z
+-??$makeAny VOUString@rtl@@@uno star@sun com@@YA?AVAny 0123@ABVOUString rtl@@@Z
+-??$notifyEach VXModifyListener@util star@sun com@@UEventObject lang@345@@OInterfaceContainerHelper cppu@@QAEXP8XModifyListener util@star sun@com@@AAXABUEventObject lang@456@@Z0 Z
+-??$queryInterface VXContainer@container star@sun com@@VXNameContainer 2345@VXNameAccess 2345@@cppu@@YA?AVAny uno@star sun@com@@ABVType 2345@PAVXContainer container@345 PAVXNameContainer@8345 PAVXNameAccess@8345@@Z
+-??0?$NotifySingleListener VXModifyListener@util star@sun com@@UEventObject lang@345@@OInterfaceContainerHelper cppu@@QAE P8XModifyListener@util star@sun com@@AAXABUEventObject lang@567@@Z0 Z
+-??0?$Reference VXActiveDataSource@io star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXInputStream@io star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXMacroExpander@util star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@QAE PAVXInterface@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@QAE PAVXNameAccess@container 234@@Z
+-??0?$Reference VXOutputStream@io star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXOutputStream@io star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXParser@sax xml@star sun@com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXServiceInfo@lang star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_QueryThrow@1234@@Z
+-??0?$Reference VXSimpleFileAccess@ucb star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXSimpleFileAccess@ucb star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXSimpleFileAccess@ucb star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@QAE PAVXStorage@embed 234@@Z
+-??0?$Reference VXStorageBasedDocument@document star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStream@io star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStringSubstitution@util star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXStringSubstitution@util star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXTransactedObject@embed star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Sequence VOUString@rtl@@@uno star@sun com@@QAE XZ
+-??0?$Sequence VType@uno star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@QAE AAVMutex@osl@@@Z
+-??0?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@QAE XZ
+-??0?$WeakReference VXModel@frame star@sun com@@@uno star@sun com@@QAE ABV?$Reference@VXModel frame@star sun@com@@@1234@@Z
+-??0?$WeakReference VXModel@frame star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$_Hashtable_iterator U?$pair@$$CBVOUString rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE PAU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@1 PAV?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@1@@Z
+-??0?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Const_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE ABU?$_Ht_iterator@U?$pair $$CBVOUString@rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@1@@Z
+-??0?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE ABU01@@Z
+-??0?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE PBU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@1 PBV?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@1@@Z
+-??0?$_STLP_alloc_proxy IU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@_STL@@V?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@_STL@@@2@@_STL@@QAE ABV?$allocator@U?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@1 I@Z
+-??0?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@_STL@@@_STL@@QAE ABV01@@Z
+-??0?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@QAE XZ
+-??0?$hash_map VOUString@rtl@@JUhashName_Impl basic@@UeqName_Impl 4@V?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QAE XZ
+-??0?$hashtable U?$pair@$$CBVOUString rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE IABUhashName_Impl@basic@@ABUeqName_Impl 3@ABV?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@1@@Z
+-??0?$pair $$CBVOUString@rtl@@J _STL@@QAE ABU01@@Z
+-??0?$pair $$CBVOUString@rtl@@J _STL@@QAE ABVOUString@rtl@@ABJ Z
+-??0BaseMutex cppu@@QAE XZ
+-??0ContainerEvent container@star sun@com@@QAE XZ
+-??0DisposedException lang@star sun@com@@QAE ABV01234@@Z
+-??0DisposedException lang@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@uno 234@@Z
+-??0ElementExistException container@star sun@com@@QAE ABV01234@@Z
+-??0ElementExistException container@star sun@com@@QAE XZ
+-??0EventObject lang@star sun@com@@QAE ABV?$Reference@VXInterface uno@star sun@com@@@uno 234@@Z
+-??0IllegalArgumentException lang@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@uno 234@ABF Z
+-??0InputSource sax@xml star@sun com@@QAE XZ
+-??0LibDescriptor xmlscript@@QAE XZ
+-??0LibDescriptorArray xmlscript@@QAE XZ
+-??0LibraryContainerMethodGuard basic@@QAE AAVSfxLibraryContainer@1@@Z
+-??0ModifiableHelper basic@@QAE AAVOWeakObject@cppu@@AAVMutex osl@@@Z
+-??0NameContainer basic@@QAE ABVType@uno star@sun com@@@Z
+-??0OImplementationId cppu@@QAE E@Z
+-??0SfxLibrary basic@@QAE AAVModifiableHelper@1 ABVType@uno star@sun com@@ABV?$Reference VXMultiServiceFactory@lang star@sun com@@@4567 ABV?$Reference@VXSimpleFileAccess ucb@star sun@com@@@4567@@Z
+-??0SfxLibrary basic@@QAE AAVModifiableHelper@1 ABVType@uno star@sun com@@ABV?$Reference VXMultiServiceFactory@lang star@sun com@@@4567 ABV?$Reference@VXSimpleFileAccess ucb@star sun@com@@@4567 ABVOUString@rtl@@4E Z
+-??0SfxLibraryContainer basic@@QAE XZ
+-??0WeakReferenceHelper uno@star sun@com@@QAE XZ
+-??0WrappedTargetException lang@star sun@com@@QAE ABV01234@@Z
+-??0WrappedTargetException lang@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@uno 234@ABVAny 8234@@Z
+-??0XContainer container@star sun@com@@QAE XZ
+-??0XInitialization lang@star sun@com@@QAE XZ
+-??0XLibraryContainer2 script@star sun@com@@QAE XZ
+-??0XLibraryContainer script@star sun@com@@QAE XZ
+-??0XLibraryContainerExport script@star sun@com@@QAE XZ
+-??0XLibraryContainerPassword script@star sun@com@@QAE XZ
+-??0XModifiable util@star sun@com@@QAE XZ
+-??0XModifyBroadcaster util@star sun@com@@QAE XZ
+-??0XPersistentLibraryContainer script@star sun@com@@QAE XZ
+-??0XServiceInfo lang@star sun@com@@QAE XZ
+-??0XStorageBasedLibraryContainer script@star sun@com@@QAE XZ
+-??1?$Reference VXActiveDataSource@io star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXDocumentHandler@sax xml@star sun@com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXMacroExpander@util star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXOutputStream@io star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXParser@sax xml@star sun@com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXSimpleFileAccess@ucb star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStream@io star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStringSubstitution@util star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXTransactedObject@embed star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAE XZ
+-??1?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@UAE XZ
+-??1?$WeakReference VXModel@frame star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$_STLP_alloc_proxy IU?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@_STL@@V?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@_STL@@@2@@_STL@@QAE XZ
+-??1?$allocator U?$_Hashtable_node@U?$pair $$CBVOUString@rtl@@J _STL@@@_STL@@@_STL@@QAE XZ
+-??1?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@QAE XZ
+-??1?$hash_map VOUString@rtl@@JUhashName_Impl basic@@UeqName_Impl 4@V?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QAE XZ
+-??1?$hashtable U?$pair@$$CBVOUString rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE XZ
+-??1?$pair $$CBVOUString@rtl@@J _STL@@QAE XZ
+-??1BaseMutex cppu@@QAE XZ
+-??1ContainerEvent container@star sun@com@@QAE XZ
+-??1DisposedException lang@star sun@com@@QAE XZ
+-??1ElementExistException container@star sun@com@@QAE XZ
+-??1InputSource sax@xml star@sun com@@QAE XZ
+-??1LibDescriptor xmlscript@@QAE XZ
+-??1LibraryContainerMethodGuard basic@@QAE XZ
+-??1ModifiableHelper basic@@QAE XZ
+-??1NameContainer basic@@UAE XZ
+-??1OTypeCollection cppu@@QAE XZ
+-??1SfxLibrary basic@@UAE XZ
+-??1SfxLibraryContainer basic@@UAE XZ
+-??1WrappedTargetException lang@star sun@com@@QAE XZ
+-??4?$Reference VXInputStream@io star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXMacroExpander@util star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXOutputStream@io star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXSimpleFileAccess@ucb star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXStream@io star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXStringSubstitution@util star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$WeakReference VXModel@frame star@sun com@@@uno star@sun com@@QAEAAV01234 ABV01234@@Z
+-??9rtl@@YAEABVOUString 0@0 Z
+-??A?$Sequence VAny@uno star@sun com@@@uno star@sun com@@QBAABVAny 1234@J Z
+-??A?$hash_map VOUString@rtl@@JUhashName_Impl basic@@UeqName_Impl 4@V?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QAEAAJABVOUString rtl@@@Z
+-??B?$Reference VXModel@frame star@sun com@@@uno star@sun com@@QBAABV?$Reference VXInterface@uno star@sun com@@@1234 XZ
+-??B?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@QBAABV?$Reference VXInterface@uno star@sun com@@@1234 XZ
+-??BOWeakObject cppu@@QAA?AV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@XZ
+-??C?$Reference VXActiveDataSource@io star@sun com@@@uno star@sun com@@QBAPAVXActiveDataSource io@234 XZ
+-??C?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@QBAPAVXContainerListener container@234 XZ
+-??C?$Reference VXMacroExpander@util star@sun com@@@uno star@sun com@@QBAPAVXMacroExpander util@234 XZ
+-??C?$Reference VXOutputStream@io star@sun com@@@uno star@sun com@@QBAPAVXOutputStream io@234 XZ
+-??C?$Reference VXParser@sax xml@star sun@com@@@uno star@sun com@@QBAPAVXParser sax@xml 234@XZ
+-??C?$Reference VXSimpleFileAccess@ucb star@sun com@@@uno star@sun com@@QBAPAVXSimpleFileAccess ucb@234 XZ
+-??C?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@QBAPAVXStorage embed@234 XZ
+-??C?$Reference VXStream@io star@sun com@@@uno star@sun com@@QBAPAVXStream io@234 XZ
+-??C?$Reference VXStringSubstitution@util star@sun com@@@uno star@sun com@@QBAPAVXStringSubstitution util@234 XZ
+-??C?$Reference VXTransactedObject@embed star@sun com@@@uno star@sun com@@QBAPAVXTransactedObject embed@234 XZ
+-??D?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QBEAAU?$pair $$CBVOUString@rtl@@J 1@XZ
+-??R?$ImplClassData2 VXNameContainer@container star@sun com@@VXContainer 2345@V?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@V?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$NotifySingleListener VXModifyListener@util star@sun com@@UEventObject lang@345@@OInterfaceContainerHelper cppu@@QBEXABV?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@@Z
+-??R?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@QBEABVOUString rtl@@ABU?$pair $$CBVOUString@rtl@@J 1@@Z
+-??ReqName_Impl basic@@QBEEVOUString rtl@@0 Z
+-??RhashName_Impl basic@@QBEIVOUString rtl@@@Z
+-??_7NameContainer basic@@6BOWeakObject cppu@@@
+-??_7NameContainer basic@@6BXContainer container@star sun@com@@@
+-??_7NameContainer basic@@6BXNameContainer container@star sun@com@@@
+-??_7NameContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-??_7SfxLibrary basic@@6BOWeakObject cppu@@@
+-??_7SfxLibrary basic@@6BXAggregation uno@star sun@com@@@
+-??_7SfxLibrary basic@@6BXComponent lang@star sun@com@@@
+-??_7SfxLibrary basic@@6BXContainer container@star sun@com@@@
+-??_7SfxLibrary basic@@6BXNameContainer container@star sun@com@@@
+-??_7SfxLibrary basic@@6BXTypeProvider lang@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6B@
+-??_7SfxLibraryContainer basic@@6BOWeakObject cppu@@@
+-??_7SfxLibraryContainer basic@@6BXComponent lang@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXContainer container@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXInitialization lang@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXLibraryContainer2 script@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXLibraryContainerExport script@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXLibraryContainerPassword script@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXModifiable util@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXServiceInfo lang@star sun@com@@@
+-??_7SfxLibraryContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-??_9XModifyListener util@star sun@com@@$BBA AA
+-??_C _0BM@FOLABNBE com?4sun?4star?4embed?4XStorage?$AA@
+-??_C _0BN@IHDFEJFO com?4sun?4star?4xml?4sax?4XParser?$AA@
+-??_C _0CB@JOKFCBPI com?4sun?4star?4util?4XMacroExpander@
+-??_C _0CC@FKPJKCAC com?4sun?4star?4lang?4XInitializatio@
+-??_C _0CC@NNDMIOOC com?4sun?4star?4util?4XModifyListene@
+-??_C _0CC@PAPGJOHO com?4sun?4star?4io?4XActiveDataSourc@
+-??_C _0CD@FIEKNFBB com?4sun?4star?4ucb?4XSimpleFileAcce@
+-??_C _0CF@JFLHIING com?4sun?4star?4embed?4XTransactedOb@
+-??_C _0CG@BCFIPOOA com?4sun?4star?4util?4XStringSubstit@
+-??_C _0CM@NACFOADG com?4sun?4star?4script?4XLibraryCont@
+-??_C _0CO@HJNBOBEP com?4sun?4star?4xml?4sax?4XExtendedDo@
+-??_C _0DC@LOFEHLBG com?4sun?4star?4script?4XStorageBase@
+-??_ESfxLibrary basic@@W7AEPAXI Z
+-??_ESfxLibraryContainer basic@@WEE AEPAXI@Z
+-??_G?$pair $$CBVOUString@rtl@@J _STL@@QAEPAXI Z
+-??_GINetURLObject@@QAEPAXI Z
+-??_GLibDescriptorArray xmlscript@@QAEPAXI Z
+-??_GNameContainer basic@@UAEPAXI Z
+-??_GSfxLibrary basic@@UAEPAXI Z
+-??_GSfxLibraryContainer basic@@UAEPAXI Z
+-??_R0?AV?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@@8
+-??_R0?AV?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@@8
+-??_R0?AVBaseMutex cppu@@@8
+-??_R0?AVCommandAbortedException ucb@star sun@com@@@8
+-??_R0?AVDisposedException lang@star sun@com@@@8
+-??_R0?AVElementExistException container@star sun@com@@@8
+-??_R0?AVIOException io@star sun@com@@@8
+-??_R0?AVNameContainer basic@@@8
+-??_R0?AVOComponentHelper cppu@@@8
+-??_R0?AVOWeakAggObject cppu@@@8
+-??_R0?AVSAXException sax@xml star@sun com@@@8
+-??_R0?AVSfxLibrary basic@@@8
+-??_R0?AVSfxLibraryContainer basic@@@8
+-??_R0?AVWeakComponentImplHelperBase cppu@@@8
+-??_R0?AVXAggregation uno@star sun@com@@@8
+-??_R0?AVXComponent lang@star sun@com@@@8
+-??_R0?AVXContainer container@star sun@com@@@8
+-??_R0?AVXInitialization lang@star sun@com@@@8
+-??_R0?AVXLibraryContainer2 script@star sun@com@@@8
+-??_R0?AVXLibraryContainer script@star sun@com@@@8
+-??_R0?AVXLibraryContainerExport script@star sun@com@@@8
+-??_R0?AVXLibraryContainerPassword script@star sun@com@@@8
+-??_R0?AVXModifiable util@star sun@com@@@8
+-??_R0?AVXModifyBroadcaster util@star sun@com@@@8
+-??_R0?AVXServiceInfo lang@star sun@com@@@8
+-??_R0?AVXStorageBasedLibraryContainer script@star sun@com@@@8
+-??_R13?0A EA@XContainer container@star sun@com@@8
+-??_R13?0A EA@XElementAccess container@star sun@com@@8
+-??_R13?0A EA@XLibraryContainer2 script@star sun@com@@8
+-??_R13?0A EA@XLibraryContainer script@star sun@com@@8
+-??_R13?0A EA@XNameAccess container@star sun@com@@8
+-??_R13?0A EC@XInterface uno@star sun@com@@8
+-??_R17?0A EA@OComponentHelper cppu@@8
+-??_R17?0A EA@OWeakAggObject cppu@@8
+-??_R17?0A EA@OWeakObject cppu@@8
+-??_R17?0A EA@XWeak uno@star sun@com@@8
+-??_R17?0A EC@XInterface uno@star sun@com@@8
+-??_R1A ?0A@EA ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@8
+-??_R1A ?0A@EA BaseMutex@cppu@@8
+-??_R1A ?0A@EA NameContainer@basic@@8
+-??_R1A ?0A@EA OComponentHelper@cppu@@8
+-??_R1A ?0A@EA OWeakAggObject@cppu@@8
+-??_R1A ?0A@EA SfxLibrary@basic@@8
+-??_R1A ?0A@EA SfxLibraryContainer@basic@@8
+-??_R1A ?0A@EA WeakComponentImplHelperBase@cppu@@8
+-??_R1A ?0A@EA XAggregation@uno star@sun com@@8
+-??_R1A ?0A@EA XComponent@lang star@sun com@@8
+-??_R1A ?0A@EA XContainer@container star@sun com@@8
+-??_R1A ?0A@EA XInitialization@lang star@sun com@@8
+-??_R1A ?0A@EA XLibraryContainer2@script star@sun com@@8
+-??_R1A ?0A@EA XLibraryContainer@script star@sun com@@8
+-??_R1A ?0A@EA XLibraryContainerExport@script star@sun com@@8
+-??_R1A ?0A@EA XLibraryContainerPassword@script star@sun com@@8
+-??_R1A ?0A@EA XModifiable@util star@sun com@@8
+-??_R1A ?0A@EA XModifyBroadcaster@util star@sun com@@8
+-??_R1A ?0A@EA XPersistentLibraryContainer@script star@sun com@@8
+-??_R1A ?0A@EA XServiceInfo@lang star@sun com@@8
+-??_R1A ?0A@EA XStorageBasedLibraryContainer@script star@sun com@@8
+-??_R1BA ?0A@EA XAggregation@uno star@sun com@@8
+-??_R1BA ?0A@EA XComponent@lang star@sun com@@8
+-??_R1BI ?0A@EA XAggregation@uno star@sun com@@8
+-??_R1BI ?0A@EA XContainer@container star@sun com@@8
+-??_R1BI ?0A@EA XTypeProvider@lang star@sun com@@8
+-??_R1BM ?0A@EA BaseMutex@cppu@@8
+-??_R1BM ?0A@EA XComponent@lang star@sun com@@8
+-??_R1BM ?0A@EC XInterface@uno star@sun com@@8
+-??_R1CA ?0A@EA XTypeProvider@lang star@sun com@@8
+-??_R1CA ?0A@EC XInterface@uno star@sun com@@8
+-??_R1CE ?0A@EA XComponent@lang star@sun com@@8
+-??_R1CE ?0A@EA XTypeProvider@lang star@sun com@@8
+-??_R1CE ?0A@EC XInterface@uno star@sun com@@8
+-??_R1CI ?0A@EA XInitialization@lang star@sun com@@8
+-??_R1CI ?0A@EC XInterface@uno star@sun com@@8
+-??_R1CM ?0A@EA XModifiable@util star@sun com@@8
+-??_R1CM ?0A@EA XModifyBroadcaster@util star@sun com@@8
+-??_R1CM ?0A@EA XPersistentLibraryContainer@script star@sun com@@8
+-??_R1CM ?0A@EA XStorageBasedLibraryContainer@script star@sun com@@8
+-??_R1CM ?0A@EC XInterface@uno star@sun com@@8
+-??_R1DA ?0A@EA XElementAccess@container star@sun com@@8
+-??_R1DA ?0A@EA XLibraryContainer2@script star@sun com@@8
+-??_R1DA ?0A@EA XLibraryContainer@script star@sun com@@8
+-??_R1DA ?0A@EA XNameAccess@container star@sun com@@8
+-??_R1DA ?0A@EC XInterface@uno star@sun com@@8
+-??_R1DE ?0A@EA XLibraryContainerPassword@script star@sun com@@8
+-??_R1DE ?0A@EC XInterface@uno star@sun com@@8
+-??_R1DI ?0A@EA BaseMutex@cppu@@8
+-??_R1DI ?0A@EA XLibraryContainerExport@script star@sun com@@8
+-??_R1DI ?0A@EC XInterface@uno star@sun com@@8
+-??_R1DM ?0A@EA XContainer@container star@sun com@@8
+-??_R1DM ?0A@EC XInterface@uno star@sun com@@8
+-??_R1EA ?0A@EA XServiceInfo@lang star@sun com@@8
+-??_R1EA ?0A@EC XInterface@uno star@sun com@@8
+-??_R1EE ?0A@EA OEventListenerAdapter@utl@@8
+-??_R2?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@8
+-??_R2?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@8
+-??_R2BaseMutex cppu@@8
+-??_R2NameContainer basic@@8
+-??_R2OComponentHelper cppu@@8
+-??_R2OWeakAggObject cppu@@8
+-??_R2SfxLibrary basic@@8
+-??_R2SfxLibraryContainer basic@@8
+-??_R2WeakComponentImplHelperBase cppu@@8
+-??_R2XAggregation uno@star sun@com@@8
+-??_R2XComponent lang@star sun@com@@8
+-??_R2XContainer container@star sun@com@@8
+-??_R2XInitialization lang@star sun@com@@8
+-??_R2XLibraryContainer2 script@star sun@com@@8
+-??_R2XLibraryContainer script@star sun@com@@8
+-??_R2XLibraryContainerExport script@star sun@com@@8
+-??_R2XLibraryContainerPassword script@star sun@com@@8
+-??_R2XModifiable util@star sun@com@@8
+-??_R2XModifyBroadcaster util@star sun@com@@8
+-??_R2XPersistentLibraryContainer script@star sun@com@@8
+-??_R2XServiceInfo lang@star sun@com@@8
+-??_R2XStorageBasedLibraryContainer script@star sun@com@@8
+-??_R3?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@8
+-??_R3?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@8
+-??_R3BaseMutex cppu@@8
+-??_R3NameContainer basic@@8
+-??_R3OComponentHelper cppu@@8
+-??_R3OWeakAggObject cppu@@8
+-??_R3SfxLibrary basic@@8
+-??_R3SfxLibraryContainer basic@@8
+-??_R3WeakComponentImplHelperBase cppu@@8
+-??_R3XAggregation uno@star sun@com@@8
+-??_R3XComponent lang@star sun@com@@8
+-??_R3XContainer container@star sun@com@@8
+-??_R3XInitialization lang@star sun@com@@8
+-??_R3XLibraryContainer2 script@star sun@com@@8
+-??_R3XLibraryContainer script@star sun@com@@8
+-??_R3XLibraryContainerExport script@star sun@com@@8
+-??_R3XLibraryContainerPassword script@star sun@com@@8
+-??_R3XModifiable util@star sun@com@@8
+-??_R3XModifyBroadcaster util@star sun@com@@8
+-??_R3XPersistentLibraryContainer script@star sun@com@@8
+-??_R3XServiceInfo lang@star sun@com@@8
+-??_R3XStorageBasedLibraryContainer script@star sun@com@@8
+-??_R4NameContainer basic@@6BOWeakObject cppu@@@
+-??_R4NameContainer basic@@6BXContainer container@star sun@com@@@
+-??_R4NameContainer basic@@6BXNameContainer container@star sun@com@@@
+-??_R4NameContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-??_R4SfxLibrary basic@@6BOWeakObject cppu@@@
+-??_R4SfxLibrary basic@@6BXAggregation uno@star sun@com@@@
+-??_R4SfxLibrary basic@@6BXComponent lang@star sun@com@@@
+-??_R4SfxLibrary basic@@6BXContainer container@star sun@com@@@
+-??_R4SfxLibrary basic@@6BXNameContainer container@star sun@com@@@
+-??_R4SfxLibrary basic@@6BXTypeProvider lang@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6B@
+-??_R4SfxLibraryContainer basic@@6BOWeakObject cppu@@@
+-??_R4SfxLibraryContainer basic@@6BXComponent lang@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXContainer container@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXInitialization lang@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXLibraryContainer2 script@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXLibraryContainerExport script@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXLibraryContainerPassword script@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXModifiable util@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXServiceInfo lang@star sun@com@@@
+-??_R4SfxLibraryContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-?_M_bkt_num ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@ABEIABU?$pair $$CBVOUString@rtl@@J 2@@Z
+-?_M_bkt_num ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@ABEIABU?$pair $$CBVOUString@rtl@@J 2@I Z
+-?_M_bkt_num_key ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@ABEIABVOUString rtl@@@Z
+-?_M_bkt_num_key ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@ABEIABVOUString rtl@@I Z
+-?_M_delete_node ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@2@@Z
+-?_M_initialize_buckets ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@AAEXI Z
+-?_M_insert ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAEAAU?$pair $$CBVOUString@rtl@@J 2@ABU32@@Z
+-?_M_new_node ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@AAEPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@2 ABU?$pair@$$CBVOUString rtl@@J 2@@Z
+-?_M_next_size ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@ABEII Z
+-?_disposing SfxLibraryContainer@basic@@MAEXABUEventObject lang@star sun@com@@@Z
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WBA AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCE AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCI AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCM AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDA AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDE AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDI AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDM AAXXZ
+-?acquire ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WEA AAXXZ
+-?acquire ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBI AAXXZ
+-?acquire SfxLibrary@basic@@UAAXXZ
+-?acquire SfxLibrary@basic@@W3AAXXZ
+-?acquire SfxLibrary@basic@@W7AAXXZ
+-?acquire SfxLibrary@basic@@WBI AAXXZ
+-?acquire SfxLibrary@basic@@WCA AAXXZ
+-?acquire SfxLibrary@basic@@WCE AAXXZ
+-?addContainerListener NameContainer@basic@@UAAXABV?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@@Z
+-?addContainerListener SfxLibrary@basic@@UAAXABV?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@@Z
+-?addContainerListener SfxLibraryContainer@basic@@UAAXABV?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@@Z
+-?addEventListener ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAAXABV?$Reference VXEventListener@lang star@sun com@@@uno star@sun com@@@Z
+-?addModifyListener ModifiableHelper@basic@@QAEXABV?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@@Z
+-?addModifyListener SfxLibraryContainer@basic@@UAAXABV?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@@Z
+-?allocate ?$allocator@U?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@2 IPBX@Z
+-?castFromXInterface ?$Reference@VXActiveDataSource io@star sun@com@@@uno star@sun com@@CAPAVXActiveDataSource io@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXContainerListener container@star sun@com@@@uno star@sun com@@CAPAVXContainerListener container@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXInputStream io@star sun@com@@@uno star@sun com@@CAPAVXInputStream io@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXMacroExpander util@star sun@com@@@uno star@sun com@@CAPAVXMacroExpander util@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXModifyListener util@star sun@com@@@uno star@sun com@@CAPAVXModifyListener util@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXOutputStream io@star sun@com@@@uno star@sun com@@CAPAVXOutputStream io@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXParser sax@xml star@sun com@@@uno star@sun com@@CAPAVXParser sax@xml 345@PAVXInterface 2345@@Z
+-?castFromXInterface ?$Reference@VXSimpleFileAccess ucb@star sun@com@@@uno star@sun com@@CAPAVXSimpleFileAccess ucb@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStream io@star sun@com@@@uno star@sun com@@CAPAVXStream io@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStringSubstitution util@star sun@com@@@uno star@sun com@@CAPAVXStringSubstitution util@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXTransactedObject embed@star sun@com@@@uno star@sun com@@CAPAVXTransactedObject embed@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXInputStream io@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXInputStream io@345@@Z
+-?castToXInterface ?$Reference@VXMacroExpander util@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXMacroExpander util@345@@Z
+-?castToXInterface ?$Reference@VXNameAccess container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXNameAccess container@345@@Z
+-?castToXInterface ?$Reference@VXOutputStream io@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXOutputStream io@345@@Z
+-?castToXInterface ?$Reference@VXSimpleFileAccess ucb@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXSimpleFileAccess ucb@345@@Z
+-?castToXInterface ?$Reference@VXStream io@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStream io@345@@Z
+-?castToXInterface ?$Reference@VXStringSubstitution util@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStringSubstitution util@345@@Z
+-?changeLibraryPassword SfxLibraryContainer@basic@@UAAXABVOUString rtl@@00 Z
+-?checkDisposed SfxLibraryContainer@basic@@QBEXXZ
+-?checkStorageURL SfxLibraryContainer@basic@@IAEXABVOUString rtl@@AAV34 11@Z
+-?clear ?$Reference@VXInputStream io@star sun@com@@@uno star@sun com@@QAAXXZ
+-?clear ?$Reference@VXOutputStream io@star sun@com@@@uno star@sun com@@QAAXXZ
+-?clear ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAEXXZ
+-?compareToAscii OUString@rtl@@QBEJPBDJ Z
+-?cppu_detail_getUnoType detail@cppu@@YAABVType uno@star sun@com@@PBE Z
+-?cppu_detail_getUnoType embed@star sun@com@@YAABVType uno@234 PBVXStorage@1234@@Z
+-?cppu_detail_getUnoType embed@star sun@com@@YAABVType uno@234 PBVXTransactedObject@1234@@Z
+-?cppu_detail_getUnoType io@star sun@com@@YAABVType uno@234 PBVXActiveDataSource@1234@@Z
+-?cppu_detail_getUnoType lang@star sun@com@@YAABVType uno@234 PBVXInitialization@1234@@Z
+-?cppu_detail_getUnoType sax@xml star@sun com@@YAABVType uno@345 PBVXExtendedDocumentHandler@12345@@Z
+-?cppu_detail_getUnoType sax@xml star@sun com@@YAABVType uno@345 PBVXParser@12345@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXLibraryContainerExport@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXStorageBasedLibraryContainer@1234@@Z
+-?cppu_detail_getUnoType ucb@star sun@com@@YAABVType uno@234 PBVXSimpleFileAccess@1234@@Z
+-?cppu_detail_getUnoType util@star sun@com@@YAABVType uno@234 PBVXMacroExpander@1234@@Z
+-?cppu_detail_getUnoType util@star sun@com@@YAABVType uno@234 PBVXModifyListener@1234@@Z
+-?cppu_detail_getUnoType util@star sun@com@@YAABVType uno@234 PBVXStringSubstitution@1234@@Z
+-?createAppLibraryFolder SfxLibraryContainer@basic@@IAE?AVOUString rtl@@PAVSfxLibrary 2@ABV34@@Z
+-?createLibrary SfxLibraryContainer@basic@@UAA?AV?$Reference VXNameContainer@container star@sun com@@@uno star@sun com@@ABVOUString rtl@@@Z
+-?createLibraryLink SfxLibraryContainer@basic@@UAA?AV?$Reference VXNameAccess@container star@sun com@@@uno star@sun com@@ABVOUString rtl@@0E Z
+-?deallocate ?$allocator@U?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node U?$pair@$$CBVOUString rtl@@J _STL@@@2 I@Z
+-?decode Uri@rtl@@SA?AVOUString 2@ABV32 W4rtl_UriDecodeMechanism@@G Z
+-?dispose ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAAXXZ
+-?disposing SfxLibraryContainer@basic@@MAAXXZ
+-?end ?$hash_map@VOUString rtl@@JUhashName_Impl basic@@UeqName_Impl 4@V?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@2 XZ
+-?end ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@2 XZ
+-?enterMethod SfxLibraryContainer@basic@@QAEXXZ
+-?equals OUString@rtl@@QBEEABV12@@Z
+-?erase ?$hash_map@VOUString rtl@@JUhashName_Impl basic@@UeqName_Impl 4@V?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QAEXU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@2@@Z
+-?erase ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAEXABU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Const_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@2@@Z
+-?expand_url SfxLibraryContainer@basic@@IAE?AVOUString rtl@@ABV34@@Z
+-?exportLibrary SfxLibraryContainer@basic@@UAAXABVOUString rtl@@0ABV?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@@Z
+-?find ?$hash_map@VOUString rtl@@JUhashName_Impl basic@@UeqName_Impl 4@V?$allocator U?$pair@$$CBVOUString rtl@@J _STL@@@_STL@@@_STL@@QAE?AU?$_Ht_iterator U?$pair@$$CBVOUString rtl@@J _STL@@U?$_Nonconst_traits U?$pair@$$CBVOUString rtl@@J _STL@@@2 VOUString@rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@7 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@2 ABVOUString@rtl@@@Z
+-?get ?$Reference@VXModifyListener util@star sun@com@@@uno star@sun com@@QBAPAVXModifyListener util@345 XZ
+-?get ?$Reference@VXNameAccess container@star sun@com@@@uno star@sun com@@QBAPAVXNameAccess container@345 XZ
+-?get ?$Reference@VXNameContainer container@star sun@com@@@uno star@sun com@@QBAPAVXNameContainer container@345 XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData2 VXNameContainer@container star@sun com@@VXContainer 2345@V?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@V?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$UnoType@E cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXActiveDataSource@io star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInitialization@lang star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXLibraryContainerExport@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXMacroExpander@util star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXParser@sax xml@star sun@com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXSimpleFileAccess@ucb star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStorageBasedLibraryContainer@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStringSubstitution@util star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXTransactedObject@embed star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXActiveDataSource io@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXExtendedDocumentHandler sax@xml star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInitialization lang@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXLibraryContainerExport script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXMacroExpander util@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXModifyListener util@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXParser sax@xml star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXSimpleFileAccess ucb@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStorage embed@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStorageBasedLibraryContainer script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStringSubstitution util@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXTransactedObject embed@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getBasicManager SfxLibraryContainer@basic@@IAEPAVBasicManager@@XZ
+-?getByName NameContainer@basic@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getByName SfxLibrary@basic@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getByName SfxLibraryContainer@basic@@UAA?AVAny uno@star sun@com@@ABVOUString rtl@@@Z
+-?getContainerLocationName SfxLibraryContainer@basic@@UAA?AVOUString rtl@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXActiveDataSource@io star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInitialization@lang star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXLibraryContainerExport@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXModel@frame star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXModifyListener@util star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXParser@sax xml@star sun@com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXSimpleFileAccess@ucb star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStorage@embed star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStorageBasedLibraryContainer@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStringSubstitution@util star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXTransactedObject@embed star@sun com@@@2345@@Z
+-?getElementNames NameContainer@basic@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getElementNames SfxLibrary@basic@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getElementNames SfxLibraryContainer@basic@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getElementType NameContainer@basic@@UAA?AVType uno@star sun@com@@XZ
+-?getElementType SfxLibrary@basic@@UAA?AVType uno@star sun@com@@XZ
+-?getElementType SfxLibraryContainer@basic@@UAA?AVType uno@star sun@com@@XZ
+-?getImplLib SfxLibraryContainer@basic@@IAEPAVSfxLibrary 2@ABVString@@@Z
+-?getImplementationId ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId SfxLibrary@basic@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getLibraryLinkURL SfxLibraryContainer@basic@@UAA?AVOUString rtl@@ABV34@@Z
+-?getRootLocation SfxLibraryContainer@basic@@UAA?AVAny uno@star sun@com@@XZ
+-?getRootStorage SfxLibraryContainer@basic@@UAA?AV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes OTypeCollection@cppu@@QAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes SfxLibrary@basic@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?hasByName NameContainer@basic@@UAAEABVOUString rtl@@@Z
+-?hasByName SfxLibrary@basic@@UAAEABVOUString rtl@@@Z
+-?hasByName SfxLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?hasElements NameContainer@basic@@UAAEXZ
+-?hasElements SfxLibrary@basic@@UAAEXZ
+-?hasElements SfxLibraryContainer@basic@@UAAEXZ
+-?hasMoreElements OInterfaceIteratorHelper@cppu@@QBAEXZ
+-?implImportLibDescriptor SfxLibraryContainer@basic@@IAEXPAVSfxLibrary 2@AAULibDescriptor xmlscript@@@Z
+-?implIsModified SfxLibrary@basic@@IBEEXZ
+-?implLoadLibraryIndexFile SfxLibraryContainer@basic@@IAEEPAVSfxLibrary 2@AAULibDescriptor xmlscript@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@ABVOUString rtl@@@Z
+-?implLoadPasswordLibrary SfxLibraryContainer@basic@@MAEEPAVSfxLibrary 2@ABVOUString rtl@@E Z
+-?implSetModified SfxLibrary@basic@@IAEXE Z
+-?implStoreLibrary SfxLibraryContainer@basic@@IAEXPAVSfxLibrary 2@ABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@1V?$Reference VXSimpleFileAccess@ucb star@sun com@@@789com@@ABV?$Reference VXInteractionHandler@task star@sun com@@@789com@@@Z
+-?implStoreLibrary SfxLibraryContainer@basic@@IAEXPAVSfxLibrary 2@ABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?implStoreLibraryIndexFile SfxLibraryContainer@basic@@IAEXPAVSfxLibrary 2@ABULibDescriptor xmlscript@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?implStoreLibraryIndexFile SfxLibraryContainer@basic@@IAEXPAVSfxLibrary 2@ABULibDescriptor xmlscript@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@ABVOUString rtl@@V?$Reference VXSimpleFileAccess@ucb star@sun com@@@789com@@@Z
+-?implStorePasswordLibrary SfxLibraryContainer@basic@@MAEEPAVSfxLibrary 2@ABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@1V?$Reference VXSimpleFileAccess@ucb star@sun com@@@789com@@ABV?$Reference VXInteractionHandler@task star@sun com@@@789com@@@Z
+-?implStorePasswordLibrary SfxLibraryContainer@basic@@MAEEPAVSfxLibrary 2@ABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@ABV?$Reference VXInteractionHandler@task star@sun com@@@789com@@@Z
+-?impl_checkReadOnly SfxLibrary@basic@@AAEXXZ
+-?init SfxLibraryContainer@basic@@IAEEABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?init_Impl SfxLibraryContainer@basic@@AAEEABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?initialize SfxLibraryContainer@basic@@UAAXABV?$Sequence VAny@uno star@sun com@@@uno star@sun com@@@Z
+-?initializeFromDocument SfxLibraryContainer@basic@@IAAXABV?$Reference VXStorageBasedDocument@document star@sun com@@@uno star@sun com@@@Z
+-?initializeFromDocumentURL SfxLibraryContainer@basic@@IAAXABVOUString rtl@@@Z
+-?insertByName NameContainer@basic@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?insertByName SfxLibrary@basic@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?iquery ?$Reference@VXActiveDataSource io@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXContainerListener container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXExtendedDocumentHandler sax@xml star@sun com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXModel frame@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXModifyListener util@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXParser sax@xml star@sun com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXSimpleFileAccess ucb@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXStringSubstitution util@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXTransactedObject embed@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXModel frame@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXServiceInfo lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?isDisposed SfxLibraryContainer@basic@@QBE_NXZ
+-?isLibraryLink SfxLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?isLibraryLoaded SfxLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?isLibraryPasswordProtected SfxLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?isLibraryPasswordVerified SfxLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?isLibraryReadOnly SfxLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?isModified ModifiableHelper@basic@@QBEEXZ
+-?isModified SfxLibraryContainer@basic@@UAAEXZ
+-?leaveMethod SfxLibraryContainer@basic@@QAEXXZ
+-?loadLibrary SfxLibraryContainer@basic@@UAAXABVOUString rtl@@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCI AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCM AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDI AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDM AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WEA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBI AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface SfxLibrary@basic@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface SfxLibrary@basic@@W3AA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface SfxLibrary@basic@@W7AA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface SfxLibrary@basic@@WBI AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface SfxLibrary@basic@@WCA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface SfxLibrary@basic@@WCE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WBA AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCE AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCI AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WCM AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDA AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDE AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDI AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WDM AAXXZ
+-?release ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@WEA AAXXZ
+-?release ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper2@VXNameContainer container@star sun@com@@VXContainer 2345@@cppu@@WBI AAXXZ
+-?release SfxLibrary@basic@@UAAXXZ
+-?release SfxLibrary@basic@@W3AAXXZ
+-?release SfxLibrary@basic@@W7AAXXZ
+-?release SfxLibrary@basic@@WBI AAXXZ
+-?release SfxLibrary@basic@@WCA AAXXZ
+-?release SfxLibrary@basic@@WCE AAXXZ
+-?removeByName NameContainer@basic@@UAAXABVOUString rtl@@@Z
+-?removeByName SfxLibrary@basic@@UAAXABVOUString rtl@@@Z
+-?removeContainerListener NameContainer@basic@@UAAXABV?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@@Z
+-?removeContainerListener SfxLibrary@basic@@UAAXABV?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@@Z
+-?removeContainerListener SfxLibraryContainer@basic@@UAAXABV?$Reference VXContainerListener@container star@sun com@@@uno star@sun com@@@Z
+-?removeEventListener ?$WeakComponentImplHelper6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@UAAXABV?$Reference VXEventListener@lang star@sun com@@@uno star@sun com@@@Z
+-?removeLibrary SfxLibraryContainer@basic@@UAAXABVOUString rtl@@@Z
+-?removeModifyListener ModifiableHelper@basic@@QAEXABV?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@@Z
+-?removeModifyListener SfxLibraryContainer@basic@@UAAXABV?$Reference VXModifyListener@util star@sun com@@@uno star@sun com@@@Z
+-?renameLibrary SfxLibraryContainer@basic@@UAAXABVOUString rtl@@0 Z
+-?replaceByName NameContainer@basic@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?replaceByName SfxLibrary@basic@@UAAXABVOUString rtl@@ABVAny uno@star sun@com@@@Z
+-?resize ?$hashtable@U?$pair $$CBVOUString@rtl@@J _STL@@VOUString rtl@@UhashName_Impl basic@@U?$_Select1st U?$pair@$$CBVOUString rtl@@J _STL@@@2 UeqName_Impl@6 V?$allocator@U?$pair $$CBVOUString@rtl@@J _STL@@@2@@_STL@@QAEXI Z
+-?s_cd ?1???R?$ImplClassData2@VXNameContainer container@star sun@com@@VXContainer 2345@V?$WeakImplHelper2 VXNameContainer@container star@sun com@@VXContainer 2345@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data2@2 A
+-?s_cd ?1???R?$ImplClassData6@VXInitialization lang@star sun@com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@V?$WeakComponentImplHelper6 VXInitialization@lang star@sun com@@VXStorageBasedLibraryContainer script@345 VXLibraryContainerPassword@7345 VXLibraryContainerExport@7345 VXContainer@container 345@VXServiceInfo 2345@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data6@2 A
+-?set ?$Reference@VXInputStream io@star sun@com@@@uno star@sun com@@QAAEPAVXInputStream io@345@@Z
+-?set ?$Reference@VXMacroExpander util@star sun@com@@@uno star@sun com@@QAAEPAVXMacroExpander util@345@@Z
+-?set ?$Reference@VXOutputStream io@star sun@com@@@uno star@sun com@@QAAEPAVXOutputStream io@345@@Z
+-?set ?$Reference@VXSimpleFileAccess ucb@star sun@com@@@uno star@sun com@@QAAEPAVXSimpleFileAccess ucb@345@@Z
+-?set ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@QAAEPAVXStorage embed@345 W4__sal_NoAcquire@@@Z
+-?set ?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@QAAXABVBaseReference 2345@W4UnoReference_QueryThrow 2345@@Z
+-?set ?$Reference@VXStream io@star sun@com@@@uno star@sun com@@QAAEPAVXStream io@345@@Z
+-?set ?$Reference@VXStringSubstitution util@star sun@com@@@uno star@sun com@@QAAEPAVXStringSubstitution util@345@@Z
+-?setEventSource NameContainer@basic@@QAEXPAVXInterface uno@star sun@com@@@Z
+-?setLibraryReadOnly SfxLibraryContainer@basic@@UAAXABVOUString rtl@@E Z
+-?setModified ModifiableHelper@basic@@QAEXE Z
+-?setModified SfxLibraryContainer@basic@@UAAXE Z
+-?setRootStorage SfxLibraryContainer@basic@@UAAXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?static_type XActiveDataSource@io star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XExtendedDocumentHandler@sax xml@star sun@com@@SAABVType uno@456 PAX@Z
+-?static_type XInitialization@lang star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XLibraryContainerExport@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XModel@frame star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XModifyListener@util star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XParser@sax xml@star sun@com@@SAABVType uno@456 PAX@Z
+-?static_type XSimpleFileAccess@ucb star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStorage@embed star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStorageBasedLibraryContainer@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStringSubstitution@util star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XTransactedObject@embed star@sun com@@SAABVType uno@345 PAX@Z
+-?storeLibraries SfxLibraryContainer@basic@@UAAXXZ
+-?storeLibrariesToStorage SfxLibraryContainer@basic@@UAAXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?storeLibraries_Impl SfxLibraryContainer@basic@@IAEXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@E Z
+-?supportsService SfxLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?the_type ?1??cppu_detail_getUnoType@embed star@sun com@@YAABVType uno@345 PBVXStorage@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@embed star@sun com@@YAABVType uno@345 PBVXTransactedObject@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@io star@sun com@@YAABVType uno@345 PBVXActiveDataSource@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@lang star@sun com@@YAABVType uno@345 PBVXInitialization@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@sax xml@star sun@com@@YAABVType uno@456 PBVXExtendedDocumentHandler@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@sax xml@star sun@com@@YAABVType uno@456 PBVXParser@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXLibraryContainerExport@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXStorageBasedLibraryContainer@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@ucb star@sun com@@YAABVType uno@345 PBVXSimpleFileAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@util star@sun com@@YAABVType uno@345 PBVXMacroExpander@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@util star@sun com@@YAABVType uno@345 PBVXModifyListener@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@util star@sun com@@YAABVType uno@345 PBVXStringSubstitution@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?verifyLibraryPassword SfxLibraryContainer@basic@@UAAEABVOUString rtl@@0 Z
+-_TI2?AVElementExistException container@star sun@com@@
+-_TI2?AVWrappedTargetException lang@star sun@com@@
+-_TI3?AVDisposedException lang@star sun@com@@
+-??$cppu_detail_getUnoType VXEncryptionProtectedSource@embed star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXEncryptionProtectedSource@embed star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXTruncate@io star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXTruncate@io star@sun com@@@3456@@Z
+-??0?$OAutoRegistration VSfxScriptLibraryContainer@basic@@@basic@@QAE XZ
+-??0?$OAutoRegistration VSfxScriptLibraryContainer@basic@@@comphelper@@QAE AAVOModule@1@@Z
+-??0?$Reference VXEncryptionProtectedSource@embed star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXInteractionRequest@task star@sun com@@@uno star@sun com@@QAE PAVXInteractionRequest@task 234@@Z
+-??0?$Reference VXStream@io star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXTruncate@io star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0ErrorCodeIOException task@star sun@com@@QAE ABV01234@@Z
+-??0ErrorCodeIOException task@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@uno 234@ABJ Z
+-??0IOException io@star sun@com@@QAE ABV01234@@Z
+-??0IOException io@star sun@com@@QAE ABVOUString@rtl@@ABV?$Reference VXInterface@uno star@sun com@@@uno 234@@Z
+-??0IOException io@star sun@com@@QAE XZ
+-??0ModuleDescriptor xmlscript@@QAE XZ
+-??0OldBasicPassword@@QAE XZ
+-??0SfxScriptLibrary basic@@QAE AAVModifiableHelper@1 ABV?$Reference@VXMultiServiceFactory lang@star sun@com@@@uno star@sun com@@ABV?$Reference VXSimpleFileAccess@ucb star@sun com@@@4567@@Z
+-??0SfxScriptLibrary basic@@QAE AAVModifiableHelper@1 ABV?$Reference@VXMultiServiceFactory lang@star sun@com@@@uno star@sun com@@ABV?$Reference VXSimpleFileAccess@ucb star@sun com@@@4567 ABVOUString@rtl@@3E Z
+-??0SfxScriptLibraryContainer basic@@QAE ABV?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@@Z
+-??0SfxScriptLibraryContainer basic@@QAE XZ
+-??0VetoException util@star sun@com@@QAE ABV01234@@Z
+-??0VetoException util@star sun@com@@QAE XZ
+-??1?$Reference VXEncryptionProtectedSource@embed star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInteractionRequest@task star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXTruncate@io star@sun com@@@uno star@sun com@@QAE XZ
+-??1ErrorCodeIOException task@star sun@com@@QAE XZ
+-??1IOException io@star sun@com@@QAE XZ
+-??1ModuleDescriptor xmlscript@@QAE XZ
+-??1SfxScriptLibrary basic@@UAE XZ
+-??1SfxScriptLibraryContainer basic@@UAE XZ
+-??1VetoException util@star sun@com@@QAE XZ
+-??BSotStorageRef@@QBEPAVSotStorage@@XZ
+-??C?$Reference VXEncryptionProtectedSource@embed star@sun com@@@uno star@sun com@@QBAPAVXEncryptionProtectedSource embed@234 XZ
+-??C?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@QBAPAVXInteractionHandler task@234 XZ
+-??C?$Reference VXTruncate@io star@sun com@@@uno star@sun com@@QBAPAVXTruncate io@234 XZ
+-??_7OldBasicPassword@@6B@
+-??_7SfxScriptLibrary basic@@6BOWeakObject cppu@@@
+-??_7SfxScriptLibrary basic@@6BXAggregation uno@star sun@com@@@
+-??_7SfxScriptLibrary basic@@6BXComponent lang@star sun@com@@@
+-??_7SfxScriptLibrary basic@@6BXContainer container@star sun@com@@@
+-??_7SfxScriptLibrary basic@@6BXNameContainer container@star sun@com@@@
+-??_7SfxScriptLibrary basic@@6BXTypeProvider lang@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BOWeakObject cppu@@@
+-??_7SfxScriptLibraryContainer basic@@6BOldBasicPassword@@@
+-??_7SfxScriptLibraryContainer basic@@6BSfxLibraryContainer 1@@
+-??_7SfxScriptLibraryContainer basic@@6BXComponent lang@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXContainer container@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXInitialization lang@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXLibraryContainer2 script@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXLibraryContainerExport script@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXLibraryContainerPassword script@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXModifiable util@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXServiceInfo lang@star sun@com@@@
+-??_7SfxScriptLibraryContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-??_C _0BK@DNMCBKO com?4sun?4star?4io?4XTruncate?$AA@
+-??_C _0CO@EOINHGDB com?4sun?4star?4embed?4XEncryptionPr@
+-??_ESfxScriptLibrary basic@@W7AEPAXI Z
+-??_ESfxScriptLibraryContainer basic@@WEE AEPAXI@Z
+-??_GSfxScriptLibrary basic@@UAEPAXI Z
+-??_GSfxScriptLibraryContainer basic@@UAEPAXI Z
+-??_R0?AVErrorCodeIOException task@star sun@com@@@8
+-??_R0?AVSfxScriptLibrary basic@@@8
+-??_R0?AVSfxScriptLibraryContainer basic@@@8
+-??_R0?AVVetoException util@star sun@com@@@8
+-??_R0?AVWrongPasswordException packages@star sun@com@@@8
+-??_R1A ?0A@EA OldBasicPassword@@8
+-??_R1A ?0A@EA SfxScriptLibrary@basic@@8
+-??_R1A ?0A@EA SfxScriptLibraryContainer@basic@@8
+-??_R1PI ?0A@EA OldBasicPassword@@8
+-??_R2OldBasicPassword@@8
+-??_R2SfxScriptLibrary basic@@8
+-??_R2SfxScriptLibraryContainer basic@@8
+-??_R3OldBasicPassword@@8
+-??_R3SfxScriptLibrary basic@@8
+-??_R3SfxScriptLibraryContainer basic@@8
+-??_R4OldBasicPassword@@6B@
+-??_R4SfxScriptLibrary basic@@6BOWeakObject cppu@@@
+-??_R4SfxScriptLibrary basic@@6BXAggregation uno@star sun@com@@@
+-??_R4SfxScriptLibrary basic@@6BXComponent lang@star sun@com@@@
+-??_R4SfxScriptLibrary basic@@6BXContainer container@star sun@com@@@
+-??_R4SfxScriptLibrary basic@@6BXNameContainer container@star sun@com@@@
+-??_R4SfxScriptLibrary basic@@6BXTypeProvider lang@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BOWeakObject cppu@@@
+-??_R4SfxScriptLibraryContainer basic@@6BOldBasicPassword@@@
+-??_R4SfxScriptLibraryContainer basic@@6BSfxLibraryContainer 1@@
+-??_R4SfxScriptLibraryContainer basic@@6BXComponent lang@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXContainer container@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXInitialization lang@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXLibraryContainer2 script@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXLibraryContainerExport script@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXLibraryContainerPassword script@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXModifiable util@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXServiceInfo lang@star sun@com@@@
+-??_R4SfxScriptLibraryContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-?Create SfxScriptLibraryContainer@basic@@SA?AV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@ABV?$Reference VXComponentContext@uno star@sun com@@@4567@@Z
+-?castFromXInterface ?$Reference@VXEncryptionProtectedSource embed@star sun@com@@@uno star@sun com@@CAPAVXEncryptionProtectedSource embed@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXInteractionHandler task@star sun@com@@@uno star@sun com@@CAPAVXInteractionHandler task@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXTruncate io@star sun@com@@@uno star@sun com@@CAPAVXTruncate io@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXInteractionRequest task@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXInteractionRequest task@345@@Z
+-?changeLibraryPassword SfxScriptLibraryContainer@basic@@UAAXABVOUString rtl@@00 Z
+-?clearLibraryPassword SfxScriptLibraryContainer@basic@@EAEXABVString@@@Z
+-?cppu_detail_getUnoType embed@star sun@com@@YAABVType uno@234 PBVXEncryptionProtectedSource@1234@@Z
+-?cppu_detail_getUnoType io@star sun@com@@YAABVType uno@234 PBVXTruncate@1234@@Z
+-?createEmptyLibraryElement SfxScriptLibraryContainer@basic@@EAA?AVAny uno@star sun@com@@XZ
+-?createInstanceImpl SfxScriptLibraryContainer@basic@@EAEPAVSfxLibraryContainer 2@XZ
+-?createRegistryInfo_SfxScriptLibraryContainer basic@@YAXXZ
+-?get ?$UnoType@V?$Reference VXEncryptionProtectedSource@embed star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXTruncate@io star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXEncryptionProtectedSource embed@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXTruncate io@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXEncryptionProtectedSource@embed star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXTruncate@io star@sun com@@@2345@@Z
+-?getImplementationName SfxScriptLibraryContainer@basic@@UAA?AVOUString rtl@@XZ
+-?getImplementationName_static SfxScriptLibraryContainer@basic@@SA?AVOUString rtl@@XZ
+-?getInfoFileName SfxScriptLibraryContainer@basic@@EBAPBDXZ
+-?getLibElementFileExtension SfxScriptLibraryContainer@basic@@EBAPBDXZ
+-?getLibrariesDir SfxScriptLibraryContainer@basic@@EBAPBDXZ
+-?getLibraryPassword SfxScriptLibraryContainer@basic@@EAE?AVString@@ABV3@@Z
+-?getOldInfoFileName SfxScriptLibraryContainer@basic@@EBAPBDXZ
+-?getSupportedServiceNames SfxScriptLibraryContainer@basic@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getSupportedServiceNames_static SfxScriptLibraryContainer@basic@@SA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?hasLibraryPassword SfxScriptLibraryContainer@basic@@EAEEABVString@@@Z
+-?implCreateLibrary SfxScriptLibraryContainer@basic@@EAAPAVSfxLibrary 2@ABVOUString rtl@@@Z
+-?implCreateLibraryLink SfxScriptLibraryContainer@basic@@EAAPAVSfxLibrary 2@ABVOUString rtl@@00E Z
+-?implLoadPasswordLibrary SfxScriptLibraryContainer@basic@@EAEEPAVSfxLibrary 2@ABVOUString rtl@@E Z
+-?implSetStorage SfxScriptLibraryContainer@basic@@EAEXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?implStorePasswordLibrary SfxScriptLibraryContainer@basic@@EAEEPAVSfxLibrary 2@ABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@1V?$Reference VXSimpleFileAccess@ucb star@sun com@@@789com@@ABV?$Reference VXInteractionHandler@task star@sun com@@@789com@@@Z
+-?implStorePasswordLibrary SfxScriptLibraryContainer@basic@@EAEEPAVSfxLibrary 2@ABVOUString rtl@@ABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@ABV?$Reference VXInteractionHandler@task star@sun com@@@789com@@@Z
+-?importFromOldStorage SfxScriptLibraryContainer@basic@@EAAXABVOUString rtl@@@Z
+-?importLibraryElement SfxScriptLibraryContainer@basic@@EAA?AVAny uno@star sun@com@@ABVOUString rtl@@ABV?$Reference VXInputStream@io star@sun com@@@4567@@Z
+-?iquery ?$Reference@VXEncryptionProtectedSource embed@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXTruncate io@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?isLibraryElementValid SfxScriptLibraryContainer@basic@@EAAEVAny uno@star sun@com@@@Z
+-?isLibraryPasswordProtected SfxScriptLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?isLibraryPasswordVerified SfxScriptLibraryContainer@basic@@UAAEABVOUString rtl@@@Z
+-?isModified SfxScriptLibrary@basic@@EAEEXZ
+-?setLibraryPassword SfxScriptLibraryContainer@basic@@EAEXABVString@@0 Z
+-?setStreamKey basic@@YAXV?$Reference VXStream@io star@sun com@@@uno star@sun com@@ABVOUString rtl@@@Z
+-?static_type XEncryptionProtectedSource@embed star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XTruncate@io star@sun com@@SAABVType uno@345 PAX@Z
+-?storeResources SfxScriptLibrary@basic@@EAEXXZ
+-?storeResourcesAsURL SfxScriptLibrary@basic@@EAEXABVOUString rtl@@0 Z
+-?storeResourcesToStorage SfxScriptLibrary@basic@@EAEXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?storeResourcesToURL SfxScriptLibrary@basic@@EAEXABVOUString rtl@@ABV?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@@Z
+-?the_type ?1??cppu_detail_getUnoType@embed star@sun com@@YAABVType uno@345 PBVXEncryptionProtectedSource@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@io star@sun com@@YAABVType uno@345 PBVXTruncate@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?verifyLibraryPassword SfxScriptLibraryContainer@basic@@UAAEABVOUString rtl@@0 Z
+-?writeLibraryElement SfxScriptLibraryContainer@basic@@EAAXVAny uno@star sun@com@@ABVOUString rtl@@V?$Reference VXOutputStream@io star@sun com@@@4567@@Z
+-_TI2?AVIOException io@star sun@com@@
+-_TI2?AVVetoException util@star sun@com@@
+-_TI3?AVErrorCodeIOException task@star sun@com@@
+-??$?_3ULocale lang@star sun@com@@@uno star@sun com@@YAXAAVAny 0123@ABULocale lang@123@@Z
+-??$?_3V?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@0123@@Z
+-??$?_3V?$Reference VXInputStreamProvider@io star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXInputStreamProvider@io star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXInteractionHandler@task star@sun com@@@0123@@Z
+-??$?_3V?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@uno star@sun com@@YAXAAVAny 0123@ABV?$Reference VXStorage@embed star@sun com@@@0123@@Z
+-??$concatSequences VType@uno star@sun com@@@comphelper@@YA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@ABV12345 0@Z
+-??$cppu_detail_getUnoType VXDocumentHandler@sax xml@star sun@com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXDocumentHandler@sax xml@star sun@com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInteractionHandler@task star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionHandler@task star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStringResourcePersistence@resource star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourcePersistence@resource star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStringResourceResolver@resource star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceResolver@resource star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStringResourceWithLocation@resource star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceWithLocation@resource star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXStringResourceWithStorage@resource star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceWithStorage@resource star@sun com@@@3456@@Z
+-??$getTypeFavourUnsigned ULocale@lang star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBULocale lang@345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXExtendedDocumentHandler sax@xml star@sun com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXExtendedDocumentHandler@sax xml@star sun@com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXInteractionHandler task@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionHandler@task star@sun com@@@2345@@Z
+-??$implCopySequence VType@uno star@sun com@@@internal comphelper@@YAXPBVType uno@star sun@com@@AAPAV23456 J@Z
+-??0?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@QAE XZ
+-??0?$OAutoRegistration VSfxDialogLibraryContainer@basic@@@basic@@QAE XZ
+-??0?$OAutoRegistration VSfxDialogLibraryContainer@basic@@@comphelper@@QAE AAVOModule@1@@Z
+-??0?$Reference VXDocumentHandler@sax xml@star sun@com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXInitialization@lang star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXStringResourceResolver@resource star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXStringResourceResolver@resource star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXStringResourceWithLocation@resource star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXStringResourceWithStorage@resource star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Sequence C@uno star@sun com@@QAE XZ
+-??0?$Sequence VType@uno star@sun com@@@uno star@sun com@@QAE J@Z
+-??0Locale lang@star sun@com@@QAE ABU01234@@Z
+-??0SfxDialogLibrary basic@@QAE AAVModifiableHelper@1 ABVOUString@rtl@@ABV?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@ABV?$Reference VXSimpleFileAccess@ucb star@sun com@@@6789 11EPAVSfxDialogLibraryContainer@1@@Z
+-??0SfxDialogLibrary basic@@QAE AAVModifiableHelper@1 ABVOUString@rtl@@ABV?$Reference VXMultiServiceFactory@lang star@sun com@@@uno star@sun com@@ABV?$Reference VXSimpleFileAccess@ucb star@sun com@@@6789 PAVSfxDialogLibraryContainer@1@@Z
+-??0SfxDialogLibraryContainer basic@@QAE ABV?$Reference@VXStorage embed@star sun@com@@@uno star@sun com@@@Z
+-??0SfxDialogLibraryContainer basic@@QAE XZ
+-??0XStringResourceSupplier resource@star sun@com@@QAE XZ
+-??1?$Reference VXInitialization@lang star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStringResourceWithLocation@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXStringResourceWithStorage@resource star@sun com@@@uno star@sun com@@QAE XZ
+-??1Locale lang@star sun@com@@QAE XZ
+-??1SfxDialogLibrary basic@@UAE XZ
+-??1SfxDialogLibraryContainer basic@@UAE XZ
+-??4?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??A?$Sequence VAny@uno star@sun com@@@uno star@sun com@@QAAAAVAny 1234@J Z
+-??C?$Reference VXInitialization@lang star@sun com@@@uno star@sun com@@QBAPAVXInitialization lang@234 XZ
+-??C?$Reference VXInputStream@io star@sun com@@@uno star@sun com@@QBAPAVXInputStream io@234 XZ
+-??C?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@QBAPAVXStringResourcePersistence resource@234 XZ
+-??C?$Reference VXStringResourceWithLocation@resource star@sun com@@@uno star@sun com@@QBAPAVXStringResourceWithLocation resource@234 XZ
+-??C?$Reference VXStringResourceWithStorage@resource star@sun com@@@uno star@sun com@@QBAPAVXStringResourceWithStorage resource@234 XZ
+-??R?$ImplClassData1 VXStringResourceSupplier@resource star@sun com@@V?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??_3uno star@sun com@@YAXAAVAny 0123@AB_N Z
+-??_7SfxDialogLibrary basic@@6BOWeakObject cppu@@@
+-??_7SfxDialogLibrary basic@@6BXAggregation uno@star sun@com@@@
+-??_7SfxDialogLibrary basic@@6BXComponent lang@star sun@com@@@
+-??_7SfxDialogLibrary basic@@6BXContainer container@star sun@com@@@
+-??_7SfxDialogLibrary basic@@6BXNameContainer container@star sun@com@@@
+-??_7SfxDialogLibrary basic@@6BXStringResourceSupplier resource@star sun@com@@@
+-??_7SfxDialogLibrary basic@@6BXTypeProvider lang@star sun@com@@?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@@
+-??_7SfxDialogLibrary basic@@6BXTypeProvider lang@star sun@com@@SfxLibrary 1@@
+-??_7SfxDialogLibraryContainer basic@@6B@
+-??_7SfxDialogLibraryContainer basic@@6BOWeakObject cppu@@@
+-??_7SfxDialogLibraryContainer basic@@6BXComponent lang@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXContainer container@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXInitialization lang@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXLibraryContainer2 script@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXLibraryContainerExport script@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXLibraryContainerPassword script@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXModifiable util@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXServiceInfo lang@star sun@com@@@
+-??_7SfxDialogLibraryContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-??_C _0BJ@JMOFKNDD com?4sun?4star?4lang?4Locale?$AA@
+-??_C _0CG@GMFJHBBD com?4sun?4star?4task?4XInteractionHa@
+-??_C _0CG@LJCBPPBK com?4sun?4star?4xml?4sax?4XDocumentHa@
+-??_C _0CO@LNHKOOJA com?4sun?4star?4resource?4XStringRes@
+-??_C _0DB@CFFLMMNF com?4sun?4star?4resource?4XStringRes@
+-??_C _0DB@ENEDGLAN com?4sun?4star?4resource?4XStringRes@
+-??_C _0DC@FIOAGLDF com?4sun?4star?4resource?4XStringRes@
+-??_ESfxDialogLibrary basic@@W7AEPAXI Z
+-??_ESfxDialogLibraryContainer basic@@WEE AEPAXI@Z
+-??_GSfxDialogLibrary basic@@UAEPAXI Z
+-??_GSfxDialogLibraryContainer basic@@UAEPAXI Z
+-??_R0?AV?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@@8
+-??_R0?AVSfxDialogLibrary basic@@@8
+-??_R0?AVSfxDialogLibraryContainer basic@@@8
+-??_R0?AVXStringResourceSupplier resource@star sun@com@@@8
+-??_R13?0A EA@XStringResourceSupplier resource@star sun@com@@8
+-??_R1A ?0A@EA ?$ImplHelper1@VXStringResourceSupplier resource@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA SfxDialogLibrary@basic@@8
+-??_R1A ?0A@EA SfxDialogLibraryContainer@basic@@8
+-??_R1A ?0A@EA XStringResourceSupplier@resource star@sun com@@8
+-??_R1CA ?0A@EC XTypeProvider@lang star@sun com@@8
+-??_R1MA ?0A@EA ?$ImplHelper1@VXStringResourceSupplier resource@star sun@com@@@cppu@@8
+-??_R1MA ?0A@EC XInterface@uno star@sun com@@8
+-??_R1MA ?0A@EC XTypeProvider@lang star@sun com@@8
+-??_R1ME ?0A@EA XStringResourceSupplier@resource star@sun com@@8
+-??_R1ME ?0A@EC XInterface@uno star@sun com@@8
+-??_R2?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@8
+-??_R2SfxDialogLibrary basic@@8
+-??_R2SfxDialogLibraryContainer basic@@8
+-??_R2XStringResourceSupplier resource@star sun@com@@8
+-??_R3?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@8
+-??_R3SfxDialogLibrary basic@@8
+-??_R3SfxDialogLibraryContainer basic@@8
+-??_R3XStringResourceSupplier resource@star sun@com@@8
+-??_R4SfxDialogLibrary basic@@6BOWeakObject cppu@@@
+-??_R4SfxDialogLibrary basic@@6BXAggregation uno@star sun@com@@@
+-??_R4SfxDialogLibrary basic@@6BXComponent lang@star sun@com@@@
+-??_R4SfxDialogLibrary basic@@6BXContainer container@star sun@com@@@
+-??_R4SfxDialogLibrary basic@@6BXNameContainer container@star sun@com@@@
+-??_R4SfxDialogLibrary basic@@6BXStringResourceSupplier resource@star sun@com@@@
+-??_R4SfxDialogLibrary basic@@6BXTypeProvider lang@star sun@com@@?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@@
+-??_R4SfxDialogLibrary basic@@6BXTypeProvider lang@star sun@com@@SfxLibrary 1@@
+-??_R4SfxDialogLibraryContainer basic@@6B@
+-??_R4SfxDialogLibraryContainer basic@@6BOWeakObject cppu@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXComponent lang@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXContainer container@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXInitialization lang@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXLibraryContainer2 script@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXLibraryContainerExport script@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXLibraryContainerPassword script@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXModifiable util@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXServiceInfo lang@star sun@com@@@
+-??_R4SfxDialogLibraryContainer basic@@6BXTypeProvider lang@star sun@com@@@
+-?Create SfxDialogLibraryContainer@basic@@SA?AV?$Reference VXInterface@uno star@sun com@@@uno star@sun com@@ABV?$Reference VXComponentContext@uno star@sun com@@@4567@@Z
+-?acquire SfxDialogLibrary@basic@@UAAXXZ
+-?acquire SfxDialogLibrary@basic@@W3AAXXZ
+-?acquire SfxDialogLibrary@basic@@W7AAXXZ
+-?acquire SfxDialogLibrary@basic@@WBI AAXXZ
+-?acquire SfxDialogLibrary@basic@@WCA AAXXZ
+-?acquire SfxDialogLibrary@basic@@WCE AAXXZ
+-?acquire SfxDialogLibrary@basic@@WMA AAXXZ
+-?acquire SfxDialogLibrary@basic@@WME AAXXZ
+-?castFromXInterface ?$Reference@VXInitialization lang@star sun@com@@@uno star@sun com@@CAPAVXInitialization lang@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStringResourcePersistence resource@star sun@com@@@uno star@sun com@@CAPAVXStringResourcePersistence resource@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStringResourceWithLocation resource@star sun@com@@@uno star@sun com@@CAPAVXStringResourceWithLocation resource@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXStringResourceWithStorage resource@star sun@com@@@uno star@sun com@@CAPAVXStringResourceWithStorage resource@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXStringResourcePersistence resource@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXStringResourcePersistence resource@345@@Z
+-?cppu_detail_getUnoType lang@star sun@com@@YAABVType uno@234 PBULocale@1234@@Z
+-?cppu_detail_getUnoType resource@star sun@com@@YAABVType uno@234 PBVXStringResourcePersistence@1234@@Z
+-?cppu_detail_getUnoType resource@star sun@com@@YAABVType uno@234 PBVXStringResourceResolver@1234@@Z
+-?cppu_detail_getUnoType resource@star sun@com@@YAABVType uno@234 PBVXStringResourceWithLocation@1234@@Z
+-?cppu_detail_getUnoType resource@star sun@com@@YAABVType uno@234 PBVXStringResourceWithStorage@1234@@Z
+-?cppu_detail_getUnoType sax@xml star@sun com@@YAABVType uno@345 PBVXDocumentHandler@12345@@Z
+-?cppu_detail_getUnoType task@star sun@com@@YAABVType uno@234 PBVXInteractionHandler@1234@@Z
+-?createEmptyLibraryElement SfxDialogLibraryContainer@basic@@EAA?AVAny uno@star sun@com@@XZ
+-?createInstanceImpl SfxDialogLibraryContainer@basic@@EAEPAVSfxLibraryContainer 2@XZ
+-?createRegistryInfo_SfxDialogLibraryContainer basic@@YAXXZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXStringResourceSupplier@resource star@sun com@@V?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$UnoType@ULocale lang@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXDocumentHandler@sax xml@star sun@com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStringResourceResolver@resource star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStringResourceWithLocation@resource star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXStringResourceWithStorage@resource star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXDocumentHandler sax@xml star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInteractionHandler task@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStringResourcePersistence resource@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStringResourceResolver resource@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStringResourceWithLocation resource@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXStringResourceWithStorage resource@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getArray ?$Sequence@VType uno@star sun@com@@@uno star@sun com@@QAAPAVType 2345@XZ
+-?getCppuBooleanType@@YAABVType uno@star sun@com@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXDocumentHandler@sax xml@star sun@com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInputStreamProvider@io star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourcePersistence@resource star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceResolver@resource star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceSupplier@resource star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceWithLocation@resource star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXStringResourceWithStorage@resource star@sun com@@@2345@@Z
+-?getImplementationId SfxDialogLibrary@basic@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId SfxDialogLibrary@basic@@WKA AA?AV?$Sequence@C uno@star sun@com@@XZ
+-?getImplementationName SfxDialogLibraryContainer@basic@@UAA?AVOUString rtl@@XZ
+-?getImplementationName_static SfxDialogLibraryContainer@basic@@SA?AVOUString rtl@@XZ
+-?getInfoFileName SfxDialogLibraryContainer@basic@@EBAPBDXZ
+-?getLibElementFileExtension SfxDialogLibraryContainer@basic@@EBAPBDXZ
+-?getLibrariesDir SfxDialogLibraryContainer@basic@@EBAPBDXZ
+-?getName SfxDialogLibrary@basic@@QAE?AVOUString rtl@@XZ
+-?getOldInfoFileName SfxDialogLibraryContainer@basic@@EBAPBDXZ
+-?getStringResource SfxDialogLibrary@basic@@UAA?AV?$Reference VXStringResourceResolver@resource star@sun com@@@uno star@sun com@@XZ
+-?getStringResourcePersistence SfxDialogLibrary@basic@@QAE?AV?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@XZ
+-?getSupportedServiceNames SfxDialogLibraryContainer@basic@@UAA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getSupportedServiceNames_static SfxDialogLibraryContainer@basic@@SA?AV?$Sequence VOUString@rtl@@@uno star@sun com@@XZ
+-?getTypes ?$ImplHelper1@VXStringResourceSupplier resource@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes SfxDialogLibrary@basic@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes SfxDialogLibrary@basic@@WKA AA?AV?$Sequence@VType uno@star sun@com@@@uno star@sun com@@XZ
+-?implCreateLibrary SfxDialogLibraryContainer@basic@@EAAPAVSfxLibrary 2@ABVOUString rtl@@@Z
+-?implCreateLibraryLink SfxDialogLibraryContainer@basic@@EAAPAVSfxLibrary 2@ABVOUString rtl@@00E Z
+-?implCreateStringResource SfxDialogLibraryContainer@basic@@QAE?AV?$Reference VXStringResourcePersistence@resource star@sun com@@@uno star@sun com@@PAVSfxDialogLibrary 2@@Z
+-?implSetStorage SfxDialogLibraryContainer@basic@@EAEXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?importFromOldStorage SfxDialogLibraryContainer@basic@@EAAXABVOUString rtl@@@Z
+-?importLibraryElement SfxDialogLibraryContainer@basic@@EAA?AVAny uno@star sun@com@@ABVOUString rtl@@ABV?$Reference VXInputStream@io star@sun com@@@4567@@Z
+-?iquery ?$Reference@VXDocumentHandler sax@xml star@sun com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXInitialization lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXStringResourcePersistence resource@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXStringResourceResolver resource@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXStringResourceWithLocation resource@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXStringResourceWithStorage resource@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?isLibraryElementValid SfxDialogLibraryContainer@basic@@EAAEVAny uno@star sun@com@@@Z
+-?isModified SfxDialogLibrary@basic@@EAEEXZ
+-?queryInterface ?$ImplHelper1@VXStringResourceSupplier resource@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@W3AA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@W7AA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@WBI AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@WCA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@WCE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@WMA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface SfxDialogLibrary@basic@@WME AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?release SfxDialogLibrary@basic@@UAAXXZ
+-?release SfxDialogLibrary@basic@@W3AAXXZ
+-?release SfxDialogLibrary@basic@@W7AAXXZ
+-?release SfxDialogLibrary@basic@@WBI AAXXZ
+-?release SfxDialogLibrary@basic@@WCA AAXXZ
+-?release SfxDialogLibrary@basic@@WCE AAXXZ
+-?release SfxDialogLibrary@basic@@WMA AAXXZ
+-?release SfxDialogLibrary@basic@@WME AAXXZ
+-?s_cd ?1???R?$ImplClassData1@VXStringResourceSupplier resource@star sun@com@@V?$ImplHelper1 VXStringResourceSupplier@resource star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?set ?$Reference@VXStringResourcePersistence resource@star sun@com@@@uno star@sun com@@QAAEPAVXStringResourcePersistence resource@345@@Z
+-?static_type XDocumentHandler@sax xml@star sun@com@@SAABVType uno@456 PAX@Z
+-?static_type XStringResourcePersistence@resource star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStringResourceResolver@resource star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStringResourceSupplier@resource star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStringResourceWithLocation@resource star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XStringResourceWithStorage@resource star@sun com@@SAABVType uno@345 PAX@Z
+-?storeLibrariesToStorage SfxDialogLibraryContainer@basic@@UAAXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?storeResources SfxDialogLibrary@basic@@EAEXXZ
+-?storeResourcesAsURL SfxDialogLibrary@basic@@EAEXABVOUString rtl@@0 Z
+-?storeResourcesToStorage SfxDialogLibrary@basic@@EAEXABV?$Reference VXStorage@embed star@sun com@@@uno star@sun com@@@Z
+-?storeResourcesToURL SfxDialogLibrary@basic@@EAEXABVOUString rtl@@ABV?$Reference VXInteractionHandler@task star@sun com@@@uno star@sun com@@@Z
+-?the_type ?1??cppu_detail_getUnoType@lang star@sun com@@YAABVType uno@345 PBULocale@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@resource star@sun com@@YAABVType uno@345 PBVXStringResourcePersistence@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@resource star@sun com@@YAABVType uno@345 PBVXStringResourceResolver@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@resource star@sun com@@YAABVType uno@345 PBVXStringResourceWithLocation@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@resource star@sun com@@YAABVType uno@345 PBVXStringResourceWithStorage@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@sax xml@star sun@com@@YAABVType uno@456 PBVXDocumentHandler@23456@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@task star@sun com@@YAABVType uno@345 PBVXInteractionHandler@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?writeLibraryElement SfxDialogLibraryContainer@basic@@EAAXVAny uno@star sun@com@@ABVOUString rtl@@V?$Reference VXOutputStream@io star@sun com@@@4567@@Z
+-?writeOasis2OOoLibraryElement basic@@YA_NV?$Reference VXInputStream@io star@sun com@@@uno star@sun com@@V?$Reference VXOutputStream@io star@sun com@@@3456@@Z
+-??0BasicModule basic@@AAE XZ
+-??1BasicModule basic@@UAE XZ
+-??RCreateModuleClass basic@@QAEPAVBasicModule 1@XZ
+-??_7BasicModule basic@@6B@
+-??_B?1???RCreateModuleClass basic@@QAEPAVBasicModule 1@XZ 51
+-??_GBasicModule basic@@UAEPAXI Z
+-??_R0?AVBasicModule basic@@@8
+-??_R0?AVOModule comphelper@@@8
+-??_R1A ?0A@EA BasicModule@basic@@8
+-??_R1A ?0A@EA OModule@comphelper@@8
+-??_R2BasicModule basic@@8
+-??_R2OModule comphelper@@8
+-??_R3BasicModule basic@@8
+-??_R3OModule comphelper@@8
+-??_R4BasicModule basic@@6B@
+-?getInstance BasicModule@basic@@SAAAV12 XZ
+-?pModule ?1???RCreateModuleClass@basic@@QAEPAVBasicModule 2@XZ 4PAV32@A
+-component_getFactory
+-component_getImplementationEnvironment
+-component_writeInfo
+-??$?_3VModuleSizeExceededRequest script@star sun@com@@@uno star@sun com@@YAXAAVAny 0123@ABVModuleSizeExceededRequest script@123@@Z
+-??$cppu_detail_getUnoType VXInteractionAbort@task star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionAbort@task star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInteractionApprove@task star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionApprove@task star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInteractionContinuation@task star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionContinuation@task star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXInteractionRequest@task star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionRequest@task star@sun com@@@3456@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionContinuation@task star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned VModuleSizeExceededRequest@script star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBVModuleSizeExceededRequest script@345@@Z
+-??0?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@QAE XZ
+-??0?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@QAE XZ
+-??0?$Reference VXInteractionAbort@task star@sun com@@@uno star@sun com@@QAE PAVXInteractionAbort@task 234@@Z
+-??0?$Reference VXInteractionApprove@task star@sun com@@@uno star@sun com@@QAE PAVXInteractionApprove@task 234@@Z
+-??0?$Reference VXInteractionContinuation@task star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Sequence V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Sequence V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@QAE XZ
+-??0?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@QAE XZ
+-??0ModuleSizeExceeded@@QAE ABV?$Sequence@VOUString rtl@@@uno star@sun com@@@Z
+-??0ModuleSizeExceededRequest script@star sun@com@@QAE XZ
+-??0XInteractionAbort task@star sun@com@@QAE XZ
+-??0XInteractionApprove task@star sun@com@@QAE XZ
+-??0XInteractionContinuation task@star sun@com@@QAE XZ
+-??0XInteractionRequest task@star sun@com@@QAE XZ
+-??1?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@UAE XZ
+-??1?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@UAE XZ
+-??1?$Reference VXInteractionAbort@task star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInteractionApprove@task star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXInteractionContinuation@task star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@UAE XZ
+-??1?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@UAE XZ
+-??1ModuleSizeExceeded@@UAE XZ
+-??1ModuleSizeExceededRequest script@star sun@com@@QAE XZ
+-??4?$Reference VXInteractionContinuation@task star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??A?$Sequence V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAAAAV?$Reference VXInteractionContinuation@task star@sun com@@@1234 J@Z
+-??R?$ImplClassData1 VXInteractionAbort@task star@sun com@@V?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXInteractionApprove@task star@sun com@@V?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??R?$ImplClassData1 VXInteractionRequest@task star@sun com@@V?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 1@XZ
+-??_7?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@6BOWeakObject cppu@@@
+-??_7?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@6BXInteractionAbort task@star sun@com@@@
+-??_7?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@6BXTypeProvider lang@star sun@com@@@
+-??_7?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@6BOWeakObject cppu@@@
+-??_7?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@6BXInteractionApprove task@star sun@com@@@
+-??_7?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@6BXTypeProvider lang@star sun@com@@@
+-??_7ModuleSizeExceeded@@6BOWeakObject cppu@@@
+-??_7ModuleSizeExceeded@@6BXInteractionRequest task@star sun@com@@@
+-??_7ModuleSizeExceeded@@6BXTypeProvider lang@star sun@com@@@
+-??_C _0CE@JOANMCHK com?4sun?4star?4task?4XInteractionAb@
+-??_C _0CG@GNJFMKNK com?4sun?4star?4task?4XInteractionAp@
+-??_C _0CG@OJJEEBFB com?4sun?4star?4task?4XInteractionRe@
+-??_C _0CL@JEMLHJLA com?4sun?4star?4task?4XInteractionCo@
+-??_C _0CO@JDIIHDND com?4sun?4star?4script?4ModuleSizeEx@
+-??_G?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@UAEPAXI Z
+-??_G?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@UAEPAXI Z
+-??_GModuleSizeExceeded@@UAEPAXI Z
+-??_R0?AV?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@@8
+-??_R0?AV?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@@8
+-??_R0?AV?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@@8
+-??_R0?AV?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@@8
+-??_R0?AVModuleSizeExceeded@@@8
+-??_R0?AVXInteractionAbort task@star sun@com@@@8
+-??_R0?AVXInteractionApprove task@star sun@com@@@8
+-??_R0?AVXInteractionContinuation task@star sun@com@@@8
+-??_R0?AVXInteractionRequest task@star sun@com@@@8
+-??_R1A ?0A@EA ?$ContinuationBase@VXInteractionAbort task@star sun@com@@@framework@@8
+-??_R1A ?0A@EA ?$ContinuationBase@VXInteractionApprove task@star sun@com@@@framework@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@8
+-??_R1A ?0A@EA ModuleSizeExceeded@@8
+-??_R1A ?0A@EA XInteractionAbort@task star@sun com@@8
+-??_R1A ?0A@EA XInteractionApprove@task star@sun com@@8
+-??_R1A ?0A@EA XInteractionContinuation@task star@sun com@@8
+-??_R1A ?0A@EA XInteractionRequest@task star@sun com@@8
+-??_R1BE ?0A@EA XInteractionAbort@task star@sun com@@8
+-??_R1BE ?0A@EA XInteractionApprove@task star@sun com@@8
+-??_R1BE ?0A@EA XInteractionContinuation@task star@sun com@@8
+-??_R1BE ?0A@EA XInteractionRequest@task star@sun com@@8
+-??_R2?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@8
+-??_R2?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@8
+-??_R2?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@8
+-??_R2?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@8
+-??_R2ModuleSizeExceeded@@8
+-??_R2XInteractionAbort task@star sun@com@@8
+-??_R2XInteractionApprove task@star sun@com@@8
+-??_R2XInteractionContinuation task@star sun@com@@8
+-??_R2XInteractionRequest task@star sun@com@@8
+-??_R3?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@8
+-??_R3?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@8
+-??_R3?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@8
+-??_R3?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@8
+-??_R3ModuleSizeExceeded@@8
+-??_R3XInteractionAbort task@star sun@com@@8
+-??_R3XInteractionApprove task@star sun@com@@8
+-??_R3XInteractionContinuation task@star sun@com@@8
+-??_R3XInteractionRequest task@star sun@com@@8
+-??_R4?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@6BOWeakObject cppu@@@
+-??_R4?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@6BXInteractionAbort task@star sun@com@@@
+-??_R4?$ContinuationBase VXInteractionAbort@task star@sun com@@@framework@@6BXTypeProvider lang@star sun@com@@@
+-??_R4?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@6BOWeakObject cppu@@@
+-??_R4?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@6BXInteractionApprove task@star sun@com@@@
+-??_R4?$ContinuationBase VXInteractionApprove@task star@sun com@@@framework@@6BXTypeProvider lang@star sun@com@@@
+-??_R4ModuleSizeExceeded@@6BOWeakObject cppu@@@
+-??_R4ModuleSizeExceeded@@6BXInteractionRequest task@star sun@com@@@
+-??_R4ModuleSizeExceeded@@6BXTypeProvider lang@star sun@com@@@
+-?acquire ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@WBE AAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@UAAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@WBA AAXXZ
+-?acquire ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@WBE AAXXZ
+-?castFromXInterface ?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@CAPAVXInteractionContinuation task@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXInteractionAbort task@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXInteractionAbort task@345@@Z
+-?castToXInterface ?$Reference@VXInteractionApprove task@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXInteractionApprove task@345@@Z
+-?castToXInterface ?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXInteractionContinuation task@345@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVModuleSizeExceededRequest@1234@@Z
+-?cppu_detail_getUnoType task@star sun@com@@YAABVType uno@234 PBVXInteractionAbort@1234@@Z
+-?cppu_detail_getUnoType task@star sun@com@@YAABVType uno@234 PBVXInteractionApprove@1234@@Z
+-?cppu_detail_getUnoType task@star sun@com@@YAABVType uno@234 PBVXInteractionContinuation@1234@@Z
+-?cppu_detail_getUnoType task@star sun@com@@YAABVType uno@234 PBVXInteractionRequest@1234@@Z
+-?get ?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@QBAPAVXInteractionContinuation task@345 XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXInteractionAbort@task star@sun com@@V?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXInteractionApprove@task star@sun com@@V?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$StaticAggregate@Uclass_data cppu@@U?$ImplClassData1 VXInteractionRequest@task star@sun com@@V?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@@2@@rtl@@SAPAUclass_data cppu@@XZ
+-?get ?$UnoType@V?$Reference VXInteractionAbort@task star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInteractionApprove@task star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInteractionContinuation@task star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXInteractionRequest@task star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VModuleSizeExceededRequest script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInteractionAbort task@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInteractionApprove task@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInteractionContinuation task@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXInteractionRequest task@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getArray ?$Sequence@V?$Reference VXInteractionContinuation@task star@sun com@@@uno star@sun com@@@uno star@sun com@@QAAPAV?$Reference VXInteractionContinuation@task star@sun com@@@2345 XZ
+-?getContinuations ModuleSizeExceeded@@UAA?AV?$Sequence V?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@@uno star@sun com@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionAbort@task star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionApprove@task star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionContinuation@task star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXInteractionRequest@task star@sun com@@@2345@@Z
+-?getImplementationId ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getImplementationId ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@UAA?AV?$Sequence C@uno star@sun com@@XZ
+-?getRequest ModuleSizeExceeded@@UAA?AVAny uno@star sun@com@@XZ
+-?getTypes ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?getTypes ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@UAA?AV?$Sequence VType@uno star@sun com@@@uno star@sun com@@XZ
+-?iquery ?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?isAbort ModuleSizeExceeded@@QBEEXZ
+-?isApprove ModuleSizeExceeded@@QBEEXZ
+-?isSelected ?$ContinuationBase@VXInteractionAbort task@star sun@com@@@framework@@QBEEXZ
+-?isSelected ?$ContinuationBase@VXInteractionApprove task@star sun@com@@@framework@@QBEEXZ
+-?queryInterface ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@UAA?AVAny uno@star sun@com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@WBA AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?queryInterface ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@WBE AA?AVAny@uno star@sun com@@ABVType 4567@@Z
+-?realloc ?$Sequence@V?$Reference VXInteractionContinuation@task star@sun com@@@uno star@sun com@@@uno star@sun com@@QAAXJ Z
+-?release ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXInteractionAbort task@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXInteractionApprove task@star sun@com@@@cppu@@WBE AAXXZ
+-?release ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@UAAXXZ
+-?release ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@WBA AAXXZ
+-?release ?$WeakImplHelper1@VXInteractionRequest task@star sun@com@@@cppu@@WBE AAXXZ
+-?s_cd ?1???R?$ImplClassData1@VXInteractionAbort task@star sun@com@@V?$WeakImplHelper1 VXInteractionAbort@task star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXInteractionApprove task@star sun@com@@V?$WeakImplHelper1 VXInteractionApprove@task star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_cd ?1???R?$ImplClassData1@VXInteractionRequest task@star sun@com@@V?$WeakImplHelper1 VXInteractionRequest@task star@sun com@@@cppu@@@cppu@@QAEPAUclass_data 2@XZ 4Uclass_data1@2 A
+-?s_pType ?$Sequence@V?$Reference VXInteractionContinuation@task star@sun com@@@uno star@sun com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?select ?$ContinuationBase@VXInteractionAbort task@star sun@com@@@framework@@UAAXXZ
+-?select ?$ContinuationBase@VXInteractionApprove task@star sun@com@@@framework@@UAAXXZ
+-?set ?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@QAAEABVBaseReference 2345@W4UnoReference_Query 2345@@Z
+-?set ?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@QAAEPAVXInteractionContinuation task@345@@Z
+-?set ?$Reference@VXInteractionContinuation task@star sun@com@@@uno star@sun com@@QAAEPAVXInteractionContinuation task@345 W4__sal_NoAcquire@@@Z
+-?static_type XInteractionAbort@task star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XInteractionApprove@task star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XInteractionContinuation@task star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XInteractionRequest@task star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVModuleSizeExceededRequest@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@task star@sun com@@YAABVType uno@345 PBVXInteractionAbort@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@task star@sun com@@YAABVType uno@345 PBVXInteractionApprove@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@task star@sun com@@YAABVType uno@345 PBVXInteractionContinuation@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@task star@sun com@@YAABVType uno@345 PBVXInteractionRequest@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-??0BasResId@@QAE K@Z
+-??0BasicDLL@@QAE XZ
+-??0ResId@@QAE KAAVResMgr@@@Z
+-??0SttResId@@QAE K@Z
+-??1BasicDLL@@QAE XZ
+-??_GResMgr@@QAEPAXI Z
+-?BasicBreak BasicDLL@@SAXXZ
+-?EnableBreak BasicDLL@@SAXE Z
+-?GetBasResMgr BasicDLL@@QBEPAVResMgr@@XZ
+-?GetSttResMgr BasicDLL@@QBEPAVResMgr@@XZ
+-?SetDebugMode BasicDLL@@SAXE Z
+-??0Point@@QAE JJ@Z
+-??0Selection@@QAE JJ@Z
+-??0Size@@QAE JJ@Z
+-??_R0?AVDialog@@@8
+-??_R0?AVModalDialog@@@8
+-??_R0?AVOutputDevice@@@8
+-??_R0?AVResource@@@8
+-??_R0?AVSystemWindow@@@8
+-??_R0?AVWindow@@@8
+-??_R13?0A EA@Resource@@8
+-??_R1A ?0A@EA Dialog@@8
+-??_R1A ?0A@EA ModalDialog@@8
+-??_R1A ?0A@EA OutputDevice@@8
+-??_R1A ?0A@EA Resource@@8
+-??_R1A ?0A@EA SystemWindow@@8
+-??_R1A ?0A@EA Window@@8
+-??_R2Dialog@@8
+-??_R2ModalDialog@@8
+-??_R2OutputDevice@@8
+-??_R2Resource@@8
+-??_R2SystemWindow@@8
+-??_R2Window@@8
+-??_R3Dialog@@8
+-??_R3ModalDialog@@8
+-??_R3OutputDevice@@8
+-??_R3Resource@@8
+-??_R3SystemWindow@@8
+-??_R3Window@@8
+-?Height Size@@QAEAAJXZ
+-?Height Size@@QBEJXZ
+-?Width Size@@QAEAAJXZ
+-?Width Size@@QBEJXZ
+-?Y Point@@QAEAAJXZ
+-??$?_2V?$Reference VXEnumerationAccess@container star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXEnumerationAccess@container star@sun com@@@0123@@Z
+-??$__copy PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@PAV12345 H@_STL@@YAPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@PAV12345 00ABUrandom_access_iterator_tag@0 PAH@Z
+-??$__copy_ptrs PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@PAV12345@@_STL@@YAPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@PAV12345 00ABU__false_type@0@@Z
+-??$cppu_detail_getUnoType VXEnumerationAccess@container star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXEnumerationAccess@container star@sun com@@@3456@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXEnumerationAccess container@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXEnumerationAccess@container star@sun com@@@2345@@Z
+-??0?$Reference VXEnumeration@container star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$Reference VXEnumerationAccess@container star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$_STLP_alloc_proxy PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V12345 V?$allocator@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@_STL@@@_STL@@QAE ABV?$allocator@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@1 PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@Z
+-??0?$_Vector_base V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAE ABV?$allocator@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@1@@Z
+-??0?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@QAE ABV01@@Z
+-??0?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@QAE XZ
+-??0?$vector V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAE ABV?$allocator@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@1@@Z
+-??0SbErrorStack@@QAE GE@Z
+-??0SbErrorStackEntry@@QAE VSbMethodRef@@GGG Z
+-??0SbMethodRef@@QAE ABV0@@Z
+-??0SbxVariableRef@@QAE ABV0@@Z
+-??0SbxVariableRef@@QAE XZ
+-??1?$Reference VXEnumeration@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXEnumerationAccess@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$_STLP_alloc_proxy PAV?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V12345 V?$allocator@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@@_STL@@@_STL@@QAE XZ
+-??1?$_Vector_base V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAE XZ
+-??1?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@QAE XZ
+-??1?$vector V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAE XZ
+-??1Directory osl@@QAE XZ
+-??1RefSaveItem@@QAE XZ
+-??4?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??4?$Reference VXEnumeration@container star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??A?$vector V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAEAAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@I Z
+-??C?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@QBAPAVXComponent lang@234 XZ
+-??C?$Reference VXEnumerationAccess@container star@sun com@@@uno star@sun com@@QBAPAVXEnumerationAccess container@234 XZ
+-??DSbxVariableRef@@QBEAAVSbxVariable@@XZ
+-??_C _0CK@GAJPMDBD com?4sun?4star?4container?4XEnumerat@
+-??_GDirectory osl@@QAEPAXI Z
+-??_GRefSaveItem@@QAEPAXI Z
+-??_GSvNumberFormatter@@QAEPAXI Z
+-??_GWildCard@@QAEPAXI Z
+-?Clear SbxArrayRef@@QAEXXZ
+-?ERRCODE_TOERROR@@YAKK Z
+-?GetCurrentBasic@@YAPAVStarBASIC@@PAV1@@Z
+-?Insert SbErrorStack@@QAEXAAPBVSbErrorStackEntry@@G Z
+-?Is SbxVariableRef@@QBEEXZ
+-?StaticEnableReschedule StarBASIC@@SAXE Z
+-?begin ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAEPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@XZ
+-?castFromXInterface ?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@CAPAVXComponent lang@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXEnumeration container@star sun@com@@@uno star@sun com@@CAPAVXEnumeration container@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXEnumerationAccess container@star sun@com@@@uno star@sun com@@CAPAVXEnumerationAccess container@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXComponent lang@345@@Z
+-?castToXInterface ?$Reference@VXEnumeration container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXEnumeration container@345@@Z
+-?clear ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAEXXZ
+-?close Directory@osl@@QAE?AW4RC FileBase@2 XZ
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVXEnumerationAccess@1234@@Z
+-?end ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAEPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@XZ
+-?erase ?$vector@V?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@V?$allocator V?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@@_STL@@@_STL@@QAEPAV?$Reference VXComponent@lang star@sun com@@@uno star@sun com@@PAV34567 0@Z
+-?get ?$UnoType@V?$Reference VXEnumerationAccess@container star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXEnumerationAccess container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?set ?$Reference@VXComponent lang@star sun@com@@@uno star@sun com@@QAAEPAVXComponent lang@345@@Z
+-?set ?$Reference@VXEnumeration container@star sun@com@@@uno star@sun com@@QAAEPAVXEnumeration container@345@@Z
+-?setBasicWatchMode@@YAX_N Z
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVXEnumerationAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-??$max J@_STL@@YAABJABJ0 Z
+-??$min J@_STL@@YAABJABJ0 Z
+-??0Locale lang@star sun@com@@QAE XZ
+-??0SearchOptions util@star sun@com@@QAE XZ
+-??1SearchOptions util@star sun@com@@QAE XZ
+-??4Locale lang@star sun@com@@QAEAAU01234 ABU01234@@Z
+-?checkArithmeticOverflow@@YAXN Z
+-?checkArithmeticOverflow@@YAXPAVSbxVariable@@@Z
+-?checkUnoStructCopy@@YAXAAVSbxVariableRef@@0 Z
+-?hasFixedSize SbxDimArray@@QAE_NXZ
+-?implCopyDimArray@@YAXPAVSbxDimArray@@0FFPAJ11 Z
+-?lcl_clearImpl@@YAXAAVSbxVariableRef@@AAW4SbxDataType@@@Z
+-?lcl_eraseImpl@@YAXAAVSbxVariableRef@@_N Z
+-?setHasFixedSize SbxDimArray@@QAEX_N Z
+-??C?$Reference VXEnumeration@container star@sun com@@@uno star@sun com@@QBAPAVXEnumeration container@234 XZ
+-??NSbxValue@@QBEHABV0@@Z
+-??PSbxValue@@QBEHABV0@@Z
+-?stringToDouble math@rtl@@YANABVOUString 2@GGPAW4rtl_math_ConversionStatus@@PAJ Z
+-??$?_2V?$Reference VXInvocation@script star@sun com@@@uno star@sun com@@@uno star@sun com@@YAEABVAny 0123@AAV?$Reference VXInvocation@script star@sun com@@@0123@@Z
+-??$cppu_detail_getUnoType VXDefaultMethod@script star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXDefaultMethod@script star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXIndexAccess@container star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXIndexAccess@container star@sun com@@@3456@@Z
+-??0?$Reference VXDefaultMethod@script star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXIndexAccess@container star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0AutomationNamedArgsSbxArray@@QAE J@Z
+-??0RefSaveItem@@QAE XZ
+-??0SbxValues@@QAE W4SbxDataType@@@Z
+-??1?$Reference VXDefaultMethod@script star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXIndexAccess@container star@sun com@@@uno star@sun com@@QAE XZ
+-??1AutomationNamedArgsSbxArray@@UAE XZ
+-??C?$Reference VXDefaultMethod@script star@sun com@@@uno star@sun com@@QBAPAVXDefaultMethod script@234 XZ
+-??C?$Reference VXIndexAccess@container star@sun com@@@uno star@sun com@@QBAPAVXIndexAccess container@234 XZ
+-??_7AutomationNamedArgsSbxArray@@6BSbxBase@@@
+-??_7AutomationNamedArgsSbxArray@@6BSvRefBase@@@
+-??_8AutomationNamedArgsSbxArray@@7B@
+-??_C _0CD@OEHDBHBL com?4sun?4star?4script?4XDefaultMeth@
+-??_C _0CE@DDAKONBO com?4sun?4star?4container?4XIndexAcc@
+-??_DAutomationNamedArgsSbxArray@@QAEXXZ
+-??_GAutomationNamedArgsSbxArray@@UAEPAXI Z
+-??_R0?AVAutomationNamedArgsSbxArray@@@8
+-??_R0?AVSbxArray@@@8
+-??_R1A ?0A@EA AutomationNamedArgsSbxArray@@8
+-??_R1A ?0A@EA SbxArray@@8
+-??_R2AutomationNamedArgsSbxArray@@8
+-??_R2SbxArray@@8
+-??_R3AutomationNamedArgsSbxArray@@8
+-??_R3SbxArray@@8
+-??_R4AutomationNamedArgsSbxArray@@6BSbxBase@@@
+-??_R4AutomationNamedArgsSbxArray@@6BSvRefBase@@@
+-?GetCreator SbxArray@@UBEKXZ
+-?GetSbxId SbxArray@@UBEGXZ
+-?GetVersion SbxArray@@UBEGXZ
+-?VBAFind@@YAPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?castFromXInterface ?$Reference@VXDefaultMethod script@star sun@com@@@uno star@sun com@@CAPAVXDefaultMethod script@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXIndexAccess container@star sun@com@@@uno star@sun com@@CAPAVXIndexAccess container@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXComponentContext uno@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXComponentContext 2345@@Z
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVXIndexAccess@1234@@Z
+-?cppu_detail_getUnoType script@star sun@com@@YAABVType uno@234 PBVXDefaultMethod@1234@@Z
+-?get ?$UnoType@V?$Reference VXDefaultMethod@script star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXIndexAccess@container star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXDefaultMethod script@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXIndexAccess container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXComponentContext@uno star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXDefaultMethod@script star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXIndexAccess@container star@sun com@@@2345@@Z
+-?getVBAGlobals@@YAPAVSbxArray@@XZ
+-?implCopyDimArray_DCREATE@@YAXPAVSbxDimArray@@0FFPAJ11 Z
+-?iquery ?$Reference@VXDefaultMethod script@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXIndexAccess container@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery_throw ?$Reference@VXComponentContext uno@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?set ?$Reference@VXComponentContext uno@star sun@com@@@uno star@sun com@@QAAEPAVXComponentContext 2345@W4__sal_NoAcquire@@@Z
+-?set ?$Reference@VXComponentContext uno@star sun@com@@@uno star@sun com@@QAEXABVAny 2345@W4UnoReference_QueryThrow 2345@@Z
+-?static_type XComponentContext@uno star@sun com@@SAABVType 2345@PAX Z
+-?static_type XDefaultMethod@script star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XIndexAccess@container star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVXIndexAccess@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@script star@sun com@@YAABVType uno@345 PBVXDefaultMethod@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-??$cppu_detail_getUnoType VXBridge@bridge star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXBridge@bridge star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXBridgeFactory@bridge star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXBridgeFactory@bridge star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXContentProviderManager@ucb star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXContentProviderManager@ucb star@sun com@@@3456@@Z
+-??$cppu_detail_getUnoType VXSeekable@io star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXSeekable@io star@sun com@@@3456@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXBridge bridge@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXBridge@bridge star@sun com@@@2345@@Z
+-??$getTypeFavourUnsigned V?$Reference@VXBridge bridge@star sun@com@@@uno star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence V?$Reference@VXBridge bridge@star sun@com@@@uno star@sun com@@@2345@@Z
+-??$static_int_cast K_J@sal@@YAK_J Z
+-??$static_int_cast K_K@sal@@YAK_K Z
+-??0?$Reference VXBridgeFactory@bridge star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXContentProviderManager@ucb star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXSeekable@io star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Sequence C@uno star@sun com@@QAE PBCJ@Z
+-??0?$Sequence V?$Reference@VXBridge bridge@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??0File osl@@QAE ABVOUString@rtl@@@Z
+-??0OslStream@@QAE ABVString@@F Z
+-??0UCBStream@@QAE AAV?$Reference@VXInputStream io@star sun@com@@@uno star@sun com@@@Z
+-??0UCBStream@@QAE AAV?$Reference@VXOutputStream io@star sun@com@@@uno star@sun com@@@Z
+-??0UCBStream@@QAE AAV?$Reference@VXStream io@star sun@com@@@uno star@sun com@@@Z
+-??1?$Reference VXBridgeFactory@bridge star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXContentProvider@ucb star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXContentProviderManager@ucb star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Reference VXSeekable@io star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence V?$Reference@VXBridge bridge@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAE XZ
+-??1File osl@@QAE XZ
+-??1OslStream@@UAE XZ
+-??1UCBStream@@UAE XZ
+-??4?$Sequence V?$Reference@VXBridge bridge@star sun@com@@@uno star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??C?$Reference VXBridge@bridge star@sun com@@@uno star@sun com@@QBAPAVXBridge bridge@234 XZ
+-??C?$Reference VXBridgeFactory@bridge star@sun com@@@uno star@sun com@@QBAPAVXBridgeFactory bridge@234 XZ
+-??C?$Reference VXContentProviderManager@ucb star@sun com@@@uno star@sun com@@QBAPAVXContentProviderManager ucb@234 XZ
+-??C?$Reference VXSeekable@io star@sun com@@@uno star@sun com@@QBAPAVXSeekable io@234 XZ
+-??_7OslStream@@6B@
+-??_7UCBStream@@6B@
+-??_C _0BK@FMJAHHGO com?4sun?4star?4io?4XSeekable?$AA@
+-??_C _0BM@PMIFICIL com?4sun?4star?4bridge?4XBridge?$AA@
+-??_C _0CD@OGBDLDDC com?4sun?4star?4bridge?4XBridgeFacto@
+-??_C _0CJ@LAEFHJEF com?4sun?4star?4ucb?4XContentProvide@
+-??_GOslStream@@UAEPAXI Z
+-??_GUCBStream@@UAEPAXI Z
+-??_R0?AVOslStream@@@8
+-??_R0?AVUCBStream@@@8
+-??_R1A ?0A@EA OslStream@@8
+-??_R1A ?0A@EA UCBStream@@8
+-??_R2OslStream@@8
+-??_R2UCBStream@@8
+-??_R3OslStream@@8
+-??_R3UCBStream@@8
+-??_R4OslStream@@6B@
+-??_R4UCBStream@@6B@
+-?FlushData OslStream@@UAEXXZ
+-?FlushData UCBStream@@UAEXXZ
+-?GetData OslStream@@UAEKPAXK Z
+-?GetData UCBStream@@UAEKPAXK Z
+-?PutData OslStream@@UAEKPBXK Z
+-?PutData UCBStream@@UAEKPBXK Z
+-?SeekPos OslStream@@UAEKK Z
+-?SeekPos UCBStream@@UAEKK Z
+-?SetSize OslStream@@UAEXK Z
+-?SetSize UCBStream@@UAEXK Z
+-?castFromXInterface ?$Reference@VXBridge bridge@star sun@com@@@uno star@sun com@@CAPAVXBridge bridge@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXBridgeFactory bridge@star sun@com@@@uno star@sun com@@CAPAVXBridgeFactory bridge@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXContentProviderManager ucb@star sun@com@@@uno star@sun com@@CAPAVXContentProviderManager ucb@345 PAVXInterface@2345@@Z
+-?castFromXInterface ?$Reference@VXSeekable io@star sun@com@@@uno star@sun com@@CAPAVXSeekable io@345 PAVXInterface@2345@@Z
+-?close File@osl@@QAE?AW4RC FileBase@2 XZ
+-?cppu_detail_getUnoType bridge@star sun@com@@YAABVType uno@234 PBVXBridge@1234@@Z
+-?cppu_detail_getUnoType bridge@star sun@com@@YAABVType uno@234 PBVXBridgeFactory@1234@@Z
+-?cppu_detail_getUnoType io@star sun@com@@YAABVType uno@234 PBVXSeekable@1234@@Z
+-?cppu_detail_getUnoType ucb@star sun@com@@YAABVType uno@234 PBVXContentProviderManager@1234@@Z
+-?findUserInDescription@@YA?AVOUString rtl@@ABV12@@Z
+-?get ?$UnoType@V?$Reference VXBridge@bridge star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXBridgeFactory@bridge star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXContentProviderManager@ucb star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXSeekable@io star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXBridge bridge@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXBridgeFactory bridge@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXContentProviderManager ucb@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXSeekable io@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getConstArray ?$Sequence@C uno@star sun@com@@QBAPBCXZ
+-?getConstArray ?$Sequence@V?$Reference VXBridge@bridge star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAPBV?$Reference VXBridge@bridge star@sun com@@@2345 XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXBridgeFactory@bridge star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXContentProviderManager@ucb star@sun com@@@2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXSeekable@io star@sun com@@@2345@@Z
+-?getLength ?$Sequence@V?$Reference VXBridge@bridge star@sun com@@@uno star@sun com@@@uno star@sun com@@QBAJXZ
+-?getPos File@osl@@QAE?AW4RC FileBase@2 AA_K@Z
+-?hasUno@@YAEXZ
+-?iquery ?$Reference@VXBridgeFactory bridge@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXContentProviderManager ucb@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?iquery ?$Reference@VXSeekable io@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?needSecurityRestrictions@@YAEXZ
+-?open File@osl@@QAE?AW4RC FileBase@2 K@Z
+-?read File@osl@@QAE?AW4RC FileBase@2 PAX_KAA_K@Z
+-?s_pType ?$Sequence@V?$Reference VXBridge@bridge star@sun com@@@uno star@sun com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?setPos File@osl@@QAE?AW4RC FileBase@2 K_J@Z
+-?setSize File@osl@@QAE?AW4RC FileBase@2 _K@Z
+-?static_type XBridgeFactory@bridge star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XContentProviderManager@ucb star@sun com@@SAABVType uno@345 PAX@Z
+-?static_type XSeekable@io star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@bridge star@sun com@@YAABVType uno@345 PBVXBridge@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@bridge star@sun com@@YAABVType uno@345 PBVXBridgeFactory@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@io star@sun com@@YAABVType uno@345 PBVXSeekable@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@ucb star@sun com@@YAABVType uno@345 PBVXContentProviderManager@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?trim OUString@rtl@@QBE?AV12 XZ
+-?write File@osl@@QAE?AW4RC FileBase@2 PBX_KAA_K@Z
+-?GetUserData SbxVariable@@QBEKXZ
+-?IsA SbxObject@@WFA BEEP6APAXXZ@Z
+-?SetUserData SbxVariable@@QAEXK Z
+-?Type SbxObject@@WFA BEP6APAXXZXZ
+-??0SbStdClipboard@@QAE XZ
+-??0SbStdFactory@@QAE XZ
+-??0SbStdFont@@QAE XZ
+-??0SbStdPicture@@QAE XZ
+-??1SbStdClipboard@@MAE XZ
+-??1SbStdFont@@MAE XZ
+-??1SbStdPicture@@MAE XZ
+-??_7SbStdClipboard@@6B@
+-??_7SbStdClipboard@@6BSbxBase@@@
+-??_7SbStdClipboard@@6BSvRefBase@@@
+-??_7SbStdFactory@@6B@
+-??_7SbStdFont@@6B@
+-??_7SbStdFont@@6BSbxBase@@@
+-??_7SbStdFont@@6BSvRefBase@@@
+-??_7SbStdPicture@@6B@
+-??_7SbStdPicture@@6BSbxBase@@@
+-??_7SbStdPicture@@6BSvRefBase@@@
+-??_8SbStdClipboard@@7B@
+-??_8SbStdFont@@7B@
+-??_8SbStdPicture@@7B@
+-??_DSbStdClipboard@@IAEXXZ
+-??_DSbStdFont@@IAEXXZ
+-??_DSbStdPicture@@IAEXXZ
+-??_ESbStdClipboard@@OFA AEPAXI@Z
+-??_ESbStdClipboard@@OHI AEPAXI@Z
+-??_ESbStdFont@@OFA AEPAXI@Z
+-??_ESbStdFont@@OII AEPAXI@Z
+-??_ESbStdPicture@@OFA AEPAXI@Z
+-??_ESbStdPicture@@OIA AEPAXI@Z
+-??_GSbStdClipboard@@MAEPAXI Z
+-??_GSbStdFont@@MAEPAXI Z
+-??_GSbStdPicture@@MAEPAXI Z
+-??_R0?AVSbStdClipboard@@@8
+-??_R0?AVSbStdFactory@@@8
+-??_R0?AVSbStdFont@@@8
+-??_R0?AVSbStdPicture@@@8
+-??_R1A ?0A@EA SbStdClipboard@@8
+-??_R1A ?0A@EA SbStdFactory@@8
+-??_R1A ?0A@EA SbStdFont@@8
+-??_R1A ?0A@EA SbStdPicture@@8
+-??_R2SbStdClipboard@@8
+-??_R2SbStdFactory@@8
+-??_R2SbStdFont@@8
+-??_R2SbStdPicture@@8
+-??_R3SbStdClipboard@@8
+-??_R3SbStdFactory@@8
+-??_R3SbStdFont@@8
+-??_R3SbStdPicture@@8
+-??_R4SbStdClipboard@@6B@
+-??_R4SbStdClipboard@@6BSbxBase@@@
+-??_R4SbStdClipboard@@6BSvRefBase@@@
+-??_R4SbStdFactory@@6B@
+-??_R4SbStdFont@@6B@
+-??_R4SbStdFont@@6BSbxBase@@@
+-??_R4SbStdFont@@6BSvRefBase@@@
+-??_R4SbStdPicture@@6B@
+-??_R4SbStdPicture@@6BSbxBase@@@
+-??_R4SbStdPicture@@6BSvRefBase@@@
+-?CreateObject SbStdFactory@@UAEPAVSbxObject@@ABVString@@@Z
+-?CreateType SbStdClipboard@@SAPAXXZ
+-?CreateType SbStdFont@@SAPAXXZ
+-?CreateType SbStdPicture@@SAPAXXZ
+-?Find SbStdClipboard@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?Find SbStdFont@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?Find SbStdPicture@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?GetFontName SbStdFont@@QBE?AVString@@XZ
+-?GetSize SbStdFont@@QBEGXZ
+-?IsA SbStdClipboard@@UBEEP6APAXXZ Z
+-?IsA SbStdClipboard@@WFA BEEP6APAXXZ@Z
+-?IsA SbStdFont@@UBEEP6APAXXZ Z
+-?IsA SbStdFont@@WFA BEEP6APAXXZ@Z
+-?IsA SbStdPicture@@UBEEP6APAXXZ Z
+-?IsA SbStdPicture@@WFA BEEP6APAXXZ@Z
+-?IsBold SbStdFont@@QBEEXZ
+-?IsItalic SbStdFont@@QBEEXZ
+-?IsOf SbStdClipboard@@SAEP6APAXXZ Z
+-?IsOf SbStdFont@@SAEP6APAXXZ Z
+-?IsOf SbStdPicture@@SAEP6APAXXZ Z
+-?IsStrikeThrough SbStdFont@@QBEEXZ
+-?IsUnderline SbStdFont@@QBEEXZ
+-?MethClear SbStdClipboard@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?MethGetData SbStdClipboard@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?MethGetFormat SbStdClipboard@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?MethGetText SbStdClipboard@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?MethSetData SbStdClipboard@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?MethSetText SbStdClipboard@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?Notify SbStdClipboard@@MAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?Notify SbStdFont@@MAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?Notify SbStdPicture@@MAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?PropBold SbStdFont@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropHeight SbStdPicture@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropItalic SbStdFont@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropName SbStdFont@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropSize SbStdFont@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropStrikeThrough SbStdFont@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropType SbStdPicture@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropUnderline SbStdFont@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?PropWidth SbStdPicture@@IAEXPAVSbxVariable@@PAVSbxArray@@E Z
+-?SetBold SbStdFont@@QAEXE Z
+-?SetFontName SbStdFont@@QAEXABVString@@@Z
+-?SetItalic SbStdFont@@QAEXE Z
+-?SetSize SbStdFont@@QAEXG Z
+-?SetStrikeThrough SbStdFont@@QAEXE Z
+-?SetUnderline SbStdFont@@QAEXE Z
+-?StaticType SbStdClipboard@@SAP6APAXXZXZ
+-?StaticType SbStdFont@@SAP6APAXXZXZ
+-?StaticType SbStdPicture@@SAP6APAXXZXZ
+-?Type SbStdClipboard@@UBEP6APAXXZXZ
+-?Type SbStdClipboard@@WFA BEP6APAXXZXZ
+-?Type SbStdFont@@UBEP6APAXXZXZ
+-?Type SbStdFont@@WFA BEP6APAXXZXZ
+-?Type SbStdPicture@@UBEP6APAXXZXZ
+-?Type SbStdPicture@@WFA BEP6APAXXZXZ
+-??$?0VString@@@?$allocator U?$_List_node@VString@@@_STL@@@_STL@@QAE ABV?$allocator@VString@@@1@@Z
+-??$Min G@@YAGGG Z
+-??$__distance U?$_List_iterator@VString@@U?$_Const_traits VString@@@_STL@@@_STL@@@_STL@@YAHABU?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@0 0ABUinput_iterator_tag@0@@Z
+-??$cppu_detail_getUnoType VXSimpleFileAccess3@ucb star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXSimpleFileAccess3@ucb star@sun com@@@3456@@Z
+-??$distance U?$_List_iterator@VString@@U?$_Const_traits VString@@@_STL@@@_STL@@@_STL@@YAHABU?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@0 0@Z
+-??$static_int_cast FJ@sal@@YAFJ Z
+-??$static_int_cast GI@sal@@YAGI Z
+-??0?$Reference VXSimpleFileAccess3@ucb star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXSimpleFileAccess3@ucb star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXSimpleFileAccess3@ucb star@sun com@@@uno star@sun com@@QAE XZ
+-??0?$_List_base VString@@V?$allocator VString@@@_STL@@@_STL@@QAE ABV?$allocator@VString@@@1@@Z
+-??0?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@_STL@@QAE ABU?$_List_iterator@VString@@U?$_Nonconst_traits VString@@@_STL@@@1@@Z
+-??0?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@_STL@@QAE PAU?$_List_node@VString@@@1@@Z
+-??0?$_List_iterator VString@@U?$_Nonconst_traits VString@@@_STL@@@_STL@@QAE PAU?$_List_node@VString@@@1@@Z
+-??0?$_STLP_alloc_proxy PAU?$_List_node@VString@@@_STL@@U12 V?$allocator@U?$_List_node VString@@@_STL@@@2@@_STL@@QAE ABV?$allocator@U?$_List_node VString@@@_STL@@@1 PAU?$_List_node@VString@@@1@@Z
+-??0?$allocator U?$_List_node@VString@@@_STL@@@_STL@@QAE ABV01@@Z
+-??0?$list VString@@V?$allocator VString@@@_STL@@@_STL@@QAE ABV?$allocator@VString@@@1@@Z
+-??0Directory osl@@QAE ABVOUString@rtl@@@Z
+-??0DirectoryItem osl@@QAE XZ
+-??0FileStatus osl@@QAE K@Z
+-??0OUString rtl@@QAE PBGJ@Z
+-??0SbxObjectRef@@QAE ABV0@@Z
+-??0_List_iterator_base _STL@@QAE PAU_List_node_base@1@@Z
+-??1?$Reference VXSimpleFileAccess3@ucb star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$_List_base VString@@V?$allocator VString@@@_STL@@@_STL@@QAE XZ
+-??1?$_STLP_alloc_proxy PAU?$_List_node@VString@@@_STL@@U12 V?$allocator@U?$_List_node VString@@@_STL@@@2@@_STL@@QAE XZ
+-??1?$allocator U?$_List_node@VString@@@_STL@@@_STL@@QAE XZ
+-??1?$list VString@@V?$allocator VString@@@_STL@@@_STL@@QAE XZ
+-??1DirectoryItem osl@@QAE XZ
+-??1FileStatus osl@@QAE XZ
+-??4?$Reference VXSimpleFileAccess3@ucb star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??9_List_iterator_base _STL@@QBE_NABU01@@Z
+-??C?$Reference VXSimpleFileAccess3@ucb star@sun com@@@uno star@sun com@@QBAPAVXSimpleFileAccess3 ucb@234 XZ
+-??D?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@_STL@@QBEABVString@@XZ
+-??E?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@_STL@@QAE?AU01 H@Z
+-??E?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@_STL@@QAEAAU01 XZ
+-??_C _0CE@JOIDAPBH com?4sun?4star?4ucb?4XSimpleFileAcce@
+-??_EOUString rtl@@QAEPAXI Z
+-??_GErrorBox@@UAEPAXI Z
+-??_GInfoBox@@UAEPAXI Z
+-??_GMessBox@@UAEPAXI Z
+-??_GQueryBox@@UAEPAXI Z
+-??_GWarningBox@@UAEPAXI Z
+-??_R0?AVButtonDialog@@@8
+-??_R0?AVErrorBox@@@8
+-??_R0?AVInfoBox@@@8
+-??_R0?AVMessBox@@@8
+-??_R0?AVQueryBox@@@8
+-??_R0?AVWarningBox@@@8
+-??_R1A ?0A@EA ButtonDialog@@8
+-??_R1A ?0A@EA ErrorBox@@8
+-??_R1A ?0A@EA InfoBox@@8
+-??_R1A ?0A@EA MessBox@@8
+-??_R1A ?0A@EA QueryBox@@8
+-??_R1A ?0A@EA WarningBox@@8
+-??_R2ButtonDialog@@8
+-??_R2ErrorBox@@8
+-??_R2InfoBox@@8
+-??_R2MessBox@@8
+-??_R2QueryBox@@8
+-??_R2WarningBox@@8
+-??_R3ButtonDialog@@8
+-??_R3ErrorBox@@8
+-??_R3InfoBox@@8
+-??_R3MessBox@@8
+-??_R3QueryBox@@8
+-??_R3WarningBox@@8
+-??_R4ErrorBox@@6B@
+-??_R4InfoBox@@6B@
+-??_R4MessBox@@6B@
+-??_R4QueryBox@@6B@
+-??_R4WarningBox@@6B@
+-??_SErrorBox@@6B@
+-??_SInfoBox@@6B@
+-??_SMessBox@@6B@
+-??_SQueryBox@@6B@
+-??_SWarningBox@@6B@
+-?GetGraphic SbStdPicture@@QBE?AVGraphic@@XZ
+-?IsInteger SbxValue@@QBEEXZ
+-?IsString SbxValue@@QBEEXZ
+-?Now_Impl@@YANXZ
+-?SetGraphic SbStdPicture@@QAEXABVGraphic@@@Z
+-?_M_create_node ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@IAEPAU?$_List_node VString@@@2 ABVString@@@Z
+-?_M_incr _List_iterator_base@_STL@@QAEXXZ
+-?allocate ?$allocator@U?$_List_node VString@@@_STL@@@_STL@@QBEPAU?$_List_node VString@@@2 IPBX@Z
+-?begin ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@QAE?AU?$_List_iterator VString@@U?$_Nonconst_traits VString@@@_STL@@@2 XZ
+-?begin ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@QBE?AU?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@2 XZ
+-?castFromXInterface ?$Reference@VXSimpleFileAccess3 ucb@star sun@com@@@uno star@sun com@@CAPAVXSimpleFileAccess3 ucb@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXSimpleFileAccess3 ucb@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXSimpleFileAccess3 ucb@345@@Z
+-?clear ?$_List_base@VString@@V?$allocator VString@@@_STL@@@_STL@@QAEXXZ
+-?copy File@osl@@SA?AW4RC FileBase@2 ABVOUString@rtl@@0 Z
+-?cppu_detail_getUnoType ucb@star sun@com@@YAABVType uno@234 PBVXSimpleFileAccess3@1234@@Z
+-?create Directory@osl@@SA?AW4RC FileBase@2 ABVOUString@rtl@@@Z
+-?deallocate ?$allocator@U?$_List_node VString@@@_STL@@@_STL@@QBEXPAU?$_List_node VString@@@2 I@Z
+-?end ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@QAE?AU?$_List_iterator VString@@U?$_Nonconst_traits VString@@@_STL@@@2 XZ
+-?end ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@QBE?AU?$_List_iterator VString@@U?$_Const_traits VString@@@_STL@@@2 XZ
+-?get ?$UnoType@V?$Reference VXSimpleFileAccess3@ucb star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXSimpleFileAccess3 ucb@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get DirectoryItem@osl@@SA?AW4RC FileBase@2 ABVOUString@rtl@@AAV12@@Z
+-?getAttributes FileStatus@osl@@QBE_KXZ
+-?getBasicTypeName@@YA?AVString@@W4SbxDataType@@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXSimpleFileAccess3@ucb star@sun com@@@2345@@Z
+-?getDirectoryPath@@YA?AVString@@V1@@Z
+-?getFileName FileStatus@osl@@QBE?AVOUString rtl@@XZ
+-?getFileSize FileStatus@osl@@QBE_KXZ
+-?getFileStatus DirectoryItem@osl@@QAE?AW4RC FileBase@2 AAVFileStatus@2@@Z
+-?getFileType FileStatus@osl@@QBE?AW4Type 12@XZ
+-?getFileURL FileStatus@osl@@QBE?AVOUString rtl@@XZ
+-?getFileURLFromSystemPath FileBase@osl@@SA?AW4RC 12@ABVOUString rtl@@AAV45@@Z
+-?getFullPath@@YA?AVString@@ABV1@@Z
+-?getFullPathUNC@@YA?AVString@@ABV1@@Z
+-?getLinkTargetURL FileStatus@osl@@QBE?AVOUString rtl@@XZ
+-?getModifyTime FileStatus@osl@@QBE?AUTimeValue@@XZ
+-?getNextItem Directory@osl@@QAE?AW4RC FileBase@2 AAVDirectoryItem@2 K@Z
+-?getRTL StarBASIC@@QAE?AVSbxObjectRef@@XZ
+-?getUnoClass SbUnoClass@@QAEABV?$Reference VXIdlClass@reflection star@sun com@@@uno star@sun com@@XZ
+-?implChDir@@YAXABVString@@@Z
+-?implChDrive@@YAXABVString@@@Z
+-?implDateSerial@@YAEFFFAAN Z
+-?implGetCurDir@@YA?AVString@@XZ
+-?implGetDateDay@@YAFN Z
+-?implGetDateMonth@@YAFN Z
+-?implGetDateYear@@YAFN Z
+-?implGetHour@@YAFN Z
+-?implGetMinute@@YAFN Z
+-?implGetSecond@@YAFN Z
+-?implRemoveDirRecursive@@YAXABVString@@@Z
+-?implStepRenameOSL@@YAXABVString@@0 Z
+-?implStepRenameUCB@@YAXABVString@@0 Z
+-?insert ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@QAE?AU?$_List_iterator VString@@U?$_Nonconst_traits VString@@@_STL@@@2 U32@ABVString@@@Z
+-?iquery ?$Reference@VXSimpleFileAccess3 ucb@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?isRootDir@@YA_NVString@@@Z
+-?lastIndexOf OUString@rtl@@QBEJABV12 J@Z
+-?move File@osl@@SA?AW4RC FileBase@2 ABVOUString@rtl@@0 Z
+-?open Directory@osl@@QAE?AW4RC FileBase@2 XZ
+-?push_back ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@QAEXABVString@@@Z
+-?remove Directory@osl@@SA?AW4RC FileBase@2 ABVOUString@rtl@@@Z
+-?remove File@osl@@SA?AW4RC FileBase@2 ABVOUString@rtl@@@Z
+-?set ?$Reference@VXSimpleFileAccess3 ucb@star sun@com@@@uno star@sun com@@QAAEPAVXSimpleFileAccess3 ucb@345@@Z
+-?size ?$list@VString@@V?$allocator VString@@@_STL@@@_STL@@QBEIXZ
+-?static_type XSimpleFileAccess3@ucb star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@ucb star@sun com@@YAABVType uno@345 PBVXSimpleFileAccess3@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-_real 3ee845c8a0ce5129
+-_real 4000000000000000
+-_real 40f5180000000000
+-??$_Pow_int N@@YANNH Z
+-??$cppu_detail_getUnoType VXCalendar@i18n star@sun com@@@detail cppu@@YAABVType uno@star sun@com@@PBV?$Reference VXCalendar@i18n star@sun com@@@3456@@Z
+-??$getTypeFavourUnsigned UCalendarItem@i18n star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBUCalendarItem i18n@345@@Z
+-??$getTypeFavourUnsigned UCalendarItem@i18n star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBV?$Sequence UCalendarItem@i18n star@sun com@@@2345@@Z
+-??0?$Reference VXCalendar@i18n star@sun com@@@uno star@sun com@@QAE ABV01234@@Z
+-??0?$Reference VXCalendar@i18n star@sun com@@@uno star@sun com@@QAE ABVBaseReference@1234 W4UnoReference_Query@1234@@Z
+-??0?$Reference VXCalendar@i18n star@sun com@@@uno star@sun com@@QAE XZ
+-??0IntervalInfo@@QAE W4Interval@@PBDN_N Z
+-??0Pair@@QAE XZ
+-??0Point@@QAE XZ
+-??1?$Reference VXCalendar@i18n star@sun com@@@uno star@sun com@@QAE XZ
+-??1?$Sequence UCalendarItem@i18n star@sun com@@@uno star@sun com@@QAE XZ
+-??4?$Reference VXCalendar@i18n star@sun com@@@uno star@sun com@@QAAAAV01234 ABV01234@@Z
+-??C?$Reference VXCalendar@i18n star@sun com@@@uno star@sun com@@QBAPAVXCalendar i18n@234 XZ
+-??_C _0BM@BEFLKEFL com?4sun?4star?4i18n?4XCalendar?$AA@
+-??_C _0BP@KOHCHFPN com?4sun?4star?4i18n?4CalendarItem?$AA@
+-?IsBaseIndexOne@@YA_NXZ
+-?PutGet@@YAXAAVSbxArray@@E Z
+-?RoundImpl@@YANN Z
+-?Wait_Impl@@YAX_NAAVSbxArray@@@Z
+-?castFromXInterface ?$Reference@VXCalendar i18n@star sun@com@@@uno star@sun com@@CAPAVXCalendar i18n@345 PAVXInterface@2345@@Z
+-?castToXInterface ?$Reference@VXCalendar i18n@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAVXCalendar i18n@345@@Z
+-?cppu_detail_getUnoType i18n@star sun@com@@YAABVType uno@234 PBUCalendarItem@1234@@Z
+-?cppu_detail_getUnoType i18n@star sun@com@@YAABVType uno@234 PBVXCalendar@1234@@Z
+-?get ?$UnoType@UCalendarItem i18n@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@V?$Reference VXCalendar@i18n star@sun com@@@uno star@sun com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VXCalendar i18n@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getConstArray ?$Sequence@UCalendarItem i18n@star sun@com@@@uno star@sun com@@QBAPBUCalendarItem i18n@345 XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBV?$Reference VXCalendar@i18n star@sun com@@@2345@@Z
+-?getIntervalInfo@@YAPAUIntervalInfo@@ABVString@@@Z
+-?getLength ?$Sequence@UCalendarItem i18n@star sun@com@@@uno star@sun com@@QBAJXZ
+-?getSystemPathFromFileURL FileBase@osl@@SA?AW4RC 12@ABVOUString rtl@@AAV45@@Z
+-?implGetDateOfFirstDayInFirstWeek@@YANFAAF0PA_N Z
+-?implGetDayMonthYear@@YAXAAF00N Z
+-?implGetWeekDay@@YAFN_NF Z
+-?iquery ?$Reference@VXCalendar i18n@star sun@com@@@uno star@sun com@@CAPAVXInterface 2345@PAV62345@@Z
+-?lcl_ReadSbxVariable@@YAEAAVSbxVariable@@PAVSvStream@@EFE Z
+-?lcl_WriteReadSbxArray@@YAEAAVSbxDimArray@@PAVSvStream@@EFPAFE Z
+-?lcl_WriteSbxVariable@@YAEABVSbxVariable@@PAVSvStream@@EFE Z
+-?limitToINT16@@YAFJ Z
+-?pow@@YANNH Z
+-?s_pType ?$Sequence@UCalendarItem i18n@star sun@com@@@uno star@sun com@@2PAU_typelib_TypeDescriptionReference@@A
+-?set ?$Reference@VXCalendar i18n@star sun@com@@@uno star@sun com@@QAAEPAVXCalendar i18n@345@@Z
+-?static_type XCalendar@i18n star@sun com@@SAABVType uno@345 PAX@Z
+-?the_type ?1??cppu_detail_getUnoType@i18n star@sun com@@YAABVType uno@345 PBUCalendarItem@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@i18n star@sun com@@YAABVType uno@345 PBVXCalendar@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-_real 401c000000000000
+-_real 4024000000000000
+-_real 4038000000000000
+-_real 408f400000000000
+-_real 4096800000000000
+-_real c01c000000000000
+-_real 400921fb54442d18
+-??0DdeConnections@@QAE GG@Z
+-??1DdeConnections@@QAE XZ
+-??_GDdeConnection@@QAEPAXI Z
+-??_GDdeConnections@@QAEPAXI Z
+-?First DdeConnections@@QAEPAVDdeConnection@@XZ
+-?GetObject DdeConnections@@QBEPAVDdeConnection@@K Z
+-?Insert DdeConnections@@QAEXPAVDdeConnection@@@Z
+-?Insert DdeConnections@@QAEXPAVDdeConnection@@K Z
+-?Next DdeConnections@@QAEPAVDdeConnection@@XZ
+-?Replace DdeConnections@@QAEPAVDdeConnection@@PAV2 K@Z
+-??0ImplDllArr@@QAE GE@Z
+-??0ImplDllArr_SAR@@QAE GE@Z
+-??1ImplDllArr@@QAE XZ
+-??1ImplDllArr_SAR@@QAE XZ
+-??8 YAEABVByteString@@0 Z
+-??M YAEABVByteString@@0 Z
+-??_GByteString@@QAEPAXI Z
+-?Count ImplDllArr@@QBEGXZ
+-?DeleteAndDestroy ImplDllArr@@QAEXGG Z
+-?GetData ImplDllArr@@QBEPBQAVByteString@@XZ
+-?GetObject ImplDllArr@@QBEPAVByteString@@G Z
+-?GetObject ImplDllArr_SAR@@QBEPAVByteString@@G Z
+-?Insert ImplDllArr@@QAEEABQAVByteString@@@Z
+-?Insert ImplDllArr@@QAEEABQAVByteString@@AAG Z
+-?Insert ImplDllArr@@QAEXPBQAVByteString@@G Z
+-?Insert ImplDllArr@@QAEXPBV1 GG@Z
+-?Insert ImplDllArr_SAR@@QAEXABQAVByteString@@G Z
+-?Insert ImplDllArr_SAR@@QAEXPBV1 GGG@Z
+-?Remove ImplDllArr@@QAEXABQAVByteString@@G Z
+-?Remove ImplDllArr@@QAEXGG Z
+-?Remove ImplDllArr_SAR@@QAEXGG Z
+-?Seek_Entry ImplDllArr@@QBEEQAVByteString@@PAG Z
+-?strchr@@YAPADPADH Z
+-CallDBL 12
+-CallFIX 12
+-CallINT 12
+-CallLNG 12
+-CallSTR 12
+-??0SbxAppData@@QAE XZ
+-??0SbxBase@@IAE ABV0@@Z
+-??0SbxBase@@IAE XZ
+-??0SbxFacs@@QAE GE@Z
+-??0SbxParamInfo@@QAE ABVString@@W4SbxDataType@@GPAVSbxBase@@@Z
+-??0SbxVarList_Impl@@QAE GG@Z
+-??1SbxAppData@@QAE XZ
+-??1SbxBase@@MAE XZ
+-??1SbxBasicFormater@@QAE XZ
+-??1SbxFacs@@QAE XZ
+-??1SbxInfo@@MAE XZ
+-??1SbxParamInfo@@QAE XZ
+-??1SbxParams@@QAE XZ
+-??1SbxVarList_Impl@@QAE XZ
+-??4SbxBase@@IAEAAV0 ABV0@@Z
+-??_7SbxBase@@6B0@@
+-??_7SbxBase@@6BSvRefBase@@@
+-??_7SbxInfo@@6B@
+-??_8SbxBase@@7B@
+-??_DSbxBase@@IAEXXZ
+-??_GSbxBase@@MAEPAXI Z
+-??_GSbxBasicFormater@@QAEPAXI Z
+-??_GSbxInfo@@MAEPAXI Z
+-??_GSbxParamInfo@@QAEPAXI Z
+-??_R0?AVSbxInfo@@@8
+-??_R1A ?0A@EA SbxInfo@@8
+-??_R2SbxInfo@@8
+-??_R3SbxInfo@@8
+-??_R4SbxBase@@6B0@@
+-??_R4SbxBase@@6BSvRefBase@@@
+-??_R4SbxInfo@@6B@
+-?AddFactory SbxBase@@SAXPAVSbxFactory@@@Z
+-?AddParam SbxInfo@@QAEXABUSbxParamInfo@@@Z
+-?AddParam SbxInfo@@QAEXABVString@@W4SbxDataType@@G Z
+-?Clear SbxBase@@UAEXXZ
+-?Create SbxBase@@SAPAV1 GK@Z
+-?Create SbxFactory@@UAEPAVSbxBase@@GK Z
+-?CreateObject SbxBase@@SAPAVSbxObject@@ABVString@@@Z
+-?CreateObject SbxFactory@@UAEPAVSbxObject@@ABVString@@@Z
+-?CreateType SbxBase@@SAPAXXZ
+-?DeleteAndDestroy SbxFacs@@QAEXGG Z
+-?DeleteAndDestroy SbxParams@@QAEXGG Z
+-?GetClass SbxBase@@UBE?AW4SbxClassType@@XZ
+-?GetCreator SbxBase@@MBEKXZ
+-?GetError SbxBase@@SAKXZ
+-?GetObject SbxFacs@@QBEPAVSbxFactory@@G Z
+-?GetObject SbxParams@@QBEPAUSbxParamInfo@@G Z
+-?GetParam SbxInfo@@QBEPBUSbxParamInfo@@G Z
+-?GetSbxData_Impl@@YAPAUSbxAppData@@XZ
+-?GetSbxId SbxBase@@MBEGXZ
+-?GetType SbxBase@@UBE?AW4SbxDataType@@XZ
+-?GetVersion SbxBase@@MBEGXZ
+-?Insert SbxFacs@@QAEXAAPBVSbxFactory@@G Z
+-?Insert SbxParams@@QAEXAAPBUSbxParamInfo@@G Z
+-?IsA SbxBase@@UBEEP6APAXXZ Z
+-?IsError SbxBase@@SAEXZ
+-?IsFixed SbxBase@@UBEEXZ
+-?IsHandleLast SbxFactory@@QAEEXZ
+-?IsOf SbxBase@@SAEP6APAXXZ Z
+-?Load SbxBase@@SAPAV1 AAVSvStream@@@Z
+-?LoadCompleted SbxBase@@UAEEXZ
+-?LoadData SbxBase@@EAEEAAVSvStream@@G Z
+-?LoadData SbxInfo@@IAEEAAVSvStream@@G Z
+-?LoadPrivateData SbxBase@@MAEEAAVSvStream@@G Z
+-?Remove SbxFacs@@QAEXGG Z
+-?Remove SbxParams@@QAEXGG Z
+-?RemoveFactory SbxBase@@SAXPAVSbxFactory@@@Z
+-?ResetError SbxBase@@SAXXZ
+-?SetError SbxBase@@SAXK Z
+-?SetModified SbxBase@@UAEXE Z
+-?Skip SbxBase@@SAXAAVSvStream@@@Z
+-?StaticEnableBroadcasting SbxBase@@SAXE Z
+-?StaticIsEnabledBroadcasting SbxBase@@SAEXZ
+-?StaticType SbxBase@@SAP6APAXXZXZ
+-?Store SbxBase@@QAEEAAVSvStream@@@Z
+-?StoreCompleted SbxBase@@UAEEXZ
+-?StoreData SbxBase@@EBEEAAVSvStream@@@Z
+-?StoreData SbxInfo@@IBEEAAVSvStream@@@Z
+-?StorePrivateData SbxBase@@MBEEAAVSvStream@@@Z
+-?Type SbxBase@@UBEP6APAXXZXZ
+-??0SbxRes@@QAE G@Z
+-?GetSbxRes@@YAPBDG Z
+-??$static_int_cast DG@sal@@YADG Z
+-??$static_int_cast GW4SbxBOOL@@@sal@@YAGW4SbxBOOL@@@Z
+-??0SbxValue@@QAE ABV0@@Z
+-??0SbxValue@@QAE W4SbxDataType@@PAX Z
+-??0SbxValue@@QAE XZ
+-??1SbxValue@@MAE XZ
+-??4SbxValue@@QAEAAV0 ABV0@@Z
+-??7SbxINT64@@QBEHXZ
+-??7SbxUINT64@@QBEHXZ
+-??D YA?AUSbxINT64@@ABU0 0@Z
+-??G YA?AUSbxINT64@@ABU0 0@Z
+-??G YA?AUSbxINT64@@ABU0@@Z
+-??H YA?AUSbxINT64@@ABU0 0@Z
+-??I YA?AUSbxINT64@@ABU0 0@Z
+-??K YA?AUSbxINT64@@ABU0 0@Z
+-??L YA?AUSbxINT64@@ABU0 0@Z
+-??M YAEABVString@@0 Z
+-??N YAEABVString@@0 Z
+-??O YAEABVString@@0 Z
+-??P YAEABVString@@0 Z
+-??S YA?AUSbxINT64@@ABU0@@Z
+-??T YA?AUSbxINT64@@ABU0 0@Z
+-??U YA?AUSbxINT64@@ABU0 0@Z
+-??XSbxINT64@@QAEAAU0 ABU0@@Z
+-??YSbxINT64@@QAEAAU0 ABU0@@Z
+-??ZSbxINT64@@QAEAAU0 ABU0@@Z
+-??_0SbxINT64@@QAEAAU0 ABU0@@Z
+-??_0SbxUINT64@@QAEAAU0 ABU0@@Z
+-??_1SbxINT64@@QAEAAU0 ABU0@@Z
+-??_1SbxUINT64@@QAEAAU0 ABU0@@Z
+-??_4SbxINT64@@QAEAAU0 ABU0@@Z
+-??_5SbxINT64@@QAEAAU0 ABU0@@Z
+-??_6SbxINT64@@QAEAAU0 ABU0@@Z
+-??_7SbxValue@@6BSbxBase@@@
+-??_7SbxValue@@6BSvRefBase@@@
+-??_8SbxValue@@7B@
+-??_DSbxValue@@IAEXXZ
+-??_GSbxValue@@MAEPAXI Z
+-??_R4SbxValue@@6BSbxBase@@@
+-??_R4SbxValue@@6BSvRefBase@@@
+-?Broadcast SbxValue@@MAEXK Z
+-?CHS SbxINT64@@QAEXXZ
+-?Clear SbxValue@@UAEXXZ
+-?Compare SbxValue@@UBEEW4SbxOperator@@ABV1@@Z
+-?Compute SbxValue@@UAEEW4SbxOperator@@ABV1@@Z
+-?Convert SbxValue@@UAEEW4SbxDataType@@@Z
+-?CreateType SbxValue@@SAPAXXZ
+-?Get SbxValue@@UBEEAAUSbxValues@@@Z
+-?GetBool SbxValue@@QBEEXZ
+-?GetByte SbxValue@@QBEEXZ
+-?GetChar SbxValue@@QBEGXZ
+-?GetClass SbxValue@@UBE?AW4SbxClassType@@XZ
+-?GetCoreString SbxValue@@QBEABVString@@XZ
+-?GetCreator SbxValue@@UBEKXZ
+-?GetCurrency SbxValue@@QBE?AUSbxINT64@@XZ
+-?GetData SbxValue@@QBEPAXXZ
+-?GetDate SbxValue@@QBENXZ
+-?GetDecimal SbxValue@@QBEPAVSbxDecimal@@XZ
+-?GetDouble SbxValue@@QBENXZ
+-?GetErr SbxValue@@QBEGXZ
+-?GetFullType SbxValue@@QBE?AW4SbxDataType@@XZ
+-?GetInt64 SbxValue@@QBE_JXZ
+-?GetInt SbxValue@@QBEHXZ
+-?GetInteger SbxValue@@QBEFXZ
+-?GetLong64 SbxValue@@QBE?AUSbxINT64@@XZ
+-?GetLong SbxValue@@QBEJXZ
+-?GetNoBroadcast SbxValue@@QAEEAAUSbxValues@@@Z
+-?GetObject SbxValue@@QBEPAVSbxBase@@XZ
+-?GetSbxId SbxValue@@UBEGXZ
+-?GetSingle SbxValue@@QBEMXZ
+-?GetString SbxValue@@QBEABVString@@XZ
+-?GetType SbxValue@@UBE?AW4SbxDataType@@XZ
+-?GetUInt64 SbxValue@@QBE_KXZ
+-?GetULong64 SbxValue@@QBE?AUSbxUINT64@@XZ
+-?GetULong SbxValue@@QBEKXZ
+-?GetUShort SbxValue@@QBEGXZ
+-?GetVersion SbxValue@@UBEGXZ
+-?HasObject SbxValue@@QBEEXZ
+-?ImpIsNumeric SbxValue@@QBEEE Z
+-?IsA SbxValue@@UBEEP6APAXXZ Z
+-?IsFixed SbxValue@@UBEEXZ
+-?IsNumeric SbxValue@@QBEEXZ
+-?IsNumericRTL SbxValue@@QBEEXZ
+-?IsOf SbxValue@@SAEP6APAXXZ Z
+-?LoadData SbxValue@@MAEEAAVSvStream@@G Z
+-?Put SbxValue@@UAEEABUSbxValues@@@Z
+-?PutBool SbxValue@@QAEEE Z
+-?PutByte SbxValue@@QAEEE Z
+-?PutChar SbxValue@@QAEEG Z
+-?PutCurrency SbxValue@@QAEEABUSbxINT64@@@Z
+-?PutData SbxValue@@QAEEPAX Z
+-?PutDate SbxValue@@QAEEN Z
+-?PutDecimal SbxValue@@QAEEAAUDecimal oleautomation@bridge star@sun com@@@Z
+-?PutDecimal SbxValue@@QAEEPAVSbxDecimal@@@Z
+-?PutDouble SbxValue@@QAEEN Z
+-?PutEmpty SbxValue@@QAEEXZ
+-?PutErr SbxValue@@QAEEG Z
+-?PutInt64 SbxValue@@QAEE_J Z
+-?PutInt SbxValue@@QAEEH Z
+-?PutInteger SbxValue@@QAEEF Z
+-?PutLong64 SbxValue@@QAEEABUSbxINT64@@@Z
+-?PutLong SbxValue@@QAEEJ Z
+-?PutNull SbxValue@@QAEEXZ
+-?PutObject SbxValue@@QAEEPAVSbxBase@@@Z
+-?PutSingle SbxValue@@QAEEM Z
+-?PutString SbxValue@@QAEEABVString@@@Z
+-?PutString SbxValue@@QAEEPBG Z
+-?PutStringExt SbxValue@@QAEEABVString@@@Z
+-?PutUInt64 SbxValue@@QAEE_K Z
+-?PutULong64 SbxValue@@QAEEABUSbxUINT64@@@Z
+-?PutULong SbxValue@@QAEEK Z
+-?PutUShort SbxValue@@QAEEG Z
+-?PutpChar SbxValue@@QAEEPBG Z
+-?SetType SbxValue@@QAEEW4SbxDataType@@@Z
+-?StaticType SbxValue@@SAP6APAXXZXZ
+-?StoreData SbxValue@@MBEEAAVSvStream@@@Z
+-?TheRealValue SbxValue@@ABEPAV1 E@Z
+-?TheRealValue SbxValue@@ABEPAV1 XZ
+-?Type SbxValue@@UBEP6APAXXZXZ
+-?addRef SbxDecimal@@QAEXXZ
+-?fillAutomationDecimal SbxValue@@QAEEAAUDecimal oleautomation@bridge star@sun com@@@Z
+-_real 40c3880000000000
+-_real 430a36e2eb1c432d
+-_real c30a36e2eb1c432d
+-??0BigInt@@QAE ABUSbxINT64@@@Z
+-??0BigInt@@QAE ABUSbxUINT64@@@Z
+-??0SbxValues@@QAE ABVBigInt@@@Z
+-?INT64 BigInt@@QBEEPAUSbxINT64@@@Z
+-?Set SbxINT64@@QAEXJ Z
+-?Set SbxUINT64@@QAEXK Z
+-?UINT64 BigInt@@QBEEPAUSbxUINT64@@@Z
+-??0SbxAlias@@QAE ABV0@@Z
+-??0SbxAlias@@QAE ABVString@@PAVSbxVariable@@@Z
+-??0SbxInfo@@QAE ABVString@@K Z
+-??0SbxInfo@@QAE XZ
+-??0SbxInfoRef@@QAE ABV0@@Z
+-??0SbxInfoRef@@QAE XZ
+-??0SbxParams@@QAE GE@Z
+-??0SbxVariable@@QAE ABV0@@Z
+-??0SbxVariable@@QAE W4SbxDataType@@PAX Z
+-??0SbxVariable@@QAE XZ
+-??1SbxAlias@@EAE XZ
+-??1SbxRes@@QAE XZ
+-??1SbxVariable@@MAE XZ
+-??4SbxAlias@@QAEAAV0 ABV0@@Z
+-??4SbxVariable@@QAEAAV0 ABV0@@Z
+-??6 YAAAVSvStream@@AAV0 P6AAAV0@0 Z@Z
+-??_7SbxAlias@@6B@
+-??_7SbxAlias@@6BSbxBase@@@
+-??_7SbxAlias@@6BSvRefBase@@@
+-??_7SbxVariable@@6BSbxBase@@@
+-??_7SbxVariable@@6BSvRefBase@@@
+-??_8SbxAlias@@7B@
+-??_8SbxVariable@@7B@
+-??_DSbxAlias@@AAEXXZ
+-??_DSbxVariable@@IAEXXZ
+-??_ESbxAlias@@GFA AEPAXI@Z
+-??_ESbxAlias@@GGA AEPAXI@Z
+-??_GSbxAlias@@EAEPAXI Z
+-??_GSbxVariable@@MAEPAXI Z
+-??_GSfxBroadcaster@@UAEPAXI Z
+-??_R0?AVSbxAlias@@@8
+-??_R1A ?0A@EA SbxAlias@@8
+-??_R2SbxAlias@@8
+-??_R3SbxAlias@@8
+-??_R4SbxAlias@@6B@
+-??_R4SbxAlias@@6BSbxBase@@@
+-??_R4SbxAlias@@6BSvRefBase@@@
+-??_R4SbxVariable@@6BSbxBase@@@
+-??_R4SbxVariable@@6BSvRefBase@@@
+-??_R4SfxBroadcaster@@6B@
+-??_SSfxBroadcaster@@6B@
+-?Broadcast SbxAlias@@EAEXK Z
+-?Broadcast SbxVariable@@UAEXK Z
+-?Clear SbxVariableRef@@QAEXXZ
+-?CreateType SbxHint@@SAPAXXZ
+-?CreateType SbxVariable@@SAPAXXZ
+-?Dump SbxVariable@@QAEXAAVSvStream@@E Z
+-?GetBroadcaster SbxVariable@@QAEAAVSfxBroadcaster@@XZ
+-?GetClass SbxVariable@@UBE?AW4SbxClassType@@XZ
+-?GetCreator SbxVariable@@UBEKXZ
+-?GetInfo SbxVariable@@UAEPAVSbxInfo@@XZ
+-?GetName SbxVariable@@UBEABVString@@W4SbxNameType@@@Z
+-?GetSbxId SbxVariable@@UBEGXZ
+-?GetType SbxVariable@@UBE?AW4SbxDataType@@XZ
+-?GetVersion SbxVariable@@UBEGXZ
+-?IsA SbxHint@@UBEEP6APAXXZ Z
+-?IsA SbxVariable@@UBEEP6APAXXZ Z
+-?IsOf SbxHint@@SAEP6APAXXZ Z
+-?IsOf SbxVariable@@SAEP6APAXXZ Z
+-?LoadData SbxVariable@@MAEEAAVSvStream@@G Z
+-?MakeHashCode SbxVariable@@SAGABVString@@@Z
+-?Notify SbxAlias@@EAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?SetInfo SbxVariable@@QAEXPAVSbxInfo@@@Z
+-?SetModified SbxVariable@@UAEXE Z
+-?SetName SbxVariable@@UAEXABVString@@@Z
+-?SetParameters SbxVariable@@QAEXPAVSbxArray@@@Z
+-?SetParent SbxVariable@@UAEXPAVSbxObject@@@Z
+-?StaticType SbxHint@@SAP6APAXXZXZ
+-?StaticType SbxVariable@@SAP6APAXXZXZ
+-?StoreData SbxVariable@@MBEEAAVSvStream@@@Z
+-?Type SbxHint@@UBEP6APAXXZXZ
+-?Type SbxVariable@@UBEP6APAXXZXZ
+-??$_Construct PAVSbxVarEntry@@PAV1@@_STL@@YAXPAPAVSbxVarEntry@@ABQAV1@@Z
+-??$_Destroy PAPAVSbxVarEntry@@@_STL@@YAXPAPAVSbxVarEntry@@0 Z
+-??$_Destroy PAVSbxVarEntry@@@_STL@@YAXPAPAVSbxVarEntry@@@Z
+-??$__copy_backward_ptrs PAPAVSbxVarEntry@@PAPAV1@@_STL@@YAPAPAVSbxVarEntry@@PAPAV1 00ABU__true_type@0@@Z
+-??$__copy_ptrs PAPAVSbxVarEntry@@PAPAV1@@_STL@@YAPAPAVSbxVarEntry@@PAPAV1 00ABU__true_type@0@@Z
+-??$__destroy PAPAVSbxVarEntry@@PAV1@@_STL@@YAXPAPAVSbxVarEntry@@00 Z
+-??$__destroy_aux PAPAVSbxVarEntry@@@_STL@@YAXPAPAVSbxVarEntry@@0ABU__true_type 0@@Z
+-??$fill_n PAPAVSbxVarEntry@@IPAV1@@_STL@@YAPAPAVSbxVarEntry@@PAPAV1 IABQAV1@@Z
+-??0?$_STLP_alloc_proxy PAPAVSbxVarEntry@@PAV1 V?$allocator@PAVSbxVarEntry@@@_STL@@@_STL@@QAE ABV?$allocator@PAVSbxVarEntry@@@1 PAPAVSbxVarEntry@@@Z
+-??0?$_Vector_base PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAE ABV?$allocator@PAVSbxVarEntry@@@1@@Z
+-??0?$allocator PAVSbxVarEntry@@@_STL@@QAE ABV01@@Z
+-??0?$allocator PAVSbxVarEntry@@@_STL@@QAE XZ
+-??0?$vector PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAE ABV?$allocator@PAVSbxVarEntry@@@1@@Z
+-??0SbxArray@@QAE ABV0@@Z
+-??0SbxArray@@QAE W4SbxDataType@@@Z
+-??0SbxDimArray@@QAE ABV0@@Z
+-??0SbxDimArray@@QAE W4SbxDataType@@@Z
+-??0SbxVarEntry@@QAE XZ
+-??0SbxVarRefs@@QAE XZ
+-??1?$_STLP_alloc_proxy PAPAVSbxVarEntry@@PAV1 V?$allocator@PAVSbxVarEntry@@@_STL@@@_STL@@QAE XZ
+-??1?$_Vector_base PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAE XZ
+-??1?$allocator PAVSbxVarEntry@@@_STL@@QAE XZ
+-??1?$vector PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAE XZ
+-??1SbxArray@@MAE XZ
+-??1SbxDimArray@@MAE XZ
+-??1SbxVarEntry@@QAE XZ
+-??1SbxVarRefs@@QAE XZ
+-??4SbxArray@@QAEAAV0 ABV0@@Z
+-??4SbxDimArray@@QAEAAV0 ABV0@@Z
+-??A?$vector PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEAAPAVSbxVarEntry@@I Z
+-??_7SbxArray@@6BSbxBase@@@
+-??_7SbxArray@@6BSvRefBase@@@
+-??_7SbxDimArray@@6BSbxBase@@@
+-??_7SbxDimArray@@6BSvRefBase@@@
+-??_8SbxArray@@7B@
+-??_8SbxDimArray@@7B@
+-??_DSbxArray@@IAEXXZ
+-??_DSbxDimArray@@IAEXXZ
+-??_GSbxArray@@MAEPAXI Z
+-??_GSbxDimArray@@MAEPAXI Z
+-??_GSbxVarEntry@@QAEPAXI Z
+-??_GSbxVarRefs@@QAEPAXI Z
+-??_GSbxVariableRef@@QAEPAXI Z
+-??_R0?AVSbxDimArray@@@8
+-??_R1A ?0A@EA SbxDimArray@@8
+-??_R2SbxDimArray@@8
+-??_R3SbxDimArray@@8
+-??_R4SbxArray@@6BSbxBase@@@
+-??_R4SbxArray@@6BSvRefBase@@@
+-??_R4SbxDimArray@@6BSbxBase@@@
+-??_R4SbxDimArray@@6BSvRefBase@@@
+-?AddDim32 SbxDimArray@@QAEXJJ Z
+-?AddDim SbxDimArray@@QAEXFF Z
+-?AddDimImpl32 SbxDimArray@@AAEXJJE Z
+-?Clear SbxArray@@UAEXXZ
+-?Clear SbxDimArray@@UAEXXZ
+-?Count32 SbxArray@@QBEKXZ
+-?Count SbxArray@@QBEGXZ
+-?CreateType SbxArray@@SAPAXXZ
+-?CreateType SbxDimArray@@SAPAXXZ
+-?Find SbxArray@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?FindUserData SbxArray@@QAEPAVSbxVariable@@K Z
+-?Get32 SbxArray@@QAEPAVSbxVariable@@K Z
+-?Get32 SbxDimArray@@QAEPAVSbxVariable@@PBJ Z
+-?Get SbxArray@@QAEPAVSbxVariable@@G Z
+-?Get SbxDimArray@@QAEPAVSbxVariable@@PAVSbxArray@@@Z
+-?Get SbxDimArray@@QAEPAVSbxVariable@@PBF Z
+-?GetAlias SbxArray@@QAEABVString@@G Z
+-?GetClass SbxArray@@UBE?AW4SbxClassType@@XZ
+-?GetCreator SbxDimArray@@UBEKXZ
+-?GetDim32 SbxDimArray@@QBEEJAAJ0 Z
+-?GetDim SbxDimArray@@QBEEFAAF0 Z
+-?GetRef32 SbxArray@@QAEAAVSbxVariableRef@@K Z
+-?GetRef32 SbxDimArray@@QAEAAVSbxVariableRef@@PBJ Z
+-?GetRef SbxArray@@QAEAAVSbxVariableRef@@G Z
+-?GetRef SbxDimArray@@QAEAAVSbxVariableRef@@PAVSbxArray@@@Z
+-?GetRef SbxDimArray@@QAEAAVSbxVariableRef@@PBF Z
+-?GetSbxId SbxDimArray@@UBEGXZ
+-?GetType SbxArray@@UBE?AW4SbxDataType@@XZ
+-?GetVersion SbxDimArray@@UBEGXZ
+-?Insert32 SbxArray@@QAEXPAVSbxVariable@@K Z
+-?Insert SbxArray@@QAEXPAVSbxVariable@@G Z
+-?IsA SbxArray@@UBEEP6APAXXZ Z
+-?IsA SbxDimArray@@UBEEP6APAXXZ Z
+-?IsOf SbxArray@@SAEP6APAXXZ Z
+-?IsOf SbxDimArray@@SAEP6APAXXZ Z
+-?LoadData SbxArray@@MAEEAAVSvStream@@G Z
+-?LoadData SbxDimArray@@MAEEAAVSvStream@@G Z
+-?Merge SbxArray@@QAEXPAV1@@Z
+-?Offset32 SbxDimArray@@IAEKPAVSbxArray@@@Z
+-?Offset32 SbxDimArray@@IAEKPBJ Z
+-?Offset SbxDimArray@@IAEGPAVSbxArray@@@Z
+-?Offset SbxDimArray@@IAEGPBF Z
+-?Put32 SbxArray@@QAEXPAVSbxVariable@@K Z
+-?Put32 SbxDimArray@@QAEXPAVSbxVariable@@PBJ Z
+-?Put SbxArray@@QAEXPAVSbxVariable@@G Z
+-?Put SbxDimArray@@QAEXPAVSbxVariable@@PAVSbxArray@@@Z
+-?Put SbxDimArray@@QAEXPAVSbxVariable@@PBF Z
+-?PutAlias SbxArray@@QAEXABVString@@G Z
+-?PutDirect SbxArray@@AAEXPAVSbxVariable@@K Z
+-?Remove32 SbxArray@@QAEXK Z
+-?Remove SbxArray@@QAEXG Z
+-?Remove SbxArray@@QAEXPAVSbxVariable@@@Z
+-?StaticType SbxArray@@SAP6APAXXZXZ
+-?StaticType SbxDimArray@@SAP6APAXXZXZ
+-?StoreData SbxArray@@MBEEAAVSvStream@@@Z
+-?StoreData SbxDimArray@@MBEEAAVSvStream@@@Z
+-?Type SbxArray@@UBEP6APAXXZXZ
+-?Type SbxDimArray@@UBEP6APAXXZXZ
+-?_M_clear ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@IAEXXZ
+-?_M_insert_overflow ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@IAEXPAPAVSbxVarEntry@@ABQAV3 ABU__true_type@2 I_N@Z
+-?_M_set ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@IAEXPAPAVSbxVarEntry@@00 Z
+-?__copy_trivial_backward _STL@@YAPAXPBX0PAX Z
+-?allocate ?$allocator@PAVSbxVarEntry@@@_STL@@QBEPAPAVSbxVarEntry@@IPBX Z
+-?begin ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEPAPAVSbxVarEntry@@XZ
+-?clear ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEXXZ
+-?deallocate ?$allocator@PAVSbxVarEntry@@@_STL@@QBEXPAPAVSbxVarEntry@@I Z
+-?end ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEPAPAVSbxVarEntry@@XZ
+-?erase ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEPAPAVSbxVarEntry@@PAPAV3 0@Z
+-?erase ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEPAPAVSbxVarEntry@@PAPAV3@@Z
+-?insert ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEPAPAVSbxVarEntry@@PAPAV3 ABQAV3@@Z
+-?push_back ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QAEXABQAVSbxVarEntry@@@Z
+-?size ?$vector@PAVSbxVarEntry@@V?$allocator PAVSbxVarEntry@@@_STL@@@_STL@@QBEIXZ
+-?unoAddDim32 SbxDimArray@@QAEXJJ Z
+-?unoAddDim SbxDimArray@@QAEXFF Z
+-??0SbxObject@@QAE ABV0@@Z
+-??0SbxObject@@QAE ABVString@@@Z
+-??0SbxPropertyRef@@QAE PAVSbxProperty@@@Z
+-??1SbxObject@@MAE XZ
+-??1SbxPropertyRef@@QAE XZ
+-??4SbxObject@@QAEAAV0 ABV0@@Z
+-??CSbxPropertyRef@@QBEPAVSbxProperty@@XZ
+-??DSbxArrayRef@@QBEAAVSbxArray@@XZ
+-??_7SbxObject@@6B@
+-??_7SbxObject@@6BSbxBase@@@
+-??_7SbxObject@@6BSvRefBase@@@
+-??_8SbxObject@@7B@
+-??_DSbxObject@@IAEXXZ
+-??_ESbxObject@@OFA AEPAXI@Z
+-??_ESbxObject@@OHI AEPAXI@Z
+-??_GSbxObject@@MAEPAXI Z
+-??_R4SbxObject@@6B@
+-??_R4SbxObject@@6BSbxBase@@@
+-??_R4SbxObject@@6BSvRefBase@@@
+-?Call SbxObject@@UAEEABVString@@PAVSbxArray@@@Z
+-?Clear SbxObject@@UAEXXZ
+-?CreateType SbxMethod@@SAPAXXZ
+-?CreateType SbxObject@@SAPAXXZ
+-?CreateType SbxProperty@@SAPAXXZ
+-?Dump SbxObject@@QAEXAAVSvStream@@E Z
+-?Find SbxObject@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?FindUserData SbxObject@@UAEPAVSbxVariable@@K Z
+-?FindVar SbxObject@@AAEPAVSbxArray@@PAVSbxVariable@@AAG Z
+-?GarbageCollection SbxObject@@SAXK Z
+-?GenerateSource SbxObject@@UAE?AVString@@ABV2 PBV1@@Z
+-?GetClass SbxMethod@@UBE?AW4SbxClassType@@XZ
+-?GetClass SbxObject@@UBE?AW4SbxClassType@@XZ
+-?GetClass SbxProperty@@UBE?AW4SbxClassType@@XZ
+-?GetDfltProperty SbxObject@@QAEPAVSbxProperty@@XZ
+-?GetSvDispatch SbxObject@@UAEPAVSvDispatch@@XZ
+-?GetType SbxObject@@UBE?AW4SbxDataType@@XZ
+-?Insert SbxObject@@UAEXPAVSbxVariable@@@Z
+-?IsA SbxMethod@@UBEEP6APAXXZ Z
+-?IsA SbxObject@@UBEEP6APAXXZ Z
+-?IsA SbxProperty@@UBEEP6APAXXZ Z
+-?IsClass SbxObject@@UBEEABVString@@@Z
+-?IsHidden SbxBase@@QBEEXZ
+-?IsOf SbxMethod@@SAEP6APAXXZ Z
+-?IsOf SbxObject@@SAEP6APAXXZ Z
+-?IsOf SbxProperty@@SAEP6APAXXZ Z
+-?LoadData SbxObject@@MAEEAAVSvStream@@G Z
+-?Make SbxObject@@QAEPAVSbxVariable@@ABVString@@W4SbxClassType@@W4SbxDataType@@@Z
+-?MakeObject SbxObject@@UAEPAV1 ABVString@@0 Z
+-?Notify SbxObject@@MAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?QuickInsert SbxObject@@QAEXPAVSbxVariable@@@Z
+-?Remove SbxObject@@UAEXABVString@@W4SbxClassType@@@Z
+-?Remove SbxObject@@UAEXPAVSbxVariable@@@Z
+-?Run SbxMethod@@QAEEPAUSbxValues@@@Z
+-?SetDfltProperty SbxObject@@QAEXABVString@@@Z
+-?SetDfltProperty SbxObject@@QAEXPAVSbxProperty@@@Z
+-?SetPos SbxObject@@QAEXPAVSbxVariable@@G Z
+-?StaticType SbxMethod@@SAP6APAXXZXZ
+-?StaticType SbxObject@@SAP6APAXXZXZ
+-?StaticType SbxProperty@@SAP6APAXXZXZ
+-?StoreData SbxObject@@MBEEAAVSvStream@@@Z
+-?Type SbxMethod@@UBEP6APAXXZXZ
+-?Type SbxObject@@UBEP6APAXXZXZ
+-?Type SbxProperty@@UBEP6APAXXZXZ
+-?VCPtrFindVar SbxObject@@AAEPAVSbxArray@@PAVSbxVariable@@AAG Z
+-?VCPtrInsert SbxObject@@QAEXPAVSbxVariable@@@Z
+-?VCPtrRemove SbxObject@@QAEXPAVSbxVariable@@@Z
+-??0SbxCollection@@QAE ABV0@@Z
+-??0SbxCollection@@QAE ABVString@@@Z
+-??0SbxStdCollection@@QAE ABV0@@Z
+-??0SbxStdCollection@@QAE ABVString@@0E Z
+-??1SbxCollection@@MAE XZ
+-??1SbxStdCollection@@MAE XZ
+-??4SbxCollection@@QAEAAV0 ABV0@@Z
+-??4SbxStdCollection@@QAEAAV0 ABV0@@Z
+-??_7SbxCollection@@6B@
+-??_7SbxCollection@@6BSbxBase@@@
+-??_7SbxCollection@@6BSvRefBase@@@
+-??_7SbxStdCollection@@6B@
+-??_7SbxStdCollection@@6BSbxBase@@@
+-??_7SbxStdCollection@@6BSvRefBase@@@
+-??_8SbxCollection@@7B@
+-??_8SbxStdCollection@@7B@
+-??_DSbxCollection@@IAEXXZ
+-??_DSbxStdCollection@@IAEXXZ
+-??_ESbxCollection@@OFA AEPAXI@Z
+-??_ESbxCollection@@OHI AEPAXI@Z
+-??_ESbxStdCollection@@OFA AEPAXI@Z
+-??_ESbxStdCollection@@OIA AEPAXI@Z
+-??_GSbxCollection@@MAEPAXI Z
+-??_GSbxStdCollection@@MAEPAXI Z
+-??_R0?AVSbxCollection@@@8
+-??_R0?AVSbxStdCollection@@@8
+-??_R1A ?0A@EA SbxCollection@@8
+-??_R1A ?0A@EA SbxStdCollection@@8
+-??_R2SbxCollection@@8
+-??_R2SbxStdCollection@@8
+-??_R3SbxCollection@@8
+-??_R3SbxStdCollection@@8
+-??_R4SbxCollection@@6B@
+-??_R4SbxCollection@@6BSbxBase@@@
+-??_R4SbxCollection@@6BSvRefBase@@@
+-??_R4SbxStdCollection@@6B@
+-??_R4SbxStdCollection@@6BSbxBase@@@
+-??_R4SbxStdCollection@@6BSvRefBase@@@
+-?Clear SbxCollection@@UAEXXZ
+-?CollAdd SbxCollection@@MAEXPAVSbxArray@@@Z
+-?CollAdd SbxStdCollection@@MAEXPAVSbxArray@@@Z
+-?CollItem SbxCollection@@MAEXPAVSbxArray@@@Z
+-?CollRemove SbxCollection@@MAEXPAVSbxArray@@@Z
+-?CollRemove SbxStdCollection@@MAEXPAVSbxArray@@@Z
+-?CreateType SbxCollection@@SAPAXXZ
+-?CreateType SbxStdCollection@@SAPAXXZ
+-?Find SbxCollection@@UAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?FindUserData SbxCollection@@UAEPAVSbxVariable@@K Z
+-?GetCreator SbxCollection@@UBEKXZ
+-?GetCreator SbxStdCollection@@UBEKXZ
+-?GetSbxId SbxCollection@@UBEGXZ
+-?GetSbxId SbxStdCollection@@UBEGXZ
+-?GetVersion SbxCollection@@UBEGXZ
+-?GetVersion SbxStdCollection@@UBEGXZ
+-?Initialize SbxCollection@@AAEXXZ
+-?Insert SbxStdCollection@@UAEXPAVSbxVariable@@@Z
+-?IsA SbxCollection@@UBEEP6APAXXZ Z
+-?IsA SbxCollection@@WFA BEEP6APAXXZ@Z
+-?IsA SbxStdCollection@@UBEEP6APAXXZ Z
+-?IsA SbxStdCollection@@WFA BEEP6APAXXZ@Z
+-?IsOf SbxCollection@@SAEP6APAXXZ Z
+-?IsOf SbxStdCollection@@SAEP6APAXXZ Z
+-?LoadData SbxCollection@@MAEEAAVSvStream@@G Z
+-?LoadData SbxStdCollection@@MAEEAAVSvStream@@G Z
+-?Notify SbxCollection@@MAEXAAVSfxBroadcaster@@ABVSfxHint@@@Z
+-?StaticType SbxCollection@@SAP6APAXXZXZ
+-?StaticType SbxStdCollection@@SAP6APAXXZXZ
+-?StoreData SbxStdCollection@@MBEEAAVSvStream@@@Z
+-?Type SbxCollection@@UBEP6APAXXZXZ
+-?Type SbxCollection@@WFA BEP6APAXXZXZ
+-?Type SbxStdCollection@@UBEP6APAXXZXZ
+-?Type SbxStdCollection@@WFA BEP6APAXXZXZ
+-??XSbxValue@@QAEAAV0 ABV0@@Z
+-??YSbxValue@@QAEAAV0 ABV0@@Z
+-??ZSbxValue@@QAEAAV0 ABV0@@Z
+-??_0SbxValue@@QAEAAV0 ABV0@@Z
+-?Execute SbxObject@@QAEPAVSbxVariable@@ABVString@@@Z
+-?FindQualified SbxObject@@QAEPAVSbxVariable@@ABVString@@W4SbxClassType@@@Z
+-?isAlpha SbxSimpleCharClass@@QBEEG Z
+-?isAlphaNumeric SbxSimpleCharClass@@QBEEG Z
+-?isDigit SbxSimpleCharClass@@QBEEG Z
+-??0OString rtl@@AAE PAU_rtl_String@@PAVDO_NOT_ACQUIRE 01@@Z
+-?ImpCurrencyToDouble@@YANABUSbxINT64@@@Z
+-?ImpDoubleToCurrency@@YA?AUSbxINT64@@N Z
+-?ImpDoubleToSalInt64@@YA_JN Z
+-?ImpDoubleToSalUInt64@@YA_KN Z
+-?ImpGetInt64@@YA_JPBUSbxValues@@@Z
+-?ImpGetInteger@@YAFPBUSbxValues@@@Z
+-?ImpGetUInt64@@YA_KPBUSbxValues@@@Z
+-?ImpPutInt64@@YAXPAUSbxValues@@_J Z
+-?ImpPutInteger@@YAXPAUSbxValues@@F Z
+-?ImpPutUInt64@@YAXPAUSbxValues@@_K Z
+-?ImpRound@@YANN Z
+-?ImpSalUInt64ToDouble@@YAN_K Z
+-?OStringToOUString rtl@@YA?AVOUString 1@ABVOString 1@GK Z
+-?getLength OString@rtl@@QBEJXZ
+-?toInt64 OString@rtl@@QBE_JF Z
+-?valueOf OString@rtl@@SA?AV12 _JF@Z
+-_real 43e0000000000000
+-_real 43f0000000000000
+-_real bfe0000000000000
+-_real c3e0000000000000
+-_real c7000000
+-?ImpGetLong@@YAJPBUSbxValues@@@Z
+-?ImpPutLong@@YAXPAUSbxValues@@J Z
+-_real 4f000000
+-_real cf000000
+-??$static_int_cast JM@sal@@YAJM Z
+-??$static_int_cast KM@sal@@YAKM Z
+-?ImpGetSingle@@YAMPBUSbxValues@@@Z
+-?ImpPutSingle@@YAXPAUSbxValues@@M Z
+-_real 00800000
+-_real 38100000000a639b
+-_real 406fe00000000000
+-_real 40efffe000000000
+-_real 437f0000
+-_real 46fffe00
+-_real 477fff00
+-_real 47efffff966ad924
+-_real 4f800000
+-_real 7f7ffffd
+-_real 80800000
+-_real b8100000000a639b
+-_real c7efffff966ad924
+-_real ff7ffffd
+-??1SbxMemoryStream@@UAE XZ
+-??_7SbxMemoryStream@@6B@
+-??_7SbxMemoryStream@@6BSbxBase@@@
+-??_7SbxMemoryStream@@6BSvRefBase@@@
+-??_DSbxMemoryStream@@QAEXXZ
+-??_ESbxMemoryStream@@WBA AEPAXI@Z
+-??_ESbxMemoryStream@@WHI AEPAXI@Z
+-??_GSbxMemoryStream@@UAEPAXI Z
+-??_R0?AVSbxMemoryStream@@@8
+-??_R1A ?0A@EA SbxMemoryStream@@8
+-??_R1BA ?0A@EA SvMemoryStream@@8
+-??_R1BA ?0A@EA SvStream@@8
+-??_R2SbxMemoryStream@@8
+-??_R3SbxMemoryStream@@8
+-??_R4SbxMemoryStream@@6B@
+-??_R4SbxMemoryStream@@6BSbxBase@@@
+-??_R4SbxMemoryStream@@6BSvRefBase@@@
+-?GetType SbxMemoryStream@@UBE?AW4SbxDataType@@XZ
+-?ImpGetDouble@@YANPBUSbxValues@@@Z
+-?ImpPutDouble@@YAXPAUSbxValues@@NE Z
+-_real 41efffffffe00000
+-?ImpDoubleToINT64@@YA?AUSbxINT64@@N Z
+-?ImpDoubleToUINT64@@YA?AUSbxUINT64@@N Z
+-?ImpGetCurrency@@YA?AUSbxINT64@@PBUSbxValues@@@Z
+-?ImpINT64ToDouble@@YANABUSbxINT64@@@Z
+-?ImpPutCurrency@@YAXPAUSbxValues@@ABUSbxINT64@@@Z
+-?ImpUINT64ToDouble@@YANABUSbxUINT64@@@Z
+-?Set SbxINT64@@QAEXN Z
+-?Set SbxUINT64@@QAEXN Z
+-?SetMax SbxINT64@@QAEXXZ
+-?SetMin SbxINT64@@QAEXXZ
+-?SetNull SbxINT64@@QAEXXZ
+-_real 3df0000000000000
+-_real bdf0000000000000
+-?ImpGetDate@@YANPBUSbxValues@@@Z
+-?ImpPutDate@@YAXPAUSbxValues@@N Z
+-?ImpGetCoreString@@YA?AVString@@PBUSbxValues@@@Z
+-?ImpGetString@@YA?AVString@@PBUSbxValues@@@Z
+-?ImpPutString@@YAXPAUSbxValues@@PBVString@@@Z
+-?ImpGetBool@@YA?AW4SbxBOOL@@PBUSbxValues@@@Z
+-?ImpPutBool@@YAXPAUSbxValues@@F Z
+-?ImpGetChar@@YAGPBUSbxValues@@@Z
+-?ImpPutChar@@YAXPAUSbxValues@@G Z
+-?ImpGetByte@@YAEPBUSbxValues@@@Z
+-?ImpPutByte@@YAXPAUSbxValues@@E Z
+-?ImpGetUShort@@YAGPBUSbxValues@@@Z
+-?ImpPutUShort@@YAXPAUSbxValues@@G Z
+-?ImpGetULong@@YAKPBUSbxValues@@@Z
+-?ImpPutULong@@YAXPAUSbxValues@@K Z
+-??0SbxBasicFormater@@QAE GGVString@@0000000 Z
+-?AnalyseFormatString SbxBasicFormater@@AAEFABVString@@AAF1111AAE2221 Z
+-?AppendDigit SbxBasicFormater@@AAEXAAVString@@F Z
+-?BasicFormat SbxBasicFormater@@QAE?AVString@@NV2@@Z
+-?BasicFormatNull SbxBasicFormater@@QAE?AVString@@V2@@Z
+-?Get0FormatString SbxBasicFormater@@AAE?AVString@@ABV2 AAE@Z
+-?GetDigitAtPosExpScan SbxBasicFormater@@AAEFFAAE Z
+-?GetDigitAtPosExpScan SbxBasicFormater@@AAEFNFAAE Z
+-?GetDigitAtPosScan SbxBasicFormater@@AAEFFAAE Z
+-?GetNegFormatString SbxBasicFormater@@AAE?AVString@@ABV2 AAE@Z
+-?GetNullFormatString SbxBasicFormater@@AAE?AVString@@ABV2 AAE@Z
+-?GetPosFormatString SbxBasicFormater@@AAE?AVString@@ABV2 AAE@Z
+-?InitExp SbxBasicFormater@@AAEXN Z
+-?InitScan SbxBasicFormater@@AAEXN Z
+-?LeftShiftDecimalPoint SbxBasicFormater@@AAEXAAVString@@@Z
+-?ParseBack SbxBasicFormater@@AAEXAAVString@@ABV2 F@Z
+-?ScanFormatString SbxBasicFormater@@AAEXNABVString@@AAV2 E@Z
+-?ShiftString SbxBasicFormater@@AAEXAAVString@@G Z
+-?StrAppendChar SbxBasicFormater@@AAEXAAVString@@G Z
+-?StrRoundDigit SbxBasicFormater@@AAEXAAVString@@F Z
+-?StrRoundDigit SbxBasicFormater@@AAEXAAVString@@FAAE Z
+-?get_number_of_digits@@YANN Z
+-_real 4059000000000000
+-??$static_int_cast DH@sal@@YADH Z
+-??0SbxValueFormatResId@@QAE G@Z
+-??0SbxValues@@QAE N@Z
+-?Format SbxValue@@QBEXAAVString@@PBV2@@Z
+-?ImpConvStringExt@@YAEAAVString@@W4SbxDataType@@@Z
+-?ImpCvtNum@@YAXNFAAVString@@E Z
+-?ImpGetIntntlSep@@YAXAAG0 Z
+-?ImpScan@@YAKABVString@@AANAAW4SbxDataType@@PAGEE Z
+-?Scan SbxValue@@QAEEABVString@@PAG Z
+-?ScanNumIntnl SbxValue@@SAKABVString@@AANE Z
+-?implGetResMgr@@YAPAVResMgr@@XZ
+-_real 3fb999999999999a
+-_real 412e848000000000
+-_real 42d6bcc41e900000
+-??0SbxDecimal@@QAE ABUDecimal@oleautomation bridge@star sun@com@@@Z
+-??0SbxDecimal@@QAE ABV0@@Z
+-??0SbxDecimal@@QAE XZ
+-??1SbxDecimal@@QAE XZ
+-??XSbxDecimal@@QAE_NABV0@@Z
+-??YSbxDecimal@@QAE_NABV0@@Z
+-??ZSbxDecimal@@QAE_NABV0@@Z
+-??_0SbxDecimal@@QAE_NABV0@@Z
+-??_GSbxDecimal@@QAEPAXI Z
+-?ImpCreateDecimal@@YAPAVSbxDecimal@@PAUSbxValues@@@Z
+-?ImpGetDecimal@@YAPAVSbxDecimal@@PBUSbxValues@@@Z
+-?ImpPutDecimal@@YAXPAUSbxValues@@PAVSbxDecimal@@@Z
+-?compare@@YA?AW4CmpResult SbxDecimal@@ABV2 0@Z
+-?fillAutomationDecimal SbxDecimal@@QAEXAAUDecimal oleautomation@bridge star@sun com@@@Z
+-?getByte SbxDecimal@@QAE_NAAE Z
+-?getChar SbxDecimal@@QAE_NAAG Z
+-?getDouble SbxDecimal@@QAE_NAAN Z
+-?getInt SbxDecimal@@QAE_NAAH Z
+-?getLong SbxDecimal@@QAE_NAAJ Z
+-?getShort SbxDecimal@@QAE_NAAF Z
+-?getSingle SbxDecimal@@QAE_NAAM Z
+-?getString SbxDecimal@@QAE_NAAVString@@@Z
+-?getUInt SbxDecimal@@QAE_NAAI Z
+-?getULong SbxDecimal@@QAE_NAAK Z
+-?getUShort SbxDecimal@@QAE_NAAG Z
+-?isZero SbxDecimal@@QAE_NXZ
+-?neg SbxDecimal@@QAE_NXZ
+-?releaseDecimalPtr@@YAXAAPAVSbxDecimal@@@Z
+-?setByte SbxDecimal@@QAEXE Z
+-?setChar SbxDecimal@@QAEXG Z
+-?setDecimal SbxDecimal@@QAEXPAV1@@Z
+-?setDouble SbxDecimal@@QAE_NN Z
+-?setInt SbxDecimal@@QAEXH Z
+-?setLong SbxDecimal@@QAEXJ Z
+-?setShort SbxDecimal@@QAEXF Z
+-?setSingle SbxDecimal@@QAE_NM Z
+-?setString SbxDecimal@@QAE_NPAVString@@@Z
+-?setUInt SbxDecimal@@QAEXI Z
+-?setULong SbxDecimal@@QAEXK Z
+-?setUShort SbxDecimal@@QAEXG Z
+-??$?_2VBasicErrorException script@star sun@com@@@uno star@sun com@@YAEABVAny 0123@AAVBasicErrorException script@123@@Z
+-??$?_2VInvocationTargetException reflection@star sun@com@@@uno star@sun com@@YAEABVAny 0123@AAVInvocationTargetException reflection@123@@Z
+-??$?_2VWrappedTargetException lang@star sun@com@@@uno star@sun com@@YAEABVAny 0123@AAVWrappedTargetException lang@123@@Z
+-??$getTypeFavourUnsigned VBasicErrorException@script star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBVBasicErrorException script@345@@Z
+-??$getTypeFavourUnsigned VInvocationTargetException@reflection star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBVInvocationTargetException reflection@345@@Z
+-??$getTypeFavourUnsigned VWrappedTargetException@lang star@sun com@@@cppu@@YAABVType uno@star sun@com@@PBVWrappedTargetException lang@345@@Z
+-??$implGetExceptionMsg VNoSuchElementException@container star@sun com@@@@YA?AVString@@ABVNoSuchElementException container@star sun@com@@@Z
+-??$implGetExceptionMsg VRuntimeException@uno star@sun com@@@@YA?AVString@@ABVRuntimeException uno@star sun@com@@@Z
+-??$implGetExceptionMsg VWrappedTargetException@lang star@sun com@@@@YA?AVString@@ABVWrappedTargetException lang@star sun@com@@@Z
+-??0BasicErrorException script@star sun@com@@QAE XZ
+-??0InvocationTargetException reflection@star sun@com@@QAE XZ
+-??0OUStringBuffer rtl@@QAE XZ
+-??0WrappedTargetException lang@star sun@com@@QAE XZ
+-??1BasicErrorException script@star sun@com@@QAE XZ
+-??1InvocationTargetException reflection@star sun@com@@QAE XZ
+-??1OUStringBuffer rtl@@QAE XZ
+-??_C _0CC@OOLDDOCL com?4sun?4star?4uno?4RuntimeExceptio@
+-??_C _0CJ@HFNJAPOD com?4sun?4star?4lang?4WrappedTargetE@
+-??_C _0CO@MHOGFIIP com?4sun?4star?4container?4NoSuchEle@
+-??_C _0DC@OIONOOHM com?4sun?4star?4reflection?4Invocati@
+-?append OUStringBuffer@rtl@@QAEAAV12 ABVOUString@2@@Z
+-?append OUStringBuffer@rtl@@QAEAAV12 PBGJ@Z
+-?appendAscii OUStringBuffer@rtl@@QAEAAV12 PBD@Z
+-?appendAscii OUStringBuffer@rtl@@QAEAAV12 PBDJ@Z
+-?clear Any@uno star@sun com@@QAAXXZ
+-?cppu_detail_getUnoType container@star sun@com@@YAABVType uno@234 PBVNoSuchElementException@1234@@Z
+-?cppu_detail_getUnoType lang@star sun@com@@YAABVType uno@234 PBVWrappedTargetException@1234@@Z
+-?cppu_detail_getUnoType reflection@star sun@com@@YAABVType uno@234 PBVInvocationTargetException@1234@@Z
+-?cppu_detail_getUnoType uno@star sun@com@@YAABVType 1234@PBVRuntimeException 1234@@Z
+-?get ?$UnoType@VInvocationTargetException reflection@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VNoSuchElementException container@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VRuntimeException uno@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?get ?$UnoType@VWrappedTargetException lang@star sun@com@@@cppu@@SAABVType uno@star sun@com@@XZ
+-?getCppuType@@YAABVType uno@star sun@com@@PBVNoSuchElementException container@345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBVRuntimeException 2345@@Z
+-?getCppuType@@YAABVType uno@star sun@com@@PBVWrappedTargetException lang@345@@Z
+-?getLength OUStringBuffer@rtl@@QBEJXZ
+-?getValueTypeName Any@uno star@sun com@@QBA?AVOUString rtl@@XZ
+-?implAppendExceptionMsg@@YAXAAVOUStringBuffer rtl@@ABVException uno@star sun@com@@ABVOUString 2@J Z
+-?implGetExceptionMsg@@YA?AVOUString rtl@@ABVException uno@star sun@com@@ABV12@@Z
+-?implGetExceptionMsg@@YA?AVString@@ABVAny uno@star sun@com@@@Z
+-?implGetWrappedMsg@@YA?AVString@@ABVWrappedTargetException lang@star sun@com@@@Z
+-?implHandleWrappedTargetException@@YAXABVAny uno@star sun@com@@@Z
+-?makeStringAndClear OUStringBuffer@rtl@@QAE?AVOUString 2@XZ
+-?the_type ?1??cppu_detail_getUnoType@container star@sun com@@YAABVType uno@345 PBVNoSuchElementException@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@lang star@sun com@@YAABVType uno@345 PBVWrappedTargetException@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@reflection star@sun com@@YAABVType uno@345 PBVInvocationTargetException@2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-?the_type ?1??cppu_detail_getUnoType@uno star@sun com@@YAABVType 2345@PBVRuntimeException 2345@@Z 4PAU_typelib_TypeDescriptionReference@@A
+-??$?_2_N uno@star sun@com@@YAEABVAny 0123@AA_N Z
+-??$makeAny _N@uno star@sun com@@YA?AVAny 0123@AB_N Z
+-??_R0?AVUnknownPropertyException beans@star sun@com@@@8
+-?isBasicFormat SbxBasicFormater@@SAEVString@@@Z
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]