From da6ff0235c03e10912cc8a7576a8e4c0499661f1 Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Tue, 2 Jun 2009 09:10:59 +0000 Subject: [PATCH] SE-114 project created SVN: 11213 --- rtd_phosphonetx/.classpath | 16 ++ rtd_phosphonetx/.project | 17 ++ rtd_phosphonetx/build/build.xml | 19 ++ .../resource/dependency-structure.ddf | 8 + .../ch/systemsx/cisd/phosphonetx/Main.java | 36 +++ .../cisd/phosphonetx/db/DBFactory.java | 67 +++++ .../source/sql/postgresql/001/model.txp | 48 ++++ .../source/sql/postgresql/001/schema-001.sql | 269 ++++++++++++++++++ .../ch/systemsx/cisd/phosphonetx}/.gitignore | 0 rtd_phosphonetx/sourceTest/java/tests.xml | 12 + 10 files changed, 492 insertions(+) create mode 100644 rtd_phosphonetx/.classpath create mode 100644 rtd_phosphonetx/.project create mode 100644 rtd_phosphonetx/build/build.xml create mode 100644 rtd_phosphonetx/resource/dependency-structure.ddf create mode 100644 rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/Main.java create mode 100644 rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/db/DBFactory.java create mode 100644 rtd_phosphonetx/source/sql/postgresql/001/model.txp create mode 100644 rtd_phosphonetx/source/sql/postgresql/001/schema-001.sql rename rtd_phosphonetx/{ => sourceTest/java/ch/systemsx/cisd/phosphonetx}/.gitignore (100%) create mode 100644 rtd_phosphonetx/sourceTest/java/tests.xml diff --git a/rtd_phosphonetx/.classpath b/rtd_phosphonetx/.classpath new file mode 100644 index 00000000000..5d08ad33f23 --- /dev/null +++ b/rtd_phosphonetx/.classpath @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path="source/java"/> + <classpathentry kind="src" path="sourceTest/java"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry combineaccessrules="false" kind="src" path="/common"/> + <classpathentry combineaccessrules="false" kind="src" path="/dbmigration"/> + <classpathentry kind="lib" path="/libraries/cisd-base/cisd-base.jar" sourcepath="/libraries/cisd-base/cisd-base-src.zip"/> + <classpathentry kind="lib" path="/libraries/cisd-base/cisd-base-test.jar" sourcepath="/libraries/cisd-base/cisd-base-src.zip"/> + <classpathentry kind="lib" path="/libraries/testng/testng-jdk15.jar" sourcepath="/libraries/testng/src.zip"/> + <classpathentry kind="lib" path="/libraries/commons-lang/commons-lang.jar" sourcepath="/libraries/commons-lang/src.zip"/> + <classpathentry kind="lib" path="/libraries/log4j/log4j.jar" sourcepath="/libraries/log4j/src.zip"/> + <classpathentry kind="lib" path="/libraries/postgresql/postgresql.jar" sourcepath="/libraries/postgresql/postgresql-src.zip"/> + <classpathentry kind="lib" path="/libraries/eodsql/eodsql.jar" sourcepath="/libraries/eodsql/eodsql_src.zip"/> + <classpathentry kind="output" path="targets/classes"/> +</classpath> diff --git a/rtd_phosphonetx/.project b/rtd_phosphonetx/.project new file mode 100644 index 00000000000..d1c9cd5f912 --- /dev/null +++ b/rtd_phosphonetx/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>rtd_phosphonetx</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + </natures> +</projectDescription> diff --git a/rtd_phosphonetx/build/build.xml b/rtd_phosphonetx/build/build.xml new file mode 100644 index 00000000000..3b2411005b7 --- /dev/null +++ b/rtd_phosphonetx/build/build.xml @@ -0,0 +1,19 @@ +<project name="phosphonetx" default="ci" basedir=".."> + <import file="../../build_resources/ant/build-common.xml" /> + <project-classpath name="ecp" classes="${classes}" /> + + <property name="original.dist" value="dist" /> + <property name="mainfolder" value="rtd_phosphonetx" /> + + <target name="clean"> + <delete dir="${dist}" /> + </target> + + <target name="compile" depends="build-common.compile, clean" /> + + <target name="run-tests"> + <antcall target="build-common.run-tests"> + <param name="test.suite" value="tests.xml" /> + </antcall> + </target> +</project> \ No newline at end of file diff --git a/rtd_phosphonetx/resource/dependency-structure.ddf b/rtd_phosphonetx/resource/dependency-structure.ddf new file mode 100644 index 00000000000..5990357405e --- /dev/null +++ b/rtd_phosphonetx/resource/dependency-structure.ddf @@ -0,0 +1,8 @@ +# +# +# +#show allResults + +{root} = ch.systemsx.cisd +{phosphonetx} = ${root}.phosphonetx + diff --git a/rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/Main.java b/rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/Main.java new file mode 100644 index 00000000000..024291312f4 --- /dev/null +++ b/rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/Main.java @@ -0,0 +1,36 @@ +/* + * Copyright 2009 ETH Zuerich, CISD + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package ch.systemsx.cisd.phosphonetx; + +import java.sql.Connection; +import java.sql.SQLException; + +import ch.systemsx.cisd.phosphonetx.db.DBFactory; + +/** + * + * + * @author Franz-Josef Elmer + */ +public class Main +{ + public static void main(String[] args) throws SQLException + { + DBFactory factory = new DBFactory(); + Connection connection = factory.getConnection(); + } +} diff --git a/rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/db/DBFactory.java b/rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/db/DBFactory.java new file mode 100644 index 00000000000..3c595275129 --- /dev/null +++ b/rtd_phosphonetx/source/java/ch/systemsx/cisd/phosphonetx/db/DBFactory.java @@ -0,0 +1,67 @@ +/* + * Copyright 2009 ETH Zuerich, CISD + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package ch.systemsx.cisd.phosphonetx.db; + +import java.sql.Connection; +import java.sql.SQLException; + +import ch.systemsx.cisd.dbmigration.DBMigrationEngine; +import ch.systemsx.cisd.dbmigration.DatabaseConfigurationContext; + +/** + * Factory for database connections. + * + * @author Bernd Rinn + */ +public class DBFactory +{ + /** Current version of the database. */ + public static final String DATABASE_VERSION = "001"; + + private final DatabaseConfigurationContext context; + + public DBFactory() + { + this(createDefaultDBContext()); + } + + DBFactory(DatabaseConfigurationContext context) + { + this.context = context; + DBMigrationEngine.createOrMigrateDatabaseAndGetScriptProvider(context, DATABASE_VERSION); + } + + static DatabaseConfigurationContext createDefaultDBContext() + { + final DatabaseConfigurationContext context = new DatabaseConfigurationContext(); + context.setDatabaseEngineCode("postgresql"); + context.setBasicDatabaseName("phosphonetx"); + context.setDatabaseKind("dev"); + context.setScriptFolder("source/sql"); + context.setCreateFromScratch(true); + return context; + } + + public Connection getConnection() throws SQLException + { + final Connection conn = context.getDataSource().getConnection(); + conn.setAutoCommit(false); + return conn; + } + + +} diff --git a/rtd_phosphonetx/source/sql/postgresql/001/model.txp b/rtd_phosphonetx/source/sql/postgresql/001/model.txp new file mode 100644 index 00000000000..ead5815ba64 --- /dev/null +++ b/rtd_phosphonetx/source/sql/postgresql/001/model.txp @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<PERModelPG82 ObjectType="2001" CSAOName="PERModelPG82" InternalVersion="3.0" ProductVersion="3.3.8.11" Version="0.7"><Id>{86C56E5F-B880-4996-BFF8-251AF9A54EEB}</Id><Name>Proteomics</Name><Ordinal>0</Ordinal><HistoryID>{DBAEF8AF-B7F9-4B0B-919A-11AE8BFA816D}</HistoryID><GlobalOrder>0</GlobalOrder><ModelDefID>{1C35416A-1BDA-43DD-8518-EB7738BB3B5A}</ModelDefID><LogicalNames>0</LogicalNames><WorkSpaces><PERWorkSpacePG82 ObjectType="2501" CSAOName="PERWorkSpacePG82"><Id>{4B5666C0-6EBB-4BBF-A2BF-DABE8EA92786}</Id><Name>All Items</Name><Ordinal>0</Ordinal><HistoryID>{41BC842A-672A-4747-AF00-B358A93278DA}</HistoryID><GlobalOrder>0</GlobalOrder><PenWidth>1</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><BackgroundColor>16777215</BackgroundColor><RecalculateSize>1</RecalculateSize><FullBackground>0</FullBackground><Shadow>1</Shadow><DisplayLineNames>1</DisplayLineNames><FontHeight>-28</FontHeight><RightAngledLines>0</RightAngledLines><Grid>0</Grid><GridVisible>0</GridVisible><GridSize>30</GridSize><Description></Description><ShapeList><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{CC8133D8-2FE2-4438-96DC-EB8A13721651}</Id><Name>SEQUENCES</Name><Ordinal>0</Ordinal><HistoryID>{DBF56192-9BA1-4F53-A5AF-F7D31A97CC85}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{BAC70B16-1AD7-4464-AD18-93F565AA6AC3}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>48</Top><Left>1920</Left><z>0</z><Width>961</Width><Height>200</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{DA0E1249-AFDA-40B3-878E-BA263B6B0245}</Id><Id>{52E55138-E3E5-4042-BFBD-A186209BC9EC}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{C0F973C8-22F0-4DF1-A637-A629B829CA5F}</Id><Name>PEPTIDES</Name><Ordinal>0</Ordinal><HistoryID>{B1D44B97-1772-47F4-9F2C-1A258DEF6B13}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{076437CE-5C90-4FF6-AEAC-48820C94A983}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>561</Top><Left>838</Left><z>0</z><Width>590</Width><Height>200</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{7B2C941C-4740-415E-AAA4-2AC8C3A78215}</Id><Id>{DA0E1249-AFDA-40B3-878E-BA263B6B0245}</Id><Id>{E82B8C32-63ED-4BE6-AC5A-26A97D817057}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{093FDC85-5729-476F-8ACA-88A3C553646D}</Id><Name>PROTEINS</Name><Ordinal>0</Ordinal><HistoryID>{1D139BCD-35F9-4C5F-8D9C-053D8839AD04}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{4D0E1B21-B579-40B2-ADBD-1E5279496605}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>222</Top><Left>837</Left><z>0</z><Width>590</Width><Height>235</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{7B2C941C-4740-415E-AAA4-2AC8C3A78215}</Id><Id>{52E55138-E3E5-4042-BFBD-A186209BC9EC}</Id><Id>{2300FD76-DBA1-40EF-B42A-C8A6EA155984}</Id><Id>{7292D2BF-C275-4C59-9C2E-A97016202E7F}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{2AFABB48-C224-4AC6-872F-8E52F4099E88}</Id><Name>MODIFIED_PEPTIDES</Name><Ordinal>0</Ordinal><HistoryID>{1C501113-E515-4369-9640-B074EC57429D}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{8FA1A92A-1608-4F51-AB1C-FD25532AEAEC}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>932</Top><Left>735</Left><z>0</z><Width>782</Width><Height>281</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{E82B8C32-63ED-4BE6-AC5A-26A97D817057}</Id><Id>{CE7E2E20-F1E5-4BB8-8BAE-76C48A3AF50B}</Id><Id>{8E56C129-EE39-4DD6-9711-DDC6052D52CF}</Id><Id>{612662D5-41F7-4828-8311-EA4C8FDC7084}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{F8C98604-010E-4C40-B692-2C20CBA8E525}</Id><Name>MODIFICATION_TYPES</Name><Ordinal>0</Ordinal><HistoryID>{79812C0C-0E7F-4699-90E8-7E2A2FE2D1D5}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{354FE78A-1E56-4E35-A215-677789C90D8E}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>941</Top><Left>2966</Left><z>0</z><Width>1054</Width><Height>281</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{2D22DE4D-B531-4A30-AFC5-62BA5B7B5FC9}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{3964555D-3493-4528-AC7A-4366C9CECF7B}</Id><Name>MODIFICATIONS</Name><Ordinal>0</Ordinal><HistoryID>{50EACA83-FF78-451C-9611-23412DD0BC81}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{C6330133-EB65-48BA-A95C-E63297E787FA}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>938</Top><Left>1950</Left><z>0</z><Width>799</Width><Height>281</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{CE7E2E20-F1E5-4BB8-8BAE-76C48A3AF50B}</Id><Id>{2D22DE4D-B531-4A30-AFC5-62BA5B7B5FC9}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{196FB830-AEA1-4718-A2D0-97F56A63B0BC}</Id><Name>ABUNDANCES</Name><Ordinal>0</Ordinal><HistoryID>{ED219799-781E-447F-8F67-AA42E469456F}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{2EC3C77E-EBC5-40C3-9DB7-10FEE36E0BAB}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>325</Top><Left>1930</Left><z>0</z><Width>721</Width><Height>200</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{F5867E6F-9E91-4F3A-947D-F125BE3C3E41}</Id><Id>{2300FD76-DBA1-40EF-B42A-C8A6EA155984}</Id><Id>{8E56C129-EE39-4DD6-9711-DDC6052D52CF}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{902F6220-524D-46EF-8E67-988D413E41E4}</Id><Name>ABUNDANCES_TYPES</Name><Ordinal>0</Ordinal><HistoryID>{FAF6978D-8C32-4575-A31A-FBC0CE0914E7}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{48113A84-9E89-4C5C-BD76-6CBEDB941774}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>655</Top><Left>1949</Left><z>0</z><Width>1050</Width><Height>200</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{F5867E6F-9E91-4F3A-947D-F125BE3C3E41}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{F6A3E3FA-F6EB-474E-AAD7-CB3A821FEB66}</Id><Name>SPECTRA</Name><Ordinal>0</Ordinal><HistoryID>{C05C1FA7-7224-45AB-9880-B18F73A3010F}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{4A557542-27F7-4AC9-B71B-4DAD2E976974}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>1896</Top><Left>2631</Left><z>0</z><Width>524</Width><Height>200</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{2DEF39D5-D7B1-4B71-8FAA-76CD390E5CD2}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{FC95B408-6BBA-4DB9-907C-06BBC8D920E5}</Id><Name>PROTEIN_STATISTICS</Name><Ordinal>0</Ordinal><HistoryID>{B2AEC16E-D96C-47B7-9C83-E7DF2A08BF60}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{CC484442-F442-4CBD-8ED2-FA2E0AA8786E}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>228</Top><Left>103</Left><z>0</z><Width>507</Width><Height>200</Height><dz>0</dz><RecalculateSizes>0</RecalculateSizes><UseWorkSpaceRecalculateSizes>0</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{7292D2BF-C275-4C59-9C2E-A97016202E7F}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82><WorkSpaceShapePEREntityPG82 ObjectType="2502" CSAOName="WorkSpaceShapePEREntityPG82"><Id>{49586B5B-8BF4-4CF0-9E5B-F8CDF42304D8}</Id><Name>IDENTIFICATION_DATA</Name><Ordinal>0</Ordinal><HistoryID>{73665024-377A-4C92-8E8F-4DAD4D3D4CAB}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{ADBA7BCF-529D-4AA8-9D4E-3EABE4F31C83}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>15780518</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>1</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-35</FontHeight><Top>1565</Top><Left>1962</Left><z>0</z><Width>956</Width><Height>200</Height><dz>0</dz><RecalculateSizes>1</RecalculateSizes><UseWorkSpaceRecalculateSizes>1</UseWorkSpaceRecalculateSizes><Shadow>0</Shadow><FullBackground>0</FullBackground><LineList><Id>{612662D5-41F7-4828-8311-EA4C8FDC7084}</Id><Id>{2DEF39D5-D7B1-4B71-8FAA-76CD390E5CD2}</Id></LineList><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><DisplayMode>5</DisplayMode><DisplayTypes>1</DisplayTypes><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>0</Gradient></WorkSpaceShapePEREntityPG82></ShapeList><LineList><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{7B2C941C-4740-415E-AAA4-2AC8C3A78215}</Id><Name>PE_PR_FK</Name><Ordinal>0</Ordinal><HistoryID>{9E4CBFEC-C55B-4158-9E95-BFFF2B1F9B5F}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{AC2719A8-C434-425E-9380-F6A300D5E528}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{093FDC85-5729-476F-8ACA-88A3C553646D}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{C0F973C8-22F0-4DF1-A637-A629B829CA5F}</Id></WorkSpaceShape2><NamePositionX>924</NamePositionX><NamePositionY>464</NamePositionY><Points><Point><x>1132</x><y>457</y></Point><Point><x>1132</x><y>488</y></Point><Point><x>1133</x><y>530</y></Point><Point><x>1133</x><y>561</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{DA0E1249-AFDA-40B3-878E-BA263B6B0245}</Id><Name>PE_SE_FK</Name><Ordinal>0</Ordinal><HistoryID>{386DFC7A-2CA1-4BAC-820D-E3C242ED2E1B}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{6864F42C-00BC-405E-9512-681387C8E003}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{CC8133D8-2FE2-4438-96DC-EB8A13721651}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{C0F973C8-22F0-4DF1-A637-A629B829CA5F}</Id></WorkSpaceShape2><NamePositionX>1564</NamePositionX><NamePositionY>538</NamePositionY><Points><Point><x>1920</x><y>181</y></Point><Point><x>1889</x><y>181</y></Point><Point><x>1459</x><y>661</y></Point><Point><x>1428</x><y>661</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{52E55138-E3E5-4042-BFBD-A186209BC9EC}</Id><Name>PR_SE_FK</Name><Ordinal>0</Ordinal><HistoryID>{C53E0521-8D04-4A07-BA71-779F3C972F79}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{1E036800-974F-45AF-B519-A77DBFA96D4B}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{CC8133D8-2FE2-4438-96DC-EB8A13721651}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{093FDC85-5729-476F-8ACA-88A3C553646D}</Id></WorkSpaceShape2><NamePositionX>1582</NamePositionX><NamePositionY>95</NamePositionY><Points><Point><x>1920</x><y>115</y></Point><Point><x>1889</x><y>115</y></Point><Point><x>1458</x><y>300</y></Point><Point><x>1427</x><y>300</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{E82B8C32-63ED-4BE6-AC5A-26A97D817057}</Id><Name>MO_PE_FK</Name><Ordinal>0</Ordinal><HistoryID>{D890CEC0-375A-417E-BCAA-FE1E448E8163}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{D342A3A2-ECE4-4451-B79A-84E0D5C6A09E}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{C0F973C8-22F0-4DF1-A637-A629B829CA5F}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{2AFABB48-C224-4AC6-872F-8E52F4099E88}</Id></WorkSpaceShape2><NamePositionX>924</NamePositionX><NamePositionY>808</NamePositionY><Points><Point><x>1133</x><y>761</y></Point><Point><x>1133</x><y>792</y></Point><Point><x>1126</x><y>901</y></Point><Point><x>1126</x><y>932</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{CE7E2E20-F1E5-4BB8-8BAE-76C48A3AF50B}</Id><Name>MO_MP_FK</Name><Ordinal>0</Ordinal><HistoryID>{D637BDB9-A4F2-499B-AD0F-1AAE84F89FF0}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{911A05E8-495A-4FDA-B005-BA8119D65F8D}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{2AFABB48-C224-4AC6-872F-8E52F4099E88}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{3964555D-3493-4528-AC7A-4366C9CECF7B}</Id></WorkSpaceShape2><NamePositionX>1638</NamePositionX><NamePositionY>1015</NamePositionY><Points><Point><x>1517</x><y>1072</y></Point><Point><x>1548</x><y>1072</y></Point><Point><x>1919</x><y>1078</y></Point><Point><x>1950</x><y>1078</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{2D22DE4D-B531-4A30-AFC5-62BA5B7B5FC9}</Id><Name>MO_MT_FK</Name><Ordinal>0</Ordinal><HistoryID>{4D20F63F-80E5-4E43-9CBC-6431B811AAD8}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{1C07089B-ECB7-4DA6-AAAB-A825FE02BCBB}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{F8C98604-010E-4C40-B692-2C20CBA8E525}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{3964555D-3493-4528-AC7A-4366C9CECF7B}</Id></WorkSpaceShape2><NamePositionX>2928</NamePositionX><NamePositionY>1035</NamePositionY><Points><Point><x>2966</x><y>1082</y></Point><Point><x>2935</x><y>1082</y></Point><Point><x>2780</x><y>1078</y></Point><Point><x>2749</x><y>1078</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{F5867E6F-9E91-4F3A-947D-F125BE3C3E41}</Id><Name>AB_AT_FK</Name><Ordinal>0</Ordinal><HistoryID>{7CDE14A6-7315-46FD-8EE4-3867EE832A5E}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{06F39E50-6443-4609-9C4B-90F53FEE4B1F}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{902F6220-524D-46EF-8E67-988D413E41E4}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{196FB830-AEA1-4718-A2D0-97F56A63B0BC}</Id></WorkSpaceShape2><NamePositionX>2414</NamePositionX><NamePositionY>530</NamePositionY><Points><Point><x>2474</x><y>655</y></Point><Point><x>2474</x><y>624</y></Point><Point><x>2290</x><y>556</y></Point><Point><x>2290</x><y>525</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{2300FD76-DBA1-40EF-B42A-C8A6EA155984}</Id><Name>PR_AB_FK</Name><Ordinal>0</Ordinal><HistoryID>{CD0CFBE1-40CF-43C1-8D3B-58C60F0F52FE}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{5C98C88F-84FF-4A0B-8D79-B69B7AA18DEF}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{196FB830-AEA1-4718-A2D0-97F56A63B0BC}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{093FDC85-5729-476F-8ACA-88A3C553646D}</Id></WorkSpaceShape2><NamePositionX>1457</NamePositionX><NamePositionY>376</NamePositionY><Points><Point><x>1930</x><y>392</y></Point><Point><x>1899</x><y>392</y></Point><Point><x>1458</x><y>379</y></Point><Point><x>1427</x><y>379</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{8E56C129-EE39-4DD6-9711-DDC6052D52CF}</Id><Name>MP_AB_FK</Name><Ordinal>0</Ordinal><HistoryID>{5843AED4-98CB-41E2-8959-77BFF3D39291}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{BF7DE2D9-C7B1-4092-B1B0-6B81D74063B9}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{196FB830-AEA1-4718-A2D0-97F56A63B0BC}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{2AFABB48-C224-4AC6-872F-8E52F4099E88}</Id></WorkSpaceShape2><NamePositionX>1454</NamePositionX><NamePositionY>834</NamePositionY><Points><Point><x>1930</x><y>458</y></Point><Point><x>1899</x><y>458</y></Point><Point><x>1548</x><y>1002</y></Point><Point><x>1517</x><y>1002</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{7292D2BF-C275-4C59-9C2E-A97016202E7F}</Id><Name>PR_PS_FK</Name><Ordinal>0</Ordinal><HistoryID>{947B0B78-C12B-4A7B-A5B4-F2C42B276416}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{5D9B0396-10B7-42D2-BD72-2245DD5C8266}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{FC95B408-6BBA-4DB9-907C-06BBC8D920E5}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{093FDC85-5729-476F-8ACA-88A3C553646D}</Id></WorkSpaceShape2><NamePositionX>623</NamePositionX><NamePositionY>274</NamePositionY><Points><Point><x>610</x><y>328</y></Point><Point><x>641</x><y>328</y></Point><Point><x>806</x><y>340</y></Point><Point><x>837</x><y>340</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{612662D5-41F7-4828-8311-EA4C8FDC7084}</Id><Name>MO_ID_FK</Name><Ordinal>0</Ordinal><HistoryID>{C4F914AA-09AB-4AA3-9A55-63C7B3C8DDA1}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{26A198D6-3F41-4FEB-A08B-506410FC6358}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{49586B5B-8BF4-4CF0-9E5B-F8CDF42304D8}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{2AFABB48-C224-4AC6-872F-8E52F4099E88}</Id></WorkSpaceShape2><NamePositionX>1624</NamePositionX><NamePositionY>1146</NamePositionY><Points><Point><x>1962</x><y>1665</y></Point><Point><x>1931</x><y>1665</y></Point><Point><x>1548</x><y>1143</y></Point><Point><x>1517</x><y>1143</y></Point></Points></WorkSpaceLinePERRelationPG82><WorkSpaceLinePERRelationPG82 ObjectType="2504" CSAOName="WorkSpaceLinePERRelationPG82"><Id>{2DEF39D5-D7B1-4B71-8FAA-76CD390E5CD2}</Id><Name>ID_SP_FK</Name><Ordinal>0</Ordinal><HistoryID>{414307F9-D59A-4BD8-870A-DC248FBFB13F}</HistoryID><GlobalOrder>0</GlobalOrder><ParentBaseID>{05289350-8699-452A-BC9E-5A8EDC7761DE}</ParentBaseID><PenWidth>2</PenWidth><PenColor>0</PenColor><BrushColor>16777215</BrushColor><FontCharset>238</FontCharset><FontColor>0</FontColor><FontName>Arial</FontName><FontStyle>0</FontStyle><FormatLocked>0</FormatLocked><FontHeight>-28</FontHeight><WorkSpaceShape1><Id>{F6A3E3FA-F6EB-474E-AAD7-CB3A821FEB66}</Id></WorkSpaceShape1><WorkSpaceShape2><Id>{49586B5B-8BF4-4CF0-9E5B-F8CDF42304D8}</Id></WorkSpaceShape2><NamePositionX>2502</NamePositionX><NamePositionY>1804</NamePositionY><Points><Point><x>2631</x><y>1996</y></Point><Point><x>2600</x><y>1996</y></Point><Point><x>2440</x><y>1796</y></Point><Point><x>2440</x><y>1765</y></Point></Points></WorkSpaceLinePERRelationPG82></LineList><Page><WorkSpacePagePG82 ObjectType="1511" CSAOName="WorkSpacePagePG82"><Id>{1130CF32-BCC7-4FEE-B3BE-8CCCC9AF1B70}</Id><Name>Page Format</Name><Ordinal>0</Ordinal><HistoryID>{C3549D00-4648-412C-97E0-85B08ED04A70}</HistoryID><GlobalOrder>0</GlobalOrder><Zoom>100</Zoom><FitToPage>0</FitToPage><Orientation>0</Orientation><Size>8</Size><HeightDec>297</HeightDec><WidthDec>210</WidthDec><MarginBottomDec>15</MarginBottomDec><MarginLeftDec>10</MarginLeftDec><MarginRightDec>10</MarginRightDec><MarginTopDec>15</MarginTopDec></WorkSpacePagePG82></Page><DisplayIndexes>1</DisplayIndexes><AlignInColumns>1</AlignInColumns><AutoFill>1</AutoFill><DisplayMode>5</DisplayMode><Notation>0</Notation><DisplayDictTypesAsDataTypes>0</DisplayDictTypesAsDataTypes><DisplayTypes>1</DisplayTypes><DisplayGraphicalKeys>1</DisplayGraphicalKeys><Gradient>1</Gradient></PERWorkSpacePG82></WorkSpaces><Categories/><ToDoItems/><Notes/><NoteLines/><ModelTitle><ModelTitlePG82 ObjectType="1011" CSAOName="ModelTitlePG82"><Id>{2154CCC7-6613-478C-859B-37CAD80E4DFA}</Id><Name>Stamp</Name><Ordinal>0</Ordinal><HistoryID>{524CF0BC-B059-4A3A-98A7-F65DE9F36278}</HistoryID><GlobalOrder>0</GlobalOrder><ModelName>Proteomics</ModelName><Author></Author><Company></Company><Version></Version><CreatedDate>2009-05-06T11:59:29.000+02:00</CreatedDate><ModifiedDate>2009-05-20T16:16:54.089+02:00</ModifiedDate><Project></Project><Description></Description></ModelTitlePG82></ModelTitle><Verificators><PERVerificatorPG82 ObjectType="2026" CSAOName="PERVerificatorPG82"><Id>{560A7271-B39F-4106-AD92-11346368E197}</Id><Name>PERVerificator</Name><Ordinal>0</Ordinal><HistoryID>{E021EE27-9616-4585-9749-BFF646874452}</HistoryID><GlobalOrder>0</GlobalOrder><ShowHints>0</ShowHints><ShowWarnings>1</ShowWarnings><CheckDuplicityNames>1</CheckDuplicityNames><CheckEmptyObjects>0</CheckEmptyObjects><SelectedOTP><SelectedOTPsPG82 ObjectType="118" CSAOName="SelectedOTPsPG82"><Id>{A3EE3085-D621-447E-B4D7-ADA1BC2E4374}</Id><Name></Name><Ordinal>0</Ordinal><HistoryID>{928C3706-9D3E-4761-9FAC-116089E567CC}</HistoryID><GlobalOrder>0</GlobalOrder><Category></Category><IsDefault>0</IsDefault><IsSystem>0</IsSystem><ClassContainers><SelectedOTPsClassContainerPG82 ObjectType="119" CSAOName="SelectedOTPsClassContainerPG82"><Id>{C2DE0A51-91AC-4F14-B386-E3A191E14593}</Id><Name>PERModelPG82</Name><Ordinal>0</Ordinal><HistoryID>{130F6268-71F0-4E19-9F5A-02EAD671765F}</HistoryID><GlobalOrder>0</GlobalOrder><Properties><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{56F241C2-EC69-47AB-9B1F-1BBC6577819C}</Id><Name>Entities</Name><Ordinal>0</Ordinal><HistoryID>{3B7FFCA1-B647-464F-909B-5F36035F85DE}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{6C4CE45A-1996-4C48-A2BA-3F33CB2982FF}</Id><Name>DictTypes</Name><Ordinal>0</Ordinal><HistoryID>{98BEC01B-9942-4B72-B9DD-E1EAF0CDFF77}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{CE2FC783-2A38-4A30-AFCE-553F5319336B}</Id><Name>UserDataTypes</Name><Ordinal>0</Ordinal><HistoryID>{B8BBC0E9-429C-47D5-A599-9CA8C0DA6F4E}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{DC1B6683-34AF-4BCB-A607-9986724C0626}</Id><Name>Relations</Name><Ordinal>0</Ordinal><HistoryID>{66F27AB9-AC41-43E5-AE08-C3A28B3812D0}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{5ED4585E-6A97-435B-9397-FF60944281CA}</Id><Name>InstanceUserGroupRelations</Name><Ordinal>0</Ordinal><HistoryID>{2E739888-C9C8-43EF-9A0A-18BE76AD8775}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{729D9265-F0FA-497D-A100-CC3478870D4D}</Id><Name>Views</Name><Ordinal>0</Ordinal><HistoryID>{E370B83C-FA22-4050-93E7-1AC36A8194A0}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{1CCF5F98-57E1-40F2-9DDB-40205B730368}</Id><Name>Functions</Name><Ordinal>0</Ordinal><HistoryID>{B7DBE309-099D-45E0-ABA5-976950492E0F}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82></Properties></SelectedOTPsClassContainerPG82><SelectedOTPsClassContainerPG82 ObjectType="119" CSAOName="SelectedOTPsClassContainerPG82"><Id>{C8C56159-3D4E-4DBE-AEEB-70E5D1AD3CA3}</Id><Name>PEREntityPG82</Name><Ordinal>0</Ordinal><HistoryID>{4A2937BB-A172-4A37-84CE-9CAEC3519765}</HistoryID><GlobalOrder>0</GlobalOrder><Properties><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{07DF683F-4EB8-4103-BD9C-302954FDB2D1}</Id><Name>Attributes</Name><Ordinal>0</Ordinal><HistoryID>{2F89D14C-49B8-4A1A-BC11-17F910C5B131}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{686A37C6-333B-4CBF-8F10-B80B90B6EBC3}</Id><Name>FillFactor</Name><Ordinal>0</Ordinal><HistoryID>{E4131505-55C8-4A1D-9CC3-17700C236E03}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82></Properties></SelectedOTPsClassContainerPG82></ClassContainers></SelectedOTPsPG82></SelectedOTP><SynchronizinigSelectedOTP/></PERVerificatorPG82></Verificators><DefaultVerificator><Id>{560A7271-B39F-4106-AD92-11346368E197}</Id></DefaultVerificator><DefaultCodeGenerator><Id>{3E0AB3DB-D562-4314-ABBB-C73D7BE013C4}</Id></DefaultCodeGenerator><CodeGenerators><PERCodeGeneratorPG82 ObjectType="2027" CSAOName="PERCodeGeneratorPG82"><Id>{3E0AB3DB-D562-4314-ABBB-C73D7BE013C4}</Id><Name>PERCodeGenerator</Name><Ordinal>0</Ordinal><HistoryID>{EE8E4C74-1633-427F-B826-F47FEC6B28EA}</HistoryID><GlobalOrder>0</GlobalOrder><FileName>D:\User\felmer\dev-workspace\Proteomics\source\sql\schema2.sql</FileName><GenerateFromModel>1</GenerateFromModel><GenerateWorkspaceID>{00000000-0000-0000-0000-000000000000}</GenerateWorkspaceID><PreviewBeforeSave>1</PreviewBeforeSave><SelectedObjects><Id>{BAC70B16-1AD7-4464-AD18-93F565AA6AC3}</Id><Id>{076437CE-5C90-4FF6-AEAC-48820C94A983}</Id><Id>{4D0E1B21-B579-40B2-ADBD-1E5279496605}</Id><Id>{8FA1A92A-1608-4F51-AB1C-FD25532AEAEC}</Id><Id>{354FE78A-1E56-4E35-A215-677789C90D8E}</Id><Id>{C6330133-EB65-48BA-A95C-E63297E787FA}</Id><Id>{2EC3C77E-EBC5-40C3-9DB7-10FEE36E0BAB}</Id><Id>{48113A84-9E89-4C5C-BD76-6CBEDB941774}</Id><Id>{4A557542-27F7-4AC9-B71B-4DAD2E976974}</Id><Id>{CC484442-F442-4CBD-8ED2-FA2E0AA8786E}</Id><Id>{ADBA7BCF-529D-4AA8-9D4E-3EABE4F31C83}</Id></SelectedObjects><ParentSetNullDelete>0</ParentSetNullDelete><ParentSetDefaultUpdate>0</ParentSetDefaultUpdate><ParentSetDefaultDelete>0</ParentSetDefaultDelete><ChildRestrictInsert>0</ChildRestrictInsert><ChildRestrictUpdate>0</ChildRestrictUpdate><ParentRestrictUpdate>0</ParentRestrictUpdate><ParentRestrictDelete>0</ParentRestrictDelete><ParentCascadeUpdate>0</ParentCascadeUpdate><ParentSetNullUpdate>0</ParentSetNullUpdate><ParentCascadeDelete>0</ParentCascadeDelete><Terminator>;</Terminator><RefGenChild>1</RefGenChild><RefGenParent>0</RefGenParent><RefGenBoth>0</RefGenBoth><CreateUsers>0</CreateUsers><CreateComments>1</CreateComments><UseQuotations>0</UseQuotations><CreateMaterializedViews>0</CreateMaterializedViews><DropMaterializedViews>0</DropMaterializedViews><UseQualifiedNames>1</UseQualifiedNames><SelectedOTP><SelectedOTPsPG82 ObjectType="118" CSAOName="SelectedOTPsPG82"><Id>{3A181796-873A-45A5-820B-AF86DA2BDCEE}</Id><Name></Name><Ordinal>0</Ordinal><HistoryID>{7E814F31-4C5A-4824-9812-2C32162FE67C}</HistoryID><GlobalOrder>0</GlobalOrder><Category></Category><IsDefault>0</IsDefault><IsSystem>0</IsSystem><ClassContainers><SelectedOTPsClassContainerPG82 ObjectType="119" CSAOName="SelectedOTPsClassContainerPG82"><Id>{1DA685B6-BE93-4CD7-9C0C-5BD388770538}</Id><Name>PERModelPG82</Name><Ordinal>0</Ordinal><HistoryID>{364C0182-8DC6-44C9-B3F1-027033D4CBB4}</HistoryID><GlobalOrder>0</GlobalOrder><Properties><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{DB8B4FBD-C200-470B-A05A-BE1321253F29}</Id><Name>Entities</Name><Ordinal>0</Ordinal><HistoryID>{FAD5874A-1257-4CF2-8C59-DE5855B4229D}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{AB623D9A-871B-47C8-A3D9-5E83ACC73E58}</Id><Name>DictTypes</Name><Ordinal>0</Ordinal><HistoryID>{0CD27BBB-0383-4C93-BEF2-EA79E458261A}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{8BCA571E-6645-4436-9A14-2646D021CDF5}</Id><Name>UserDataTypes</Name><Ordinal>0</Ordinal><HistoryID>{849F1477-005D-40C4-964B-117FE9476D31}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{73C2CA21-A081-4837-A489-58FFD995A874}</Id><Name>Relations</Name><Ordinal>0</Ordinal><HistoryID>{F18CE4E4-F7FC-4176-AC38-E7EBCA355320}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{917B7428-3E2F-4B74-B18A-FB22363957DA}</Id><Name>InstanceUserGroupRelations</Name><Ordinal>0</Ordinal><HistoryID>{D3A313FA-07FB-4C55-9093-9A1CC8AC0829}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue></ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{ED627B59-9DE0-4C70-9F3E-73D08B4605C7}</Id><Name>Views</Name><Ordinal>0</Ordinal><HistoryID>{4DD051DC-442A-4BE3-A474-E5A1DFED5DD7}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{8E1F47FC-6CF4-4BCF-A7E0-926108A0AC6D}</Id><Name>Functions</Name><Ordinal>0</Ordinal><HistoryID>{8462C57D-5A9C-4036-B320-5E375C7EA640}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{F941F103-BA56-460E-B3F9-0EDA8F7E60FC}</Id><Name>Sequences</Name><Ordinal>0</Ordinal><HistoryID>{CB62E6FD-C04F-4970-BB17-F27AAF816802}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{E5451014-62B4-46A3-804F-E7BC1C0EED19}</Id><Name>Aggregates</Name><Ordinal>0</Ordinal><HistoryID>{66D97D12-F5D4-4F45-B6F3-0FE746E62E22}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82></Properties></SelectedOTPsClassContainerPG82><SelectedOTPsClassContainerPG82 ObjectType="119" CSAOName="SelectedOTPsClassContainerPG82"><Id>{6957D273-C5D4-4800-A46A-B96F1CD603E9}</Id><Name>PEREntityPG82</Name><Ordinal>0</Ordinal><HistoryID>{20398257-3BE2-426F-BB9C-CC2B764C2D4B}</HistoryID><GlobalOrder>0</GlobalOrder><Properties><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{E1F9474F-1354-402B-AEEF-B5487B356B87}</Id><Name>Keys</Name><Ordinal>0</Ordinal><HistoryID>{E23914BE-2B3C-4D6B-B272-18C71F5205CB}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create all Keys</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{0D5C2D9C-6A9D-45AE-9289-A9EB15395CB6}</Id><Name>Indexes</Name><Ordinal>0</Ordinal><HistoryID>{F75278DE-FB7A-4E8D-A217-03DCD3C83143}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82><SelectedOTPsPropertyPG82 ObjectType="120" CSAOName="SelectedOTPsPropertyPG82"><Id>{3A624059-ACD1-4B6E-893B-92EA23D571BB}</Id><Name>Triggers</Name><Ordinal>0</Ordinal><HistoryID>{F51F66D0-540A-4362-A9C4-D296FE0A093D}</HistoryID><GlobalOrder>0</GlobalOrder><ExtensionValue>Create</ExtensionValue></SelectedOTPsPropertyPG82></Properties></SelectedOTPsClassContainerPG82></ClassContainers></SelectedOTPsPG82></SelectedOTP><SynchronizinigSelectedOTP/><DropRulesIntegrity>RESTRICT</DropRulesIntegrity><GenerateNullComments>0</GenerateNullComments><DropAggregatesIntegrity>RESTRICT</DropAggregatesIntegrity><CreateIndexesToFKs>1</CreateIndexesToFKs><DropSequencesIntegrity>RESTRICT</DropSequencesIntegrity><DropSchemasIntegrity>RESTRICT</DropSchemasIntegrity><DropTablesIntegrity>RESTRICT</DropTablesIntegrity><GrantUserGroupsToUG>1</GrantUserGroupsToUG><GenerateCreateReplace>0</GenerateCreateReplace><CreateTriggersIn>AFTER_EACH_STATEMENT</CreateTriggersIn><Schema/></PERCodeGeneratorPG82></CodeGenerators><ReportConfigs><IReportPDFConfigPG82 ObjectType="1065" CSAOName="IReportPDFConfigPG82"><Id>{0962F161-969F-4114-B09E-5F55C1301F12}</Id><Name></Name><Ordinal>0</Ordinal><HistoryID>{E938D1B9-70B5-47ED-BFFF-93CF9144C142}</HistoryID><GlobalOrder>0</GlobalOrder><Config>Ordinal=0 +HistoryID={3900DBCD-2BAD-40B1-AEF8-B1E75CA2AACD} +GlobalOrder=0 +Filters=Files PDF|*.pdf +Kind=PDF +UseWatermark=0 +TextWatermark=Quest Software +ColorWatermark=12632256 +GenerateNotes=0 +GenerateComments=1 +GenerateUsedDomains=0 +GenerateUsedDictionaryTypes=0 +GenerateUsedUDTs=0 +GenerateBindColumnsToTables=0 +ColNCtoTables=1 +GenerateTitle=1 +SortResults=1 +GenerateAfterBeforeScripts=0 +WorkspaceID={4B5666C0-6EBB-4BBF-A2BF-DABE8EA92786} +FileName=schema2 +Path=D:\User\felmer\dev-workspace\Proteomics\source\sql +Extension=pdf +CellsShadow=0 +FramesDrawing=1 +</Config><ReportFactoryName>BasicRTFPERReportPG82</ReportFactoryName><SelectedOTPsAsText>PERModelPG82.Entities.Summary and Details +PERModelPG82.Domains.Summary and Details +PERModelPG82.DictTypes.Summary and Details +PERModelPG82.UserDataTypes.Summary and Details +PERModelPG82.Relations.Summary and Details +PERModelPG82.Defaults.Summary and Details +PERModelPG82.Rules.Summary and Details +PERModelPG82.UserGroups.Summary and Details +PERModelPG82.InstanceUserGroupRelations +PERModelPG82.Views.Summary and Details +PERModelPG82.Schemas +PERModelPG82.Functions.Summary and Details +PERModelPG82.Sequences.Summary and Details +PERModelPG82.Tablespaces +PERModelPG82.Aggregates.Summary and Details +PEREntityPG82.Attributes.Summary and Details +PEREntityPG82.Keys.Summary and Details +PEREntityPG82.Indexes.Summary and Details +PEREntityPG82.Triggers.Summary and Details +PEREntityPG82.CheckConstraints.Summary and Details +PERAttributePG82.CheckConstraints.Summary and Details +PERDomainPG82.CheckConstraints.Summary and Details +</SelectedOTPsAsText></IReportPDFConfigPG82></ReportConfigs><BeforeScript></BeforeScript><AfterScript></AfterScript><Entities><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{BAC70B16-1AD7-4464-AD18-93F565AA6AC3}</Id><Name>SEQUENCES</Name><Ordinal>0</Ordinal><HistoryID>{F69017FB-47F1-490B-97A1-C0DC0618471F}</HistoryID><GlobalOrder>19</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>SEQUENCE</Caption><Size>0</Size><Relations><Id>{6864F42C-00BC-405E-9512-681387C8E003}</Id><Id>{1E036800-974F-45AF-B519-A77DBFA96D4B}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{E2BF0839-822E-4E56-9F9D-6E927CDD631E}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{2EA3BF75-0B6F-4B92-B863-6F8004A5B165}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{C3714EFF-7D93-4287-9EA7-8198547E96DA}</Id></KeyConstraintItems><PKForeignKeys><Id>{F1E2C5A6-4E3E-4968-84B3-A91A2C93EBA0}</Id><Id>{D6C3041F-BBFA-4151-8BF0-80A24BCA7041}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{4FD79AED-CCE3-4BEA-AD4B-8FB8AFECFA3F}</Id><Name>AMINO_ACID_SEQUENCE</Name><Ordinal>2</Ordinal><HistoryID>{551324C2-09B9-4AA3-BCF0-7505D3974E52}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>AMINO_ACID_SEQUENCE</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{662A122B-33A6-4E2D-A089-C0F544C3A7AB}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{3E93EB85-6A03-4CA8-A437-66453209CCE0}</Id><Name>CHECKSUM</Name><Ordinal>3</Ordinal><HistoryID>{3A5EF5AB-D4FF-4A2D-B81F-6C280FA846E2}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>CHECKSUM</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{DC12B34A-4861-4146-964F-29248F56EB98}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{AC37411B-1C3A-4945-A683-29A8E89C5F25}</Id><Name>SEQU_PK</Name><Ordinal>0</Ordinal><HistoryID>{0728B951-4A0E-4C17-AFE6-C3EF50F5D870}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>SEQU_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{C3714EFF-7D93-4287-9EA7-8198547E96DA}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{D12453A0-464C-4316-94D9-F8BCF20DCFBE}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{E2BF0839-822E-4E56-9F9D-6E927CDD631E}</Id></Attribute><ForeignKeys><Id>{F1E2C5A6-4E3E-4968-84B3-A91A2C93EBA0}</Id><Id>{D6C3041F-BBFA-4151-8BF0-80A24BCA7041}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{6864F42C-00BC-405E-9512-681387C8E003}</Id><Id>{1E036800-974F-45AF-B519-A77DBFA96D4B}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{AC37411B-1C3A-4945-A683-29A8E89C5F25}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{076437CE-5C90-4FF6-AEAC-48820C94A983}</Id><Name>PEPTIDES</Name><Ordinal>0</Ordinal><HistoryID>{58F1D3A0-0DB0-4262-8161-ACC55F46C261}</HistoryID><GlobalOrder>16</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PEPTIDE</Caption><Size>0</Size><Relations><Id>{AC2719A8-C434-425E-9380-F6A300D5E528}</Id><Id>{6864F42C-00BC-405E-9512-681387C8E003}</Id><Id>{D342A3A2-ECE4-4451-B79A-84E0D5C6A09E}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{459A0008-DA60-404F-B888-9D55CEA02973}</Id><Name>ID</Name><Ordinal>1</Ordinal><HistoryID>{7E57BA0E-96BF-4A78-B8D4-D079302D3AB4}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{D2D63BD8-59B2-453E-9537-20B784BE057E}</Id></KeyConstraintItems><PKForeignKeys><Id>{69671CBA-0679-4EF3-B269-F744FE46B6DF}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{5C51BD26-AB30-4D5B-8082-DFAA4C872300}</Id><Name>PROT_ID</Name><Ordinal>0</Ordinal><HistoryID>{0E3742CA-5FD2-498D-92C1-303DDB6AD209}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>1</Migrated><Caption>PROT_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{2D898560-1CA9-4650-96F5-1133C6237C1D}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{739AD0B7-BE03-42C2-A525-017A1BC3DDA3}</Id><Name>SEQU_ID</Name><Ordinal>0</Ordinal><HistoryID>{C0ECD618-B183-4959-A10C-6C89F64D4D30}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>1</Migrated><Caption>SEQU_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{F1E2C5A6-4E3E-4968-84B3-A91A2C93EBA0}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{6EC14ABC-F96D-4B93-9A8A-69AE37870D16}</Id><Name>PEPT_PK</Name><Ordinal>0</Ordinal><HistoryID>{401DA3E2-3CDE-4FB6-A64D-F0E592F1D832}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PEPT_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{D2D63BD8-59B2-453E-9537-20B784BE057E}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{0FAF481B-9D9E-49C3-BB21-2D0166E1CE20}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{459A0008-DA60-404F-B888-9D55CEA02973}</Id></Attribute><ForeignKeys><Id>{69671CBA-0679-4EF3-B269-F744FE46B6DF}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{D342A3A2-ECE4-4451-B79A-84E0D5C6A09E}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{6EC14ABC-F96D-4B93-9A8A-69AE37870D16}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{4D0E1B21-B579-40B2-ADBD-1E5279496605}</Id><Name>PROTEINS</Name><Ordinal>0</Ordinal><HistoryID>{5DD9D024-7F63-4112-94FA-FA4077FD5705}</HistoryID><GlobalOrder>18</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PROTEIN</Caption><Size>0</Size><Relations><Id>{AC2719A8-C434-425E-9380-F6A300D5E528}</Id><Id>{1E036800-974F-45AF-B519-A77DBFA96D4B}</Id><Id>{5C98C88F-84FF-4A0B-8D79-B69B7AA18DEF}</Id><Id>{5D9B0396-10B7-42D2-BD72-2245DD5C8266}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{80F54DE1-0F60-4046-A03A-BCB227EB7548}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{F4E280DE-2C14-425D-B7F4-434B14FB61CE}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{CF700C20-D58D-445E-8E15-8D3AE9AF6EAE}</Id></KeyConstraintItems><PKForeignKeys><Id>{2D898560-1CA9-4650-96F5-1133C6237C1D}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{C257E934-AD36-4513-8796-ADD1ECADAD6B}</Id><Name>SEQU_ID</Name><Ordinal>0</Ordinal><HistoryID>{D57BD6C9-45EB-4B54-BB9B-76D66119ABDA}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>1</Migrated><Caption>SEQU_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{D6C3041F-BBFA-4151-8BF0-80A24BCA7041}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{330981DD-A7D0-4DEA-BA3B-75F3878F1337}</Id><Name>ABUN_ID</Name><Ordinal>0</Ordinal><HistoryID>{174C50A3-286F-4485-BB63-3ACDA601E175}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>1</Migrated><Caption>ABUN_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{7DFC5F06-AC0F-4688-83ED-52EDAEB466B8}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{BB888BC0-3038-423B-A51D-FA6881F6BA09}</Id><Name>PRST_ID</Name><Ordinal>0</Ordinal><HistoryID>{99A571CB-B7F5-4625-AB79-9FF7704CC413}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>1</Migrated><Caption>PRST_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{46EAED54-0E92-4EB7-B203-9DBF642E965B}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{1826B91C-27C3-4BBC-9F54-3F634A51E323}</Id><Name>PROT_PK</Name><Ordinal>0</Ordinal><HistoryID>{AF7C10B3-FCD4-4BE3-9AB9-292626F81156}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PROT_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{CF700C20-D58D-445E-8E15-8D3AE9AF6EAE}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{F5CF44FC-7945-4891-9C64-7A4CE2E169E6}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{80F54DE1-0F60-4046-A03A-BCB227EB7548}</Id></Attribute><ForeignKeys><Id>{2D898560-1CA9-4650-96F5-1133C6237C1D}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{AC2719A8-C434-425E-9380-F6A300D5E528}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{1826B91C-27C3-4BBC-9F54-3F634A51E323}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{8FA1A92A-1608-4F51-AB1C-FD25532AEAEC}</Id><Name>MODIFIED_PEPTIDES</Name><Ordinal>0</Ordinal><HistoryID>{B7F28363-D191-48C1-9B85-9F9C364ED790}</HistoryID><GlobalOrder>14</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PEPTIDE1</Caption><Size>0</Size><Relations><Id>{D342A3A2-ECE4-4451-B79A-84E0D5C6A09E}</Id><Id>{911A05E8-495A-4FDA-B005-BA8119D65F8D}</Id><Id>{BF7DE2D9-C7B1-4092-B1B0-6B81D74063B9}</Id><Id>{26A198D6-3F41-4FEB-A08B-506410FC6358}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{072C451B-6BAE-4686-BF64-9D44DDDCDCFB}</Id><Name>ID</Name><Ordinal>1</Ordinal><HistoryID>{4F895099-3BBB-4BF2-9624-9DD7C4A9B5E6}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{7AFCE02E-BD5F-4314-9FD9-8DC48C3DFE4D}</Id></KeyConstraintItems><PKForeignKeys><Id>{01F9BC57-39ED-4A87-AD98-3D05028E4101}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{3AFE2725-53F1-4A42-BFD3-5D6C341059A6}</Id><Name>PEPT_ID</Name><Ordinal>2</Ordinal><HistoryID>{F835B9BC-AF36-4BE8-9A58-ACAE2B288985}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>1</Migrated><Caption>PEPT_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{69671CBA-0679-4EF3-B269-F744FE46B6DF}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{BFE469B3-D958-4FB6-AAC9-7ABBBB51F46A}</Id><Name>ABUN_ID</Name><Ordinal>3</Ordinal><HistoryID>{D4D34B27-0E45-46BF-ACCF-05D5DE190811}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>1</Migrated><Caption>ABUN_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{7E95BBE7-A491-4E4D-8196-D6E252B55CF7}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{F61297BB-9AF8-47D5-BC9B-91D35924F056}</Id><Name>IDDA_ID</Name><Ordinal>5</Ordinal><HistoryID>{02C91927-2B08-4AD5-A2AA-A574E0F4DB3E}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>1</Migrated><Caption>IDDA_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{765CB159-026A-4525-82FB-E3C41191792E}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{C566D98B-8889-4DD2-ABBB-D18CA6C78FFB}</Id><Name>CHARGE</Name><Ordinal>6</Ordinal><HistoryID>{76206952-05E3-42AE-A417-D6EEC3D28A89}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>CHARGE</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{08F46134-6E73-43C1-B45B-10E1A3BDFB17}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{3F1486D8-81DC-4299-8126-0B6E20E095DE}</Id><Name>MOPE_PK</Name><Ordinal>0</Ordinal><HistoryID>{E6B96019-47F7-441C-B0C8-364C0C9C818A}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>MOPE_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{7AFCE02E-BD5F-4314-9FD9-8DC48C3DFE4D}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{98CDEA59-6481-4AC0-AAF4-AB8B1C079BA5}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{072C451B-6BAE-4686-BF64-9D44DDDCDCFB}</Id></Attribute><ForeignKeys><Id>{01F9BC57-39ED-4A87-AD98-3D05028E4101}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{911A05E8-495A-4FDA-B005-BA8119D65F8D}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{3F1486D8-81DC-4299-8126-0B6E20E095DE}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{354FE78A-1E56-4E35-A215-677789C90D8E}</Id><Name>MODIFICATION_TYPES</Name><Ordinal>0</Ordinal><HistoryID>{9E1C2152-9644-4FBD-BC4E-2FC90B48FD3D}</HistoryID><GlobalOrder>13</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PEPTIDE1</Caption><Size>0</Size><Relations><Id>{1C07089B-ECB7-4DA6-AAAB-A825FE02BCBB}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{6501142E-F2F6-4E6D-BF03-CC0DBF01528E}</Id><Name>ID</Name><Ordinal>1</Ordinal><HistoryID>{898A79E5-4248-413D-869D-279BD8B4347D}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{E8F879F3-B7AA-4963-962A-A2390F0DF547}</Id></KeyConstraintItems><PKForeignKeys><Id>{BEC4D1BE-290C-496B-805B-7A0E0346293F}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{3F14B8D8-D55A-4BC6-8C20-5A3BCA7C9174}</Id><Name>CODE</Name><Ordinal>0</Ordinal><HistoryID>{75C42336-A86A-48AE-B61C-C0DB66195C0B}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>CODE</Caption><Unique>1</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{E9531722-0702-4679-BD47-9FC41456BBA2}</Id></KeyConstraintItems><PKForeignKeys/><FKForeignKeys/><DictType><Id>{DF0EC56D-1E5C-4E21-BFD9-F5AB178F7649}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint><Id>{2B967B93-06F7-43BC-973A-D94F713CFB90}</Id></KeyConstraint><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{6E8716B0-B6FC-4EDB-832B-CEDD6AC127A4}</Id><Name>DESCRIPTION</Name><Ordinal>0</Ordinal><HistoryID>{ABA90CAF-46B9-484C-8408-0CF62613F97B}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>0</Migrated><Caption>DESCRIPTION</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{3C82B683-FDF7-472A-8466-307562F03227}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{9C32ADA0-BF3D-43DA-9AC0-0D16C20EE80C}</Id><Name>MASS</Name><Ordinal>0</Ordinal><HistoryID>{2FD9CCD5-7270-4D59-BC4B-468792A709BC}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>0</Migrated><Caption>MASS</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{62943622-AAD8-4604-92C6-B964787486CB}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{524B57D1-339C-4073-8ACA-46A32AD7ADD0}</Id><Name>DELTA_MASS</Name><Ordinal>0</Ordinal><HistoryID>{CA1FC9E0-A5FA-43FB-9418-9BE1A19D5EEB}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>0</Migrated><Caption>DELTA_MASS</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{62943622-AAD8-4604-92C6-B964787486CB}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{4BC86140-24E9-487A-8E8D-D2902BE1AAFF}</Id><Name>MOTY_PK</Name><Ordinal>0</Ordinal><HistoryID>{F0AF816B-F136-496C-A7B1-E3CC8794576A}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>MOTY_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{E8F879F3-B7AA-4963-962A-A2390F0DF547}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{C4DDA9DA-F804-4D4C-904D-5E856FB43788}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{6501142E-F2F6-4E6D-BF03-CC0DBF01528E}</Id></Attribute><ForeignKeys><Id>{BEC4D1BE-290C-496B-805B-7A0E0346293F}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{1C07089B-ECB7-4DA6-AAAB-A825FE02BCBB}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{2B967B93-06F7-43BC-973A-D94F713CFB90}</Id><Name>CODE</Name><Ordinal>0</Ordinal><HistoryID>{AEEDD1FB-67B4-45AF-9F89-070495E39524}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>CODE</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{E9531722-0702-4679-BD47-9FC41456BBA2}</Id><Name>CODE</Name><Ordinal>0</Ordinal><HistoryID>{62ED789E-4CBE-4E14-ADB0-23DA8B94C899}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{3F14B8D8-D55A-4BC6-8C20-5A3BCA7C9174}</Id></Attribute><ForeignKeys/></PERKeyConstraintItemPG82></KeyItems><Relations/><Attribute><Id>{3F14B8D8-D55A-4BC6-8C20-5A3BCA7C9174}</Id></Attribute><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{4BC86140-24E9-487A-8E8D-D2902BE1AAFF}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{C6330133-EB65-48BA-A95C-E63297E787FA}</Id><Name>MODIFICATIONS</Name><Ordinal>0</Ordinal><HistoryID>{8E15FBAA-3717-4281-8E7A-D7BB953DCF3C}</HistoryID><GlobalOrder>12</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>MODIFICATIONS</Caption><Size>0</Size><Relations><Id>{911A05E8-495A-4FDA-B005-BA8119D65F8D}</Id><Id>{1C07089B-ECB7-4DA6-AAAB-A825FE02BCBB}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{4E2B8C94-D9B1-4D81-B772-A4BF00D25DC4}</Id><Name>ID</Name><Ordinal>1</Ordinal><HistoryID>{D13511CB-288A-4B80-A832-94D15FA191F5}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{98494494-261B-42CB-B16B-E9B9870436C4}</Id></KeyConstraintItems><PKForeignKeys/><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{0E503151-A4E9-4192-A51F-3E4927AC76A5}</Id><Name>MOPE_ID</Name><Ordinal>2</Ordinal><HistoryID>{44F585CD-0CE8-499B-B6D8-48DB6EBB9F3B}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>1</Migrated><Caption>MOPE_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{01F9BC57-39ED-4A87-AD98-3D05028E4101}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{9381C110-5E62-41EF-841F-B14A6D4C7C11}</Id><Name>MOTY_ID</Name><Ordinal>3</Ordinal><HistoryID>{9042DE89-78A9-4A69-83E2-E6761984C5AC}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>1</Migrated><Caption>MOTY_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{BEC4D1BE-290C-496B-805B-7A0E0346293F}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{1CB730F4-0901-4367-B70F-730CBDA598B1}</Id><Name>POSITION</Name><Ordinal>4</Ordinal><HistoryID>{F31E728B-E9EE-49AF-AC3C-80BED9231D4D}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>POSITION</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{08F46134-6E73-43C1-B45B-10E1A3BDFB17}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{A60A31ED-5D39-41AD-A7D5-6FE88B1B9CCB}</Id><Name>MASS</Name><Ordinal>0</Ordinal><HistoryID>{CA72019D-793C-4C44-873C-55C0F52A2A3E}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>MASS</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{62943622-AAD8-4604-92C6-B964787486CB}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{133CD858-10CF-45CF-B55D-2C46E70ADCB8}</Id><Name>MODI_PK</Name><Ordinal>0</Ordinal><HistoryID>{EEF60F65-C8F7-49E7-8E2D-EDB7A5AD7DC2}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>MODI_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{98494494-261B-42CB-B16B-E9B9870436C4}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{074C8FB7-2144-4339-8835-23D217668F5A}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{4E2B8C94-D9B1-4D81-B772-A4BF00D25DC4}</Id></Attribute><ForeignKeys/></PERKeyConstraintItemPG82></KeyItems><Relations/><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{133CD858-10CF-45CF-B55D-2C46E70ADCB8}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{2EC3C77E-EBC5-40C3-9DB7-10FEE36E0BAB}</Id><Name>ABUNDANCES</Name><Ordinal>0</Ordinal><HistoryID>{AD67C9CC-7653-4115-9DA5-16684E734BA5}</HistoryID><GlobalOrder>9</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>ABUNDANCES</Caption><Size>0</Size><Relations><Id>{06F39E50-6443-4609-9C4B-90F53FEE4B1F}</Id><Id>{5C98C88F-84FF-4A0B-8D79-B69B7AA18DEF}</Id><Id>{BF7DE2D9-C7B1-4092-B1B0-6B81D74063B9}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{CB637274-571B-4445-AEB5-8D0BE74C8EE6}</Id><Name>ID</Name><Ordinal>1</Ordinal><HistoryID>{102262EF-AD41-483C-B167-5D5BAA7DBD5A}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{F0D22707-8C24-4C0B-B39A-08B622B3FE09}</Id></KeyConstraintItems><PKForeignKeys><Id>{7DFC5F06-AC0F-4688-83ED-52EDAEB466B8}</Id><Id>{7E95BBE7-A491-4E4D-8196-D6E252B55CF7}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{DE91AB5B-3C4E-4871-A4A0-E73FF8C85FDA}</Id><Name>ABTY_ID</Name><Ordinal>2</Ordinal><HistoryID>{55E87F2F-0F8E-4573-BE84-194E782BD047}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>1</Migrated><Caption>ABTY_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{187CA4C4-02C0-4987-A80F-FC32FDF29E8F}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{7EB7928D-8C1F-4350-95F2-D331A94DDDFF}</Id><Name>AMOUNT</Name><Ordinal>3</Ordinal><HistoryID>{CE33BCB3-E173-4891-B1E5-C67858C065B2}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>AMOUNT</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{62943622-AAD8-4604-92C6-B964787486CB}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{13927315-394F-4C6E-B4AD-2911CFC4321B}</Id><Name>ABUN_PK</Name><Ordinal>0</Ordinal><HistoryID>{9217A11D-757F-4C00-8A67-AD93333A9347}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>ABUN_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{F0D22707-8C24-4C0B-B39A-08B622B3FE09}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{06037A0A-427A-4FF5-B54A-2AF77E05188F}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{CB637274-571B-4445-AEB5-8D0BE74C8EE6}</Id></Attribute><ForeignKeys><Id>{7DFC5F06-AC0F-4688-83ED-52EDAEB466B8}</Id><Id>{7E95BBE7-A491-4E4D-8196-D6E252B55CF7}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{5C98C88F-84FF-4A0B-8D79-B69B7AA18DEF}</Id><Id>{BF7DE2D9-C7B1-4092-B1B0-6B81D74063B9}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{13927315-394F-4C6E-B4AD-2911CFC4321B}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{48113A84-9E89-4C5C-BD76-6CBEDB941774}</Id><Name>ABUNDANCES_TYPES</Name><Ordinal>0</Ordinal><HistoryID>{DA2E587F-BAC1-4565-BF4D-802FF5562973}</HistoryID><GlobalOrder>10</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>ABUNDANCES_TYPES</Caption><Size>0</Size><Relations><Id>{06F39E50-6443-4609-9C4B-90F53FEE4B1F}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{D0A9C475-886C-4A1C-85FE-9CF2605B30F5}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{23EEA7A1-2445-4A4E-ACEA-3694591E76E0}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{E4AAFD67-74B6-4AE7-97E2-633AFCFF3AE9}</Id></KeyConstraintItems><PKForeignKeys><Id>{187CA4C4-02C0-4987-A80F-FC32FDF29E8F}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{33C21520-3D04-4A3A-B300-46490A4FE541}</Id><Name>CODE</Name><Ordinal>3</Ordinal><HistoryID>{E5B4A793-272A-4411-9673-730A073215ED}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>CODE</Caption><Unique>1</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{BFE3A4AB-7B50-4BF6-8BB8-89816257CCAB}</Id></KeyConstraintItems><PKForeignKeys/><FKForeignKeys/><DictType><Id>{DF0EC56D-1E5C-4E21-BFD9-F5AB178F7649}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint><Id>{AA742B63-06DE-4EC6-A9EF-F36A352C97D8}</Id></KeyConstraint><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{3527100D-39DC-459F-98D5-4FD46F151C5B}</Id><Name>DESCRIPTION</Name><Ordinal>0</Ordinal><HistoryID>{1E4973E6-BDF5-4132-B921-4641EA4E8EC1}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>0</Migrated><Caption>DESCRIPTION</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{3C82B683-FDF7-472A-8466-307562F03227}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{E22873EC-BA7C-47F2-88D5-A9883015C546}</Id><Name>ABTY_PK</Name><Ordinal>0</Ordinal><HistoryID>{5C54BF97-9588-439C-996A-63E4B9DAFCEA}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>ABTY_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{E4AAFD67-74B6-4AE7-97E2-633AFCFF3AE9}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{45DE0520-26C1-49FA-8538-A0D75E90A645}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{D0A9C475-886C-4A1C-85FE-9CF2605B30F5}</Id></Attribute><ForeignKeys><Id>{187CA4C4-02C0-4987-A80F-FC32FDF29E8F}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{06F39E50-6443-4609-9C4B-90F53FEE4B1F}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{AA742B63-06DE-4EC6-A9EF-F36A352C97D8}</Id><Name>CODE</Name><Ordinal>0</Ordinal><HistoryID>{43F015CC-20ED-4252-A7C7-DFB27B6C030E}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>CODE</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{BFE3A4AB-7B50-4BF6-8BB8-89816257CCAB}</Id><Name>CODE</Name><Ordinal>0</Ordinal><HistoryID>{E26CC9DF-F309-4F5B-912D-DE6027F51B40}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{33C21520-3D04-4A3A-B300-46490A4FE541}</Id></Attribute><ForeignKeys/></PERKeyConstraintItemPG82></KeyItems><Relations/><Attribute><Id>{33C21520-3D04-4A3A-B300-46490A4FE541}</Id></Attribute><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{E22873EC-BA7C-47F2-88D5-A9883015C546}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{4A557542-27F7-4AC9-B71B-4DAD2E976974}</Id><Name>SPECTRA</Name><Ordinal>0</Ordinal><HistoryID>{7321647A-82AA-4532-91D2-A6B940BBD65F}</HistoryID><GlobalOrder>20</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>SPECTRA</Caption><Size>0</Size><Relations><Id>{05289350-8699-452A-BC9E-5A8EDC7761DE}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{85BCE757-9B63-4336-BD77-BB3A8EB9664D}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{29740980-81E0-4ADB-8A51-57BED19E7883}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{94492022-19BB-45A8-9F8F-28CC08E6CE09}</Id></KeyConstraintItems><PKForeignKeys><Id>{911E8154-6F3F-420E-AF22-EA7217A185CD}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{7CF49976-36CF-49EA-8150-FC45A9116D15}</Id><Name>DATA</Name><Ordinal>2</Ordinal><HistoryID>{7CAC776B-5BDD-4AB1-B8D0-98B72A359AAD}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>DATA</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{D9ED970D-9CAE-4C00-B495-FFE07DF98C4D}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{B68FE97A-46FC-4643-A1BC-7188AF909D01}</Id><Name>SPEC_PK</Name><Ordinal>0</Ordinal><HistoryID>{C1E67611-3029-446B-96B5-4A7BCAF85D75}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>SPEC_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{94492022-19BB-45A8-9F8F-28CC08E6CE09}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{2DC66A1D-2AED-4CF7-9ABA-4454AB82C253}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{85BCE757-9B63-4336-BD77-BB3A8EB9664D}</Id></Attribute><ForeignKeys><Id>{911E8154-6F3F-420E-AF22-EA7217A185CD}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{05289350-8699-452A-BC9E-5A8EDC7761DE}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{B68FE97A-46FC-4643-A1BC-7188AF909D01}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{CC484442-F442-4CBD-8ED2-FA2E0AA8786E}</Id><Name>PROTEIN_STATISTICS</Name><Ordinal>0</Ordinal><HistoryID>{53141AB6-D668-4F32-96F0-FD81018B7435}</HistoryID><GlobalOrder>17</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PROTEIN_STATISTICS</Caption><Size>0</Size><Relations><Id>{5D9B0396-10B7-42D2-BD72-2245DD5C8266}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{38EEC1F3-C8E9-4299-B742-2B5E7BD67D1B}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{82E7CCC8-BC44-463C-BE28-59AA17E48B16}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{12F7E246-4C4C-4CDF-8C08-CEE50B5CAFDC}</Id></KeyConstraintItems><PKForeignKeys><Id>{46EAED54-0E92-4EB7-B203-9DBF642E965B}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{D9721002-8013-4996-9268-A68A9CCD8479}</Id><Name>PRST_PK</Name><Ordinal>0</Ordinal><HistoryID>{BC569420-EFF8-4E06-B89D-219869795BF6}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>PRST_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{12F7E246-4C4C-4CDF-8C08-CEE50B5CAFDC}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{47D63316-4DA0-481D-A65F-094A12370A1C}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{38EEC1F3-C8E9-4299-B742-2B5E7BD67D1B}</Id></Attribute><ForeignKeys><Id>{46EAED54-0E92-4EB7-B203-9DBF642E965B}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{5D9B0396-10B7-42D2-BD72-2245DD5C8266}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{D9721002-8013-4996-9268-A68A9CCD8479}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82><PEREntityPG82 ObjectType="2002" CSAOName="PEREntityPG82"><Id>{ADBA7BCF-529D-4AA8-9D4E-3EABE4F31C83}</Id><Name>IDENTIFICATION_DATA</Name><Ordinal>0</Ordinal><HistoryID>{FA19FAAA-005E-4D80-B327-C73157F136C9}</HistoryID><GlobalOrder>11</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>IDENTIFICATION_DATA</Caption><Size>0</Size><Relations><Id>{26A198D6-3F41-4FEB-A08B-506410FC6358}</Id><Id>{05289350-8699-452A-BC9E-5A8EDC7761DE}</Id></Relations><Attributes><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{B3CB2060-A316-4A03-9E4C-BB5FB9E8CF78}</Id><Name>ID</Name><Ordinal>1</Ordinal><HistoryID>{E605A2CF-9796-4F02-96D3-46306627E4D9}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>1</NotNull><Migrated>0</Migrated><Caption>ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems><Id>{B3FD85E9-8C2E-4E75-B1B2-D96C2F537EAA}</Id></KeyConstraintItems><PKForeignKeys><Id>{765CB159-026A-4525-82FB-E3C41191792E}</Id></PKForeignKeys><FKForeignKeys/><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{EFBD75F7-5ADE-4C05-8A17-749F312AB35E}</Id><Name>SPEC_ID</Name><Ordinal>2</Ordinal><HistoryID>{87B9279E-1CE4-414E-AFF1-7A25FCB988BE}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>1</Migrated><Caption>SPEC_ID</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys><Id>{911E8154-6F3F-420E-AF22-EA7217A185CD}</Id></FKForeignKeys><DictType><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82><PERAttributePG82 ObjectType="2003" CSAOName="PERAttributePG82"><Id>{F56FD6B2-B6AD-4178-A266-6B9E781F6293}</Id><Name>SPECTRA_COUNT</Name><Ordinal>3</Ordinal><HistoryID>{BCBEBCC0-C2C1-4B3A-873D-2EF69E1C9BF5}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><KeepForeignKey>0</KeepForeignKey><DefaultValue></DefaultValue><NotNull>0</NotNull><Migrated>0</Migrated><Caption>SPECTRA_COUNT</Caption><Unique>0</Unique><OriginalName></OriginalName><CheckConstraint></CheckConstraint><CheckConstraintName></CheckConstraintName><KeyConstraintItems/><PKForeignKeys/><FKForeignKeys/><DictType><Id>{08F46134-6E73-43C1-B45B-10E1A3BDFB17}</Id></DictType><Domain/><DataType/><UserDataType/><IndexItems/><Default/><CheckConstraints/><KeyConstraint/><ArrDims></ArrDims><IsArray>0</IsArray></PERAttributePG82></Attributes><Keys><PERKeyConstraintPG82 ObjectType="2010" CSAOName="PERKeyConstraintPG82"><Id>{4996E535-27F2-4077-97EA-37A0D1B608E6}</Id><Name>IDDA_PK</Name><Ordinal>0</Ordinal><HistoryID>{7EB1D0E8-D85F-452A-82C5-9E127E1CBB47}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>0</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><Caption>IDDA_PK</Caption><KeyItems><PERKeyConstraintItemPG82 ObjectType="2011" CSAOName="PERKeyConstraintItemPG82"><Id>{B3FD85E9-8C2E-4E75-B1B2-D96C2F537EAA}</Id><Name>ID</Name><Ordinal>0</Ordinal><HistoryID>{E5EC88EB-E0D5-4C14-9E59-2C28A21720BF}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><SortDescending>0</SortDescending><Attribute><Id>{B3CB2060-A316-4A03-9E4C-BB5FB9E8CF78}</Id></Attribute><ForeignKeys><Id>{765CB159-026A-4525-82FB-E3C41191792E}</Id></ForeignKeys></PERKeyConstraintItemPG82></KeyItems><Relations><Id>{26A198D6-3F41-4FEB-A08B-506410FC6358}</Id></Relations><Attribute/><Tablespace/><FillFactor></FillFactor></PERKeyConstraintPG82></Keys><PK><Id>{4996E535-27F2-4077-97EA-37A0D1B608E6}</Id></PK><Indexes/><CheckConstraints/><Category/><Triggers/><ToDoItems/><DbOwner/><Schema/><NoteLines/><WithOids>0</WithOids><Inherited></Inherited><TempTable>0</TempTable><Tablespace/><FillFactor></FillFactor><Sequences/></PEREntityPG82></Entities><Domains/><DictTypes><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{662A122B-33A6-4E2D-A089-C0F544C3A7AB}</Id><Name>SEQUENCE</Name><Ordinal>0</Ordinal><HistoryID>{0E81008D-C6A7-4C8D-9D63-02CEB53ABC2C}</HistoryID><GlobalOrder>6</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>SEQUENCE</Caption><Attributes><Id>{4FD79AED-CCE3-4BEA-AD4B-8FB8AFECFA3F}</Id></Attributes><Domains/><DataType><Id>{E9536F43-3012-4641-9D50-9732E64365C8}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{DC12B34A-4861-4146-964F-29248F56EB98}</Id><Name>CHECKSUM</Name><Ordinal>0</Ordinal><HistoryID>{C491CB1C-357E-4280-A4FA-37C98732FCB2}</HistoryID><GlobalOrder>2</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1>8</DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>CHECKSUM</Caption><Attributes><Id>{3E93EB85-6A03-4CA8-A437-66453209CCE0}</Id></Attributes><Domains/><DataType><Id>{30823CAA-2B16-449A-A794-BA7F7C00151E}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{FD92A223-4BAB-4084-9997-FED141C42CA6}</Id><Name>TECH_ID</Name><Ordinal>0</Ordinal><HistoryID>{5A2F1FE2-F215-4F6C-A5CB-7AA5070088C1}</HistoryID><GlobalOrder>8</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>TECH_ID</Caption><Attributes><Id>{E2BF0839-822E-4E56-9F9D-6E927CDD631E}</Id><Id>{80F54DE1-0F60-4046-A03A-BCB227EB7548}</Id><Id>{459A0008-DA60-404F-B888-9D55CEA02973}</Id><Id>{5C51BD26-AB30-4D5B-8082-DFAA4C872300}</Id><Id>{739AD0B7-BE03-42C2-A525-017A1BC3DDA3}</Id><Id>{C257E934-AD36-4513-8796-ADD1ECADAD6B}</Id><Id>{072C451B-6BAE-4686-BF64-9D44DDDCDCFB}</Id><Id>{3AFE2725-53F1-4A42-BFD3-5D6C341059A6}</Id><Id>{6501142E-F2F6-4E6D-BF03-CC0DBF01528E}</Id><Id>{4E2B8C94-D9B1-4D81-B772-A4BF00D25DC4}</Id><Id>{0E503151-A4E9-4192-A51F-3E4927AC76A5}</Id><Id>{9381C110-5E62-41EF-841F-B14A6D4C7C11}</Id><Id>{CB637274-571B-4445-AEB5-8D0BE74C8EE6}</Id><Id>{D0A9C475-886C-4A1C-85FE-9CF2605B30F5}</Id><Id>{DE91AB5B-3C4E-4871-A4A0-E73FF8C85FDA}</Id><Id>{330981DD-A7D0-4DEA-BA3B-75F3878F1337}</Id><Id>{BFE469B3-D958-4FB6-AAC9-7ABBBB51F46A}</Id><Id>{85BCE757-9B63-4336-BD77-BB3A8EB9664D}</Id><Id>{38EEC1F3-C8E9-4299-B742-2B5E7BD67D1B}</Id><Id>{BB888BC0-3038-423B-A51D-FA6881F6BA09}</Id><Id>{B3CB2060-A316-4A03-9E4C-BB5FB9E8CF78}</Id><Id>{F61297BB-9AF8-47D5-BC9B-91D35924F056}</Id><Id>{EFBD75F7-5ADE-4C05-8A17-749F312AB35E}</Id></Attributes><Domains/><DataType><Id>{1C1D1BFF-D718-47E5-ACE7-4C84B7901B10}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{08F46134-6E73-43C1-B45B-10E1A3BDFB17}</Id><Name>INTEGER_NUMBER</Name><Ordinal>0</Ordinal><HistoryID>{11E2AA76-BE4C-4B71-9B1F-0265BE18594A}</HistoryID><GlobalOrder>4</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>INTEGER_NUMBER</Caption><Attributes><Id>{C566D98B-8889-4DD2-ABBB-D18CA6C78FFB}</Id><Id>{1CB730F4-0901-4367-B70F-730CBDA598B1}</Id><Id>{F56FD6B2-B6AD-4178-A266-6B9E781F6293}</Id></Attributes><Domains/><DataType><Id>{2619779C-008F-4970-A0BB-67C202D7723D}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{DF0EC56D-1E5C-4E21-BFD9-F5AB178F7649}</Id><Name>CODE</Name><Ordinal>0</Ordinal><HistoryID>{622E5699-7953-4E6E-BE3F-6D54F98EE12F}</HistoryID><GlobalOrder>3</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1>40</DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>CODE</Caption><Attributes><Id>{3F14B8D8-D55A-4BC6-8C20-5A3BCA7C9174}</Id><Id>{33C21520-3D04-4A3A-B300-46490A4FE541}</Id></Attributes><Domains/><DataType><Id>{30823CAA-2B16-449A-A794-BA7F7C00151E}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{3C82B683-FDF7-472A-8466-307562F03227}</Id><Name>SHORT_DESCRIPTION</Name><Ordinal>0</Ordinal><HistoryID>{867903FF-CF58-43CA-9395-CEFE58875591}</HistoryID><GlobalOrder>7</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1>200</DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>SHORT_DESCRIPTION</Caption><Attributes><Id>{6E8716B0-B6FC-4EDB-832B-CEDD6AC127A4}</Id><Id>{3527100D-39DC-459F-98D5-4FD46F151C5B}</Id></Attributes><Domains/><DataType><Id>{30823CAA-2B16-449A-A794-BA7F7C00151E}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{62943622-AAD8-4604-92C6-B964787486CB}</Id><Name>REAL_NUMBER</Name><Ordinal>0</Ordinal><HistoryID>{330FF924-45BF-4F85-A19B-BAFA56FA02D0}</HistoryID><GlobalOrder>5</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>REAL_NUMBER</Caption><Attributes><Id>{7EB7928D-8C1F-4350-95F2-D331A94DDDFF}</Id><Id>{A60A31ED-5D39-41AD-A7D5-6FE88B1B9CCB}</Id><Id>{9C32ADA0-BF3D-43DA-9AC0-0D16C20EE80C}</Id><Id>{524B57D1-339C-4073-8ACA-46A32AD7ADD0}</Id></Attributes><Domains/><DataType><Id>{9DC53EC6-0944-4AA2-94F8-960A3E9F502F}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82><PERDictTypePG82 ObjectType="2007" CSAOName="PERDictTypePG82"><Id>{D9ED970D-9CAE-4C00-B495-FFE07DF98C4D}</Id><Name>BINARY</Name><Ordinal>0</Ordinal><HistoryID>{F14FDB64-F234-4BEB-A4E9-752CB4D4F561}</HistoryID><GlobalOrder>1</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><DataTypeParam1></DataTypeParam1><DataTypeParam2></DataTypeParam2><Caption>BINARY</Caption><Attributes><Id>{7CF49976-36CF-49EA-8150-FC45A9116D15}</Id></Attributes><Domains/><DataType><Id>{D90E9D9A-BED2-4369-B8A0-697E3D67B2BA}</Id></DataType><UserDataType/><ToDoItems/><ArrDims></ArrDims><IsArray>0</IsArray><NotNull>0</NotNull><CheckConstraintName></CheckConstraintName><Schema/><Default></Default><CheckConstraintValue></CheckConstraintValue></PERDictTypePG82></DictTypes><UserDataTypes/><Relations><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{AC2719A8-C434-425E-9380-F6A300D5E528}</Id><Name>PE_PR_FK</Name><Ordinal>0</Ordinal><HistoryID>{A382AE7C-2363-42E7-82DF-CE5F02B5C466}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{4D0E1B21-B579-40B2-ADBD-1E5279496605}</Id></O1><O2><Id>{076437CE-5C90-4FF6-AEAC-48820C94A983}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>PE_PR_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{1826B91C-27C3-4BBC-9F54-3F634A51E323}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{2D898560-1CA9-4650-96F5-1133C6237C1D}</Id><Name>FK ID - PROT_ID</Name><Ordinal>0</Ordinal><HistoryID>{72D95DDE-E8F4-42C6-87D1-7A23A1463EA8}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{80F54DE1-0F60-4046-A03A-BCB227EB7548}</Id></AttrParent><AttrChild><Id>{5C51BD26-AB30-4D5B-8082-DFAA4C872300}</Id></AttrChild><KeyConstraintItem><Id>{CF700C20-D58D-445E-8E15-8D3AE9AF6EAE}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{6864F42C-00BC-405E-9512-681387C8E003}</Id><Name>PE_SE_FK</Name><Ordinal>0</Ordinal><HistoryID>{8AA9D45A-6BE9-4D9D-8236-99551CF5EF43}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{BAC70B16-1AD7-4464-AD18-93F565AA6AC3}</Id></O1><O2><Id>{076437CE-5C90-4FF6-AEAC-48820C94A983}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>PE_SE_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{AC37411B-1C3A-4945-A683-29A8E89C5F25}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{F1E2C5A6-4E3E-4968-84B3-A91A2C93EBA0}</Id><Name>FK ID - SEQU_ID</Name><Ordinal>0</Ordinal><HistoryID>{37FD4DEF-1249-458F-AE3C-4CA536503710}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{E2BF0839-822E-4E56-9F9D-6E927CDD631E}</Id></AttrParent><AttrChild><Id>{739AD0B7-BE03-42C2-A525-017A1BC3DDA3}</Id></AttrChild><KeyConstraintItem><Id>{C3714EFF-7D93-4287-9EA7-8198547E96DA}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{1E036800-974F-45AF-B519-A77DBFA96D4B}</Id><Name>PR_SE_FK</Name><Ordinal>0</Ordinal><HistoryID>{E88CB4BB-4B1C-46E1-A041-0709A67BBD2D}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{BAC70B16-1AD7-4464-AD18-93F565AA6AC3}</Id></O1><O2><Id>{4D0E1B21-B579-40B2-ADBD-1E5279496605}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>PR_SE_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{AC37411B-1C3A-4945-A683-29A8E89C5F25}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{D6C3041F-BBFA-4151-8BF0-80A24BCA7041}</Id><Name>FK ID - SEQU_ID</Name><Ordinal>0</Ordinal><HistoryID>{6AD3311D-7CEB-40E0-AD2E-6870C6C1DF78}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{E2BF0839-822E-4E56-9F9D-6E927CDD631E}</Id></AttrParent><AttrChild><Id>{C257E934-AD36-4513-8796-ADD1ECADAD6B}</Id></AttrChild><KeyConstraintItem><Id>{C3714EFF-7D93-4287-9EA7-8198547E96DA}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{D342A3A2-ECE4-4451-B79A-84E0D5C6A09E}</Id><Name>MO_PE_FK</Name><Ordinal>0</Ordinal><HistoryID>{6025C4B5-828C-4589-B456-E4FB3C510E37}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{076437CE-5C90-4FF6-AEAC-48820C94A983}</Id></O1><O2><Id>{8FA1A92A-1608-4F51-AB1C-FD25532AEAEC}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>MO_PE_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{6EC14ABC-F96D-4B93-9A8A-69AE37870D16}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{69671CBA-0679-4EF3-B269-F744FE46B6DF}</Id><Name>FK ID - PEPT_ID</Name><Ordinal>0</Ordinal><HistoryID>{FB8E0B7C-DBBC-47F4-B884-043292F8B086}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{459A0008-DA60-404F-B888-9D55CEA02973}</Id></AttrParent><AttrChild><Id>{3AFE2725-53F1-4A42-BFD3-5D6C341059A6}</Id></AttrChild><KeyConstraintItem><Id>{D2D63BD8-59B2-453E-9537-20B784BE057E}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{911A05E8-495A-4FDA-B005-BA8119D65F8D}</Id><Name>MO_MP_FK</Name><Ordinal>0</Ordinal><HistoryID>{6105084C-C63E-4C60-9495-87B1E4B2BFB5}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{8FA1A92A-1608-4F51-AB1C-FD25532AEAEC}</Id></O1><O2><Id>{C6330133-EB65-48BA-A95C-E63297E787FA}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>m</Caption><InverseCaption>has</InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{3F1486D8-81DC-4299-8126-0B6E20E095DE}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{01F9BC57-39ED-4A87-AD98-3D05028E4101}</Id><Name>FK ID - MOPE_ID</Name><Ordinal>0</Ordinal><HistoryID>{105FB5FF-84CA-4887-9195-B6FFA3332ADC}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{072C451B-6BAE-4686-BF64-9D44DDDCDCFB}</Id></AttrParent><AttrChild><Id>{0E503151-A4E9-4192-A51F-3E4927AC76A5}</Id></AttrChild><KeyConstraintItem><Id>{7AFCE02E-BD5F-4314-9FD9-8DC48C3DFE4D}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{1C07089B-ECB7-4DA6-AAAB-A825FE02BCBB}</Id><Name>MO_MT_FK</Name><Ordinal>0</Ordinal><HistoryID>{4B19176E-025C-42EA-BF92-F74EFA5987F3}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{354FE78A-1E56-4E35-A215-677789C90D8E}</Id></O1><O2><Id>{C6330133-EB65-48BA-A95C-E63297E787FA}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>MO_MT_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{4BC86140-24E9-487A-8E8D-D2902BE1AAFF}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{BEC4D1BE-290C-496B-805B-7A0E0346293F}</Id><Name>FK ID - MOTY_ID</Name><Ordinal>0</Ordinal><HistoryID>{0617BBA9-5D12-44EA-B501-3CFEF19BCCD2}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{6501142E-F2F6-4E6D-BF03-CC0DBF01528E}</Id></AttrParent><AttrChild><Id>{9381C110-5E62-41EF-841F-B14A6D4C7C11}</Id></AttrChild><KeyConstraintItem><Id>{E8F879F3-B7AA-4963-962A-A2390F0DF547}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{06F39E50-6443-4609-9C4B-90F53FEE4B1F}</Id><Name>AB_AT_FK</Name><Ordinal>0</Ordinal><HistoryID>{EC52CD4F-E87A-4798-AC1F-2EE5FEF85044}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{48113A84-9E89-4C5C-BD76-6CBEDB941774}</Id></O1><O2><Id>{2EC3C77E-EBC5-40C3-9DB7-10FEE36E0BAB}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>AB_AT_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{E22873EC-BA7C-47F2-88D5-A9883015C546}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{187CA4C4-02C0-4987-A80F-FC32FDF29E8F}</Id><Name>FK ID - ABTY_ID</Name><Ordinal>0</Ordinal><HistoryID>{505B5A62-E220-447B-B112-DE90BF5DC058}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{D0A9C475-886C-4A1C-85FE-9CF2605B30F5}</Id></AttrParent><AttrChild><Id>{DE91AB5B-3C4E-4871-A4A0-E73FF8C85FDA}</Id></AttrChild><KeyConstraintItem><Id>{E4AAFD67-74B6-4AE7-97E2-633AFCFF3AE9}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{5C98C88F-84FF-4A0B-8D79-B69B7AA18DEF}</Id><Name>PR_AB_FK</Name><Ordinal>0</Ordinal><HistoryID>{93BA3621-AC82-4F19-AC29-BDF8EE60ECCB}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{2EC3C77E-EBC5-40C3-9DB7-10FEE36E0BAB}</Id></O1><O2><Id>{4D0E1B21-B579-40B2-ADBD-1E5279496605}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>PR_AB_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{13927315-394F-4C6E-B4AD-2911CFC4321B}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{7DFC5F06-AC0F-4688-83ED-52EDAEB466B8}</Id><Name>FK ID - ABUN_ID</Name><Ordinal>0</Ordinal><HistoryID>{8082F4A6-3FB9-49F8-9A45-3FBF53FB058F}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{CB637274-571B-4445-AEB5-8D0BE74C8EE6}</Id></AttrParent><AttrChild><Id>{330981DD-A7D0-4DEA-BA3B-75F3878F1337}</Id></AttrChild><KeyConstraintItem><Id>{F0D22707-8C24-4C0B-B39A-08B622B3FE09}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{BF7DE2D9-C7B1-4092-B1B0-6B81D74063B9}</Id><Name>MP_AB_FK</Name><Ordinal>0</Ordinal><HistoryID>{D7D18C0F-08E2-4241-A949-C1B42E957F05}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{2EC3C77E-EBC5-40C3-9DB7-10FEE36E0BAB}</Id></O1><O2><Id>{8FA1A92A-1608-4F51-AB1C-FD25532AEAEC}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>MP_AB_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{13927315-394F-4C6E-B4AD-2911CFC4321B}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{7E95BBE7-A491-4E4D-8196-D6E252B55CF7}</Id><Name>FK ID - ABUN_ID</Name><Ordinal>0</Ordinal><HistoryID>{639B4620-ECA6-4F88-AA9F-6DAAC08A4D4B}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{CB637274-571B-4445-AEB5-8D0BE74C8EE6}</Id></AttrParent><AttrChild><Id>{BFE469B3-D958-4FB6-AAC9-7ABBBB51F46A}</Id></AttrChild><KeyConstraintItem><Id>{F0D22707-8C24-4C0B-B39A-08B622B3FE09}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{5D9B0396-10B7-42D2-BD72-2245DD5C8266}</Id><Name>PR_PS_FK</Name><Ordinal>0</Ordinal><HistoryID>{843F14ED-FFF8-46F2-B10D-89EB248D0A7C}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{CC484442-F442-4CBD-8ED2-FA2E0AA8786E}</Id></O1><O2><Id>{4D0E1B21-B579-40B2-ADBD-1E5279496605}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>PR_PS_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{D9721002-8013-4996-9268-A68A9CCD8479}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{46EAED54-0E92-4EB7-B203-9DBF642E965B}</Id><Name>FK ID - PRST_ID</Name><Ordinal>0</Ordinal><HistoryID>{7863611B-4BEC-4828-944F-408B52A922C4}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{38EEC1F3-C8E9-4299-B742-2B5E7BD67D1B}</Id></AttrParent><AttrChild><Id>{BB888BC0-3038-423B-A51D-FA6881F6BA09}</Id></AttrChild><KeyConstraintItem><Id>{12F7E246-4C4C-4CDF-8C08-CEE50B5CAFDC}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{26A198D6-3F41-4FEB-A08B-506410FC6358}</Id><Name>MO_ID_FK</Name><Ordinal>0</Ordinal><HistoryID>{A3954370-7CA0-442D-B45E-4C61F5751C82}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{ADBA7BCF-529D-4AA8-9D4E-3EABE4F31C83}</Id></O1><O2><Id>{8FA1A92A-1608-4F51-AB1C-FD25532AEAEC}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>MO_ID_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{4996E535-27F2-4077-97EA-37A0D1B608E6}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{765CB159-026A-4525-82FB-E3C41191792E}</Id><Name>FK ID - IDDA_ID</Name><Ordinal>0</Ordinal><HistoryID>{D5B3CEA0-583D-4DE1-ACF5-BFEC8B90BDC6}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{B3CB2060-A316-4A03-9E4C-BB5FB9E8CF78}</Id></AttrParent><AttrChild><Id>{F61297BB-9AF8-47D5-BC9B-91D35924F056}</Id></AttrChild><KeyConstraintItem><Id>{B3FD85E9-8C2E-4E75-B1B2-D96C2F537EAA}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82><PERRelationPG82 ObjectType="2004" CSAOName="PERRelationPG82"><Id>{05289350-8699-452A-BC9E-5A8EDC7761DE}</Id><Name>ID_SP_FK</Name><Ordinal>0</Ordinal><HistoryID>{A98614A2-5439-4252-A086-C6E5AE2E05E4}</HistoryID><GlobalOrder>0</GlobalOrder><O1><Id>{4A557542-27F7-4AC9-B71B-4DAD2E976974}</Id></O1><O2><Id>{ADBA7BCF-529D-4AA8-9D4E-3EABE4F31C83}</Id></O2><GenerateCode>1</GenerateCode><Comments></Comments><Notes></Notes><Identifying>0</Identifying><MandatoryParent>0</MandatoryParent><MandatoryChild>0</MandatoryChild><CardinalityChild>-1</CardinalityChild><InverseName></InverseName><Caption>ID_SP_FK</Caption><InverseCaption></InverseCaption><RefIntegrityParentUpdate>0</RefIntegrityParentUpdate><RefIntegrityParentDelete>0</RefIntegrityParentDelete><RefIntegrityChildUpdate>0</RefIntegrityChildUpdate><RefIntegrityChildInsert>0</RefIntegrityChildInsert><Key><Id>{B68FE97A-46FC-4643-A1BC-7188AF909D01}</Id></Key><ForeignKeys><PERForeignKeyPG82 ObjectType="2014" CSAOName="PERForeignKeyPG82"><Id>{911E8154-6F3F-420E-AF22-EA7217A185CD}</Id><Name>FK ID - SPEC_ID</Name><Ordinal>0</Ordinal><HistoryID>{BA26089D-3BEF-44C5-8BFF-9856AE426400}</HistoryID><GlobalOrder>0</GlobalOrder><GenerateCode>1</GenerateCode><BeforeScript></BeforeScript><AfterScript></AfterScript><Notes></Notes><Comments></Comments><AttrParent><Id>{85BCE757-9B63-4336-BD77-BB3A8EB9664D}</Id></AttrParent><AttrChild><Id>{EFBD75F7-5ADE-4C05-8A17-749F312AB35E}</Id></AttrChild><KeyConstraintItem><Id>{94492022-19BB-45A8-9F8F-28CC08E6CE09}</Id></KeyConstraintItem></PERForeignKeyPG82></ForeignKeys><ToDoItems/><Deferred>0</Deferred><Deferrable>0</Deferrable><MatchType>SIMPLE</MatchType><CreateIndexToFK>1</CreateIndexToFK></PERRelationPG82></Relations><Defaults/><Rules/><UserGroups/><Users/><InstanceUserGroupRelations/><Procedures/><Views/><Schemas/><Functions/><Synonyms/><MaterializedViews/><Sequences/><Tablespaces/><Aggregates/></PERModelPG82> diff --git a/rtd_phosphonetx/source/sql/postgresql/001/schema-001.sql b/rtd_phosphonetx/source/sql/postgresql/001/schema-001.sql new file mode 100644 index 00000000000..1286d7c610c --- /dev/null +++ b/rtd_phosphonetx/source/sql/postgresql/001/schema-001.sql @@ -0,0 +1,269 @@ +/* +Created: 06/05/2009 +Modified: 20/05/2009 +Model: Proteomics +Database: PostgreSQL 8.2 +*/ + +-- Create domain types section ------------------------------------------------- + +CREATE DOMAIN BINARY_DATA AS Bytea +; + +CREATE DOMAIN CHECKSUM AS Character varying(8) +; + +CREATE DOMAIN CODE AS Character varying(40) +; + +CREATE DOMAIN INTEGER_NUMBER AS Integer +; + +CREATE DOMAIN REAL_NUMBER AS Double precision +; + +CREATE DOMAIN SEQUENCE AS Text +; + +CREATE DOMAIN SHORT_DESCRIPTION AS Character varying(200) +; + +CREATE DOMAIN TECH_ID AS Bigint +; + +-- Create tables section ------------------------------------------------- + +-- Table ABUNDANCES + +CREATE TABLE ABUNDANCES( + ID TECH_ID NOT NULL, + ABTY_ID TECH_ID NOT NULL, + AMOUNT REAL_NUMBER NOT NULL +) +WITH (OIDS=FALSE) +; + +-- Add keys for table ABUNDANCES + +ALTER TABLE ABUNDANCES ADD CONSTRAINT ABUN_PK PRIMARY KEY (ID) +; + +-- Table ABUNDANCES_TYPES + +CREATE TABLE ABUNDANCES_TYPES( + ID TECH_ID NOT NULL, + CODE CODE NOT NULL, + DESCRIPTION SHORT_DESCRIPTION +) +WITH (OIDS=FALSE) +; + +-- Add keys for table ABUNDANCES_TYPES + +ALTER TABLE ABUNDANCES_TYPES ADD CONSTRAINT ABTY_PK PRIMARY KEY (ID) +; + +ALTER TABLE ABUNDANCES_TYPES ADD CONSTRAINT ABTY_CODE_BK UNIQUE (CODE) +; + +-- Table IDENTIFICATION_DATA + +CREATE TABLE IDENTIFICATION_DATA( + ID TECH_ID NOT NULL, + SPEC_ID TECH_ID, + SPECTRA_COUNT INTEGER_NUMBER +) +WITH (OIDS=FALSE) +; + +-- Table MODIFICATIONS + +CREATE TABLE MODIFICATIONS( + ID TECH_ID NOT NULL, + MOPE_ID TECH_ID NOT NULL, + MOTY_ID TECH_ID NOT NULL, + POSITION INTEGER_NUMBER NOT NULL, + MASS REAL_NUMBER NOT NULL +) +WITH (OIDS=FALSE) +; + +-- Add keys for table MODIFICATIONS + +ALTER TABLE MODIFICATIONS ADD CONSTRAINT MODI_PK PRIMARY KEY (ID) +; + +-- Table MODIFICATION_TYPES + +CREATE TABLE MODIFICATION_TYPES( + ID TECH_ID NOT NULL, + CODE CODE NOT NULL, + DESCRIPTION SHORT_DESCRIPTION, + MASS REAL_NUMBER, + DELTA_MASS REAL_NUMBER +) +WITH (OIDS=FALSE) +; + +-- Add keys for table MODIFICATION_TYPES + +ALTER TABLE MODIFICATION_TYPES ADD CONSTRAINT MOTY_PK PRIMARY KEY (ID) +; + +ALTER TABLE MODIFICATION_TYPES ADD CONSTRAINT MOTY_CODE_BK UNIQUE (CODE) +; + +-- Table MODIFIED_PEPTIDES + +CREATE TABLE MODIFIED_PEPTIDES( + ID TECH_ID NOT NULL, + PEPT_ID TECH_ID NOT NULL, + ABUN_ID TECH_ID, + IDDA_ID TECH_ID, + CHARGE INTEGER_NUMBER NOT NULL +) +WITH (OIDS=FALSE) +; + +-- Add keys for table MODIFIED_PEPTIDES + +ALTER TABLE MODIFIED_PEPTIDES ADD CONSTRAINT MOPE_PK PRIMARY KEY (ID) +; + +-- Table PEPTIDES + +CREATE TABLE PEPTIDES( + ID TECH_ID NOT NULL, + PROT_ID TECH_ID NOT NULL, + SEQU_ID TECH_ID NOT NULL +) +WITH (OIDS=FALSE) +; + +-- Add keys for table PEPTIDES + +ALTER TABLE PEPTIDES ADD CONSTRAINT PEPT_PK PRIMARY KEY (ID) +; + +-- Table PROTEIN_STATISTICS + +CREATE TABLE PROTEIN_STATISTICS( + ID TECH_ID NOT NULL +) +WITH (OIDS=FALSE) +; + +-- Add keys for table PROTEIN_STATISTICS + +ALTER TABLE PROTEIN_STATISTICS ADD CONSTRAINT PRST_PK PRIMARY KEY (ID) +; + +-- Table PROTEINS + +CREATE TABLE PROTEINS( + ID TECH_ID NOT NULL, + SEQU_ID TECH_ID NOT NULL, + ABUN_ID TECH_ID, + PRST_ID TECH_ID +) +WITH (OIDS=FALSE) +; + +-- Add keys for table PROTEINS + +ALTER TABLE PROTEINS ADD CONSTRAINT PROT_PK PRIMARY KEY (ID) +; + +-- Table SEQUENCES + +CREATE TABLE SEQUENCES( + ID TECH_ID NOT NULL, + AMINO_ACID_SEQUENCE SEQUENCE NOT NULL, + CHECKSUM CHECKSUM NOT NULL +) +WITH (OIDS=FALSE) +; + +-- Add keys for table SEQUENCES + +ALTER TABLE SEQUENCES ADD CONSTRAINT SEQU_PK PRIMARY KEY (ID) +; + +-- Table SPECTRA + +CREATE TABLE SPECTRA( + ID TECH_ID NOT NULL, + DATA BINARY_DATA NOT NULL +) +WITH (OIDS=FALSE) +; + +-- Add keys for table SPECTRA + +ALTER TABLE SPECTRA ADD CONSTRAINT SPEC_PK PRIMARY KEY (ID) +; + +-- Create relationships section ------------------------------------------------- + +CREATE INDEX IX_PE_PR_FK_PEPTIDES ON PEPTIDES (PROT_ID) +; +ALTER TABLE PEPTIDES ADD CONSTRAINT PE_PR_FK FOREIGN KEY (PROT_ID) REFERENCES PROTEINS (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_PE_SE_FK_PEPTIDES ON PEPTIDES (SEQU_ID) +; +ALTER TABLE PEPTIDES ADD CONSTRAINT PE_SE_FK FOREIGN KEY (SEQU_ID) REFERENCES SEQUENCES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_PR_SE_FK_PROTEINS ON PROTEINS (SEQU_ID) +; +ALTER TABLE PROTEINS ADD CONSTRAINT PR_SE_FK FOREIGN KEY (SEQU_ID) REFERENCES SEQUENCES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_MO_PE_FK_MODIFIED_PEPTIDES ON MODIFIED_PEPTIDES (PEPT_ID) +; +ALTER TABLE MODIFIED_PEPTIDES ADD CONSTRAINT MO_PE_FK FOREIGN KEY (PEPT_ID) REFERENCES PEPTIDES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_MO_MP_FK_MODIFICATIONS ON MODIFICATIONS (MOPE_ID) +; +ALTER TABLE MODIFICATIONS ADD CONSTRAINT MO_MP_FK FOREIGN KEY (MOPE_ID) REFERENCES MODIFIED_PEPTIDES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_MO_MT_FK_MODIFICATIONS ON MODIFICATIONS (MOTY_ID) +; +ALTER TABLE MODIFICATIONS ADD CONSTRAINT MO_MT_FK FOREIGN KEY (MOTY_ID) REFERENCES MODIFICATION_TYPES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_AB_AT_FK_ABUNDANCES ON ABUNDANCES (ABTY_ID) +; +ALTER TABLE ABUNDANCES ADD CONSTRAINT AB_AT_FK FOREIGN KEY (ABTY_ID) REFERENCES ABUNDANCES_TYPES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_PR_AB_FK_PROTEINS ON PROTEINS (ABUN_ID) +; +ALTER TABLE PROTEINS ADD CONSTRAINT PR_AB_FK FOREIGN KEY (ABUN_ID) REFERENCES ABUNDANCES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_MP_AB_FK_MODIFIED_PEPTIDES ON MODIFIED_PEPTIDES (ABUN_ID) +; +ALTER TABLE MODIFIED_PEPTIDES ADD CONSTRAINT MP_AB_FK FOREIGN KEY (ABUN_ID) REFERENCES ABUNDANCES (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_PR_PS_FK_PROTEINS ON PROTEINS (PRST_ID) +; +ALTER TABLE PROTEINS ADD CONSTRAINT PR_PS_FK FOREIGN KEY (PRST_ID) REFERENCES PROTEIN_STATISTICS (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_MO_ID_FK_MODIFIED_PEPTIDES ON MODIFIED_PEPTIDES (IDDA_ID) +; +ALTER TABLE MODIFIED_PEPTIDES ADD CONSTRAINT MO_ID_FK FOREIGN KEY (IDDA_ID) REFERENCES IDENTIFICATION_DATA (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + +CREATE INDEX IX_ID_SP_FK_IDENTIFICATION_DATA ON IDENTIFICATION_DATA (SPEC_ID) +; +ALTER TABLE IDENTIFICATION_DATA ADD CONSTRAINT ID_SP_FK FOREIGN KEY (SPEC_ID) REFERENCES SPECTRA (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +; + + + diff --git a/rtd_phosphonetx/.gitignore b/rtd_phosphonetx/sourceTest/java/ch/systemsx/cisd/phosphonetx/.gitignore similarity index 100% rename from rtd_phosphonetx/.gitignore rename to rtd_phosphonetx/sourceTest/java/ch/systemsx/cisd/phosphonetx/.gitignore diff --git a/rtd_phosphonetx/sourceTest/java/tests.xml b/rtd_phosphonetx/sourceTest/java/tests.xml new file mode 100644 index 00000000000..565cc7dc0c2 --- /dev/null +++ b/rtd_phosphonetx/sourceTest/java/tests.xml @@ -0,0 +1,12 @@ +<suite name="All" verbose="2" > + <test name="All" annotations="JDK"> + <groups> + <run> + <exclude name="broken" /> + </run> + </groups> + <packages> + <package name="ch.systemsx.cisd.phosphonetx.*" /> + </packages> + </test> +</suite> -- GitLab