This commit is contained in:
acemtp@users.sourceforge.net 2010-05-08 16:07:36 +02:00
commit f2a82af30d
30 changed files with 4441 additions and 481 deletions

93
.hgignore Normal file
View file

@ -0,0 +1,93 @@
syntax: glob
# Various build directories
bin
obj
Debug
Release
ReleaseDebug
DebugFast
ReleaseDebugStatic
DebugFastStatic
# Test and application directories
screenshots
release
test
Temp
# NeL cache
*.packed_sheets
# Windows compile
*.exe
*.dll
*.lib
*.obj
# Linux compile
*.a
*.la
*.o
*_debug
# Log dump files
report_refused
report_failed
exception_catched
*.stat
*.log
log.txt
# Max plugin extensions
*.dlx
*.dlm
*.dlu
# Linux garbage
Makefile.in
aclocal.m4
config.guess
config.sub
configure
depcomp
nelconfig.h.in
install-sh
ltmain.sh
missing
ylwrap
*.config
*.creator
*.files
*.includes
*.mk
# Visual Studio garbage
*.opensdf
UpgradeLog*.XML
_UpgradeReport_Files
BuildLog.htm
mt.dep
ipch
*.suo
*.ncb
*.user
*.ilk
*.pdb
*.aps
*.exp
*.idb
*.sdf
# Python cache
*.pyd
*.pyc
# Qt compiler
moc_*.cpp
*.moc
# Misc garbage
*.cachefile
*.cache
*.7z

View file

@ -52,9 +52,11 @@
# if _MSC_VER >= 1500
# define NL_COMP_VC9
# include <string> // This way we know about _HAS_TR1 :O
# if defined(_HAS_TR1) && (_HAS_TR1 + 0) // VC9 TR1 feature pack
# define NL_ISO_STDTR1_AVAILABLE
# define NL_ISO_STDTR1_HEADER(header) <header>
# ifndef _STLPORT_VERSION // STLport doesn't depend on MS STL features
# if defined(_HAS_TR1) && (_HAS_TR1 + 0) // VC9 TR1 feature pack
# define NL_ISO_STDTR1_AVAILABLE
# define NL_ISO_STDTR1_HEADER(header) <header>
# endif
# endif
# elif _MSC_VER >= 1400
# define NL_COMP_VC8
@ -262,14 +264,18 @@ typedef unsigned int uint; // at least 32bits (depend of processor)
#ifndef NL_ISO_STDTR1_AVAILABLE
# include <hash_map>
# include <hash_set>
# if defined(NL_COMP_VC7) || defined(NL_COMP_VC71) || defined(NL_COMP_VC8) || defined(NL_COMP_VC9) // VC7 through 9
# define CHashMap stdext::hash_map
# define CHashSet stdext::hash_set
# define CHashMultiMap stdext::hash_multimap
# else // MSVC6
# ifdef _STLP_HASH_MAP
# define CHashMap ::std::hash_map
# define CHashSet ::std::hash_set
# define CHashMultiMap ::std::hash_multimap
# pragma message("Using STLport")
# elif defined(NL_COMP_VC7) || defined(NL_COMP_VC71) || defined(NL_COMP_VC8) || defined(NL_COMP_VC9) // VC7 through 9
# define CHashMap stdext::hash_map
# define CHashSet stdext::hash_set
# define CHashMultiMap stdext::hash_multimap
# pragma message("Using MS STL")
# else
# pragma error("You need to update your compiler")
# endif
#endif // NL_ISO_STDTR1_AVAILABLE
@ -331,6 +337,7 @@ template<> struct hash<uint64>
# define CHashMap std::tr1::unordered_map
# define CHashSet std::tr1::unordered_set
# define CHashMultiMap std::tr1::unordered_multimap
# pragma message("Using TR1 extensions")
#endif
/**

View file

@ -1,514 +1,234 @@
<?xml version="1.0" encoding="Windows-1252"?>
<?xml version="1.0" encoding="UTF-8"?>
<VisualStudioProject
ProjectType="Visual C++"
Version="7.10"
Version="9,00"
Name="nel_vertex_tree_paint"
SccProjectName=""
SccLocalPath="">
ProjectGUID="{680F9C48-975D-425A-89DF-D7AC3C093968}"
RootNamespace="vertex_tree_paint"
TargetFrameworkVersion="0"
>
<Platforms>
<Platform
Name="Win32"/>
Name="Win32"
/>
</Platforms>
<ToolFiles>
</ToolFiles>
<Configurations>
<Configuration
Name="Hybrid|Win32"
OutputDirectory=".\Hybrid"
IntermediateDirectory=".\Hybrid"
ConfigurationType="2"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
OptimizeForProcessor="2"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG"
RuntimeLibrary="2"
RuntimeTypeInfo="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\Hybrid/nel_vertex_tree_paint.pch"
AssemblerListingLocation=".\Hybrid/"
ObjectFile=".\Hybrid/"
ProgramDataBaseFileName="nel_vertex_tree_paint.pdb"
BrowseInformation="1"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="4"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="core.lib geom.lib maxutil.lib mesh.lib COMCTL32.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB COMDLG32.LIB ADVAPI32.LIB SHELL32.LIB OLE32.LIB OLEAUT32.LIB UUID.LIB odbc32.lib odbccp32.lib freetype.lib"
OutputFile="c:\3dsmax3_1\plugins\nel_vertex_tree_paint.dlm"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
ModuleDefinitionFile=".\vertex_tree_paint.def"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\Hybrid/nel_vertex_tree_paint.pdb"
SubSystem="2"
BaseAddress="0x05D10000"
ImportLibrary=".\Hybrid/nel_vertex_tree_paint.lib"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
PreprocessorDefinitions="_DEBUG"
MkTypLibCompatible="TRUE"
SuppressStartupBanner="TRUE"
TargetEnvironment="1"
TypeLibraryName=".\Hybrid/nel_vertex_tree_paint.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="Debug|Win32"
OutputDirectory=".\Debug"
IntermediateDirectory=".\Debug"
OutputDirectory="obj\$(ConfigurationName)\$(ProjectName)"
IntermediateDirectory="obj\$(ConfigurationName)\$(ProjectName)"
ConfigurationType="2"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE">
CharacterSet="2"
>
<Tool
Name="VCCLCompilerTool"
Optimization="0"
OptimizeForProcessor="2"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG"
RuntimeLibrary="3"
RuntimeTypeInfo="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\Debug/nel_vertex_tree_paint.pch"
AssemblerListingLocation=".\Debug/"
ObjectFile=".\Debug/"
ProgramDataBaseFileName="nel_vertex_tree_paint.pdb"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="3"/>
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"/>
Name="VCCustomBuildTool"
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="core.lib geom.lib maxutil.lib mesh.lib COMCTL32.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB COMDLG32.LIB ADVAPI32.LIB SHELL32.LIB OLE32.LIB OLEAUT32.LIB UUID.LIB odbc32.lib odbccp32.lib freetype.lib"
OutputFile="c:\3dsmax3_1\plugins\nel_vertex_tree_paint.dlm"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
ModuleDefinitionFile=".\vertex_tree_paint.def"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\Debug/nel_vertex_tree_paint.pdb"
SubSystem="2"
BaseAddress="0x05D10000"
ImportLibrary=".\Debug/nel_vertex_tree_paint.lib"
TargetMachine="1"/>
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
PreprocessorDefinitions="_DEBUG"
MkTypLibCompatible="TRUE"
SuppressStartupBanner="TRUE"
TargetEnvironment="1"
TypeLibraryName=".\Debug/nel_vertex_tree_paint.tlb"
HeaderFileName=""/>
/>
<Tool
Name="VCPostBuildEventTool"/>
Name="VCCLCompilerTool"
Optimization="4"
InlineFunctionExpansion="1"
PreprocessorDefinitions="LIBXML_STATIC;WIN32;_DEBUG;_USRDLL"
StringPooling="true"
ExceptionHandling="2"
BasicRuntimeChecks="3"
SmallerTypeCheck="true"
RuntimeLibrary="3"
BufferSecurityCheck="true"
EnableFunctionLevelLinking="true"
WarningLevel="3"
SuppressStartupBanner="true"
DebugInformationFormat="3"
/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG"
Culture="1033"/>
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"/>
Name="VCLinkerTool"
AdditionalDependencies="maxscrpt.lib helpsys.lib winmm.lib libxml2.lib comctl32.lib delayimp.lib bmm.lib core.lib edmodel.lib geom.lib gfx.lib mesh.lib mnmath.lib paramblk2.lib maxutil.lib acap.lib version.lib freetype.lib ws2_32.lib"
OutputFile="..\plugins\$(ProjectName)_d.dlm"
SuppressStartupBanner="true"
IgnoreDefaultLibraryNames="libc;libcmt;libcmtd;msvcrt"
ModuleDefinitionFile="$(RootNamespace).def"
GenerateDebugInformation="true"
ProgramDatabaseFile="$(IntDir)\$(TargetName).pdb"
ImportLibrary="$(ProjectName)_d.lib"
TargetMachine="1"
/>
<Tool
Name="VCWebDeploymentTool"/>
Name="VCALinkTool"
/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
Name="VCManifestTool"
/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
Name="VCXDCMakeTool"
/>
<Tool
Name="VCBscMakeTool"
/>
<Tool
Name="VCFxCopTool"
/>
<Tool
Name="VCAppVerifierTool"
/>
<Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
<Configuration
Name="Release|Win32"
OutputDirectory=".\Release"
IntermediateDirectory=".\Release"
OutputDirectory="obj\$(ConfigurationName)\$(ProjectName)"
IntermediateDirectory="obj\$(ConfigurationName)\$(ProjectName)"
ConfigurationType="2"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE">
CharacterSet="2"
>
<Tool
Name="VCPreBuildEventTool"
/>
<Tool
Name="VCCustomBuildTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"
/>
<Tool
Name="VCMIDLTool"
/>
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="1"
OptimizeForProcessor="2"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
StringPooling="TRUE"
Optimization="4"
InlineFunctionExpansion="2"
EnableIntrinsicFunctions="true"
FavorSizeOrSpeed="1"
OmitFramePointers="true"
EnableFiberSafeOptimizations="true"
PreprocessorDefinitions="LIBXML_STATIC;WIN32;NDEBUG;ASSERT_THROW_EXCEPTION;_USRDLL"
StringPooling="true"
ExceptionHandling="2"
RuntimeLibrary="2"
EnableFunctionLevelLinking="TRUE"
RuntimeTypeInfo="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\Release/nel_vertex_tree_paint.pch"
AssemblerListingLocation=".\Release/"
ObjectFile=".\Release/"
ProgramDataBaseFileName="nel_vertex_tree_paint.pdb"
EnableEnhancedInstructionSet="2"
DisableLanguageExtensions="false"
WarningLevel="3"
SuppressStartupBanner="TRUE"/>
SuppressStartupBanner="true"
DebugInformationFormat="3"
/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="core.lib geom.lib maxutil.lib mesh.lib COMCTL32.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB COMDLG32.LIB ADVAPI32.LIB SHELL32.LIB OLE32.LIB OLEAUT32.LIB UUID.LIB odbc32.lib odbccp32.lib freetype.lib"
OutputFile="c:\3dsmax3_1\plugins\nel_vertex_tree_paint.dlm"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
ModuleDefinitionFile=".\vertex_tree_paint.def"
ProgramDatabaseFile=".\Release/nel_vertex_tree_paint.pdb"
SubSystem="2"
SetChecksum="TRUE"
BaseAddress="0x05D10000"
ImportLibrary=".\Release/nel_vertex_tree_paint.lib"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
PreprocessorDefinitions="NDEBUG"
MkTypLibCompatible="TRUE"
SuppressStartupBanner="TRUE"
TargetEnvironment="1"
TypeLibraryName=".\Release/nel_vertex_tree_paint.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
Name="VCManagedResourceCompilerTool"
/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG"
Culture="1033"/>
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="DebugFast|Win32"
OutputDirectory=".\DebugFast"
IntermediateDirectory=".\DebugFast"
ConfigurationType="2"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
OptimizeForProcessor="2"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS"
RuntimeLibrary="3"
RuntimeTypeInfo="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\DebugFast/nel_vertex_tree_paint.pch"
AssemblerListingLocation=".\DebugFast/"
ObjectFile=".\DebugFast/"
ProgramDataBaseFileName="nel_vertex_tree_paint.pdb"
BrowseInformation="1"
BrowseInformationFile=".\DebugFast/"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="3"/>
<Tool
Name="VCCustomBuildTool"/>
Name="VCPreLinkEventTool"
/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="core.lib geom.lib maxutil.lib mesh.lib COMCTL32.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB COMDLG32.LIB ADVAPI32.LIB SHELL32.LIB OLE32.LIB OLEAUT32.LIB UUID.LIB odbc32.lib odbccp32.lib freetype.lib"
OutputFile="c:\3dsmax3_1\plugins\nel_vertex_tree_paint.dlm"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
ModuleDefinitionFile=".\vertex_tree_paint.def"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\DebugFast/nel_vertex_tree_paint.pdb"
SubSystem="2"
BaseAddress="0x05D10000"
ImportLibrary=".\DebugFast/nel_vertex_tree_paint.lib"
TargetMachine="1"/>
AdditionalDependencies="maxscrpt.lib helpsys.lib winmm.lib libxml2.lib comctl32.lib delayimp.lib bmm.lib core.lib edmodel.lib geom.lib gfx.lib mesh.lib mnmath.lib paramblk2.lib maxutil.lib acap.lib version.lib freetype.lib ws2_32.lib"
OutputFile="..\plugins\$(ProjectName)_r.dlm"
SuppressStartupBanner="true"
IgnoreDefaultLibraryNames="libc;libcmt;libcmtd;msvcrtd"
ModuleDefinitionFile="$(RootNamespace).def"
GenerateDebugInformation="true"
ProgramDatabaseFile="$(IntDir)\$(TargetName).pdb"
OptimizeReferences="2"
EnableCOMDATFolding="2"
ImportLibrary="$(ProjectName)_r.lib"
TargetMachine="1"
/>
<Tool
Name="VCMIDLTool"
PreprocessorDefinitions="_DEBUG"
MkTypLibCompatible="TRUE"
SuppressStartupBanner="TRUE"
TargetEnvironment="1"
TypeLibraryName=".\DebugFast/nel_vertex_tree_paint.tlb"
HeaderFileName=""/>
Name="VCALinkTool"
/>
<Tool
Name="VCPostBuildEventTool"/>
Name="VCManifestTool"
/>
<Tool
Name="VCPreBuildEventTool"/>
Name="VCXDCMakeTool"
/>
<Tool
Name="VCPreLinkEventTool"/>
Name="VCBscMakeTool"
/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="_DEBUG"
Culture="1033"/>
Name="VCFxCopTool"
/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
Name="VCAppVerifierTool"
/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
</Configuration>
<Configuration
Name="ReleaseDebug|Win32"
OutputDirectory=".\ReleaseDebug"
IntermediateDirectory=".\ReleaseDebug"
ConfigurationType="2"
UseOfMFC="0"
ATLMinimizesCRunTimeLibraryUsage="FALSE">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="1"
OptimizeForProcessor="2"
PreprocessorDefinitions="_WINDOWS;NL_RELEASE_DEBUG;WIN32;NDEBUG"
StringPooling="TRUE"
RuntimeLibrary="2"
EnableFunctionLevelLinking="TRUE"
RuntimeTypeInfo="TRUE"
UsePrecompiledHeader="2"
PrecompiledHeaderFile=".\ReleaseDebug/nel_vertex_tree_paint.pch"
AssemblerListingLocation=".\ReleaseDebug/"
ObjectFile=".\ReleaseDebug/"
ProgramDataBaseFileName="nel_vertex_tree_paint.pdb"
WarningLevel="3"
SuppressStartupBanner="TRUE"
DebugInformationFormat="3"/>
<Tool
Name="VCCustomBuildTool"/>
<Tool
Name="VCLinkerTool"
AdditionalDependencies="core.lib geom.lib maxutil.lib mesh.lib COMCTL32.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB COMDLG32.LIB ADVAPI32.LIB SHELL32.LIB OLE32.LIB OLEAUT32.LIB UUID.LIB odbc32.lib odbccp32.lib freetype219.lib"
OutputFile="c:\3dsmax3_1\plugins\nel_vertex_tree_paint.dlm"
LinkIncremental="1"
SuppressStartupBanner="TRUE"
ModuleDefinitionFile=".\vertex_tree_paint.def"
GenerateDebugInformation="TRUE"
ProgramDatabaseFile=".\ReleaseDebug/nel_vertex_tree_paint.pdb"
SubSystem="2"
SetChecksum="TRUE"
BaseAddress="0x05D10000"
ImportLibrary=".\ReleaseDebug/nel_vertex_tree_paint.lib"
TargetMachine="1"/>
<Tool
Name="VCMIDLTool"
PreprocessorDefinitions="NDEBUG"
MkTypLibCompatible="TRUE"
SuppressStartupBanner="TRUE"
TargetEnvironment="1"
TypeLibraryName=".\ReleaseDebug/nel_vertex_tree_paint.tlb"
HeaderFileName=""/>
<Tool
Name="VCPostBuildEventTool"/>
<Tool
Name="VCPreBuildEventTool"/>
<Tool
Name="VCPreLinkEventTool"/>
<Tool
Name="VCResourceCompilerTool"
PreprocessorDefinitions="NDEBUG"
Culture="1033"/>
<Tool
Name="VCWebServiceProxyGeneratorTool"/>
<Tool
Name="VCXMLDataGeneratorTool"/>
<Tool
Name="VCWebDeploymentTool"/>
<Tool
Name="VCManagedWrapperGeneratorTool"/>
<Tool
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
Name="VCPostBuildEventTool"
/>
</Configuration>
</Configurations>
<References>
</References>
<Files>
<Filter
Name="Source Files"
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
<File
RelativePath="dllmain.cpp">
<FileConfiguration
Name="Hybrid|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG;$(NoInherit)"
BrowseInformation="1"/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="DebugFast|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;$(NoInherit)"
BrowseInformation="1"/>
</FileConfiguration>
<FileConfiguration
Name="ReleaseDebug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
PreprocessorDefinitions="_WINDOWS;NL_RELEASE_DEBUG;WIN32;NDEBUG;$(NoInherit)"/>
</FileConfiguration>
</File>
<File
RelativePath="Paint.cpp">
<FileConfiguration
Name="Hybrid|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG;$(NoInherit)"
BrowseInformation="1"/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="DebugFast|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;$(NoInherit)"
BrowseInformation="1"/>
</FileConfiguration>
<FileConfiguration
Name="ReleaseDebug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
PreprocessorDefinitions="_WINDOWS;NL_RELEASE_DEBUG;WIN32;NDEBUG;$(NoInherit)"/>
</FileConfiguration>
</File>
<File
RelativePath="vertex_tree_paint.cpp">
<FileConfiguration
Name="Hybrid|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG;$(NoInherit)"
BrowseInformation="1"/>
</FileConfiguration>
<FileConfiguration
Name="Debug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;__STL_DEBUG;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="Release|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;$(NoInherit)"/>
</FileConfiguration>
<FileConfiguration
Name="DebugFast|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="0"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;$(NoInherit)"
BrowseInformation="1"/>
</FileConfiguration>
<FileConfiguration
Name="ReleaseDebug|Win32">
<Tool
Name="VCCLCompilerTool"
Optimization="2"
PreprocessorDefinitions="_WINDOWS;NL_RELEASE_DEBUG;WIN32;NDEBUG;$(NoInherit)"/>
</FileConfiguration>
</File>
</Filter>
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl">
<File
RelativePath="resource.h">
</File>
<File
RelativePath="vertex_tree_paint.h">
</File>
</Filter>
<Filter
Name="Resource Files"
Filter="ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe">
<File
RelativePath="buttonmask.bmp">
</File>
<File
RelativePath="Buttons.bmp">
</File>
<File
RelativePath="dropcurs.cur">
</File>
<File
RelativePath="paintcur.cur">
</File>
<File
RelativePath="vertex_tree_paint.def">
</File>
<File
RelativePath="vertex_tree_paint.rc">
</File>
</Filter>
<File
RelativePath="buttonmask.bmp"
>
</File>
<File
RelativePath="Buttons.bmp"
>
</File>
<File
RelativePath="dllmain.cpp"
>
</File>
<File
RelativePath="dropcurs.cur"
>
</File>
<File
RelativePath="Paint.cpp"
>
</File>
<File
RelativePath="paintcur.cur"
>
</File>
<File
RelativePath="resource.h"
>
</File>
<File
RelativePath="vertex_tree_paint.cpp"
>
</File>
<File
RelativePath="vertex_tree_paint.def"
>
</File>
<File
RelativePath="vertex_tree_paint.h"
>
</File>
<File
RelativePath="vertex_tree_paint.rc"
>
</File>
</Files>
<Globals>
</Globals>

View file

@ -154,6 +154,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nel_patch_edit", "nel_patch
{CDFC60B0-9D01-4822-ACAD-B66F7130FCAD} = {CDFC60B0-9D01-4822-ACAD-B66F7130FCAD}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nel_vertex_tree_paint", "nel_vertex_tree_paint\nel_vertex_tree_paint.vcproj", "{680F9C48-975D-425A-89DF-D7AC3C093968}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
@ -256,6 +258,10 @@ Global
{53B9D9A1-AE6B-4E39-82B2-E8EE01075EEC}.Debug|Win32.Build.0 = Debug|Win32
{53B9D9A1-AE6B-4E39-82B2-E8EE01075EEC}.Release|Win32.ActiveCfg = Release|Win32
{53B9D9A1-AE6B-4E39-82B2-E8EE01075EEC}.Release|Win32.Build.0 = Release|Win32
{680F9C48-975D-425A-89DF-D7AC3C093968}.Debug|Win32.ActiveCfg = Debug|Win32
{680F9C48-975D-425A-89DF-D7AC3C093968}.Debug|Win32.Build.0 = Debug|Win32
{680F9C48-975D-425A-89DF-D7AC3C093968}.Release|Win32.ActiveCfg = Release|Win32
{680F9C48-975D-425A-89DF-D7AC3C093968}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View file

@ -981,7 +981,7 @@ TInterfaceState globalMenu()
while (PlayerWantToGoInGame == false)
{
#ifdef NL_DEBUG
#if defined(NL_OS_WINDOWS) && defined(NL_DEBUG)
// tmp for debug
if (::GetAsyncKeyState(VK_SPACE))
{
@ -1064,7 +1064,7 @@ TInterfaceState globalMenu()
nlSleep(ClientCfg.Sleep);
}
#ifdef NL_DEBUG
#if defined(NL_OS_WINDOWS) && defined(NL_DEBUG)
if (::GetAsyncKeyState(VK_CONTROL))
{
pIM->displayUIViewBBoxs("");

View file

@ -406,7 +406,7 @@ int requestTerminater (HTRequest * request, HTResponse * /* response */,
// the parameter is actually an uint32
if (param != 0)
{
CGroupHTML::TGroupHtmlByUIDMap::iterator it= CGroupHTML::_GroupHtmlByUID.find((uint32)param);
CGroupHTML::TGroupHtmlByUIDMap::iterator it= CGroupHTML::_GroupHtmlByUID.find((uint32)(size_t)param);
if(it!=CGroupHTML::_GroupHtmlByUID.end())
{
// get the pointer. NB: the refptr should not be NULL

View file

@ -1197,7 +1197,7 @@ void CPatchManager::downloadFileWithCurl (const string &source, const string &de
// file not found, delete local file
throw Exception ("curl init failed");
}
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, FALSE);
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, downloadProgressFunc);
curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, (void *) progress);
curl_easy_setopt(curl, CURLOPT_URL, source.c_str());

View file

@ -0,0 +1,13 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="emot_list">
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG>
</LOG>
</FORM>

View file

@ -0,0 +1,13 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Array">
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG>
</LOG>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,13 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="XpFactor">
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG>
</LOG>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -0,0 +1,315 @@
<?xml version="1.0"?>
<FORM Revision="" State="modified">
<STRUCT>
<ARRAY Name="Chances">
<STRUCT>
<ATOM Name="RelativeLevel" Value="50"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="0"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-1"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-2"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-3"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-4"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-5"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-6"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-7"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-8"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-9"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-10"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-11"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-12"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-13"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-14"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-15"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-16"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-17"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-18"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-19"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-20"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-21"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-22"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-23"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-24"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-25"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-26"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-27"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-28"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-29"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-30"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-31"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-32"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-33"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-34"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-35"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-36"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-37"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-38"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-39"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-40"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-41"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-42"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-43"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-44"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-45"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-46"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-47"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-48"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-49"/>
</STRUCT>
<STRUCT>
<ATOM Name="RelativeLevel" Value="-50"/>
</STRUCT>
</ARRAY>
</STRUCT>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<STRUCT/>
<LOG/>
</FORM>

View file

@ -247,7 +247,7 @@ bool CLogAnalyserService::getQueryResult(uint32 queryId, std::string& result, si
page = numpage-1;
uint lmin = page*linePerPage;
uint lmax = std::min((uint)(lmin+linePerPage), _Finished[i]->Result.size());
uint lmax = std::min((uint)(lmin+linePerPage), (uint)_Finished[i]->Result.size());
uint l;
result.clear();
@ -329,7 +329,7 @@ bool CLogAnalyserService::getQueryResult(uint32 queryId, std::string& result, si
page = numpage-1;
uint lmin = page*linePerPage;
uint lmax = std::min((uint)(lmin+linePerPage), matchingLines.size());
uint lmax = std::min((uint)(lmin+linePerPage), (uint)matchingLines.size());
result.clear();

View file

@ -4,7 +4,7 @@
# Server version: 5.1.37-1ubuntu5.1
# Server OS: debian-linux-gnu
# HeidiSQL version: 5.0.0.3272
# Date/time: 2010-05-08 15:22:21
# Date/time: 2010-05-08 15:31:21
# --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
@ -13,12 +13,12 @@
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
# Dumping data for table nel.domain: 8 rows
/*!40000 ALTER TABLE `domain` DISABLE KEYS */;
REPLACE INTO `domain` (`domain_id`, `domain_name`, `status`, `patch_version`, `backup_patch_url`, `patch_urls`, `login_address`, `session_manager_address`, `ring_db_name`, `web_host`, `web_host_php`, `description`) VALUES (12, 'ryzom_open', 'ds_open', 610, 'http://open.ryzom.com:23001', NULL, 'open.ryzom.com:49998', 'open.ryzom.com:49999', 'ring_open', 'open.ryzom.com:30000', 'open.ryzom.com:40916', 'Open Domain');
INSERT IGNORE INTO `domain` (`domain_id`, `domain_name`, `status`, `patch_version`, `backup_patch_url`, `patch_urls`, `login_address`, `session_manager_address`, `ring_db_name`, `web_host`, `web_host_php`, `description`) VALUES (12, 'ryzom_open', 'ds_open', 610, 'http://open.ryzom.com:23001', NULL, 'open.ryzom.com:49998', 'open.ryzom.com:49999', 'ring_open', 'open.ryzom.com:30000', 'open.ryzom.com:40916', 'Open Domain');
/*!40000 ALTER TABLE `domain` ENABLE KEYS */;
# Dumping data for table nel.shard: 17 rows
/*!40000 ALTER TABLE `shard` DISABLE KEYS */;
REPLACE INTO `shard` (`ShardId`, `domain_id`, `WsAddr`, `NbPlayers`, `Name`, `Online`, `ClientApplication`, `Version`, `PatchURL`, `DynPatchURL`, `FixedSessionId`, `State`, `MOTD`, `prim`) VALUES (302, 12, 'open.ryzom.com', 0, 'Open Shard', 0, 'ryzom_open', '', '', '', 0, 'ds_dev', '', 30);
INSERT IGNORE INTO `shard` (`ShardId`, `domain_id`, `WsAddr`, `NbPlayers`, `Name`, `Online`, `ClientApplication`, `Version`, `PatchURL`, `DynPatchURL`, `FixedSessionId`, `State`, `MOTD`, `prim`) VALUES (302, 12, 'open.ryzom.com', 0, 'Open Shard', 0, 'ryzom_open', '', '', '', 0, 'ds_dev', '', 30);
/*!40000 ALTER TABLE `shard` ENABLE KEYS */;
# --------------------------------------------------------
# Host: 94.23.202.75
@ -26,7 +26,7 @@ REPLACE INTO `shard` (`ShardId`, `domain_id`, `WsAddr`, `NbPlayers`, `Name`, `On
# Server version: 5.1.37-1ubuntu5.1
# Server OS: debian-linux-gnu
# HeidiSQL version: 5.0.0.3272
# Date/time: 2010-05-08 15:22:21
# Date/time: 2010-05-08 15:31:22
# --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
@ -35,12 +35,12 @@ REPLACE INTO `shard` (`ShardId`, `domain_id`, `WsAddr`, `NbPlayers`, `Name`, `On
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
# Dumping data for table ring_open.sessions: 1 rows
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
REPLACE INTO `sessions` (`session_id`, `session_type`, `title`, `owner`, `plan_date`, `start_date`, `description`, `orientation`, `level`, `rule_type`, `access_type`, `state`, `host_shard_id`, `subscription_slots`, `reserved_slots`, `free_slots`, `estimated_duration`, `final_duration`, `folder_id`, `lang`, `icone`, `anim_mode`, `race_filter`, `religion_filter`, `guild_filter`, `shard_filter`, `level_filter`, `subscription_closed`, `newcomer`) VALUES (302, 'st_mainland', 'open shard mainland', 0, '2005-09-21 12:41:33', '2005-08-31 00:00:00', '', 'so_other', 'sl_a', 'rt_strict', 'at_public', 'ss_planned', 0, 0, 0, 0, 'et_short', 0, 0, 'lang_en', '', 'am_dm', 'rf_fyros,rf_matis,rf_tryker,rf_zorai', 'rf_kami,rf_karavan,rf_neutral', 'gf_any_player', '', 'lf_a,lf_b,lf_c,lf_d,lf_e,lf_f', 0, 0);
INSERT IGNORE INTO `sessions` (`session_id`, `session_type`, `title`, `owner`, `plan_date`, `start_date`, `description`, `orientation`, `level`, `rule_type`, `access_type`, `state`, `host_shard_id`, `subscription_slots`, `reserved_slots`, `free_slots`, `estimated_duration`, `final_duration`, `folder_id`, `lang`, `icone`, `anim_mode`, `race_filter`, `religion_filter`, `guild_filter`, `shard_filter`, `level_filter`, `subscription_closed`, `newcomer`) VALUES (302, 'st_mainland', 'open shard mainland', 0, '2005-09-21 12:41:33', '2005-08-31 00:00:00', '', 'so_other', 'sl_a', 'rt_strict', 'at_public', 'ss_planned', 0, 0, 0, 0, 'et_short', 0, 0, 'lang_en', '', 'am_dm', 'rf_fyros,rf_matis,rf_tryker,rf_zorai', 'rf_kami,rf_karavan,rf_neutral', 'gf_any_player', '', 'lf_a,lf_b,lf_c,lf_d,lf_e,lf_f', 0, 0);
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
# Dumping data for table ring_open.shard: 1 rows
/*!40000 ALTER TABLE `shard` DISABLE KEYS */;
REPLACE INTO `shard` (`shard_id`, `WSOnline`, `MOTD`, `OldState`, `RequiredState`) VALUES (302, 1, 'Shard up', 'ds_restricted', 'ds_open');
INSERT IGNORE INTO `shard` (`shard_id`, `WSOnline`, `MOTD`, `OldState`, `RequiredState`) VALUES (302, 1, 'Shard up', 'ds_restricted', 'ds_open');
/*!40000 ALTER TABLE `shard` ENABLE KEYS */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;