Skip to content
Snippets Groups Projects
Commit e0b77dd7 authored by Mikhail Polikarpov's avatar Mikhail Polikarpov
Browse files

Merge branch 'import_fix' into 'master'

Fixed portation errors and syntax, fixed bug with missing 1 in PG

See merge request soeren.muenker/AssemblyTiersNET!1
parents 7f702fa9 51ae619d
No related branches found
No related tags found
1 merge request!1Fixed portation errors and syntax, fixed bug with missing 1 in PG
Showing
with 356 additions and 200 deletions
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
</configuration> </configuration>
This diff is collapsed.
...@@ -11,8 +11,9 @@ ...@@ -11,8 +11,9 @@
<AssemblyName>CatiaNetTest</AssemblyName> <AssemblyName>CatiaNetTest</AssemblyName>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<MyType>WindowsForms</MyType> <MyType>WindowsForms</MyType>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFrameworkProfile />
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
...@@ -741,6 +742,24 @@ ...@@ -741,6 +742,24 @@
<Isolated>False</Isolated> <Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes> <EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference> </COMReference>
<COMReference Include="Microsoft.Office.Core">
<Guid>{2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}</Guid>
<VersionMajor>2</VersionMajor>
<VersionMinor>8</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
<COMReference Include="Microsoft.Office.Interop.Excel">
<Guid>{00020813-0000-0000-C000-000000000046}</Guid>
<VersionMajor>1</VersionMajor>
<VersionMinor>9</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
<COMReference Include="mxcatiav5integrationTypeLib"> <COMReference Include="mxcatiav5integrationTypeLib">
<Guid>{ACD81FF4-AC0E-4A64-BD64-488394A81DFA}</Guid> <Guid>{ACD81FF4-AC0E-4A64-BD64-488394A81DFA}</Guid>
<VersionMajor>0</VersionMajor> <VersionMajor>0</VersionMajor>
...@@ -903,6 +922,15 @@ ...@@ -903,6 +922,15 @@
<Isolated>False</Isolated> <Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes> <EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference> </COMReference>
<COMReference Include="VBIDE">
<Guid>{0002E157-0000-0000-C000-000000000046}</Guid>
<VersionMajor>5</VersionMajor>
<VersionMinor>3</VersionMinor>
<Lcid>0</Lcid>
<WrapperTool>primary</WrapperTool>
<Isolated>False</Isolated>
<EmbedInteropTypes>True</EmbedInteropTypes>
</COMReference>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
......
...@@ -33,7 +33,7 @@ Public Class Form1 ...@@ -33,7 +33,7 @@ Public Class Form1
Dim myAssemblyTiers As AssemblyTiers2 = New AssemblyTiers2() Dim myAssemblyTiers As AssemblyTiers2 = New AssemblyTiers2()
Try Try
myAssemblyTiers.CatMain(myCATIA) myAssemblyTiers.CatMain()
Catch ex As Exception Catch ex As Exception
End Try End Try
......
No preview for this file type
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<startup> <startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
</startup> </startup>
</configuration> </configuration>
No preview for this file type
No preview for this file type
No preview for this file type
...@@ -97,3 +97,91 @@ D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\o ...@@ -97,3 +97,91 @@ D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\o
D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\obj\Debug\CatiaNetTest.xml D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\obj\Debug\CatiaNetTest.xml
D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\obj\Debug\CatiaNetTest.pdb D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\obj\Debug\CatiaNetTest.pdb
D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\obj\Debug\Interop.CD5Integ.dll D:\03_Dissertation\20_Tools\CATIA_NET\CATIA_NET_Test\CatiaNetTest\CatiaNetTest\obj\Debug\Interop.CD5Integ.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.exe
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.xml
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.pdb
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.vbprojAssemblyReference.cache
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.AnnotationTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.BehaviorTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CAT3DXml.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATArrangementTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATAssemblyTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATDataExch.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATEdbTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATFunctSystem.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATHumanPackaging.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATIA_APP_ITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATIdeSettings.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATImm.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATInstantCollabItf.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATMat.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATMultiCAD.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATOBM.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATPspPlantShipTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRdg.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRma.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRpmReporterTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATRsc.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSchematicTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSdeSetting.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSmarTeamInteg.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATSmInterfacesTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATStk.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATStrSettingsTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATTooling.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.CATV4IInteropTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.ComponentsCatalogsTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBASY.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBBIW.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBD5I.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBDevice.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBDpmItf.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBFastener.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIgpResourceProgram.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIgpTagPath.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIgripSim.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBIPD.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBManufacturingLayoutItf.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBMHIItf.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBPert.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBReporting.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBRobot.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBSimAct.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBSimIO.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DNBSimulation.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.DRAFTINGITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.ElecSchematicTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.FittingTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.GenKwe.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.HybridShapeTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.INFITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.KinTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.KnowledgewareTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.LAYOUT2DITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.MANUFACTURING.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.MECMOD.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.NavigatorTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.OSMInterfacesTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PARTITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PCBITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PPR.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PRISMATICMACHINING.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.PROCESSITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.ProductStructureTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SAMITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SHEITF.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SIM.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SimulationTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SMTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SPATypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.StrTypeLib.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SURFACEMACHINING.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\Interop.SWKHumanModelingItf.dll
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.vbproj.ResolveComReference.cache
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.Form1.resources
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.Resources.resources
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\obj\Debug\CatiaNetTest.vbproj.GenerateResource.cache
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.exe.config
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.exe
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.pdb
D:\mikep\Files\RWTH\Master Produktionstechnik\Masterarbeit\VB.NET\AssemblyTiersNET\CatiaNetTest\bin\Debug\CatiaNetTest.xml
No preview for this file type
No preview for this file type
File added
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment