activefacts-examples 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +1 -0
- data/.travis.yml +4 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +21 -0
- data/README.md +22 -0
- data/Rakefile +6 -0
- data/activefacts-examples.gemspec +26 -0
- data/cql/Address.cql +44 -0
- data/cql/Astronomy.cql +35 -0
- data/cql/Blog.cql +54 -0
- data/cql/CinemaBookings.cql +64 -0
- data/cql/CinemaTickets.cql +127 -0
- data/cql/CompanyDirectorEmployee.cql +56 -0
- data/cql/Death.cql +17 -0
- data/cql/Diplomacy.cql +48 -0
- data/cql/Genealogy.cql +98 -0
- data/cql/Health.cql +78 -0
- data/cql/Insurance.cql +320 -0
- data/cql/Marriage.cql +18 -0
- data/cql/Metamodel.cql +567 -0
- data/cql/Monogamy.cql +24 -0
- data/cql/MultiInheritance.cql +22 -0
- data/cql/MultipleSubtyping.cql +30 -0
- data/cql/NonRoleId.cql +14 -0
- data/cql/OddIdentifier.cql +18 -0
- data/cql/OilSupply.cql +53 -0
- data/cql/OneRoleNesting.cql +38 -0
- data/cql/OneToOnes.cql +17 -0
- data/cql/Orienteering.cql +111 -0
- data/cql/PartyModel.cql +38 -0
- data/cql/PersonPlaysGame.cql +18 -0
- data/cql/RedundantDependency.cql +34 -0
- data/cql/SchoolActivities.cql +33 -0
- data/cql/SeparateSubtype.cql +30 -0
- data/cql/ServiceDirector.cql +276 -0
- data/cql/SimplestUnary.cql +12 -0
- data/cql/Supervision.cql +34 -0
- data/cql/VenueSeating.cql +45 -0
- data/cql/WaiterTips.cql +33 -0
- data/cql/Warehousing.cql +101 -0
- data/cql/WindowInRoomInBldg.cql +28 -0
- data/cql/unit.cql +474 -0
- data/diagrams/json/Address.json +41 -0
- data/diagrams/json/Astronomy.json +31 -0
- data/diagrams/json/Blog.json +46 -0
- data/diagrams/json/CinemaBookings.json +53 -0
- data/diagrams/json/CinemaTickets.json +101 -0
- data/diagrams/json/CompanyDirectorEmployee.json +44 -0
- data/diagrams/json/Death.json +20 -0
- data/diagrams/json/Diplomacy.json +34 -0
- data/diagrams/json/Genealogy.json +78 -0
- data/diagrams/json/Insurance.json +259 -0
- data/diagrams/json/Marriage.json +21 -0
- data/diagrams/json/Metamodel.json +318 -0
- data/diagrams/json/Monogamy.json +22 -0
- data/diagrams/json/MultiInheritance.json +25 -0
- data/diagrams/json/MultipleSubtyping.json +22 -0
- data/diagrams/json/OilSupply.json +49 -0
- data/diagrams/json/OneRoleNesting.json +37 -0
- data/diagrams/json/Orienteering.json +94 -0
- data/diagrams/json/PersonPlaysGame.json +22 -0
- data/diagrams/json/RedundantDependency.json +33 -0
- data/diagrams/json/SchoolActivities.json +28 -0
- data/diagrams/json/SeparateSubtype.json +29 -0
- data/diagrams/json/SimplestUnary.json +15 -0
- data/diagrams/json/Supervision.json +27 -0
- data/diagrams/json/VenueSeating.json +40 -0
- data/diagrams/json/WaiterTips.json +29 -0
- data/diagrams/json/Warehousing.json +86 -0
- data/diagrams/json/WindowInRoomInBldg.json +31 -0
- data/images/Address.SQL.png +0 -0
- data/images/Address.png +0 -0
- data/images/Blog.png +0 -0
- data/images/CinemaBookings.png +0 -0
- data/images/CinemaTickets.png +0 -0
- data/images/CompanyDirectorEmployee.png +0 -0
- data/images/Death.png +0 -0
- data/images/Diplomacy.png +0 -0
- data/images/DumpMetamodel.bat +2 -0
- data/images/Genealogy.png +0 -0
- data/images/Insurance/Claim.png +0 -0
- data/images/Insurance/Insurance.png +0 -0
- data/images/Insurance/Person.png +0 -0
- data/images/Insurance/Policy.png +0 -0
- data/images/Insurance/Related.png +0 -0
- data/images/Insurance/VehicleIncident.png +0 -0
- data/images/Marriage.png +0 -0
- data/images/Metamodel/Concepts.png +0 -0
- data/images/Metamodel/Constraints.png +0 -0
- data/images/Metamodel/ContextNote.png +0 -0
- data/images/Metamodel/Diagrams.png +0 -0
- data/images/Metamodel/Language.png +0 -0
- data/images/Metamodel/Legacy.png +0 -0
- data/images/Metamodel/Objects.png +0 -0
- data/images/Metamodel/Populations.png +0 -0
- data/images/Metamodel/Query.png +0 -0
- data/images/Metamodel/Units.png +0 -0
- data/images/Metamodel/ValueConstraints.png +0 -0
- data/images/Metamodel/ValueTypes.png +0 -0
- data/images/MetamodelER.bcp +1 -0
- data/images/MetamodelER.pdf +0 -0
- data/images/MultiInheritance.png +0 -0
- data/images/NorthwindER.png +0 -0
- data/images/OilSupply.png +0 -0
- data/images/Orienteering/Administration.png +0 -0
- data/images/Orienteering/Registration.png +0 -0
- data/images/Orienteering/Scoring.png +0 -0
- data/images/PersonPlaysGame.png +0 -0
- data/images/RedundantDependency.png +0 -0
- data/images/SchoolActivities.png +0 -0
- data/images/SeparateSubtype.png +0 -0
- data/images/SimplestUnary.png +0 -0
- data/images/Supervision.png +0 -0
- data/images/VenueSeating.png +0 -0
- data/images/WaiterTips.png +0 -0
- data/images/Warehousing.png +0 -0
- data/images/WindowInRoomInBldg.png +0 -0
- data/metadata/json/Astronomy.json +175 -0
- data/metadata/json/CinemaBookings.json +354 -0
- data/metadata/json/CinemaTickets.json +768 -0
- data/metadata/json/CompanyDirectorEmployee.json +270 -0
- data/metadata/json/Diplomacy.json +186 -0
- data/metadata/json/Metamodel.json +3214 -0
- data/metadata/json/OilSupply.json +411 -0
- data/metadata/json/SeparateSubtype.json +157 -0
- data/metadata/json/Supervision.json +128 -0
- data/metadata/json/VenueSeating.json +209 -0
- data/orm/.gitignore +11 -0
- data/orm/Address.orm +1268 -0
- data/orm/Astronomy.orm +925 -0
- data/orm/Blog.orm +1711 -0
- data/orm/CinemaBookings.orm +1998 -0
- data/orm/CinemaTickets.orm +5060 -0
- data/orm/CompanyDirectorEmployee.orm +2094 -0
- data/orm/Death.orm +386 -0
- data/orm/Diplomacy.orm +1478 -0
- data/orm/ExampleModels2010.csproj +764 -0
- data/orm/ExampleModels2010.sln +16 -0
- data/orm/Genealogy.orm +3209 -0
- data/orm/Health.orm +2407 -0
- data/orm/Insurance.orm +12727 -0
- data/orm/Marriage.orm +493 -0
- data/orm/Metamodel.orm +20998 -0
- data/orm/Monogamy.orm +328 -0
- data/orm/MultiInheritance.orm +537 -0
- data/orm/MultipleSubtyping.orm +347 -0
- data/orm/OilSupply.orm +2533 -0
- data/orm/OneRoleNesting.orm +1237 -0
- data/orm/Orienteering.orm +3976 -0
- data/orm/PersonPlaysGame.orm +426 -0
- data/orm/RedundantDependency.orm +844 -0
- data/orm/SchoolActivities.orm +961 -0
- data/orm/SeparateSubtype.orm +821 -0
- data/orm/SimplestUnary.orm +172 -0
- data/orm/Supervision.orm +734 -0
- data/orm/VenueSeating.orm +1289 -0
- data/orm/WaiterTips.orm +789 -0
- data/orm/Warehousing.orm +3792 -0
- data/orm/WindowInRoomInBldg.orm +772 -0
- data/rails/models/Astronomy.models +17 -0
- data/rails/models/CinemaBookings.models +123 -0
- data/rails/models/CinemaTickets.models +192 -0
- data/rails/models/Diplomacy.models +126 -0
- data/rails/models/Metamodel.models +894 -0
- data/rails/models/OneRoleNesting.models +18 -0
- data/rails/models/SeparateSubtype.models +49 -0
- data/rails/models/VenueSeating.models +70 -0
- data/rails/schema/Astronomy.schema.rb +25 -0
- data/rails/schema/CinemaBookings.schema.rb +78 -0
- data/rails/schema/CinemaTickets.schema.rb +132 -0
- data/rails/schema/Diplomacy.schema.rb +74 -0
- data/rails/schema/Metamodel.schema.rb +538 -0
- data/rails/schema/OneRoleNesting.rb +20 -0
- data/rails/schema/SeparateSubtype.schema.rb +35 -0
- data/rails/schema/VenueSeating.schema.rb +46 -0
- data/rails/schema/Warehousing.schema.rb +145 -0
- data/ruby/Address.rb +68 -0
- data/ruby/Astronomy.rb +55 -0
- data/ruby/Blog.rb +84 -0
- data/ruby/CinemaBookings.rb +109 -0
- data/ruby/CinemaTickets.rb +218 -0
- data/ruby/CompanyDirectorEmployee.rb +73 -0
- data/ruby/Death.rb +26 -0
- data/ruby/Diplomacy.rb +59 -0
- data/ruby/Genealogy.rb +173 -0
- data/ruby/Insurance.rb +562 -0
- data/ruby/Marriage.rb +21 -0
- data/ruby/Metamodel.rb +621 -0
- data/ruby/Monogamy.rb +27 -0
- data/ruby/MultiInheritance.rb +38 -0
- data/ruby/OilSupply.rb +112 -0
- data/ruby/OneRoleNesting.rb +66 -0
- data/ruby/Orienteering.rb +216 -0
- data/ruby/PersonPlaysGame.rb +31 -0
- data/ruby/RedundantDependency.rb +53 -0
- data/ruby/SchoolActivities.rb +49 -0
- data/ruby/SeparateSubtype.rb +46 -0
- data/ruby/SimplestUnary.rb +10 -0
- data/ruby/Supervision.rb +33 -0
- data/ruby/TwoValues.rb +14 -0
- data/ruby/VenueSeating.rb +64 -0
- data/ruby/WaiterTips.rb +49 -0
- data/ruby/Warehousing.rb +167 -0
- data/ruby/WindowInRoomInBldg.rb +45 -0
- data/sql/server/Address.sql +40 -0
- data/sql/server/Astronomy.sql +36 -0
- data/sql/server/Blog.sql +78 -0
- data/sql/server/CinemaBookings.sql +95 -0
- data/sql/server/CinemaTickets.sql +191 -0
- data/sql/server/CompanyDirectorEmployee.sql +104 -0
- data/sql/server/Death.sql +11 -0
- data/sql/server/Diplomacy.sql +66 -0
- data/sql/server/Genealogy.sql +138 -0
- data/sql/server/Health.sql +169 -0
- data/sql/server/Insurance.sql +484 -0
- data/sql/server/Marriage.sql +30 -0
- data/sql/server/Metamodel.sql +1000 -0
- data/sql/server/Monogamy.sql +20 -0
- data/sql/server/MultiInheritance.sql +27 -0
- data/sql/server/OilSupply.sql +105 -0
- data/sql/server/OneRoleNesting.sql +29 -0
- data/sql/server/Orienteering.sql +186 -0
- data/sql/server/PersonPlaysGame.sql +9 -0
- data/sql/server/RedundantDependency.sql +54 -0
- data/sql/server/SchoolActivities.sql +30 -0
- data/sql/server/SeparateSubtype.sql +33 -0
- data/sql/server/SimplestUnary.sql +9 -0
- data/sql/server/Supervision.sql +30 -0
- data/sql/server/VenueSeating.sql +54 -0
- data/sql/server/WaiterTips.sql +31 -0
- data/sql/server/Warehousing.sql +203 -0
- data/sql/server/WindowInRoomInBldg.sql +13 -0
- data/transform/surrogate/Address.absorption +2 -0
- data/transform/surrogate/Blog.absorption +5 -0
- data/transform/surrogate/CinemaBookings.absorption +7 -0
- data/transform/surrogate/CompanyDirectorEmployee.absorption +7 -0
- data/transform/surrogate/Death.absorption +1 -0
- data/transform/surrogate/Diplomacy-revised.absorption +6 -0
- data/transform/surrogate/Diplomacy.absorption +6 -0
- data/transform/surrogate/Genealogy.absorption +8 -0
- data/transform/surrogate/Insurance.absorption +18 -0
- data/transform/surrogate/Marriage.absorption +2 -0
- data/transform/surrogate/Metamodel.absorption +25 -0
- data/transform/surrogate/Monogamy.absorption +1 -0
- data/transform/surrogate/MultiInheritance.absorption +1 -0
- data/transform/surrogate/MultipleSubtyping.absorption +1 -0
- data/transform/surrogate/OilSupply.absorption +8 -0
- data/transform/surrogate/OneRoleNesting.absorption +1 -0
- data/transform/surrogate/Orienteering.absorption +11 -0
- data/transform/surrogate/PersonPlaysGame.absorption +1 -0
- data/transform/surrogate/RedundantDependency.absorption +3 -0
- data/transform/surrogate/SchoolActivities.absorption +3 -0
- data/transform/surrogate/SeparateSubtype.absorption +3 -0
- data/transform/surrogate/SimplestUnary.absorption +1 -0
- data/transform/surrogate/Supervision.absorption +2 -0
- data/transform/surrogate/WaiterTips.absorption +3 -0
- data/transform/surrogate/Warehousing.absorption +12 -0
- data/transform/surrogate/WindowInRoomInBldg.absorption +1 -0
- data/transform/surrogate/unit.absorption +0 -0
- metadata +374 -0
data/orm/Health.orm
ADDED
|
@@ -0,0 +1,2407 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<ormRoot:ORM2 xmlns:orm="http://schemas.neumont.edu/ORM/2006-04/ORMCore" xmlns:ormDiagram="http://schemas.neumont.edu/ORM/2006-04/ORMDiagram" xmlns:ormRoot="http://schemas.neumont.edu/ORM/2006-04/ORMRoot">
|
|
3
|
+
<orm:ORMModel id="_BFD2778B-A57D-47D4-ABD8-54EC29B8304C" Name="Health">
|
|
4
|
+
<orm:Objects>
|
|
5
|
+
<orm:EntityType id="_8996F3CF-C2DF-4B43-9CFA-D20C4B1903D7" Name="Party" _ReferenceMode="ID">
|
|
6
|
+
<orm:PlayedRoles>
|
|
7
|
+
<orm:Role ref="_58C583F7-4965-4ED9-9D71-DAC4EC7507F4" />
|
|
8
|
+
<orm:SupertypeMetaRole ref="_230F4047-5914-42FF-811D-C14924F35165" />
|
|
9
|
+
</orm:PlayedRoles>
|
|
10
|
+
<orm:PreferredIdentifier ref="_FEEE6963-6B21-4E7E-9275-244A33844C35" />
|
|
11
|
+
</orm:EntityType>
|
|
12
|
+
<orm:ValueType id="_E5E81613-1442-4A5C-9EC8-CC49124ED045" Name="Party ID">
|
|
13
|
+
<orm:PlayedRoles>
|
|
14
|
+
<orm:Role ref="_E44B6B1B-5B78-4EC3-B8A0-A860AE207E40" />
|
|
15
|
+
</orm:PlayedRoles>
|
|
16
|
+
<orm:ConceptualDataType id="_2B6E5DE2-3C4E-4B9D-8C3D-5252E9967BF0" ref="_67B71B45-728A-4845-ACED-C10799B7603C" Scale="0" Length="0" />
|
|
17
|
+
</orm:ValueType>
|
|
18
|
+
<orm:EntityType id="_77E51608-1C7F-487F-B7B0-A38A53CAB8E4" Name="Stakeholder" _ReferenceMode="">
|
|
19
|
+
<orm:PlayedRoles>
|
|
20
|
+
<orm:SubtypeMetaRole ref="_0424A384-148C-4077-BB77-2E0F9581F1F2" />
|
|
21
|
+
<orm:SupertypeMetaRole ref="_2A2C91F2-B04F-4EAD-8CEF-C654380840DE" />
|
|
22
|
+
<orm:SupertypeMetaRole ref="_72942E51-D7C2-4ECA-88A9-EC9AFE83BBCB" />
|
|
23
|
+
</orm:PlayedRoles>
|
|
24
|
+
</orm:EntityType>
|
|
25
|
+
<orm:EntityType id="_EDCBFCD8-1088-42F2-A277-BBA2A194AA1D" Name="Policy Holder" _ReferenceMode="">
|
|
26
|
+
<orm:PlayedRoles>
|
|
27
|
+
<orm:SubtypeMetaRole ref="_52E77B2C-A61A-4986-B240-E04C2CA82858" />
|
|
28
|
+
<orm:Role ref="_71AD544F-B578-4B72-BAE8-BEB89BCDC61E" />
|
|
29
|
+
</orm:PlayedRoles>
|
|
30
|
+
</orm:EntityType>
|
|
31
|
+
<orm:EntityType id="_16EB6AB4-FB64-4E91-AE7F-F1C9C1FEADC1" Name="Claimant" _ReferenceMode="">
|
|
32
|
+
<orm:PlayedRoles>
|
|
33
|
+
<orm:SubtypeMetaRole ref="_6B02AA35-F892-4952-992D-88AE37D2E2CA" />
|
|
34
|
+
<orm:Role ref="_CA897ED4-5C9F-4E32-8BD6-7977321CCC83" />
|
|
35
|
+
</orm:PlayedRoles>
|
|
36
|
+
</orm:EntityType>
|
|
37
|
+
<orm:EntityType id="_FAE00053-F8C0-4BD1-AA51-D6C664B3A76D" Name="Insurer" _ReferenceMode="Name">
|
|
38
|
+
<orm:PlayedRoles>
|
|
39
|
+
<orm:Role ref="_945A9E2B-8E97-428F-8946-1277CB3AB5A5" />
|
|
40
|
+
<orm:Role ref="_7B239EB8-6599-4D16-BFD8-0AE588EE1DD4" />
|
|
41
|
+
<orm:Role ref="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" />
|
|
42
|
+
</orm:PlayedRoles>
|
|
43
|
+
<orm:PreferredIdentifier ref="_F339BFCC-D016-4FE7-A134-CDB6FF1D6B9D" />
|
|
44
|
+
</orm:EntityType>
|
|
45
|
+
<orm:ValueType id="_4BF9D664-3643-4948-B2E7-8BA6D4C1E012" Name="Insurer Name">
|
|
46
|
+
<orm:PlayedRoles>
|
|
47
|
+
<orm:Role ref="_D02C70B9-4D66-47BB-A72E-BA3BD96E4E3C" />
|
|
48
|
+
</orm:PlayedRoles>
|
|
49
|
+
<orm:ConceptualDataType id="_4594ECC0-E01B-4DCD-98AF-54F4B11D1BA9" ref="_587EA24A-5FB1-4759-B18A-6763265BE70E" Scale="0" Length="0" />
|
|
50
|
+
</orm:ValueType>
|
|
51
|
+
<orm:EntityType id="_173CFC3A-2006-4076-9D5E-178F3C498236" Name="Product Offering" _ReferenceMode="Name">
|
|
52
|
+
<orm:PlayedRoles>
|
|
53
|
+
<orm:Role ref="_6CFC24F7-20F4-46E3-955A-BDEBB0AF266B" />
|
|
54
|
+
<orm:Role ref="_1958C2F5-5BD6-48B8-A05E-7C098385F3CF" />
|
|
55
|
+
<orm:Role ref="_F56EDD00-B5A2-43B8-9F86-1C8D8DB4A90B" />
|
|
56
|
+
<orm:Role ref="_7E2D4E83-A681-4CA9-83DF-657DBA9C9050" />
|
|
57
|
+
</orm:PlayedRoles>
|
|
58
|
+
<orm:PreferredIdentifier ref="_B5F49121-0EE0-4168-8875-AC5EBA871EC2" />
|
|
59
|
+
</orm:EntityType>
|
|
60
|
+
<orm:ValueType id="_45BA76C4-A9BA-45B4-865C-27FD31DB02A1" Name="Product Offering Name">
|
|
61
|
+
<orm:PlayedRoles>
|
|
62
|
+
<orm:Role ref="_ED83FFC8-A746-4B39-A9DA-4909FE5C40E2" />
|
|
63
|
+
</orm:PlayedRoles>
|
|
64
|
+
<orm:ConceptualDataType id="_281E4015-C7E9-4B99-93C3-B71A8C4885AC" ref="_587EA24A-5FB1-4759-B18A-6763265BE70E" Scale="0" Length="0" />
|
|
65
|
+
</orm:ValueType>
|
|
66
|
+
<orm:EntityType id="_E02528A9-82D7-4F76-984A-161D7E5A8495" Name="Coverage Type" _ReferenceMode="Name">
|
|
67
|
+
<orm:PlayedRoles>
|
|
68
|
+
<orm:Role ref="_BD523DB2-6437-4376-A9C2-0C9F6A30C0E2" />
|
|
69
|
+
<orm:Role ref="_8504AF9E-3C02-473D-A188-31067DA72AA9" />
|
|
70
|
+
<orm:Role ref="_E8F091A3-0A28-4B85-815C-2C3D8F8C9E4D" />
|
|
71
|
+
</orm:PlayedRoles>
|
|
72
|
+
<orm:PreferredIdentifier ref="_58D0A978-0C7D-4835-AD3A-FF460386F921" />
|
|
73
|
+
</orm:EntityType>
|
|
74
|
+
<orm:ValueType id="_1267B4EC-D541-40A4-91A9-F7D8C6655949" Name="Coverage Type Name">
|
|
75
|
+
<orm:PlayedRoles>
|
|
76
|
+
<orm:Role ref="_7B99D29F-7459-4AF5-B545-9AFFAF560306" />
|
|
77
|
+
</orm:PlayedRoles>
|
|
78
|
+
<orm:ConceptualDataType id="_F46F93D5-3BA3-4F30-89EC-F4DF7692071B" ref="_587EA24A-5FB1-4759-B18A-6763265BE70E" Scale="0" Length="0" />
|
|
79
|
+
</orm:ValueType>
|
|
80
|
+
<orm:ObjectifiedType id="_3980A570-A807-4084-8AAD-3589D5418CFE" Name="Available Coverage" _ReferenceMode="">
|
|
81
|
+
<orm:PlayedRoles>
|
|
82
|
+
<orm:Role ref="_69BDF891-F1FD-4BB1-9910-1BF954232D0A" />
|
|
83
|
+
<orm:Role ref="_6D49B1A5-EA25-47BB-860E-A936C2F401BB" />
|
|
84
|
+
</orm:PlayedRoles>
|
|
85
|
+
<orm:PreferredIdentifier ref="_E0ACB5DA-DA8A-4771-80CC-300F9F859EC7" />
|
|
86
|
+
<orm:NestedPredicate id="_CD82771E-0792-42AC-AC5C-2D1A43E2FEC7" ref="_2328E5D5-7F7D-45A0-BBA3-5609A293ACC1" />
|
|
87
|
+
</orm:ObjectifiedType>
|
|
88
|
+
<orm:ValueType id="_8606EA36-1051-44C5-A015-27F7398E7896" Name="Date">
|
|
89
|
+
<orm:PlayedRoles>
|
|
90
|
+
<orm:Role ref="_8E8AF27F-264A-4D59-98AA-80C6EED0663D" />
|
|
91
|
+
<orm:Role ref="_C8E86C24-A9F1-45EC-8B66-AA484FFBD33C" />
|
|
92
|
+
<orm:Role ref="_D1989704-A08E-466A-A775-B2D925C77307" />
|
|
93
|
+
</orm:PlayedRoles>
|
|
94
|
+
<orm:ConceptualDataType id="_37137FD3-9DEA-452E-9030-DBEB7C49C0B6" ref="_EA018D64-A532-4F31-8BAB-B669AB890F8B" Scale="0" Length="0" />
|
|
95
|
+
</orm:ValueType>
|
|
96
|
+
<orm:ValueType id="_39E79CF1-AF98-4E38-8A14-5C6528B5E72F" Name="Policy Number">
|
|
97
|
+
<orm:PlayedRoles>
|
|
98
|
+
<orm:Role ref="_877FC377-D1D4-45E4-9875-F526C106FC67" />
|
|
99
|
+
</orm:PlayedRoles>
|
|
100
|
+
<orm:ConceptualDataType id="_A99F5BDE-D50A-4C01-A41E-84ED4DB7F050" ref="_32AFD7B7-CA7E-4586-9762-4016D9118589" Scale="0" Length="0" />
|
|
101
|
+
</orm:ValueType>
|
|
102
|
+
<orm:ObjectifiedType id="_7B13A3E8-0388-451E-A121-913A35D317ED" Name="Policy Coverage" _ReferenceMode="">
|
|
103
|
+
<orm:PlayedRoles>
|
|
104
|
+
<orm:Role ref="_7D5F0D4F-F16D-4CD0-969F-CD4C5AA77D09" />
|
|
105
|
+
<orm:Role ref="_A3D51996-F490-4247-84C0-28EDE3C6071D" />
|
|
106
|
+
<orm:Role ref="_A0BFB76A-83DF-433E-8EFF-406A82CBA437" />
|
|
107
|
+
<orm:Role ref="_BABD0E04-4B13-4AAB-8779-28A78AFA5DF5" />
|
|
108
|
+
</orm:PlayedRoles>
|
|
109
|
+
<orm:PreferredIdentifier ref="_70CB09FF-83E7-44C2-9B37-2C8D4E7FE198" />
|
|
110
|
+
<orm:NestedPredicate id="_089078EF-B0A0-495B-85D9-CE4E3354DB67" ref="_7D3A54EE-1699-424A-A375-1D75AD94D5DA" />
|
|
111
|
+
</orm:ObjectifiedType>
|
|
112
|
+
<orm:ValueType id="_2F441EC6-C34F-4BCD-80F5-FDAF964F4DBC" Name="Coverage Level">
|
|
113
|
+
<orm:PlayedRoles>
|
|
114
|
+
<orm:Role ref="_AA21BD45-6F53-4A11-A703-6F55CCEBBBA9" />
|
|
115
|
+
</orm:PlayedRoles>
|
|
116
|
+
<orm:ConceptualDataType id="_1CABFA08-C8C5-4482-AEF9-B5E0B7A50E7E" ref="_32AFD7B7-CA7E-4586-9762-4016D9118589" Scale="0" Length="0" />
|
|
117
|
+
</orm:ValueType>
|
|
118
|
+
<orm:EntityType id="_296DDB18-552E-4B25-B518-2AFFB74A8A81" Name="Incident" _ReferenceMode="ID">
|
|
119
|
+
<orm:PlayedRoles>
|
|
120
|
+
<orm:Role ref="_F078C222-F4DA-4D7C-BE92-A5587497BFB3" />
|
|
121
|
+
<orm:Role ref="_6342077F-ED39-4150-A578-6D54FBF4A357" />
|
|
122
|
+
<orm:Role ref="_D9FA26EF-6518-4EC4-B46A-3A26448319F9" />
|
|
123
|
+
<orm:Role ref="_3FBD98F8-231B-4D60-AD67-2BF44D4D49B7" />
|
|
124
|
+
<orm:Role ref="_0B0D761F-62A9-43D7-A039-90FDCDDBC3FB" />
|
|
125
|
+
<orm:Role ref="_5218BF9F-C24C-4E26-A6E8-793500D7E2CC" />
|
|
126
|
+
</orm:PlayedRoles>
|
|
127
|
+
<orm:PreferredIdentifier ref="_72EBCAE0-D803-4B45-A9CB-FFD43E5A55E6" />
|
|
128
|
+
</orm:EntityType>
|
|
129
|
+
<orm:ValueType id="_E13815BF-CDC2-4807-8D02-DD754063C267" Name="Incident ID">
|
|
130
|
+
<orm:PlayedRoles>
|
|
131
|
+
<orm:Role ref="_2AD393DA-4FB7-487F-81BB-7BF7A41C54ED" />
|
|
132
|
+
</orm:PlayedRoles>
|
|
133
|
+
<orm:ConceptualDataType id="_2A357CBB-5EFA-43EF-8D6B-5BCA68660CF1" ref="_67B71B45-728A-4845-ACED-C10799B7603C" Scale="0" Length="0" />
|
|
134
|
+
</orm:ValueType>
|
|
135
|
+
<orm:EntityType id="_C9782755-2396-4443-8305-3AEDE07345C1" Name="Incident Type" _ReferenceMode="Name">
|
|
136
|
+
<orm:PlayedRoles>
|
|
137
|
+
<orm:Role ref="_D89CEBFF-10B2-4840-AD26-1B0AE4712D9B" />
|
|
138
|
+
<orm:Role ref="_F2E2C89D-CA75-4E17-8D53-9C5AE8879790" />
|
|
139
|
+
</orm:PlayedRoles>
|
|
140
|
+
<orm:PreferredIdentifier ref="_8401E4A9-72A2-49FB-B307-720F9FAC2EED" />
|
|
141
|
+
</orm:EntityType>
|
|
142
|
+
<orm:ValueType id="_3797D1E4-C5C7-483B-8B52-C943908D07D0" Name="Incident Type Name">
|
|
143
|
+
<orm:PlayedRoles>
|
|
144
|
+
<orm:Role ref="_457C3F04-09EA-4885-816A-61DC8A85FF44" />
|
|
145
|
+
</orm:PlayedRoles>
|
|
146
|
+
<orm:ConceptualDataType id="_1F3352C1-BEBF-4BCB-8260-4B033BE1141B" ref="_587EA24A-5FB1-4759-B18A-6763265BE70E" Scale="0" Length="0" />
|
|
147
|
+
</orm:ValueType>
|
|
148
|
+
<orm:ValueType id="_42089352-832B-4010-BC8E-B388F1F3F819" Name="Text">
|
|
149
|
+
<orm:PlayedRoles>
|
|
150
|
+
<orm:Role ref="_0DD65F1B-AEAB-42C0-9079-3DAE955800DE" />
|
|
151
|
+
<orm:Role ref="_F115AD0F-9B8D-44E1-BB1C-DE6A7310EF43" />
|
|
152
|
+
</orm:PlayedRoles>
|
|
153
|
+
<orm:ConceptualDataType id="_6A3FE3E7-8975-4C2E-8171-61E3E1468FBA" ref="_ED6C1E1B-8313-4852-A28C-5509C429005D" Scale="0" Length="0" />
|
|
154
|
+
</orm:ValueType>
|
|
155
|
+
<orm:EntityType id="_28CE0DE3-F519-47C9-BAE9-CC22EB4AB646" Name="Claim" _ReferenceMode="Number">
|
|
156
|
+
<orm:PlayedRoles>
|
|
157
|
+
<orm:Role ref="_68C2D4C8-C004-473A-82A5-38E69E43634F" />
|
|
158
|
+
<orm:Role ref="_9B326FFA-12FF-471F-8D3F-67CA5BFF6615" />
|
|
159
|
+
<orm:Role ref="_647999A3-D0AE-4469-8323-40939319E45A" />
|
|
160
|
+
</orm:PlayedRoles>
|
|
161
|
+
<orm:PreferredIdentifier ref="_36DA76FD-0653-404B-8331-DC6EF2115158" />
|
|
162
|
+
</orm:EntityType>
|
|
163
|
+
<orm:ValueType id="_A97CCE60-73E7-4549-98D4-54FF3E2DBC14" Name="Claim Number">
|
|
164
|
+
<orm:PlayedRoles>
|
|
165
|
+
<orm:Role ref="_0F8859AA-ED87-4036-8A3C-DFF94CB96749" />
|
|
166
|
+
</orm:PlayedRoles>
|
|
167
|
+
<orm:ConceptualDataType id="_C516457B-255D-486D-9957-64367B0947CF" ref="_32AFD7B7-CA7E-4586-9762-4016D9118589" Scale="0" Length="0" />
|
|
168
|
+
</orm:ValueType>
|
|
169
|
+
<orm:ObjectifiedType id="_F15EBD20-E065-418C-A346-480E16B665E5" Name="Claim Details" _ReferenceMode="">
|
|
170
|
+
<orm:PlayedRoles>
|
|
171
|
+
<orm:Role ref="_586AA182-516C-4FB8-A52C-411FC16088CA" />
|
|
172
|
+
<orm:Role ref="_673E8D66-677D-487B-A145-21157DB878C7" />
|
|
173
|
+
<orm:Role ref="_49E6354F-F730-444A-BC94-5B02AF691C42" />
|
|
174
|
+
<orm:Role ref="_19F0EA78-E40A-44C6-AD3A-BC35A9328422" />
|
|
175
|
+
</orm:PlayedRoles>
|
|
176
|
+
<orm:PreferredIdentifier ref="_29265FEC-D3A0-4325-B2E1-89EF6067E9D8" />
|
|
177
|
+
<orm:NestedPredicate id="_2C9BE789-D118-4B2F-8DAA-674BFF87EEE3" ref="_C6477377-F55B-4F69-95BF-A99C396C38DA" />
|
|
178
|
+
</orm:ObjectifiedType>
|
|
179
|
+
<orm:EntityType id="_CC5CF3F4-4F49-448D-A4FB-5BE3A6B97C2F" Name="Claim Payment" _ReferenceMode="">
|
|
180
|
+
<orm:PlayedRoles>
|
|
181
|
+
<orm:Role ref="_A25ACFA7-F34E-40FF-9510-A7F739C88902" />
|
|
182
|
+
<orm:Role ref="_840FAB73-C58B-434C-9F48-1CA96683467F" />
|
|
183
|
+
</orm:PlayedRoles>
|
|
184
|
+
<orm:PreferredIdentifier ref="_2AE7C2BD-6B1E-40C8-8727-340A2A74D409" />
|
|
185
|
+
</orm:EntityType>
|
|
186
|
+
<orm:EntityType id="_86E381B2-0D09-437D-82E0-0EDF38A3260C" Name="Claim Payment Type" IsIndependent="true" _ReferenceMode="Code">
|
|
187
|
+
<orm:PlayedRoles>
|
|
188
|
+
<orm:Role ref="_D3EF80EF-9A6B-485B-8D80-77025B6F2FD2" />
|
|
189
|
+
<orm:Role ref="_78BD8553-7948-4C1A-B1F1-0EC38D61B9D9" />
|
|
190
|
+
<orm:Role ref="_45A1BCFD-DEB5-4627-9AF5-0FB079B520CA" />
|
|
191
|
+
</orm:PlayedRoles>
|
|
192
|
+
<orm:PreferredIdentifier ref="_D799561A-8F7B-44C5-9C38-3A1FDA8A6117" />
|
|
193
|
+
</orm:EntityType>
|
|
194
|
+
<orm:ValueType id="_8F7E4CDC-845B-498D-8C13-8CA799DB3D59" Name="Claim Payment Type Code">
|
|
195
|
+
<orm:PlayedRoles>
|
|
196
|
+
<orm:Role ref="_8E4BBEA3-BDD5-4C4C-B4F3-49D16E76B2A5" />
|
|
197
|
+
</orm:PlayedRoles>
|
|
198
|
+
<orm:ConceptualDataType id="_9E5CF24E-BB3F-42E6-9141-9FE7674138D7" ref="_0E5CAF1B-FFD4-4EE1-9109-3236EBC8CBA4" Scale="0" Length="0" />
|
|
199
|
+
</orm:ValueType>
|
|
200
|
+
<orm:EntityType id="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" Name="Policy" _ReferenceMode="">
|
|
201
|
+
<orm:PlayedRoles>
|
|
202
|
+
<orm:Role ref="_0BB67B32-F130-4974-B993-F2C1D2A36591" />
|
|
203
|
+
<orm:Role ref="_EBC3A5E3-B826-466F-A08F-F2CCF08915A8" />
|
|
204
|
+
<orm:Role ref="_3451611D-C560-4360-974C-F26494D5CE7B" />
|
|
205
|
+
<orm:Role ref="_5DD1908A-EED1-4FFD-9379-FAB29CA66DC9" />
|
|
206
|
+
<orm:Role ref="_D746689E-D3AD-4B11-82B3-272EAB7638E2" />
|
|
207
|
+
<orm:Role ref="_C842E527-8C30-4BFD-BBC9-695BA97B82C3" />
|
|
208
|
+
</orm:PlayedRoles>
|
|
209
|
+
<orm:PreferredIdentifier ref="_A5B84ECC-B64E-4589-9BD8-4288C7C367D2" />
|
|
210
|
+
</orm:EntityType>
|
|
211
|
+
</orm:Objects>
|
|
212
|
+
<orm:Facts>
|
|
213
|
+
<orm:Fact id="_B9AA7936-E275-42B1-94D2-01B4F44BD7CD" _Name="PartyHasPartyID">
|
|
214
|
+
<orm:FactRoles>
|
|
215
|
+
<orm:Role id="_58C583F7-4965-4ED9-9D71-DAC4EC7507F4" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
216
|
+
<orm:RolePlayer ref="_8996F3CF-C2DF-4B43-9CFA-D20C4B1903D7" />
|
|
217
|
+
</orm:Role>
|
|
218
|
+
<orm:Role id="_E44B6B1B-5B78-4EC3-B8A0-A860AE207E40" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
219
|
+
<orm:RolePlayer ref="_E5E81613-1442-4A5C-9EC8-CC49124ED045" />
|
|
220
|
+
</orm:Role>
|
|
221
|
+
</orm:FactRoles>
|
|
222
|
+
<orm:ReadingOrders>
|
|
223
|
+
<orm:ReadingOrder id="_E3FE4825-7263-409D-872B-036F7D773E6B">
|
|
224
|
+
<orm:Readings>
|
|
225
|
+
<orm:Reading id="_8491C574-EF37-4597-B734-912EB89CE9F0">
|
|
226
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
227
|
+
<orm:ExpandedData>
|
|
228
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
229
|
+
</orm:ExpandedData>
|
|
230
|
+
</orm:Reading>
|
|
231
|
+
</orm:Readings>
|
|
232
|
+
<orm:RoleSequence>
|
|
233
|
+
<orm:Role ref="_58C583F7-4965-4ED9-9D71-DAC4EC7507F4" />
|
|
234
|
+
<orm:Role ref="_E44B6B1B-5B78-4EC3-B8A0-A860AE207E40" />
|
|
235
|
+
</orm:RoleSequence>
|
|
236
|
+
</orm:ReadingOrder>
|
|
237
|
+
<orm:ReadingOrder id="_E5110491-7DC9-4B0A-8E2D-2E92A95378F2">
|
|
238
|
+
<orm:Readings>
|
|
239
|
+
<orm:Reading id="_5EAFF1EC-F521-40DA-8EC3-F25C8693437F">
|
|
240
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
241
|
+
<orm:ExpandedData>
|
|
242
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
243
|
+
</orm:ExpandedData>
|
|
244
|
+
</orm:Reading>
|
|
245
|
+
</orm:Readings>
|
|
246
|
+
<orm:RoleSequence>
|
|
247
|
+
<orm:Role ref="_E44B6B1B-5B78-4EC3-B8A0-A860AE207E40" />
|
|
248
|
+
<orm:Role ref="_58C583F7-4965-4ED9-9D71-DAC4EC7507F4" />
|
|
249
|
+
</orm:RoleSequence>
|
|
250
|
+
</orm:ReadingOrder>
|
|
251
|
+
</orm:ReadingOrders>
|
|
252
|
+
<orm:InternalConstraints>
|
|
253
|
+
<orm:UniquenessConstraint ref="_FEEE6963-6B21-4E7E-9275-244A33844C35" />
|
|
254
|
+
<orm:UniquenessConstraint ref="_CFD9B6CA-0EFF-4A50-A136-31F63D32B4BD" />
|
|
255
|
+
<orm:MandatoryConstraint ref="_AF8D1604-5D96-4C23-8C96-050F8708A61F" />
|
|
256
|
+
</orm:InternalConstraints>
|
|
257
|
+
</orm:Fact>
|
|
258
|
+
<orm:SubtypeFact id="_677495CF-E2AE-407E-AB39-A606DC00A90C" _Name="StakeholderIsASubtypeOfParty" PreferredIdentificationPath="true">
|
|
259
|
+
<orm:FactRoles>
|
|
260
|
+
<orm:SubtypeMetaRole id="_0424A384-148C-4077-BB77-2E0F9581F1F2" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
261
|
+
<orm:RolePlayer ref="_77E51608-1C7F-487F-B7B0-A38A53CAB8E4" />
|
|
262
|
+
</orm:SubtypeMetaRole>
|
|
263
|
+
<orm:SupertypeMetaRole id="_230F4047-5914-42FF-811D-C14924F35165" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
264
|
+
<orm:RolePlayer ref="_8996F3CF-C2DF-4B43-9CFA-D20C4B1903D7" />
|
|
265
|
+
</orm:SupertypeMetaRole>
|
|
266
|
+
</orm:FactRoles>
|
|
267
|
+
<orm:InternalConstraints>
|
|
268
|
+
<orm:MandatoryConstraint ref="_EC01492F-DEC7-4758-BD4B-A19208BE887A" />
|
|
269
|
+
<orm:UniquenessConstraint ref="_7A7D7F88-B7EA-4779-AB57-0400D6FB5A97" />
|
|
270
|
+
<orm:UniquenessConstraint ref="_39B782D8-A950-44F3-A2EA-41E63E6A452F" />
|
|
271
|
+
</orm:InternalConstraints>
|
|
272
|
+
</orm:SubtypeFact>
|
|
273
|
+
<orm:SubtypeFact id="_53F24F9C-5F25-4B50-964C-FAAEC316AC76" _Name="Policy HolderIsASubtypeOfStakeholder" PreferredIdentificationPath="true">
|
|
274
|
+
<orm:FactRoles>
|
|
275
|
+
<orm:SubtypeMetaRole id="_52E77B2C-A61A-4986-B240-E04C2CA82858" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
276
|
+
<orm:RolePlayer ref="_EDCBFCD8-1088-42F2-A277-BBA2A194AA1D" />
|
|
277
|
+
</orm:SubtypeMetaRole>
|
|
278
|
+
<orm:SupertypeMetaRole id="_2A2C91F2-B04F-4EAD-8CEF-C654380840DE" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
279
|
+
<orm:RolePlayer ref="_77E51608-1C7F-487F-B7B0-A38A53CAB8E4" />
|
|
280
|
+
</orm:SupertypeMetaRole>
|
|
281
|
+
</orm:FactRoles>
|
|
282
|
+
<orm:InternalConstraints>
|
|
283
|
+
<orm:MandatoryConstraint ref="_EA3855F0-B150-4E29-AB93-239FF9085B8F" />
|
|
284
|
+
<orm:UniquenessConstraint ref="_5F333CA4-B21A-4328-BC96-D69FB0370CAE" />
|
|
285
|
+
<orm:UniquenessConstraint ref="_884F29A0-CE0B-4203-B517-2D150A5DED79" />
|
|
286
|
+
</orm:InternalConstraints>
|
|
287
|
+
</orm:SubtypeFact>
|
|
288
|
+
<orm:SubtypeFact id="_6B6BA0E7-DD7E-47A7-B1E2-5A8DB285F147" _Name="ClaimantIsASubtypeOfStakeholder" PreferredIdentificationPath="true">
|
|
289
|
+
<orm:FactRoles>
|
|
290
|
+
<orm:SubtypeMetaRole id="_6B02AA35-F892-4952-992D-88AE37D2E2CA" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
291
|
+
<orm:RolePlayer ref="_16EB6AB4-FB64-4E91-AE7F-F1C9C1FEADC1" />
|
|
292
|
+
</orm:SubtypeMetaRole>
|
|
293
|
+
<orm:SupertypeMetaRole id="_72942E51-D7C2-4ECA-88A9-EC9AFE83BBCB" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
294
|
+
<orm:RolePlayer ref="_77E51608-1C7F-487F-B7B0-A38A53CAB8E4" />
|
|
295
|
+
</orm:SupertypeMetaRole>
|
|
296
|
+
</orm:FactRoles>
|
|
297
|
+
<orm:InternalConstraints>
|
|
298
|
+
<orm:MandatoryConstraint ref="_83983530-EC65-4DD1-85EE-954E3522624E" />
|
|
299
|
+
<orm:UniquenessConstraint ref="_37AD51D7-6BFD-486E-A82A-433EAB39EFE2" />
|
|
300
|
+
<orm:UniquenessConstraint ref="_2C52ADE5-0655-4E6D-B96A-AE14C972F1D4" />
|
|
301
|
+
</orm:InternalConstraints>
|
|
302
|
+
</orm:SubtypeFact>
|
|
303
|
+
<orm:Fact id="_76F0B678-38F1-4B8F-8C18-AF8628158D58" _Name="InsurerHasInsurerName">
|
|
304
|
+
<orm:FactRoles>
|
|
305
|
+
<orm:Role id="_945A9E2B-8E97-428F-8946-1277CB3AB5A5" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
306
|
+
<orm:RolePlayer ref="_FAE00053-F8C0-4BD1-AA51-D6C664B3A76D" />
|
|
307
|
+
</orm:Role>
|
|
308
|
+
<orm:Role id="_D02C70B9-4D66-47BB-A72E-BA3BD96E4E3C" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
309
|
+
<orm:RolePlayer ref="_4BF9D664-3643-4948-B2E7-8BA6D4C1E012" />
|
|
310
|
+
</orm:Role>
|
|
311
|
+
</orm:FactRoles>
|
|
312
|
+
<orm:ReadingOrders>
|
|
313
|
+
<orm:ReadingOrder id="_F26C2543-3A50-43CC-ABBF-F9239BD1EBAE">
|
|
314
|
+
<orm:Readings>
|
|
315
|
+
<orm:Reading id="_C2BE05E8-F865-4957-AF57-875CE1C664A9">
|
|
316
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
317
|
+
<orm:ExpandedData>
|
|
318
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
319
|
+
</orm:ExpandedData>
|
|
320
|
+
</orm:Reading>
|
|
321
|
+
</orm:Readings>
|
|
322
|
+
<orm:RoleSequence>
|
|
323
|
+
<orm:Role ref="_945A9E2B-8E97-428F-8946-1277CB3AB5A5" />
|
|
324
|
+
<orm:Role ref="_D02C70B9-4D66-47BB-A72E-BA3BD96E4E3C" />
|
|
325
|
+
</orm:RoleSequence>
|
|
326
|
+
</orm:ReadingOrder>
|
|
327
|
+
<orm:ReadingOrder id="_AA85CF3D-584E-4DA9-AD37-34D13A52367A">
|
|
328
|
+
<orm:Readings>
|
|
329
|
+
<orm:Reading id="_6E2C2C81-5B7C-4041-8F5C-D42C547612C5">
|
|
330
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
331
|
+
<orm:ExpandedData>
|
|
332
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
333
|
+
</orm:ExpandedData>
|
|
334
|
+
</orm:Reading>
|
|
335
|
+
</orm:Readings>
|
|
336
|
+
<orm:RoleSequence>
|
|
337
|
+
<orm:Role ref="_D02C70B9-4D66-47BB-A72E-BA3BD96E4E3C" />
|
|
338
|
+
<orm:Role ref="_945A9E2B-8E97-428F-8946-1277CB3AB5A5" />
|
|
339
|
+
</orm:RoleSequence>
|
|
340
|
+
</orm:ReadingOrder>
|
|
341
|
+
</orm:ReadingOrders>
|
|
342
|
+
<orm:InternalConstraints>
|
|
343
|
+
<orm:UniquenessConstraint ref="_F339BFCC-D016-4FE7-A134-CDB6FF1D6B9D" />
|
|
344
|
+
<orm:UniquenessConstraint ref="_2BCB8C96-CF07-43C3-8EED-D6DB0B4AB404" />
|
|
345
|
+
<orm:MandatoryConstraint ref="_1C0EB277-EA3E-441B-8869-A9F275F26A13" />
|
|
346
|
+
</orm:InternalConstraints>
|
|
347
|
+
</orm:Fact>
|
|
348
|
+
<orm:Fact id="_F67A4672-1F2B-4D6C-8607-C9EE4C42D82B" _Name="ProductOfferingHasProductOfferingName">
|
|
349
|
+
<orm:FactRoles>
|
|
350
|
+
<orm:Role id="_6CFC24F7-20F4-46E3-955A-BDEBB0AF266B" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
351
|
+
<orm:RolePlayer ref="_173CFC3A-2006-4076-9D5E-178F3C498236" />
|
|
352
|
+
</orm:Role>
|
|
353
|
+
<orm:Role id="_ED83FFC8-A746-4B39-A9DA-4909FE5C40E2" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
354
|
+
<orm:RolePlayer ref="_45BA76C4-A9BA-45B4-865C-27FD31DB02A1" />
|
|
355
|
+
</orm:Role>
|
|
356
|
+
</orm:FactRoles>
|
|
357
|
+
<orm:ReadingOrders>
|
|
358
|
+
<orm:ReadingOrder id="_F6A32B9A-1A59-4AAE-9F5E-8A82926996BB">
|
|
359
|
+
<orm:Readings>
|
|
360
|
+
<orm:Reading id="_B29DB8D9-EE9A-459D-8D11-11BB080C94BB">
|
|
361
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
362
|
+
<orm:ExpandedData>
|
|
363
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
364
|
+
</orm:ExpandedData>
|
|
365
|
+
</orm:Reading>
|
|
366
|
+
</orm:Readings>
|
|
367
|
+
<orm:RoleSequence>
|
|
368
|
+
<orm:Role ref="_6CFC24F7-20F4-46E3-955A-BDEBB0AF266B" />
|
|
369
|
+
<orm:Role ref="_ED83FFC8-A746-4B39-A9DA-4909FE5C40E2" />
|
|
370
|
+
</orm:RoleSequence>
|
|
371
|
+
</orm:ReadingOrder>
|
|
372
|
+
<orm:ReadingOrder id="_0E06174D-D6A3-467A-988C-DD1235823F61">
|
|
373
|
+
<orm:Readings>
|
|
374
|
+
<orm:Reading id="_78DF5431-D5CC-4501-B7B6-0711064DF9DE">
|
|
375
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
376
|
+
<orm:ExpandedData>
|
|
377
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
378
|
+
</orm:ExpandedData>
|
|
379
|
+
</orm:Reading>
|
|
380
|
+
</orm:Readings>
|
|
381
|
+
<orm:RoleSequence>
|
|
382
|
+
<orm:Role ref="_ED83FFC8-A746-4B39-A9DA-4909FE5C40E2" />
|
|
383
|
+
<orm:Role ref="_6CFC24F7-20F4-46E3-955A-BDEBB0AF266B" />
|
|
384
|
+
</orm:RoleSequence>
|
|
385
|
+
</orm:ReadingOrder>
|
|
386
|
+
</orm:ReadingOrders>
|
|
387
|
+
<orm:InternalConstraints>
|
|
388
|
+
<orm:UniquenessConstraint ref="_B5F49121-0EE0-4168-8875-AC5EBA871EC2" />
|
|
389
|
+
<orm:UniquenessConstraint ref="_1728B4BC-DCA1-4507-9D2D-7A587441CE9E" />
|
|
390
|
+
<orm:MandatoryConstraint ref="_BD4F2B35-D425-4870-B4B3-1CD3EE3BD87B" />
|
|
391
|
+
</orm:InternalConstraints>
|
|
392
|
+
</orm:Fact>
|
|
393
|
+
<orm:Fact id="_A27E8AB4-C4B3-43AF-8F1A-806C87ACD56D" _Name="ProductOfferingIsOfferedByInsurer">
|
|
394
|
+
<orm:FactRoles>
|
|
395
|
+
<orm:Role id="_1958C2F5-5BD6-48B8-A05E-7C098385F3CF" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
396
|
+
<orm:RolePlayer ref="_173CFC3A-2006-4076-9D5E-178F3C498236" />
|
|
397
|
+
</orm:Role>
|
|
398
|
+
<orm:Role id="_7B239EB8-6599-4D16-BFD8-0AE588EE1DD4" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
399
|
+
<orm:RolePlayer ref="_FAE00053-F8C0-4BD1-AA51-D6C664B3A76D" />
|
|
400
|
+
</orm:Role>
|
|
401
|
+
</orm:FactRoles>
|
|
402
|
+
<orm:ReadingOrders>
|
|
403
|
+
<orm:ReadingOrder id="_E6B85C89-6687-48F9-ADF1-E043AE085F44">
|
|
404
|
+
<orm:Readings>
|
|
405
|
+
<orm:Reading id="_6E55A87C-A9DA-46E8-8CC5-FF37767CE122">
|
|
406
|
+
<orm:Data>{0} is offered by {1}</orm:Data>
|
|
407
|
+
<orm:ExpandedData>
|
|
408
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is offered by " />
|
|
409
|
+
</orm:ExpandedData>
|
|
410
|
+
</orm:Reading>
|
|
411
|
+
</orm:Readings>
|
|
412
|
+
<orm:RoleSequence>
|
|
413
|
+
<orm:Role ref="_1958C2F5-5BD6-48B8-A05E-7C098385F3CF" />
|
|
414
|
+
<orm:Role ref="_7B239EB8-6599-4D16-BFD8-0AE588EE1DD4" />
|
|
415
|
+
</orm:RoleSequence>
|
|
416
|
+
</orm:ReadingOrder>
|
|
417
|
+
</orm:ReadingOrders>
|
|
418
|
+
<orm:InternalConstraints>
|
|
419
|
+
<orm:UniquenessConstraint ref="_7756569C-B554-425E-8C30-51AFBC53F8C6" />
|
|
420
|
+
<orm:MandatoryConstraint ref="_58D7211B-1B84-4E0A-A8C1-1427C55DCFEF" />
|
|
421
|
+
</orm:InternalConstraints>
|
|
422
|
+
</orm:Fact>
|
|
423
|
+
<orm:Fact id="_6B9BB0CA-6A0C-4ECD-9DF3-352D06C1A133" _Name="CoverageTypeHasCoverageTypeName">
|
|
424
|
+
<orm:FactRoles>
|
|
425
|
+
<orm:Role id="_BD523DB2-6437-4376-A9C2-0C9F6A30C0E2" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
426
|
+
<orm:RolePlayer ref="_E02528A9-82D7-4F76-984A-161D7E5A8495" />
|
|
427
|
+
</orm:Role>
|
|
428
|
+
<orm:Role id="_7B99D29F-7459-4AF5-B545-9AFFAF560306" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
429
|
+
<orm:RolePlayer ref="_1267B4EC-D541-40A4-91A9-F7D8C6655949" />
|
|
430
|
+
</orm:Role>
|
|
431
|
+
</orm:FactRoles>
|
|
432
|
+
<orm:ReadingOrders>
|
|
433
|
+
<orm:ReadingOrder id="_80574601-A4B8-45F4-A564-DC2447059FE2">
|
|
434
|
+
<orm:Readings>
|
|
435
|
+
<orm:Reading id="_9D4DA722-1C5B-4FA5-8DF6-302D4069CF8D">
|
|
436
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
437
|
+
<orm:ExpandedData>
|
|
438
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
439
|
+
</orm:ExpandedData>
|
|
440
|
+
</orm:Reading>
|
|
441
|
+
</orm:Readings>
|
|
442
|
+
<orm:RoleSequence>
|
|
443
|
+
<orm:Role ref="_BD523DB2-6437-4376-A9C2-0C9F6A30C0E2" />
|
|
444
|
+
<orm:Role ref="_7B99D29F-7459-4AF5-B545-9AFFAF560306" />
|
|
445
|
+
</orm:RoleSequence>
|
|
446
|
+
</orm:ReadingOrder>
|
|
447
|
+
<orm:ReadingOrder id="_1FE70831-E705-4546-ADA8-9B17D3014EC1">
|
|
448
|
+
<orm:Readings>
|
|
449
|
+
<orm:Reading id="_2DE1AD00-1A34-4AAC-A40E-74EFB984AC11">
|
|
450
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
451
|
+
<orm:ExpandedData>
|
|
452
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
453
|
+
</orm:ExpandedData>
|
|
454
|
+
</orm:Reading>
|
|
455
|
+
</orm:Readings>
|
|
456
|
+
<orm:RoleSequence>
|
|
457
|
+
<orm:Role ref="_7B99D29F-7459-4AF5-B545-9AFFAF560306" />
|
|
458
|
+
<orm:Role ref="_BD523DB2-6437-4376-A9C2-0C9F6A30C0E2" />
|
|
459
|
+
</orm:RoleSequence>
|
|
460
|
+
</orm:ReadingOrder>
|
|
461
|
+
</orm:ReadingOrders>
|
|
462
|
+
<orm:InternalConstraints>
|
|
463
|
+
<orm:UniquenessConstraint ref="_58D0A978-0C7D-4835-AD3A-FF460386F921" />
|
|
464
|
+
<orm:UniquenessConstraint ref="_D3F2A87C-8374-487B-AC5A-7DCCAD035C99" />
|
|
465
|
+
<orm:MandatoryConstraint ref="_56379206-434E-41AC-89A6-3A5068B799BF" />
|
|
466
|
+
</orm:InternalConstraints>
|
|
467
|
+
</orm:Fact>
|
|
468
|
+
<orm:Fact id="_2328E5D5-7F7D-45A0-BBA3-5609A293ACC1" _Name="Available Coverage">
|
|
469
|
+
<orm:FactRoles>
|
|
470
|
+
<orm:Role id="_F56EDD00-B5A2-43B8-9F86-1C8D8DB4A90B" _IsMandatory="false" _Multiplicity="ZeroToMany" Name="">
|
|
471
|
+
<orm:RolePlayer ref="_173CFC3A-2006-4076-9D5E-178F3C498236" />
|
|
472
|
+
</orm:Role>
|
|
473
|
+
<orm:Role id="_8504AF9E-3C02-473D-A188-31067DA72AA9" _IsMandatory="false" _Multiplicity="ZeroToMany" Name="">
|
|
474
|
+
<orm:RolePlayer ref="_E02528A9-82D7-4F76-984A-161D7E5A8495" />
|
|
475
|
+
</orm:Role>
|
|
476
|
+
</orm:FactRoles>
|
|
477
|
+
<orm:ReadingOrders>
|
|
478
|
+
<orm:ReadingOrder id="_88C91B79-2D20-4B2B-816A-7D6B31DFBE28">
|
|
479
|
+
<orm:Readings>
|
|
480
|
+
<orm:Reading id="_DF4DF6DB-8321-4AB4-9811-5CEC429F46F3">
|
|
481
|
+
<orm:Data>{0} is available in {1}</orm:Data>
|
|
482
|
+
<orm:ExpandedData>
|
|
483
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is available in " />
|
|
484
|
+
</orm:ExpandedData>
|
|
485
|
+
</orm:Reading>
|
|
486
|
+
</orm:Readings>
|
|
487
|
+
<orm:RoleSequence>
|
|
488
|
+
<orm:Role ref="_8504AF9E-3C02-473D-A188-31067DA72AA9" />
|
|
489
|
+
<orm:Role ref="_F56EDD00-B5A2-43B8-9F86-1C8D8DB4A90B" />
|
|
490
|
+
</orm:RoleSequence>
|
|
491
|
+
</orm:ReadingOrder>
|
|
492
|
+
<orm:ReadingOrder id="_0106AFEF-69A5-4242-AD55-14691B892BC5">
|
|
493
|
+
<orm:Readings>
|
|
494
|
+
<orm:Reading id="_282AF7AC-DD5D-4748-B238-F493CA21ABD9">
|
|
495
|
+
<orm:Data>{0} offers {1}</orm:Data>
|
|
496
|
+
<orm:ExpandedData>
|
|
497
|
+
<orm:RoleText RoleIndex="0" FollowingText=" offers " />
|
|
498
|
+
</orm:ExpandedData>
|
|
499
|
+
</orm:Reading>
|
|
500
|
+
</orm:Readings>
|
|
501
|
+
<orm:RoleSequence>
|
|
502
|
+
<orm:Role ref="_F56EDD00-B5A2-43B8-9F86-1C8D8DB4A90B" />
|
|
503
|
+
<orm:Role ref="_8504AF9E-3C02-473D-A188-31067DA72AA9" />
|
|
504
|
+
</orm:RoleSequence>
|
|
505
|
+
</orm:ReadingOrder>
|
|
506
|
+
</orm:ReadingOrders>
|
|
507
|
+
<orm:InternalConstraints>
|
|
508
|
+
<orm:UniquenessConstraint ref="_E0ACB5DA-DA8A-4771-80CC-300F9F859EC7" />
|
|
509
|
+
</orm:InternalConstraints>
|
|
510
|
+
</orm:Fact>
|
|
511
|
+
<orm:ImpliedFact id="_D905312C-365C-4BE7-8CBC-D0357697D663" _Name="ProductOfferingIsInvolvedInAvailableCoverage">
|
|
512
|
+
<orm:FactRoles>
|
|
513
|
+
<orm:RoleProxy id="_F4414903-6440-4EC1-91B4-E13BE41F4C91">
|
|
514
|
+
<orm:Role ref="_F56EDD00-B5A2-43B8-9F86-1C8D8DB4A90B" />
|
|
515
|
+
</orm:RoleProxy>
|
|
516
|
+
<orm:Role id="_69BDF891-F1FD-4BB1-9910-1BF954232D0A" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
517
|
+
<orm:RolePlayer ref="_3980A570-A807-4084-8AAD-3589D5418CFE" />
|
|
518
|
+
</orm:Role>
|
|
519
|
+
</orm:FactRoles>
|
|
520
|
+
<orm:ReadingOrders>
|
|
521
|
+
<orm:ReadingOrder id="_0EF08200-DE09-4CBE-ACD9-8DD62E88E114">
|
|
522
|
+
<orm:Readings>
|
|
523
|
+
<orm:Reading id="_E503D7BD-155F-47AB-ACD3-A594F7E6F182">
|
|
524
|
+
<orm:Data>{0} is involved in {1}</orm:Data>
|
|
525
|
+
<orm:ExpandedData>
|
|
526
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is involved in " />
|
|
527
|
+
</orm:ExpandedData>
|
|
528
|
+
</orm:Reading>
|
|
529
|
+
</orm:Readings>
|
|
530
|
+
<orm:RoleSequence>
|
|
531
|
+
<orm:Role ref="_F4414903-6440-4EC1-91B4-E13BE41F4C91" />
|
|
532
|
+
<orm:Role ref="_69BDF891-F1FD-4BB1-9910-1BF954232D0A" />
|
|
533
|
+
</orm:RoleSequence>
|
|
534
|
+
</orm:ReadingOrder>
|
|
535
|
+
<orm:ReadingOrder id="_0B58718E-D2F0-435F-B4ED-92A2BEFDDB21">
|
|
536
|
+
<orm:Readings>
|
|
537
|
+
<orm:Reading id="_58B029BE-77B7-41C0-AC0D-3BB33D2C8C68">
|
|
538
|
+
<orm:Data>{0} involves {1}</orm:Data>
|
|
539
|
+
<orm:ExpandedData>
|
|
540
|
+
<orm:RoleText RoleIndex="0" FollowingText=" involves " />
|
|
541
|
+
</orm:ExpandedData>
|
|
542
|
+
</orm:Reading>
|
|
543
|
+
</orm:Readings>
|
|
544
|
+
<orm:RoleSequence>
|
|
545
|
+
<orm:Role ref="_69BDF891-F1FD-4BB1-9910-1BF954232D0A" />
|
|
546
|
+
<orm:Role ref="_F4414903-6440-4EC1-91B4-E13BE41F4C91" />
|
|
547
|
+
</orm:RoleSequence>
|
|
548
|
+
</orm:ReadingOrder>
|
|
549
|
+
</orm:ReadingOrders>
|
|
550
|
+
<orm:InternalConstraints>
|
|
551
|
+
<orm:MandatoryConstraint ref="_812E066F-4B27-43F2-931D-835E00A30975" />
|
|
552
|
+
<orm:UniquenessConstraint ref="_B406C3CE-98C0-4459-9886-BA19E86D65E3" />
|
|
553
|
+
</orm:InternalConstraints>
|
|
554
|
+
<orm:ImpliedByObjectification ref="_CD82771E-0792-42AC-AC5C-2D1A43E2FEC7" />
|
|
555
|
+
</orm:ImpliedFact>
|
|
556
|
+
<orm:ImpliedFact id="_EF6D5DA9-65DE-42E8-B359-A41EE29F2410" _Name="CoverageTypeIsInvolvedInAvailableCoverage">
|
|
557
|
+
<orm:FactRoles>
|
|
558
|
+
<orm:RoleProxy id="_1720F561-34F1-4177-88CD-CD5E1E53316F">
|
|
559
|
+
<orm:Role ref="_8504AF9E-3C02-473D-A188-31067DA72AA9" />
|
|
560
|
+
</orm:RoleProxy>
|
|
561
|
+
<orm:Role id="_6D49B1A5-EA25-47BB-860E-A936C2F401BB" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
562
|
+
<orm:RolePlayer ref="_3980A570-A807-4084-8AAD-3589D5418CFE" />
|
|
563
|
+
</orm:Role>
|
|
564
|
+
</orm:FactRoles>
|
|
565
|
+
<orm:ReadingOrders>
|
|
566
|
+
<orm:ReadingOrder id="_87BEE2DB-AA3D-4104-832C-01AB98C0EAFA">
|
|
567
|
+
<orm:Readings>
|
|
568
|
+
<orm:Reading id="_B5EA9013-0EB3-4BC5-9F5B-3E049A60F067">
|
|
569
|
+
<orm:Data>{0} is involved in {1}</orm:Data>
|
|
570
|
+
<orm:ExpandedData>
|
|
571
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is involved in " />
|
|
572
|
+
</orm:ExpandedData>
|
|
573
|
+
</orm:Reading>
|
|
574
|
+
</orm:Readings>
|
|
575
|
+
<orm:RoleSequence>
|
|
576
|
+
<orm:Role ref="_1720F561-34F1-4177-88CD-CD5E1E53316F" />
|
|
577
|
+
<orm:Role ref="_6D49B1A5-EA25-47BB-860E-A936C2F401BB" />
|
|
578
|
+
</orm:RoleSequence>
|
|
579
|
+
</orm:ReadingOrder>
|
|
580
|
+
<orm:ReadingOrder id="_8EF7E4A2-BDD5-4B96-AD35-3D9476EA9E9C">
|
|
581
|
+
<orm:Readings>
|
|
582
|
+
<orm:Reading id="_4035403C-4649-4D8B-B453-7405F5AD3C4F">
|
|
583
|
+
<orm:Data>{0} involves {1}</orm:Data>
|
|
584
|
+
<orm:ExpandedData>
|
|
585
|
+
<orm:RoleText RoleIndex="0" FollowingText=" involves " />
|
|
586
|
+
</orm:ExpandedData>
|
|
587
|
+
</orm:Reading>
|
|
588
|
+
</orm:Readings>
|
|
589
|
+
<orm:RoleSequence>
|
|
590
|
+
<orm:Role ref="_6D49B1A5-EA25-47BB-860E-A936C2F401BB" />
|
|
591
|
+
<orm:Role ref="_1720F561-34F1-4177-88CD-CD5E1E53316F" />
|
|
592
|
+
</orm:RoleSequence>
|
|
593
|
+
</orm:ReadingOrder>
|
|
594
|
+
</orm:ReadingOrders>
|
|
595
|
+
<orm:InternalConstraints>
|
|
596
|
+
<orm:MandatoryConstraint ref="_B453E80D-EF7B-45EF-8EDC-4DF44DE14960" />
|
|
597
|
+
<orm:UniquenessConstraint ref="_4FB556B9-F561-4A77-8318-2EB796D8C280" />
|
|
598
|
+
</orm:InternalConstraints>
|
|
599
|
+
<orm:ImpliedByObjectification ref="_CD82771E-0792-42AC-AC5C-2D1A43E2FEC7" />
|
|
600
|
+
</orm:ImpliedFact>
|
|
601
|
+
<orm:Fact id="_7D3A54EE-1699-424A-A375-1D75AD94D5DA" _Name="Policy Coverage">
|
|
602
|
+
<orm:FactRoles>
|
|
603
|
+
<orm:Role id="_C842E527-8C30-4BFD-BBC9-695BA97B82C3" _IsMandatory="false" _Multiplicity="ZeroToMany" Name="">
|
|
604
|
+
<orm:RolePlayer ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
605
|
+
</orm:Role>
|
|
606
|
+
<orm:Role id="_E8F091A3-0A28-4B85-815C-2C3D8F8C9E4D" _IsMandatory="false" _Multiplicity="ZeroToMany" Name="">
|
|
607
|
+
<orm:RolePlayer ref="_E02528A9-82D7-4F76-984A-161D7E5A8495" />
|
|
608
|
+
</orm:Role>
|
|
609
|
+
</orm:FactRoles>
|
|
610
|
+
<orm:ReadingOrders>
|
|
611
|
+
<orm:ReadingOrder id="_A01DB1C6-F25E-48ED-95C5-77DD57540F58">
|
|
612
|
+
<orm:Readings>
|
|
613
|
+
<orm:Reading id="_8236C90F-8F97-45A3-A3A5-881C3BD181A5">
|
|
614
|
+
<orm:Data>{0} includes {1}</orm:Data>
|
|
615
|
+
<orm:ExpandedData>
|
|
616
|
+
<orm:RoleText RoleIndex="0" FollowingText=" includes " />
|
|
617
|
+
</orm:ExpandedData>
|
|
618
|
+
</orm:Reading>
|
|
619
|
+
</orm:Readings>
|
|
620
|
+
<orm:RoleSequence>
|
|
621
|
+
<orm:Role ref="_C842E527-8C30-4BFD-BBC9-695BA97B82C3" />
|
|
622
|
+
<orm:Role ref="_E8F091A3-0A28-4B85-815C-2C3D8F8C9E4D" />
|
|
623
|
+
</orm:RoleSequence>
|
|
624
|
+
</orm:ReadingOrder>
|
|
625
|
+
</orm:ReadingOrders>
|
|
626
|
+
<orm:InternalConstraints>
|
|
627
|
+
<orm:UniquenessConstraint ref="_70CB09FF-83E7-44C2-9B37-2C8D4E7FE198" />
|
|
628
|
+
</orm:InternalConstraints>
|
|
629
|
+
</orm:Fact>
|
|
630
|
+
<orm:ImpliedFact id="_F424A802-6414-480A-9EDB-62E08F36CE95" _Name="PolicyIsInvolvedInPolicyCoverage">
|
|
631
|
+
<orm:FactRoles>
|
|
632
|
+
<orm:RoleProxy id="_2C9CDDDA-F2C1-4210-81DF-E02E19DD41A2">
|
|
633
|
+
<orm:Role ref="_C842E527-8C30-4BFD-BBC9-695BA97B82C3" />
|
|
634
|
+
</orm:RoleProxy>
|
|
635
|
+
<orm:Role id="_7D5F0D4F-F16D-4CD0-969F-CD4C5AA77D09" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
636
|
+
<orm:RolePlayer ref="_7B13A3E8-0388-451E-A121-913A35D317ED" />
|
|
637
|
+
</orm:Role>
|
|
638
|
+
</orm:FactRoles>
|
|
639
|
+
<orm:ReadingOrders>
|
|
640
|
+
<orm:ReadingOrder id="_E669FCDE-7EBF-490F-A3ED-81BE84F04D05">
|
|
641
|
+
<orm:Readings>
|
|
642
|
+
<orm:Reading id="_BBAC3464-30C5-451A-8B21-8F3D7771F0E6">
|
|
643
|
+
<orm:Data>{0} is involved in {1}</orm:Data>
|
|
644
|
+
<orm:ExpandedData>
|
|
645
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is involved in " />
|
|
646
|
+
</orm:ExpandedData>
|
|
647
|
+
</orm:Reading>
|
|
648
|
+
</orm:Readings>
|
|
649
|
+
<orm:RoleSequence>
|
|
650
|
+
<orm:Role ref="_2C9CDDDA-F2C1-4210-81DF-E02E19DD41A2" />
|
|
651
|
+
<orm:Role ref="_7D5F0D4F-F16D-4CD0-969F-CD4C5AA77D09" />
|
|
652
|
+
</orm:RoleSequence>
|
|
653
|
+
</orm:ReadingOrder>
|
|
654
|
+
<orm:ReadingOrder id="_4AD44F5F-D500-4088-BF97-00815B6C3E23">
|
|
655
|
+
<orm:Readings>
|
|
656
|
+
<orm:Reading id="_D3E327BB-EA45-4BF4-88EE-F0616719FABC">
|
|
657
|
+
<orm:Data>{0} involves {1}</orm:Data>
|
|
658
|
+
<orm:ExpandedData>
|
|
659
|
+
<orm:RoleText RoleIndex="0" FollowingText=" involves " />
|
|
660
|
+
</orm:ExpandedData>
|
|
661
|
+
</orm:Reading>
|
|
662
|
+
</orm:Readings>
|
|
663
|
+
<orm:RoleSequence>
|
|
664
|
+
<orm:Role ref="_7D5F0D4F-F16D-4CD0-969F-CD4C5AA77D09" />
|
|
665
|
+
<orm:Role ref="_2C9CDDDA-F2C1-4210-81DF-E02E19DD41A2" />
|
|
666
|
+
</orm:RoleSequence>
|
|
667
|
+
</orm:ReadingOrder>
|
|
668
|
+
</orm:ReadingOrders>
|
|
669
|
+
<orm:InternalConstraints>
|
|
670
|
+
<orm:MandatoryConstraint ref="_E52E67DE-146E-4521-80C9-272A8AAEAEF3" />
|
|
671
|
+
<orm:UniquenessConstraint ref="_73AC6393-A693-48F1-9A5D-583D7BCF79CC" />
|
|
672
|
+
</orm:InternalConstraints>
|
|
673
|
+
<orm:ImpliedByObjectification ref="_089078EF-B0A0-495B-85D9-CE4E3354DB67" />
|
|
674
|
+
</orm:ImpliedFact>
|
|
675
|
+
<orm:ImpliedFact id="_A6CF5324-61A5-4C4E-97C1-EC615580D2A6" _Name="CoverageTypeIsInvolvedInPolicyCoverage">
|
|
676
|
+
<orm:FactRoles>
|
|
677
|
+
<orm:RoleProxy id="_F6AC557D-8911-4C44-83CE-4156BECA2792">
|
|
678
|
+
<orm:Role ref="_E8F091A3-0A28-4B85-815C-2C3D8F8C9E4D" />
|
|
679
|
+
</orm:RoleProxy>
|
|
680
|
+
<orm:Role id="_A3D51996-F490-4247-84C0-28EDE3C6071D" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
681
|
+
<orm:RolePlayer ref="_7B13A3E8-0388-451E-A121-913A35D317ED" />
|
|
682
|
+
</orm:Role>
|
|
683
|
+
</orm:FactRoles>
|
|
684
|
+
<orm:ReadingOrders>
|
|
685
|
+
<orm:ReadingOrder id="_3B62E655-9324-4EE2-BF16-8490774A0D9F">
|
|
686
|
+
<orm:Readings>
|
|
687
|
+
<orm:Reading id="_AF453D37-2573-4FE9-A3B3-4B1144CAD5E2">
|
|
688
|
+
<orm:Data>{0} is involved in {1}</orm:Data>
|
|
689
|
+
<orm:ExpandedData>
|
|
690
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is involved in " />
|
|
691
|
+
</orm:ExpandedData>
|
|
692
|
+
</orm:Reading>
|
|
693
|
+
</orm:Readings>
|
|
694
|
+
<orm:RoleSequence>
|
|
695
|
+
<orm:Role ref="_F6AC557D-8911-4C44-83CE-4156BECA2792" />
|
|
696
|
+
<orm:Role ref="_A3D51996-F490-4247-84C0-28EDE3C6071D" />
|
|
697
|
+
</orm:RoleSequence>
|
|
698
|
+
</orm:ReadingOrder>
|
|
699
|
+
<orm:ReadingOrder id="_D4018985-71EB-48AA-82F9-778CFAF15879">
|
|
700
|
+
<orm:Readings>
|
|
701
|
+
<orm:Reading id="_84612EA0-8C2D-40B3-8491-B5D72A1FC107">
|
|
702
|
+
<orm:Data>{0} involves {1}</orm:Data>
|
|
703
|
+
<orm:ExpandedData>
|
|
704
|
+
<orm:RoleText RoleIndex="0" FollowingText=" involves " />
|
|
705
|
+
</orm:ExpandedData>
|
|
706
|
+
</orm:Reading>
|
|
707
|
+
</orm:Readings>
|
|
708
|
+
<orm:RoleSequence>
|
|
709
|
+
<orm:Role ref="_A3D51996-F490-4247-84C0-28EDE3C6071D" />
|
|
710
|
+
<orm:Role ref="_F6AC557D-8911-4C44-83CE-4156BECA2792" />
|
|
711
|
+
</orm:RoleSequence>
|
|
712
|
+
</orm:ReadingOrder>
|
|
713
|
+
</orm:ReadingOrders>
|
|
714
|
+
<orm:InternalConstraints>
|
|
715
|
+
<orm:MandatoryConstraint ref="_45CECFE1-CA23-47F6-A602-35EF64D46DEE" />
|
|
716
|
+
<orm:UniquenessConstraint ref="_00406394-CBD5-4DC9-840C-2C881D940498" />
|
|
717
|
+
</orm:InternalConstraints>
|
|
718
|
+
<orm:ImpliedByObjectification ref="_089078EF-B0A0-495B-85D9-CE4E3354DB67" />
|
|
719
|
+
</orm:ImpliedFact>
|
|
720
|
+
<orm:Fact id="_F372C868-BA79-4490-BBF9-8575C814E14F" _Name="PolicyCoverageIsAtCoverageLevel">
|
|
721
|
+
<orm:FactRoles>
|
|
722
|
+
<orm:Role id="_A0BFB76A-83DF-433E-8EFF-406A82CBA437" _IsMandatory="false" _Multiplicity="ZeroToMany" Name="">
|
|
723
|
+
<orm:RolePlayer ref="_7B13A3E8-0388-451E-A121-913A35D317ED" />
|
|
724
|
+
</orm:Role>
|
|
725
|
+
<orm:Role id="_AA21BD45-6F53-4A11-A703-6F55CCEBBBA9" _IsMandatory="false" _Multiplicity="ZeroToOne" Name="">
|
|
726
|
+
<orm:RolePlayer ref="_2F441EC6-C34F-4BCD-80F5-FDAF964F4DBC" />
|
|
727
|
+
</orm:Role>
|
|
728
|
+
</orm:FactRoles>
|
|
729
|
+
<orm:ReadingOrders>
|
|
730
|
+
<orm:ReadingOrder id="_BAE2D4FD-0FB4-4E85-90C2-FCAF524AA560">
|
|
731
|
+
<orm:Readings>
|
|
732
|
+
<orm:Reading id="_305F6798-0D51-44C4-A84E-271EFA6FA5EE">
|
|
733
|
+
<orm:Data>{0} is at {1}</orm:Data>
|
|
734
|
+
<orm:ExpandedData>
|
|
735
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is at " />
|
|
736
|
+
</orm:ExpandedData>
|
|
737
|
+
</orm:Reading>
|
|
738
|
+
</orm:Readings>
|
|
739
|
+
<orm:RoleSequence>
|
|
740
|
+
<orm:Role ref="_A0BFB76A-83DF-433E-8EFF-406A82CBA437" />
|
|
741
|
+
<orm:Role ref="_AA21BD45-6F53-4A11-A703-6F55CCEBBBA9" />
|
|
742
|
+
</orm:RoleSequence>
|
|
743
|
+
</orm:ReadingOrder>
|
|
744
|
+
</orm:ReadingOrders>
|
|
745
|
+
<orm:InternalConstraints>
|
|
746
|
+
<orm:UniquenessConstraint ref="_FA865460-5DE5-4039-9703-3D08EB5EEC3F" />
|
|
747
|
+
</orm:InternalConstraints>
|
|
748
|
+
</orm:Fact>
|
|
749
|
+
<orm:Fact id="_821952B2-B05F-4EE0-851B-FC323C36F9B2" _Name="IncidentAffectedClaimant">
|
|
750
|
+
<orm:FactRoles>
|
|
751
|
+
<orm:Role id="_F078C222-F4DA-4D7C-BE92-A5587497BFB3" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
752
|
+
<orm:RolePlayer ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
753
|
+
</orm:Role>
|
|
754
|
+
<orm:Role id="_CA897ED4-5C9F-4E32-8BD6-7977321CCC83" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
755
|
+
<orm:RolePlayer ref="_16EB6AB4-FB64-4E91-AE7F-F1C9C1FEADC1" />
|
|
756
|
+
</orm:Role>
|
|
757
|
+
</orm:FactRoles>
|
|
758
|
+
<orm:ReadingOrders>
|
|
759
|
+
<orm:ReadingOrder id="_F42791D3-0A5C-49C4-BB81-959C6550042F">
|
|
760
|
+
<orm:Readings>
|
|
761
|
+
<orm:Reading id="_65193028-F372-4513-9F1C-8FE312E8E6AF">
|
|
762
|
+
<orm:Data>{0} affected {1}</orm:Data>
|
|
763
|
+
<orm:ExpandedData>
|
|
764
|
+
<orm:RoleText RoleIndex="0" FollowingText=" affected " />
|
|
765
|
+
</orm:ExpandedData>
|
|
766
|
+
</orm:Reading>
|
|
767
|
+
</orm:Readings>
|
|
768
|
+
<orm:RoleSequence>
|
|
769
|
+
<orm:Role ref="_F078C222-F4DA-4D7C-BE92-A5587497BFB3" />
|
|
770
|
+
<orm:Role ref="_CA897ED4-5C9F-4E32-8BD6-7977321CCC83" />
|
|
771
|
+
</orm:RoleSequence>
|
|
772
|
+
</orm:ReadingOrder>
|
|
773
|
+
</orm:ReadingOrders>
|
|
774
|
+
<orm:InternalConstraints>
|
|
775
|
+
<orm:MandatoryConstraint ref="_6A62FC49-C1B2-4958-B00A-0AFA8705D2DA" />
|
|
776
|
+
<orm:UniquenessConstraint ref="_C3AE2B8C-617A-4A25-846A-080764BFD443" />
|
|
777
|
+
</orm:InternalConstraints>
|
|
778
|
+
</orm:Fact>
|
|
779
|
+
<orm:Fact id="_835C0214-2849-4054-9825-CB12A47900A9" _Name="IncidentHasIncidentID">
|
|
780
|
+
<orm:FactRoles>
|
|
781
|
+
<orm:Role id="_6342077F-ED39-4150-A578-6D54FBF4A357" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
782
|
+
<orm:RolePlayer ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
783
|
+
</orm:Role>
|
|
784
|
+
<orm:Role id="_2AD393DA-4FB7-487F-81BB-7BF7A41C54ED" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
785
|
+
<orm:RolePlayer ref="_E13815BF-CDC2-4807-8D02-DD754063C267" />
|
|
786
|
+
</orm:Role>
|
|
787
|
+
</orm:FactRoles>
|
|
788
|
+
<orm:ReadingOrders>
|
|
789
|
+
<orm:ReadingOrder id="_8A55AA87-CCBE-4C45-8CB8-60F41B5916B5">
|
|
790
|
+
<orm:Readings>
|
|
791
|
+
<orm:Reading id="_908EC84D-77C9-4886-9AD1-7F806EA7B099">
|
|
792
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
793
|
+
<orm:ExpandedData>
|
|
794
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
795
|
+
</orm:ExpandedData>
|
|
796
|
+
</orm:Reading>
|
|
797
|
+
</orm:Readings>
|
|
798
|
+
<orm:RoleSequence>
|
|
799
|
+
<orm:Role ref="_6342077F-ED39-4150-A578-6D54FBF4A357" />
|
|
800
|
+
<orm:Role ref="_2AD393DA-4FB7-487F-81BB-7BF7A41C54ED" />
|
|
801
|
+
</orm:RoleSequence>
|
|
802
|
+
</orm:ReadingOrder>
|
|
803
|
+
<orm:ReadingOrder id="_2C7F83D4-C40E-4CE4-8592-B4BD7E35BA9E">
|
|
804
|
+
<orm:Readings>
|
|
805
|
+
<orm:Reading id="_1B976801-1BB9-45AA-96CB-484053BFC457">
|
|
806
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
807
|
+
<orm:ExpandedData>
|
|
808
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
809
|
+
</orm:ExpandedData>
|
|
810
|
+
</orm:Reading>
|
|
811
|
+
</orm:Readings>
|
|
812
|
+
<orm:RoleSequence>
|
|
813
|
+
<orm:Role ref="_2AD393DA-4FB7-487F-81BB-7BF7A41C54ED" />
|
|
814
|
+
<orm:Role ref="_6342077F-ED39-4150-A578-6D54FBF4A357" />
|
|
815
|
+
</orm:RoleSequence>
|
|
816
|
+
</orm:ReadingOrder>
|
|
817
|
+
</orm:ReadingOrders>
|
|
818
|
+
<orm:InternalConstraints>
|
|
819
|
+
<orm:UniquenessConstraint ref="_72EBCAE0-D803-4B45-A9CB-FFD43E5A55E6" />
|
|
820
|
+
<orm:UniquenessConstraint ref="_AD68D83A-38A8-48F8-84CE-D9B30D890079" />
|
|
821
|
+
<orm:MandatoryConstraint ref="_A2B9172E-64F7-412B-B501-FEAC933AF7F2" />
|
|
822
|
+
</orm:InternalConstraints>
|
|
823
|
+
</orm:Fact>
|
|
824
|
+
<orm:Fact id="_EE9BB486-70B1-4E3A-9203-45F474A695A0" _Name="IncidentIsOfIncidentType">
|
|
825
|
+
<orm:FactRoles>
|
|
826
|
+
<orm:Role id="_D9FA26EF-6518-4EC4-B46A-3A26448319F9" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
827
|
+
<orm:RolePlayer ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
828
|
+
</orm:Role>
|
|
829
|
+
<orm:Role id="_D89CEBFF-10B2-4840-AD26-1B0AE4712D9B" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
830
|
+
<orm:RolePlayer ref="_C9782755-2396-4443-8305-3AEDE07345C1" />
|
|
831
|
+
</orm:Role>
|
|
832
|
+
</orm:FactRoles>
|
|
833
|
+
<orm:ReadingOrders>
|
|
834
|
+
<orm:ReadingOrder id="_CD912090-8AE0-4CAC-BDD7-FDF057AABB78">
|
|
835
|
+
<orm:Readings>
|
|
836
|
+
<orm:Reading id="_4F4589CE-B910-4B2C-9CF4-8B49751811BF">
|
|
837
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
838
|
+
<orm:ExpandedData>
|
|
839
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
840
|
+
</orm:ExpandedData>
|
|
841
|
+
</orm:Reading>
|
|
842
|
+
</orm:Readings>
|
|
843
|
+
<orm:RoleSequence>
|
|
844
|
+
<orm:Role ref="_D9FA26EF-6518-4EC4-B46A-3A26448319F9" />
|
|
845
|
+
<orm:Role ref="_D89CEBFF-10B2-4840-AD26-1B0AE4712D9B" />
|
|
846
|
+
</orm:RoleSequence>
|
|
847
|
+
</orm:ReadingOrder>
|
|
848
|
+
</orm:ReadingOrders>
|
|
849
|
+
<orm:InternalConstraints>
|
|
850
|
+
<orm:MandatoryConstraint ref="_FABACA58-F45E-4FDA-A1A8-544CF2AC23F8" />
|
|
851
|
+
<orm:UniquenessConstraint ref="_9D06329B-C55C-4357-B331-93D3F7119898" />
|
|
852
|
+
</orm:InternalConstraints>
|
|
853
|
+
</orm:Fact>
|
|
854
|
+
<orm:Fact id="_41C320D4-90D1-41C0-B64C-2D4AC074DDE0" _Name="IncidentTypeHasIncidentTypeName">
|
|
855
|
+
<orm:FactRoles>
|
|
856
|
+
<orm:Role id="_F2E2C89D-CA75-4E17-8D53-9C5AE8879790" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
857
|
+
<orm:RolePlayer ref="_C9782755-2396-4443-8305-3AEDE07345C1" />
|
|
858
|
+
</orm:Role>
|
|
859
|
+
<orm:Role id="_457C3F04-09EA-4885-816A-61DC8A85FF44" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
860
|
+
<orm:RolePlayer ref="_3797D1E4-C5C7-483B-8B52-C943908D07D0" />
|
|
861
|
+
</orm:Role>
|
|
862
|
+
</orm:FactRoles>
|
|
863
|
+
<orm:ReadingOrders>
|
|
864
|
+
<orm:ReadingOrder id="_A99A7101-DDA1-4396-9906-33E2F3086146">
|
|
865
|
+
<orm:Readings>
|
|
866
|
+
<orm:Reading id="_274D15F8-01FB-4201-B565-E4EADCDD92F4">
|
|
867
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
868
|
+
<orm:ExpandedData>
|
|
869
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
870
|
+
</orm:ExpandedData>
|
|
871
|
+
</orm:Reading>
|
|
872
|
+
</orm:Readings>
|
|
873
|
+
<orm:RoleSequence>
|
|
874
|
+
<orm:Role ref="_F2E2C89D-CA75-4E17-8D53-9C5AE8879790" />
|
|
875
|
+
<orm:Role ref="_457C3F04-09EA-4885-816A-61DC8A85FF44" />
|
|
876
|
+
</orm:RoleSequence>
|
|
877
|
+
</orm:ReadingOrder>
|
|
878
|
+
<orm:ReadingOrder id="_45F49B1F-53C1-4BEC-AC55-20EAD94E0A1E">
|
|
879
|
+
<orm:Readings>
|
|
880
|
+
<orm:Reading id="_733AE0DD-2E56-4165-ABD8-795F5177C360">
|
|
881
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
882
|
+
<orm:ExpandedData>
|
|
883
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
884
|
+
</orm:ExpandedData>
|
|
885
|
+
</orm:Reading>
|
|
886
|
+
</orm:Readings>
|
|
887
|
+
<orm:RoleSequence>
|
|
888
|
+
<orm:Role ref="_457C3F04-09EA-4885-816A-61DC8A85FF44" />
|
|
889
|
+
<orm:Role ref="_F2E2C89D-CA75-4E17-8D53-9C5AE8879790" />
|
|
890
|
+
</orm:RoleSequence>
|
|
891
|
+
</orm:ReadingOrder>
|
|
892
|
+
</orm:ReadingOrders>
|
|
893
|
+
<orm:InternalConstraints>
|
|
894
|
+
<orm:UniquenessConstraint ref="_8401E4A9-72A2-49FB-B307-720F9FAC2EED" />
|
|
895
|
+
<orm:UniquenessConstraint ref="_74AED8C2-BAE6-43A1-B526-66E0CFB6465D" />
|
|
896
|
+
<orm:MandatoryConstraint ref="_601E8787-FBA3-41D0-A6DE-FE16D2BEB505" />
|
|
897
|
+
</orm:InternalConstraints>
|
|
898
|
+
</orm:Fact>
|
|
899
|
+
<orm:Fact id="_EBB514B3-7ABD-41D2-BD08-543318D75E3E" _Name="IncidentOccurredOnDate">
|
|
900
|
+
<orm:FactRoles>
|
|
901
|
+
<orm:Role id="_3FBD98F8-231B-4D60-AD67-2BF44D4D49B7" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
902
|
+
<orm:RolePlayer ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
903
|
+
</orm:Role>
|
|
904
|
+
<orm:Role id="_8E8AF27F-264A-4D59-98AA-80C6EED0663D" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
905
|
+
<orm:RolePlayer ref="_8606EA36-1051-44C5-A015-27F7398E7896" />
|
|
906
|
+
</orm:Role>
|
|
907
|
+
</orm:FactRoles>
|
|
908
|
+
<orm:ReadingOrders>
|
|
909
|
+
<orm:ReadingOrder id="_87049C8E-B3AA-42D5-8BB1-1AD011A9C3F0">
|
|
910
|
+
<orm:Readings>
|
|
911
|
+
<orm:Reading id="_EB07F5C2-6666-47E0-96F7-5CFB5984EDE2">
|
|
912
|
+
<orm:Data>{0} occurred on {1}</orm:Data>
|
|
913
|
+
<orm:ExpandedData>
|
|
914
|
+
<orm:RoleText RoleIndex="0" FollowingText=" occurred on " />
|
|
915
|
+
</orm:ExpandedData>
|
|
916
|
+
</orm:Reading>
|
|
917
|
+
</orm:Readings>
|
|
918
|
+
<orm:RoleSequence>
|
|
919
|
+
<orm:Role ref="_3FBD98F8-231B-4D60-AD67-2BF44D4D49B7" />
|
|
920
|
+
<orm:Role ref="_8E8AF27F-264A-4D59-98AA-80C6EED0663D" />
|
|
921
|
+
</orm:RoleSequence>
|
|
922
|
+
</orm:ReadingOrder>
|
|
923
|
+
</orm:ReadingOrders>
|
|
924
|
+
<orm:InternalConstraints>
|
|
925
|
+
<orm:UniquenessConstraint ref="_6775A3A1-E9ED-4FF8-BF16-511A6D8A6C2A" />
|
|
926
|
+
<orm:MandatoryConstraint ref="_6708D3D0-FC76-400D-99D5-A8FBFF16FFB0" />
|
|
927
|
+
</orm:InternalConstraints>
|
|
928
|
+
</orm:Fact>
|
|
929
|
+
<orm:Fact id="_1E655D24-D457-4C05-A65E-1A7B254CFEF7" _Name="IncidentHasDescriptiveText">
|
|
930
|
+
<orm:FactRoles>
|
|
931
|
+
<orm:Role id="_0B0D761F-62A9-43D7-A039-90FDCDDBC3FB" _IsMandatory="false" _Multiplicity="ZeroToMany" Name="">
|
|
932
|
+
<orm:RolePlayer ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
933
|
+
</orm:Role>
|
|
934
|
+
<orm:Role id="_0DD65F1B-AEAB-42C0-9079-3DAE955800DE" _IsMandatory="false" _Multiplicity="ZeroToOne" Name="">
|
|
935
|
+
<orm:RolePlayer ref="_42089352-832B-4010-BC8E-B388F1F3F819" />
|
|
936
|
+
</orm:Role>
|
|
937
|
+
</orm:FactRoles>
|
|
938
|
+
<orm:ReadingOrders>
|
|
939
|
+
<orm:ReadingOrder id="_10855BDF-0C7B-4011-B68B-2173DFB2663F">
|
|
940
|
+
<orm:Readings>
|
|
941
|
+
<orm:Reading id="_D2517720-52F7-43DB-91F7-23A7380D48A1">
|
|
942
|
+
<orm:Data>{0} has descriptive- {1}</orm:Data>
|
|
943
|
+
<orm:ExpandedData>
|
|
944
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
945
|
+
<orm:RoleText RoleIndex="1" PreBoundText="descriptive " />
|
|
946
|
+
</orm:ExpandedData>
|
|
947
|
+
</orm:Reading>
|
|
948
|
+
</orm:Readings>
|
|
949
|
+
<orm:RoleSequence>
|
|
950
|
+
<orm:Role ref="_0B0D761F-62A9-43D7-A039-90FDCDDBC3FB" />
|
|
951
|
+
<orm:Role ref="_0DD65F1B-AEAB-42C0-9079-3DAE955800DE" />
|
|
952
|
+
</orm:RoleSequence>
|
|
953
|
+
</orm:ReadingOrder>
|
|
954
|
+
</orm:ReadingOrders>
|
|
955
|
+
<orm:InternalConstraints>
|
|
956
|
+
<orm:UniquenessConstraint ref="_54396374-4F4C-4EC3-A8A7-6E4E4A5045C9" />
|
|
957
|
+
</orm:InternalConstraints>
|
|
958
|
+
</orm:Fact>
|
|
959
|
+
<orm:Fact id="_40A2C5BA-086A-4747-BC27-6F4D0AEA58ED" _Name="ClaimHasClaimNumber">
|
|
960
|
+
<orm:FactRoles>
|
|
961
|
+
<orm:Role id="_68C2D4C8-C004-473A-82A5-38E69E43634F" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
962
|
+
<orm:RolePlayer ref="_28CE0DE3-F519-47C9-BAE9-CC22EB4AB646" />
|
|
963
|
+
</orm:Role>
|
|
964
|
+
<orm:Role id="_0F8859AA-ED87-4036-8A3C-DFF94CB96749" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
965
|
+
<orm:RolePlayer ref="_A97CCE60-73E7-4549-98D4-54FF3E2DBC14" />
|
|
966
|
+
</orm:Role>
|
|
967
|
+
</orm:FactRoles>
|
|
968
|
+
<orm:ReadingOrders>
|
|
969
|
+
<orm:ReadingOrder id="_3598AEFA-9534-40EB-AB11-21DE206A1E0C">
|
|
970
|
+
<orm:Readings>
|
|
971
|
+
<orm:Reading id="_674C6208-DE20-49A5-B787-FF0F0BD40C30">
|
|
972
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
973
|
+
<orm:ExpandedData>
|
|
974
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
975
|
+
</orm:ExpandedData>
|
|
976
|
+
</orm:Reading>
|
|
977
|
+
</orm:Readings>
|
|
978
|
+
<orm:RoleSequence>
|
|
979
|
+
<orm:Role ref="_68C2D4C8-C004-473A-82A5-38E69E43634F" />
|
|
980
|
+
<orm:Role ref="_0F8859AA-ED87-4036-8A3C-DFF94CB96749" />
|
|
981
|
+
</orm:RoleSequence>
|
|
982
|
+
</orm:ReadingOrder>
|
|
983
|
+
<orm:ReadingOrder id="_EADFEBB8-B4BB-429D-972E-312F028CD181">
|
|
984
|
+
<orm:Readings>
|
|
985
|
+
<orm:Reading id="_D10708BD-B19C-41C1-8590-9A69366ABA3E">
|
|
986
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
987
|
+
<orm:ExpandedData>
|
|
988
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
989
|
+
</orm:ExpandedData>
|
|
990
|
+
</orm:Reading>
|
|
991
|
+
</orm:Readings>
|
|
992
|
+
<orm:RoleSequence>
|
|
993
|
+
<orm:Role ref="_0F8859AA-ED87-4036-8A3C-DFF94CB96749" />
|
|
994
|
+
<orm:Role ref="_68C2D4C8-C004-473A-82A5-38E69E43634F" />
|
|
995
|
+
</orm:RoleSequence>
|
|
996
|
+
</orm:ReadingOrder>
|
|
997
|
+
</orm:ReadingOrders>
|
|
998
|
+
<orm:InternalConstraints>
|
|
999
|
+
<orm:UniquenessConstraint ref="_36DA76FD-0653-404B-8331-DC6EF2115158" />
|
|
1000
|
+
<orm:UniquenessConstraint ref="_A2087B27-D49F-4C98-9FAF-59BA4EAF5A0E" />
|
|
1001
|
+
<orm:MandatoryConstraint ref="_60BAD525-7297-4597-9490-8F5DD7EB3E8C" />
|
|
1002
|
+
</orm:InternalConstraints>
|
|
1003
|
+
</orm:Fact>
|
|
1004
|
+
<orm:Fact id="_7A29D10B-56A8-4971-B4E9-5302B4F6F810" _Name="ClaimConcernsIncident">
|
|
1005
|
+
<orm:FactRoles>
|
|
1006
|
+
<orm:Role id="_9B326FFA-12FF-471F-8D3F-67CA5BFF6615" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
1007
|
+
<orm:RolePlayer ref="_28CE0DE3-F519-47C9-BAE9-CC22EB4AB646" />
|
|
1008
|
+
</orm:Role>
|
|
1009
|
+
<orm:Role id="_5218BF9F-C24C-4E26-A6E8-793500D7E2CC" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1010
|
+
<orm:RolePlayer ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
1011
|
+
</orm:Role>
|
|
1012
|
+
</orm:FactRoles>
|
|
1013
|
+
<orm:ReadingOrders>
|
|
1014
|
+
<orm:ReadingOrder id="_57BB0147-A52C-403A-8E94-7C2BCC08BA44">
|
|
1015
|
+
<orm:Readings>
|
|
1016
|
+
<orm:Reading id="_00FE8152-57C9-4865-A201-5D29297572FC">
|
|
1017
|
+
<orm:Data>{0} concerns {1}</orm:Data>
|
|
1018
|
+
<orm:ExpandedData>
|
|
1019
|
+
<orm:RoleText RoleIndex="0" FollowingText=" concerns " />
|
|
1020
|
+
</orm:ExpandedData>
|
|
1021
|
+
</orm:Reading>
|
|
1022
|
+
</orm:Readings>
|
|
1023
|
+
<orm:RoleSequence>
|
|
1024
|
+
<orm:Role ref="_9B326FFA-12FF-471F-8D3F-67CA5BFF6615" />
|
|
1025
|
+
<orm:Role ref="_5218BF9F-C24C-4E26-A6E8-793500D7E2CC" />
|
|
1026
|
+
</orm:RoleSequence>
|
|
1027
|
+
</orm:ReadingOrder>
|
|
1028
|
+
<orm:ReadingOrder id="_4551D08D-AB3B-4A38-B509-9B7888298CA4">
|
|
1029
|
+
<orm:Readings>
|
|
1030
|
+
<orm:Reading id="_58F56794-9028-4DB0-B1A7-E66E016DD2C3">
|
|
1031
|
+
<orm:Data>{0} resulted in {1}</orm:Data>
|
|
1032
|
+
<orm:ExpandedData>
|
|
1033
|
+
<orm:RoleText RoleIndex="0" FollowingText=" resulted in " />
|
|
1034
|
+
</orm:ExpandedData>
|
|
1035
|
+
</orm:Reading>
|
|
1036
|
+
</orm:Readings>
|
|
1037
|
+
<orm:RoleSequence>
|
|
1038
|
+
<orm:Role ref="_5218BF9F-C24C-4E26-A6E8-793500D7E2CC" />
|
|
1039
|
+
<orm:Role ref="_9B326FFA-12FF-471F-8D3F-67CA5BFF6615" />
|
|
1040
|
+
</orm:RoleSequence>
|
|
1041
|
+
</orm:ReadingOrder>
|
|
1042
|
+
</orm:ReadingOrders>
|
|
1043
|
+
<orm:InternalConstraints>
|
|
1044
|
+
<orm:UniquenessConstraint ref="_96A97AA9-E7F9-4C73-9419-E287A7D32044" />
|
|
1045
|
+
<orm:UniquenessConstraint ref="_60A52FD2-8C27-4D15-89E4-FCD12D067F8D" />
|
|
1046
|
+
<orm:MandatoryConstraint ref="_FB4E150A-1E9C-448E-A219-7BD62B691EA5" />
|
|
1047
|
+
</orm:InternalConstraints>
|
|
1048
|
+
</orm:Fact>
|
|
1049
|
+
<orm:Fact id="_C6477377-F55B-4F69-95BF-A99C396C38DA" _Name="Claim Details">
|
|
1050
|
+
<orm:FactRoles>
|
|
1051
|
+
<orm:Role id="_647999A3-D0AE-4469-8323-40939319E45A" _IsMandatory="false" _Multiplicity="Unspecified" Name="">
|
|
1052
|
+
<orm:RolePlayer ref="_28CE0DE3-F519-47C9-BAE9-CC22EB4AB646" />
|
|
1053
|
+
</orm:Role>
|
|
1054
|
+
<orm:Role id="_BABD0E04-4B13-4AAB-8779-28A78AFA5DF5" _IsMandatory="false" _Multiplicity="Unspecified" Name="">
|
|
1055
|
+
<orm:RolePlayer ref="_7B13A3E8-0388-451E-A121-913A35D317ED" />
|
|
1056
|
+
</orm:Role>
|
|
1057
|
+
<orm:Role id="_C8E86C24-A9F1-45EC-8B66-AA484FFBD33C" _IsMandatory="false" _Multiplicity="Unspecified" Name="">
|
|
1058
|
+
<orm:RolePlayer ref="_8606EA36-1051-44C5-A015-27F7398E7896" />
|
|
1059
|
+
</orm:Role>
|
|
1060
|
+
</orm:FactRoles>
|
|
1061
|
+
<orm:ReadingOrders>
|
|
1062
|
+
<orm:ReadingOrder id="_33BCF470-BE85-469A-B7A4-B6A56D3D9B24">
|
|
1063
|
+
<orm:Readings>
|
|
1064
|
+
<orm:Reading id="_340F831B-5CE1-4B38-A59F-5B9B5760E265">
|
|
1065
|
+
<orm:Data>{0} claims against {1} on {2}</orm:Data>
|
|
1066
|
+
<orm:ExpandedData>
|
|
1067
|
+
<orm:RoleText RoleIndex="0" FollowingText=" claims against " />
|
|
1068
|
+
<orm:RoleText RoleIndex="1" FollowingText=" on " />
|
|
1069
|
+
</orm:ExpandedData>
|
|
1070
|
+
</orm:Reading>
|
|
1071
|
+
</orm:Readings>
|
|
1072
|
+
<orm:RoleSequence>
|
|
1073
|
+
<orm:Role ref="_647999A3-D0AE-4469-8323-40939319E45A" />
|
|
1074
|
+
<orm:Role ref="_BABD0E04-4B13-4AAB-8779-28A78AFA5DF5" />
|
|
1075
|
+
<orm:Role ref="_C8E86C24-A9F1-45EC-8B66-AA484FFBD33C" />
|
|
1076
|
+
</orm:RoleSequence>
|
|
1077
|
+
</orm:ReadingOrder>
|
|
1078
|
+
<orm:ReadingOrder id="_B2D13D68-4980-487A-BCFC-E672ADA7EBBE">
|
|
1079
|
+
<orm:Readings>
|
|
1080
|
+
<orm:Reading id="_2532E7C6-B619-4639-874A-BE9A580FAF1E">
|
|
1081
|
+
<orm:Data>{0} is claimed under {1} for {2}</orm:Data>
|
|
1082
|
+
<orm:ExpandedData>
|
|
1083
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is claimed under " />
|
|
1084
|
+
<orm:RoleText RoleIndex="1" FollowingText=" for " />
|
|
1085
|
+
</orm:ExpandedData>
|
|
1086
|
+
</orm:Reading>
|
|
1087
|
+
</orm:Readings>
|
|
1088
|
+
<orm:RoleSequence>
|
|
1089
|
+
<orm:Role ref="_BABD0E04-4B13-4AAB-8779-28A78AFA5DF5" />
|
|
1090
|
+
<orm:Role ref="_647999A3-D0AE-4469-8323-40939319E45A" />
|
|
1091
|
+
<orm:Role ref="_C8E86C24-A9F1-45EC-8B66-AA484FFBD33C" />
|
|
1092
|
+
</orm:RoleSequence>
|
|
1093
|
+
</orm:ReadingOrder>
|
|
1094
|
+
</orm:ReadingOrders>
|
|
1095
|
+
<orm:InternalConstraints>
|
|
1096
|
+
<orm:UniquenessConstraint ref="_29265FEC-D3A0-4325-B2E1-89EF6067E9D8" />
|
|
1097
|
+
</orm:InternalConstraints>
|
|
1098
|
+
</orm:Fact>
|
|
1099
|
+
<orm:ImpliedFact id="_C4C4EF76-0BE8-4631-B266-07F8CCE33D7E" _Name="ClaimIsInvolvedInClaimDetails">
|
|
1100
|
+
<orm:FactRoles>
|
|
1101
|
+
<orm:RoleProxy id="_8C41CF47-EA96-49C0-9545-0713D3ED2255">
|
|
1102
|
+
<orm:Role ref="_647999A3-D0AE-4469-8323-40939319E45A" />
|
|
1103
|
+
</orm:RoleProxy>
|
|
1104
|
+
<orm:Role id="_586AA182-516C-4FB8-A52C-411FC16088CA" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
1105
|
+
<orm:RolePlayer ref="_F15EBD20-E065-418C-A346-480E16B665E5" />
|
|
1106
|
+
</orm:Role>
|
|
1107
|
+
</orm:FactRoles>
|
|
1108
|
+
<orm:ReadingOrders>
|
|
1109
|
+
<orm:ReadingOrder id="_3586BE43-3E98-4A00-9B1F-8EBA396C2AC3">
|
|
1110
|
+
<orm:Readings>
|
|
1111
|
+
<orm:Reading id="_A1DB416B-81CC-489D-8B2A-328EAEAE1DBC">
|
|
1112
|
+
<orm:Data>{0} is involved in {1}</orm:Data>
|
|
1113
|
+
<orm:ExpandedData>
|
|
1114
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is involved in " />
|
|
1115
|
+
</orm:ExpandedData>
|
|
1116
|
+
</orm:Reading>
|
|
1117
|
+
</orm:Readings>
|
|
1118
|
+
<orm:RoleSequence>
|
|
1119
|
+
<orm:Role ref="_8C41CF47-EA96-49C0-9545-0713D3ED2255" />
|
|
1120
|
+
<orm:Role ref="_586AA182-516C-4FB8-A52C-411FC16088CA" />
|
|
1121
|
+
</orm:RoleSequence>
|
|
1122
|
+
</orm:ReadingOrder>
|
|
1123
|
+
<orm:ReadingOrder id="_C90E07AF-3C8F-49A3-A7E3-82AD7EE11DC2">
|
|
1124
|
+
<orm:Readings>
|
|
1125
|
+
<orm:Reading id="_CDC9388D-2E11-46CE-8790-04D6E89E8414">
|
|
1126
|
+
<orm:Data>{0} involves {1}</orm:Data>
|
|
1127
|
+
<orm:ExpandedData>
|
|
1128
|
+
<orm:RoleText RoleIndex="0" FollowingText=" involves " />
|
|
1129
|
+
</orm:ExpandedData>
|
|
1130
|
+
</orm:Reading>
|
|
1131
|
+
</orm:Readings>
|
|
1132
|
+
<orm:RoleSequence>
|
|
1133
|
+
<orm:Role ref="_586AA182-516C-4FB8-A52C-411FC16088CA" />
|
|
1134
|
+
<orm:Role ref="_8C41CF47-EA96-49C0-9545-0713D3ED2255" />
|
|
1135
|
+
</orm:RoleSequence>
|
|
1136
|
+
</orm:ReadingOrder>
|
|
1137
|
+
</orm:ReadingOrders>
|
|
1138
|
+
<orm:InternalConstraints>
|
|
1139
|
+
<orm:MandatoryConstraint ref="_2572D9A2-004E-479E-B1FF-7FA534F750F6" />
|
|
1140
|
+
<orm:UniquenessConstraint ref="_FC40BC9E-7C40-4183-952D-B285AC4B8207" />
|
|
1141
|
+
</orm:InternalConstraints>
|
|
1142
|
+
<orm:ImpliedByObjectification ref="_2C9BE789-D118-4B2F-8DAA-674BFF87EEE3" />
|
|
1143
|
+
</orm:ImpliedFact>
|
|
1144
|
+
<orm:ImpliedFact id="_8F2C62E2-2CF8-4B87-A1A3-8DF7F01AD7C9" _Name="PolicyCoverageIsInvolvedInClaimDetails">
|
|
1145
|
+
<orm:FactRoles>
|
|
1146
|
+
<orm:RoleProxy id="_4A9C6754-5E1C-40DF-A297-A18460926534">
|
|
1147
|
+
<orm:Role ref="_BABD0E04-4B13-4AAB-8779-28A78AFA5DF5" />
|
|
1148
|
+
</orm:RoleProxy>
|
|
1149
|
+
<orm:Role id="_673E8D66-677D-487B-A145-21157DB878C7" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
1150
|
+
<orm:RolePlayer ref="_F15EBD20-E065-418C-A346-480E16B665E5" />
|
|
1151
|
+
</orm:Role>
|
|
1152
|
+
</orm:FactRoles>
|
|
1153
|
+
<orm:ReadingOrders>
|
|
1154
|
+
<orm:ReadingOrder id="_1B744C11-1959-466C-8E6C-CEB346484302">
|
|
1155
|
+
<orm:Readings>
|
|
1156
|
+
<orm:Reading id="_D54D2BA7-BFB9-432C-B230-4F6BD42A2A19">
|
|
1157
|
+
<orm:Data>{0} is involved in {1}</orm:Data>
|
|
1158
|
+
<orm:ExpandedData>
|
|
1159
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is involved in " />
|
|
1160
|
+
</orm:ExpandedData>
|
|
1161
|
+
</orm:Reading>
|
|
1162
|
+
</orm:Readings>
|
|
1163
|
+
<orm:RoleSequence>
|
|
1164
|
+
<orm:Role ref="_4A9C6754-5E1C-40DF-A297-A18460926534" />
|
|
1165
|
+
<orm:Role ref="_673E8D66-677D-487B-A145-21157DB878C7" />
|
|
1166
|
+
</orm:RoleSequence>
|
|
1167
|
+
</orm:ReadingOrder>
|
|
1168
|
+
<orm:ReadingOrder id="_0C1CE3A2-6AB7-423F-9B8B-CC2BC7E8CA01">
|
|
1169
|
+
<orm:Readings>
|
|
1170
|
+
<orm:Reading id="_557C490F-4433-488C-8740-10F6FC3E8F60">
|
|
1171
|
+
<orm:Data>{0} involves {1}</orm:Data>
|
|
1172
|
+
<orm:ExpandedData>
|
|
1173
|
+
<orm:RoleText RoleIndex="0" FollowingText=" involves " />
|
|
1174
|
+
</orm:ExpandedData>
|
|
1175
|
+
</orm:Reading>
|
|
1176
|
+
</orm:Readings>
|
|
1177
|
+
<orm:RoleSequence>
|
|
1178
|
+
<orm:Role ref="_673E8D66-677D-487B-A145-21157DB878C7" />
|
|
1179
|
+
<orm:Role ref="_4A9C6754-5E1C-40DF-A297-A18460926534" />
|
|
1180
|
+
</orm:RoleSequence>
|
|
1181
|
+
</orm:ReadingOrder>
|
|
1182
|
+
</orm:ReadingOrders>
|
|
1183
|
+
<orm:InternalConstraints>
|
|
1184
|
+
<orm:MandatoryConstraint ref="_FD23901C-AD1F-4A5F-BAB7-AF4F1F491873" />
|
|
1185
|
+
<orm:UniquenessConstraint ref="_DFD12991-6DFB-434A-832F-D98107E54D95" />
|
|
1186
|
+
</orm:InternalConstraints>
|
|
1187
|
+
<orm:ImpliedByObjectification ref="_2C9BE789-D118-4B2F-8DAA-674BFF87EEE3" />
|
|
1188
|
+
</orm:ImpliedFact>
|
|
1189
|
+
<orm:ImpliedFact id="_71498315-2F0F-4706-BE78-61FCD0B0B38E" _Name="DateIsInvolvedInClaimDetails">
|
|
1190
|
+
<orm:FactRoles>
|
|
1191
|
+
<orm:RoleProxy id="_1EF3E703-E392-44D0-8790-59487519FDF9">
|
|
1192
|
+
<orm:Role ref="_C8E86C24-A9F1-45EC-8B66-AA484FFBD33C" />
|
|
1193
|
+
</orm:RoleProxy>
|
|
1194
|
+
<orm:Role id="_49E6354F-F730-444A-BC94-5B02AF691C42" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
1195
|
+
<orm:RolePlayer ref="_F15EBD20-E065-418C-A346-480E16B665E5" />
|
|
1196
|
+
</orm:Role>
|
|
1197
|
+
</orm:FactRoles>
|
|
1198
|
+
<orm:ReadingOrders>
|
|
1199
|
+
<orm:ReadingOrder id="_A2499166-DAC8-47F4-8045-BE937E870838">
|
|
1200
|
+
<orm:Readings>
|
|
1201
|
+
<orm:Reading id="_DC1A9365-6564-424C-88D0-87301924A8C6">
|
|
1202
|
+
<orm:Data>{0} is involved in {1}</orm:Data>
|
|
1203
|
+
<orm:ExpandedData>
|
|
1204
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is involved in " />
|
|
1205
|
+
</orm:ExpandedData>
|
|
1206
|
+
</orm:Reading>
|
|
1207
|
+
</orm:Readings>
|
|
1208
|
+
<orm:RoleSequence>
|
|
1209
|
+
<orm:Role ref="_1EF3E703-E392-44D0-8790-59487519FDF9" />
|
|
1210
|
+
<orm:Role ref="_49E6354F-F730-444A-BC94-5B02AF691C42" />
|
|
1211
|
+
</orm:RoleSequence>
|
|
1212
|
+
</orm:ReadingOrder>
|
|
1213
|
+
<orm:ReadingOrder id="_60AD1632-9677-46E8-8F8C-0BEED70A33BA">
|
|
1214
|
+
<orm:Readings>
|
|
1215
|
+
<orm:Reading id="_4F851F34-35BA-4235-BA22-2839B44F89FC">
|
|
1216
|
+
<orm:Data>{0} involves {1}</orm:Data>
|
|
1217
|
+
<orm:ExpandedData>
|
|
1218
|
+
<orm:RoleText RoleIndex="0" FollowingText=" involves " />
|
|
1219
|
+
</orm:ExpandedData>
|
|
1220
|
+
</orm:Reading>
|
|
1221
|
+
</orm:Readings>
|
|
1222
|
+
<orm:RoleSequence>
|
|
1223
|
+
<orm:Role ref="_49E6354F-F730-444A-BC94-5B02AF691C42" />
|
|
1224
|
+
<orm:Role ref="_1EF3E703-E392-44D0-8790-59487519FDF9" />
|
|
1225
|
+
</orm:RoleSequence>
|
|
1226
|
+
</orm:ReadingOrder>
|
|
1227
|
+
</orm:ReadingOrders>
|
|
1228
|
+
<orm:InternalConstraints>
|
|
1229
|
+
<orm:MandatoryConstraint ref="_FE996827-3316-4C42-8CFF-7521E85D5E61" />
|
|
1230
|
+
<orm:UniquenessConstraint ref="_5E6F7181-7627-4385-9AC3-34C3E89E56A5" />
|
|
1231
|
+
</orm:InternalConstraints>
|
|
1232
|
+
<orm:ImpliedByObjectification ref="_2C9BE789-D118-4B2F-8DAA-674BFF87EEE3" />
|
|
1233
|
+
</orm:ImpliedFact>
|
|
1234
|
+
<orm:Fact id="_DAAE4F90-87D0-4468-B302-29018F50B920" _Name="ClaimPaymentIsForClaimDetails">
|
|
1235
|
+
<orm:FactRoles>
|
|
1236
|
+
<orm:Role id="_A25ACFA7-F34E-40FF-9510-A7F739C88902" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
1237
|
+
<orm:RolePlayer ref="_CC5CF3F4-4F49-448D-A4FB-5BE3A6B97C2F" />
|
|
1238
|
+
</orm:Role>
|
|
1239
|
+
<orm:Role id="_19F0EA78-E40A-44C6-AD3A-BC35A9328422" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1240
|
+
<orm:RolePlayer ref="_F15EBD20-E065-418C-A346-480E16B665E5" />
|
|
1241
|
+
</orm:Role>
|
|
1242
|
+
</orm:FactRoles>
|
|
1243
|
+
<orm:ReadingOrders>
|
|
1244
|
+
<orm:ReadingOrder id="_6CDC732F-934A-4B0D-80DE-107EE1448885">
|
|
1245
|
+
<orm:Readings>
|
|
1246
|
+
<orm:Reading id="_E0386418-6134-4E8C-857A-35921B2C128B">
|
|
1247
|
+
<orm:Data>{0} is for {1}</orm:Data>
|
|
1248
|
+
<orm:ExpandedData>
|
|
1249
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is for " />
|
|
1250
|
+
</orm:ExpandedData>
|
|
1251
|
+
</orm:Reading>
|
|
1252
|
+
</orm:Readings>
|
|
1253
|
+
<orm:RoleSequence>
|
|
1254
|
+
<orm:Role ref="_A25ACFA7-F34E-40FF-9510-A7F739C88902" />
|
|
1255
|
+
<orm:Role ref="_19F0EA78-E40A-44C6-AD3A-BC35A9328422" />
|
|
1256
|
+
</orm:RoleSequence>
|
|
1257
|
+
</orm:ReadingOrder>
|
|
1258
|
+
<orm:ReadingOrder id="_4F49BC35-E1C1-4559-B8D5-B6BB0230F4BC">
|
|
1259
|
+
<orm:Readings>
|
|
1260
|
+
<orm:Reading id="_DCA70C24-75C5-401F-8650-5879F4B75AC9">
|
|
1261
|
+
<orm:Data>{0} is paid by {1}</orm:Data>
|
|
1262
|
+
<orm:ExpandedData>
|
|
1263
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is paid by " />
|
|
1264
|
+
</orm:ExpandedData>
|
|
1265
|
+
</orm:Reading>
|
|
1266
|
+
</orm:Readings>
|
|
1267
|
+
<orm:RoleSequence>
|
|
1268
|
+
<orm:Role ref="_19F0EA78-E40A-44C6-AD3A-BC35A9328422" />
|
|
1269
|
+
<orm:Role ref="_A25ACFA7-F34E-40FF-9510-A7F739C88902" />
|
|
1270
|
+
</orm:RoleSequence>
|
|
1271
|
+
</orm:ReadingOrder>
|
|
1272
|
+
</orm:ReadingOrders>
|
|
1273
|
+
<orm:InternalConstraints>
|
|
1274
|
+
<orm:UniquenessConstraint ref="_277B2FB1-75E2-4058-AA01-3CF6954079C7" />
|
|
1275
|
+
<orm:UniquenessConstraint ref="_2AE7C2BD-6B1E-40C8-8727-340A2A74D409" />
|
|
1276
|
+
<orm:MandatoryConstraint ref="_2AE3B349-FC1A-48B9-82FD-2B6EA5241647" />
|
|
1277
|
+
</orm:InternalConstraints>
|
|
1278
|
+
</orm:Fact>
|
|
1279
|
+
<orm:Fact id="_4770C404-01A2-4962-A2F4-0F35EEE2AF31" _Name="ClaimPaymentTypeHasClaimPaymentTypeCode">
|
|
1280
|
+
<orm:FactRoles>
|
|
1281
|
+
<orm:Role id="_D3EF80EF-9A6B-485B-8D80-77025B6F2FD2" _IsMandatory="true" _Multiplicity="ZeroToOne" Name="">
|
|
1282
|
+
<orm:RolePlayer ref="_86E381B2-0D09-437D-82E0-0EDF38A3260C" />
|
|
1283
|
+
</orm:Role>
|
|
1284
|
+
<orm:Role id="_8E4BBEA3-BDD5-4C4C-B4F3-49D16E76B2A5" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1285
|
+
<orm:RolePlayer ref="_8F7E4CDC-845B-498D-8C13-8CA799DB3D59" />
|
|
1286
|
+
</orm:Role>
|
|
1287
|
+
</orm:FactRoles>
|
|
1288
|
+
<orm:ReadingOrders>
|
|
1289
|
+
<orm:ReadingOrder id="_13424EE3-864C-4F95-9BB4-F318C9DAD24E">
|
|
1290
|
+
<orm:Readings>
|
|
1291
|
+
<orm:Reading id="_D580FA49-52AA-4DEF-AF21-9B26C927D693">
|
|
1292
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
1293
|
+
<orm:ExpandedData>
|
|
1294
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
1295
|
+
</orm:ExpandedData>
|
|
1296
|
+
</orm:Reading>
|
|
1297
|
+
</orm:Readings>
|
|
1298
|
+
<orm:RoleSequence>
|
|
1299
|
+
<orm:Role ref="_D3EF80EF-9A6B-485B-8D80-77025B6F2FD2" />
|
|
1300
|
+
<orm:Role ref="_8E4BBEA3-BDD5-4C4C-B4F3-49D16E76B2A5" />
|
|
1301
|
+
</orm:RoleSequence>
|
|
1302
|
+
</orm:ReadingOrder>
|
|
1303
|
+
<orm:ReadingOrder id="_E52D0F2F-3B76-49C4-B4C8-65425B8F7E72">
|
|
1304
|
+
<orm:Readings>
|
|
1305
|
+
<orm:Reading id="_EAE57712-FAB2-4DBF-936F-C72CF93EA0FC">
|
|
1306
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
1307
|
+
<orm:ExpandedData>
|
|
1308
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
1309
|
+
</orm:ExpandedData>
|
|
1310
|
+
</orm:Reading>
|
|
1311
|
+
</orm:Readings>
|
|
1312
|
+
<orm:RoleSequence>
|
|
1313
|
+
<orm:Role ref="_8E4BBEA3-BDD5-4C4C-B4F3-49D16E76B2A5" />
|
|
1314
|
+
<orm:Role ref="_D3EF80EF-9A6B-485B-8D80-77025B6F2FD2" />
|
|
1315
|
+
</orm:RoleSequence>
|
|
1316
|
+
</orm:ReadingOrder>
|
|
1317
|
+
</orm:ReadingOrders>
|
|
1318
|
+
<orm:InternalConstraints>
|
|
1319
|
+
<orm:UniquenessConstraint ref="_D799561A-8F7B-44C5-9C38-3A1FDA8A6117" />
|
|
1320
|
+
<orm:UniquenessConstraint ref="_E28E56BA-6216-4576-AB8D-CDA9A9D12139" />
|
|
1321
|
+
<orm:MandatoryConstraint ref="_C5D36D8B-8BFC-4A61-885E-88B78FE90115" />
|
|
1322
|
+
</orm:InternalConstraints>
|
|
1323
|
+
</orm:Fact>
|
|
1324
|
+
<orm:Fact id="_2487EABB-5348-4424-AABF-3BA42AD6587C" _Name="ClaimPaymentIsOfClaimPaymentType">
|
|
1325
|
+
<orm:FactRoles>
|
|
1326
|
+
<orm:Role id="_840FAB73-C58B-434C-9F48-1CA96683467F" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
1327
|
+
<orm:RolePlayer ref="_CC5CF3F4-4F49-448D-A4FB-5BE3A6B97C2F" />
|
|
1328
|
+
</orm:Role>
|
|
1329
|
+
<orm:Role id="_78BD8553-7948-4C1A-B1F1-0EC38D61B9D9" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1330
|
+
<orm:RolePlayer ref="_86E381B2-0D09-437D-82E0-0EDF38A3260C" />
|
|
1331
|
+
</orm:Role>
|
|
1332
|
+
</orm:FactRoles>
|
|
1333
|
+
<orm:ReadingOrders>
|
|
1334
|
+
<orm:ReadingOrder id="_CF1D144F-BD19-42DC-BDFD-891D581F047F">
|
|
1335
|
+
<orm:Readings>
|
|
1336
|
+
<orm:Reading id="_2D36F876-5F82-4D87-AC4D-71432C41096C">
|
|
1337
|
+
<orm:Data>{0} is of {1}</orm:Data>
|
|
1338
|
+
<orm:ExpandedData>
|
|
1339
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is of " />
|
|
1340
|
+
</orm:ExpandedData>
|
|
1341
|
+
</orm:Reading>
|
|
1342
|
+
</orm:Readings>
|
|
1343
|
+
<orm:RoleSequence>
|
|
1344
|
+
<orm:Role ref="_840FAB73-C58B-434C-9F48-1CA96683467F" />
|
|
1345
|
+
<orm:Role ref="_78BD8553-7948-4C1A-B1F1-0EC38D61B9D9" />
|
|
1346
|
+
</orm:RoleSequence>
|
|
1347
|
+
</orm:ReadingOrder>
|
|
1348
|
+
</orm:ReadingOrders>
|
|
1349
|
+
<orm:InternalConstraints>
|
|
1350
|
+
<orm:UniquenessConstraint ref="_BC5E49ED-E7E1-4C35-AE94-56C24DA8E3EE" />
|
|
1351
|
+
<orm:MandatoryConstraint ref="_B2B93F4A-90AB-4A07-8316-64C58052A278" />
|
|
1352
|
+
</orm:InternalConstraints>
|
|
1353
|
+
</orm:Fact>
|
|
1354
|
+
<orm:Fact id="_FCB34B5D-8B39-46B7-B74F-B796BED65B42" _Name="ClaimPaymentTypeHasDescriptiveText">
|
|
1355
|
+
<orm:FactRoles>
|
|
1356
|
+
<orm:Role id="_45A1BCFD-DEB5-4627-9AF5-0FB079B520CA" _IsMandatory="false" _Multiplicity="ZeroToMany" Name="">
|
|
1357
|
+
<orm:RolePlayer ref="_86E381B2-0D09-437D-82E0-0EDF38A3260C" />
|
|
1358
|
+
</orm:Role>
|
|
1359
|
+
<orm:Role id="_F115AD0F-9B8D-44E1-BB1C-DE6A7310EF43" _IsMandatory="false" _Multiplicity="ZeroToOne" Name="">
|
|
1360
|
+
<orm:RolePlayer ref="_42089352-832B-4010-BC8E-B388F1F3F819" />
|
|
1361
|
+
</orm:Role>
|
|
1362
|
+
</orm:FactRoles>
|
|
1363
|
+
<orm:ReadingOrders>
|
|
1364
|
+
<orm:ReadingOrder id="_1AC7E60E-E7D3-4753-B167-F3D4708F9798">
|
|
1365
|
+
<orm:Readings>
|
|
1366
|
+
<orm:Reading id="_703FC119-A18F-4FD4-B0F7-454AD564A4EE">
|
|
1367
|
+
<orm:Data>{0} has descriptive- {1}</orm:Data>
|
|
1368
|
+
<orm:ExpandedData>
|
|
1369
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
1370
|
+
<orm:RoleText RoleIndex="1" PreBoundText="descriptive " />
|
|
1371
|
+
</orm:ExpandedData>
|
|
1372
|
+
</orm:Reading>
|
|
1373
|
+
</orm:Readings>
|
|
1374
|
+
<orm:RoleSequence>
|
|
1375
|
+
<orm:Role ref="_45A1BCFD-DEB5-4627-9AF5-0FB079B520CA" />
|
|
1376
|
+
<orm:Role ref="_F115AD0F-9B8D-44E1-BB1C-DE6A7310EF43" />
|
|
1377
|
+
</orm:RoleSequence>
|
|
1378
|
+
</orm:ReadingOrder>
|
|
1379
|
+
</orm:ReadingOrders>
|
|
1380
|
+
<orm:InternalConstraints>
|
|
1381
|
+
<orm:UniquenessConstraint ref="_68AD9CAE-DB3C-46F6-A5B5-0A5BD8416ADC" />
|
|
1382
|
+
</orm:InternalConstraints>
|
|
1383
|
+
</orm:Fact>
|
|
1384
|
+
<orm:Fact id="_40903083-202B-456E-9E8C-9414E0C791CD" _Name="PolicyIsFromInsurer">
|
|
1385
|
+
<orm:FactRoles>
|
|
1386
|
+
<orm:Role id="_0BB67B32-F130-4974-B993-F2C1D2A36591" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
1387
|
+
<orm:RolePlayer ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
1388
|
+
</orm:Role>
|
|
1389
|
+
<orm:Role id="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1390
|
+
<orm:RolePlayer ref="_FAE00053-F8C0-4BD1-AA51-D6C664B3A76D" />
|
|
1391
|
+
</orm:Role>
|
|
1392
|
+
</orm:FactRoles>
|
|
1393
|
+
<orm:ReadingOrders>
|
|
1394
|
+
<orm:ReadingOrder id="_6A3E2BAD-ED98-4DE5-B7BB-E20A0F3DF858">
|
|
1395
|
+
<orm:Readings>
|
|
1396
|
+
<orm:Reading id="_F397B904-3CF3-451D-8788-B33D025AA8CD">
|
|
1397
|
+
<orm:Data>{0} is from {1}</orm:Data>
|
|
1398
|
+
<orm:ExpandedData>
|
|
1399
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is from " />
|
|
1400
|
+
</orm:ExpandedData>
|
|
1401
|
+
</orm:Reading>
|
|
1402
|
+
</orm:Readings>
|
|
1403
|
+
<orm:RoleSequence>
|
|
1404
|
+
<orm:Role ref="_0BB67B32-F130-4974-B993-F2C1D2A36591" />
|
|
1405
|
+
<orm:Role ref="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" />
|
|
1406
|
+
</orm:RoleSequence>
|
|
1407
|
+
</orm:ReadingOrder>
|
|
1408
|
+
<orm:ReadingOrder id="_7BCD4117-A8FA-4343-A77A-7F86B6D540D1">
|
|
1409
|
+
<orm:Readings>
|
|
1410
|
+
<orm:Reading id="_B088D7F6-C19B-4731-BB02-85FB11F1BB1E">
|
|
1411
|
+
<orm:Data>{0} issued {1}</orm:Data>
|
|
1412
|
+
<orm:ExpandedData>
|
|
1413
|
+
<orm:RoleText RoleIndex="0" FollowingText=" issued " />
|
|
1414
|
+
</orm:ExpandedData>
|
|
1415
|
+
</orm:Reading>
|
|
1416
|
+
</orm:Readings>
|
|
1417
|
+
<orm:RoleSequence>
|
|
1418
|
+
<orm:Role ref="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" />
|
|
1419
|
+
<orm:Role ref="_0BB67B32-F130-4974-B993-F2C1D2A36591" />
|
|
1420
|
+
</orm:RoleSequence>
|
|
1421
|
+
</orm:ReadingOrder>
|
|
1422
|
+
</orm:ReadingOrders>
|
|
1423
|
+
<orm:InternalConstraints>
|
|
1424
|
+
<orm:UniquenessConstraint ref="_71FC5028-5060-4D1A-BA91-25550FF4DF4C" />
|
|
1425
|
+
<orm:MandatoryConstraint ref="_F64E252D-F814-4F45-A06A-77D5607F2815" />
|
|
1426
|
+
</orm:InternalConstraints>
|
|
1427
|
+
</orm:Fact>
|
|
1428
|
+
<orm:Fact id="_EF8354A3-6BA2-44B2-9F1B-0081465190F6" _Name="PolicyHasPolicyNumber">
|
|
1429
|
+
<orm:FactRoles>
|
|
1430
|
+
<orm:Role id="_EBC3A5E3-B826-466F-A08F-F2CCF08915A8" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
1431
|
+
<orm:RolePlayer ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
1432
|
+
</orm:Role>
|
|
1433
|
+
<orm:Role id="_877FC377-D1D4-45E4-9875-F526C106FC67" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1434
|
+
<orm:RolePlayer ref="_39E79CF1-AF98-4E38-8A14-5C6528B5E72F" />
|
|
1435
|
+
</orm:Role>
|
|
1436
|
+
</orm:FactRoles>
|
|
1437
|
+
<orm:ReadingOrders>
|
|
1438
|
+
<orm:ReadingOrder id="_233B3C42-5A51-47C3-8E2B-9A312AE6F657">
|
|
1439
|
+
<orm:Readings>
|
|
1440
|
+
<orm:Reading id="_188DC9B3-F9EE-4675-9CCA-35D645E0DF5C">
|
|
1441
|
+
<orm:Data>{0} has {1}</orm:Data>
|
|
1442
|
+
<orm:ExpandedData>
|
|
1443
|
+
<orm:RoleText RoleIndex="0" FollowingText=" has " />
|
|
1444
|
+
</orm:ExpandedData>
|
|
1445
|
+
</orm:Reading>
|
|
1446
|
+
</orm:Readings>
|
|
1447
|
+
<orm:RoleSequence>
|
|
1448
|
+
<orm:Role ref="_EBC3A5E3-B826-466F-A08F-F2CCF08915A8" />
|
|
1449
|
+
<orm:Role ref="_877FC377-D1D4-45E4-9875-F526C106FC67" />
|
|
1450
|
+
</orm:RoleSequence>
|
|
1451
|
+
</orm:ReadingOrder>
|
|
1452
|
+
</orm:ReadingOrders>
|
|
1453
|
+
<orm:InternalConstraints>
|
|
1454
|
+
<orm:UniquenessConstraint ref="_C7AE18BB-9F42-4698-BE01-E4EED623B7EE" />
|
|
1455
|
+
<orm:MandatoryConstraint ref="_C6BF581E-BE96-4BDD-A260-469C2693EA10" />
|
|
1456
|
+
</orm:InternalConstraints>
|
|
1457
|
+
</orm:Fact>
|
|
1458
|
+
<orm:Fact id="_2C144E25-EAEE-447A-9C6B-FEB8D4F6A54F" _Name="PolicyWasPurchasedOnDate">
|
|
1459
|
+
<orm:FactRoles>
|
|
1460
|
+
<orm:Role id="_3451611D-C560-4360-974C-F26494D5CE7B" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
1461
|
+
<orm:RolePlayer ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
1462
|
+
</orm:Role>
|
|
1463
|
+
<orm:Role id="_D1989704-A08E-466A-A775-B2D925C77307" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1464
|
+
<orm:RolePlayer ref="_8606EA36-1051-44C5-A015-27F7398E7896" />
|
|
1465
|
+
</orm:Role>
|
|
1466
|
+
</orm:FactRoles>
|
|
1467
|
+
<orm:ReadingOrders>
|
|
1468
|
+
<orm:ReadingOrder id="_F63F3E6E-92D7-4424-A04F-26A15D14F071">
|
|
1469
|
+
<orm:Readings>
|
|
1470
|
+
<orm:Reading id="_C24D9B90-BCB3-4CBD-9900-8081859F7513">
|
|
1471
|
+
<orm:Data>{0} was purchased on {1}</orm:Data>
|
|
1472
|
+
<orm:ExpandedData>
|
|
1473
|
+
<orm:RoleText RoleIndex="0" FollowingText=" was purchased on " />
|
|
1474
|
+
</orm:ExpandedData>
|
|
1475
|
+
</orm:Reading>
|
|
1476
|
+
</orm:Readings>
|
|
1477
|
+
<orm:RoleSequence>
|
|
1478
|
+
<orm:Role ref="_3451611D-C560-4360-974C-F26494D5CE7B" />
|
|
1479
|
+
<orm:Role ref="_D1989704-A08E-466A-A775-B2D925C77307" />
|
|
1480
|
+
</orm:RoleSequence>
|
|
1481
|
+
</orm:ReadingOrder>
|
|
1482
|
+
</orm:ReadingOrders>
|
|
1483
|
+
<orm:InternalConstraints>
|
|
1484
|
+
<orm:UniquenessConstraint ref="_38F65CD9-FDCB-4B3F-BA9F-6F1F603D3FA9" />
|
|
1485
|
+
<orm:MandatoryConstraint ref="_96509BE2-FC02-455D-A09E-C82164F7F6EC" />
|
|
1486
|
+
</orm:InternalConstraints>
|
|
1487
|
+
</orm:Fact>
|
|
1488
|
+
<orm:Fact id="_33ABD8DB-27AD-4319-BFA9-61AFA5621914" _Name="PolicyWasPurchasedFromProductOffering">
|
|
1489
|
+
<orm:FactRoles>
|
|
1490
|
+
<orm:Role id="_5DD1908A-EED1-4FFD-9379-FAB29CA66DC9" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
1491
|
+
<orm:RolePlayer ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
1492
|
+
</orm:Role>
|
|
1493
|
+
<orm:Role id="_7E2D4E83-A681-4CA9-83DF-657DBA9C9050" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1494
|
+
<orm:RolePlayer ref="_173CFC3A-2006-4076-9D5E-178F3C498236" />
|
|
1495
|
+
</orm:Role>
|
|
1496
|
+
</orm:FactRoles>
|
|
1497
|
+
<orm:ReadingOrders>
|
|
1498
|
+
<orm:ReadingOrder id="_F2ED0E3F-B4A4-40CF-A0DE-6ED4A75CCD0C">
|
|
1499
|
+
<orm:Readings>
|
|
1500
|
+
<orm:Reading id="_A0E8A8AF-343B-47DF-9EE5-12E53CD2A532">
|
|
1501
|
+
<orm:Data>{0} was purchased from {1}</orm:Data>
|
|
1502
|
+
<orm:ExpandedData>
|
|
1503
|
+
<orm:RoleText RoleIndex="0" FollowingText=" was purchased from " />
|
|
1504
|
+
</orm:ExpandedData>
|
|
1505
|
+
</orm:Reading>
|
|
1506
|
+
</orm:Readings>
|
|
1507
|
+
<orm:RoleSequence>
|
|
1508
|
+
<orm:Role ref="_5DD1908A-EED1-4FFD-9379-FAB29CA66DC9" />
|
|
1509
|
+
<orm:Role ref="_7E2D4E83-A681-4CA9-83DF-657DBA9C9050" />
|
|
1510
|
+
</orm:RoleSequence>
|
|
1511
|
+
</orm:ReadingOrder>
|
|
1512
|
+
</orm:ReadingOrders>
|
|
1513
|
+
<orm:InternalConstraints>
|
|
1514
|
+
<orm:MandatoryConstraint ref="_600959FC-AA62-420F-86B5-F8EAD8E1CF02" />
|
|
1515
|
+
<orm:UniquenessConstraint ref="_88907DDD-4CCA-426F-BA08-BF09ABD559BF" />
|
|
1516
|
+
</orm:InternalConstraints>
|
|
1517
|
+
</orm:Fact>
|
|
1518
|
+
<orm:Fact id="_269DD1FA-5C2D-4D7C-9531-DAAAB58D7E88" _Name="PolicyIsHeldByPolicyHolder">
|
|
1519
|
+
<orm:FactRoles>
|
|
1520
|
+
<orm:Role id="_D746689E-D3AD-4B11-82B3-272EAB7638E2" _IsMandatory="true" _Multiplicity="ZeroToMany" Name="">
|
|
1521
|
+
<orm:RolePlayer ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
1522
|
+
</orm:Role>
|
|
1523
|
+
<orm:Role id="_71AD544F-B578-4B72-BAE8-BEB89BCDC61E" _IsMandatory="false" _Multiplicity="ExactlyOne" Name="">
|
|
1524
|
+
<orm:RolePlayer ref="_EDCBFCD8-1088-42F2-A277-BBA2A194AA1D" />
|
|
1525
|
+
</orm:Role>
|
|
1526
|
+
</orm:FactRoles>
|
|
1527
|
+
<orm:ReadingOrders>
|
|
1528
|
+
<orm:ReadingOrder id="_A32E90F3-2177-4836-8F31-7C10C6B5A1BB">
|
|
1529
|
+
<orm:Readings>
|
|
1530
|
+
<orm:Reading id="_D51D61BE-2AF4-4EA2-AF67-A3D56AE862B1">
|
|
1531
|
+
<orm:Data>{0} is held by {1}</orm:Data>
|
|
1532
|
+
<orm:ExpandedData>
|
|
1533
|
+
<orm:RoleText RoleIndex="0" FollowingText=" is held by " />
|
|
1534
|
+
</orm:ExpandedData>
|
|
1535
|
+
</orm:Reading>
|
|
1536
|
+
</orm:Readings>
|
|
1537
|
+
<orm:RoleSequence>
|
|
1538
|
+
<orm:Role ref="_D746689E-D3AD-4B11-82B3-272EAB7638E2" />
|
|
1539
|
+
<orm:Role ref="_71AD544F-B578-4B72-BAE8-BEB89BCDC61E" />
|
|
1540
|
+
</orm:RoleSequence>
|
|
1541
|
+
</orm:ReadingOrder>
|
|
1542
|
+
</orm:ReadingOrders>
|
|
1543
|
+
<orm:InternalConstraints>
|
|
1544
|
+
<orm:MandatoryConstraint ref="_C440969B-4BE3-4702-B0CA-2E5B485A3342" />
|
|
1545
|
+
<orm:UniquenessConstraint ref="_D4EF6327-2C6C-4F9B-9CD4-BF2DEE4CD28A" />
|
|
1546
|
+
</orm:InternalConstraints>
|
|
1547
|
+
</orm:Fact>
|
|
1548
|
+
</orm:Facts>
|
|
1549
|
+
<orm:Constraints>
|
|
1550
|
+
<orm:UniquenessConstraint id="_FEEE6963-6B21-4E7E-9275-244A33844C35" Name="InternalUniquenessConstraint1" IsInternal="true">
|
|
1551
|
+
<orm:RoleSequence>
|
|
1552
|
+
<orm:Role id="_A4D0DEC3-74E9-444F-A038-34DD90F94ACA" ref="_E44B6B1B-5B78-4EC3-B8A0-A860AE207E40" />
|
|
1553
|
+
</orm:RoleSequence>
|
|
1554
|
+
<orm:PreferredIdentifierFor ref="_8996F3CF-C2DF-4B43-9CFA-D20C4B1903D7" />
|
|
1555
|
+
</orm:UniquenessConstraint>
|
|
1556
|
+
<orm:UniquenessConstraint id="_CFD9B6CA-0EFF-4A50-A136-31F63D32B4BD" Name="InternalUniquenessConstraint2" IsInternal="true">
|
|
1557
|
+
<orm:RoleSequence>
|
|
1558
|
+
<orm:Role id="_31CDBFF0-536B-4582-936F-FFE4F3D191EE" ref="_58C583F7-4965-4ED9-9D71-DAC4EC7507F4" />
|
|
1559
|
+
</orm:RoleSequence>
|
|
1560
|
+
</orm:UniquenessConstraint>
|
|
1561
|
+
<orm:MandatoryConstraint id="_AF8D1604-5D96-4C23-8C96-050F8708A61F" Name="SimpleMandatoryConstraint1" IsSimple="true">
|
|
1562
|
+
<orm:RoleSequence>
|
|
1563
|
+
<orm:Role id="_D6C4C510-D241-4B69-89A8-7EC6D3168E79" ref="_58C583F7-4965-4ED9-9D71-DAC4EC7507F4" />
|
|
1564
|
+
</orm:RoleSequence>
|
|
1565
|
+
</orm:MandatoryConstraint>
|
|
1566
|
+
<orm:MandatoryConstraint id="_53118D18-D3E9-4A8F-AB1D-232446B281AE" Name="ImpliedMandatoryConstraint1" IsImplied="true">
|
|
1567
|
+
<orm:RoleSequence>
|
|
1568
|
+
<orm:Role id="_657FE3FB-5063-45F5-91EA-E3324C7BEA34" ref="_E44B6B1B-5B78-4EC3-B8A0-A860AE207E40" />
|
|
1569
|
+
</orm:RoleSequence>
|
|
1570
|
+
<orm:ImpliedByObjectType ref="_E5E81613-1442-4A5C-9EC8-CC49124ED045" />
|
|
1571
|
+
</orm:MandatoryConstraint>
|
|
1572
|
+
<orm:MandatoryConstraint id="_9D6A98FB-D04A-4105-A1B2-D260AEC457CA" Name="ImpliedMandatoryConstraint3" IsImplied="true">
|
|
1573
|
+
<orm:RoleSequence>
|
|
1574
|
+
<orm:Role id="_FACA24CD-59BE-4106-8BF0-27BA8566DF83" ref="_230F4047-5914-42FF-811D-C14924F35165" />
|
|
1575
|
+
</orm:RoleSequence>
|
|
1576
|
+
<orm:ImpliedByObjectType ref="_8996F3CF-C2DF-4B43-9CFA-D20C4B1903D7" />
|
|
1577
|
+
</orm:MandatoryConstraint>
|
|
1578
|
+
<orm:MandatoryConstraint id="_EC01492F-DEC7-4758-BD4B-A19208BE887A" Name="SimpleMandatoryConstraint4" IsSimple="true">
|
|
1579
|
+
<orm:RoleSequence>
|
|
1580
|
+
<orm:Role id="_1A02E640-A596-4AF9-B5F1-327891A95E07" ref="_0424A384-148C-4077-BB77-2E0F9581F1F2" />
|
|
1581
|
+
</orm:RoleSequence>
|
|
1582
|
+
</orm:MandatoryConstraint>
|
|
1583
|
+
<orm:UniquenessConstraint id="_7A7D7F88-B7EA-4779-AB57-0400D6FB5A97" Name="InternalUniquenessConstraint7" IsInternal="true">
|
|
1584
|
+
<orm:RoleSequence>
|
|
1585
|
+
<orm:Role id="_ED0D23D9-2143-4570-9A6B-0C970FA17472" ref="_0424A384-148C-4077-BB77-2E0F9581F1F2" />
|
|
1586
|
+
</orm:RoleSequence>
|
|
1587
|
+
</orm:UniquenessConstraint>
|
|
1588
|
+
<orm:UniquenessConstraint id="_39B782D8-A950-44F3-A2EA-41E63E6A452F" Name="InternalUniquenessConstraint8" IsInternal="true">
|
|
1589
|
+
<orm:RoleSequence>
|
|
1590
|
+
<orm:Role id="_9D0110D0-4B90-4B3B-8CB6-86BCBEAA8EA6" ref="_230F4047-5914-42FF-811D-C14924F35165" />
|
|
1591
|
+
</orm:RoleSequence>
|
|
1592
|
+
</orm:UniquenessConstraint>
|
|
1593
|
+
<orm:MandatoryConstraint id="_EA3855F0-B150-4E29-AB93-239FF9085B8F" Name="SimpleMandatoryConstraint5" IsSimple="true">
|
|
1594
|
+
<orm:RoleSequence>
|
|
1595
|
+
<orm:Role id="_8A709FE6-4C84-45C1-AE51-CE5822E725C2" ref="_52E77B2C-A61A-4986-B240-E04C2CA82858" />
|
|
1596
|
+
</orm:RoleSequence>
|
|
1597
|
+
</orm:MandatoryConstraint>
|
|
1598
|
+
<orm:UniquenessConstraint id="_5F333CA4-B21A-4328-BC96-D69FB0370CAE" Name="InternalUniquenessConstraint9" IsInternal="true">
|
|
1599
|
+
<orm:RoleSequence>
|
|
1600
|
+
<orm:Role id="_C135E2AB-92F9-451B-8CD9-B5154FDCC585" ref="_52E77B2C-A61A-4986-B240-E04C2CA82858" />
|
|
1601
|
+
</orm:RoleSequence>
|
|
1602
|
+
</orm:UniquenessConstraint>
|
|
1603
|
+
<orm:UniquenessConstraint id="_884F29A0-CE0B-4203-B517-2D150A5DED79" Name="InternalUniquenessConstraint10" IsInternal="true">
|
|
1604
|
+
<orm:RoleSequence>
|
|
1605
|
+
<orm:Role id="_474BA47E-1825-4977-8047-B03C89B2D652" ref="_2A2C91F2-B04F-4EAD-8CEF-C654380840DE" />
|
|
1606
|
+
</orm:RoleSequence>
|
|
1607
|
+
</orm:UniquenessConstraint>
|
|
1608
|
+
<orm:MandatoryConstraint id="_83983530-EC65-4DD1-85EE-954E3522624E" Name="SimpleMandatoryConstraint6" IsSimple="true">
|
|
1609
|
+
<orm:RoleSequence>
|
|
1610
|
+
<orm:Role id="_BCB3104F-94DA-40BE-B9A7-6C24F7EE0062" ref="_6B02AA35-F892-4952-992D-88AE37D2E2CA" />
|
|
1611
|
+
</orm:RoleSequence>
|
|
1612
|
+
</orm:MandatoryConstraint>
|
|
1613
|
+
<orm:UniquenessConstraint id="_37AD51D7-6BFD-486E-A82A-433EAB39EFE2" Name="InternalUniquenessConstraint11" IsInternal="true">
|
|
1614
|
+
<orm:RoleSequence>
|
|
1615
|
+
<orm:Role id="_B9DF0C4F-0604-4967-AE9E-DEEE18B773BA" ref="_6B02AA35-F892-4952-992D-88AE37D2E2CA" />
|
|
1616
|
+
</orm:RoleSequence>
|
|
1617
|
+
</orm:UniquenessConstraint>
|
|
1618
|
+
<orm:UniquenessConstraint id="_2C52ADE5-0655-4E6D-B96A-AE14C972F1D4" Name="InternalUniquenessConstraint12" IsInternal="true">
|
|
1619
|
+
<orm:RoleSequence>
|
|
1620
|
+
<orm:Role id="_164C47C2-0823-4D9E-B18A-01F969E1F4B8" ref="_72942E51-D7C2-4ECA-88A9-EC9AFE83BBCB" />
|
|
1621
|
+
</orm:RoleSequence>
|
|
1622
|
+
</orm:UniquenessConstraint>
|
|
1623
|
+
<orm:UniquenessConstraint id="_F339BFCC-D016-4FE7-A134-CDB6FF1D6B9D" Name="InternalUniquenessConstraint3" IsInternal="true">
|
|
1624
|
+
<orm:RoleSequence>
|
|
1625
|
+
<orm:Role id="_DE132F76-6054-4651-BF4F-9B60B75A175E" ref="_D02C70B9-4D66-47BB-A72E-BA3BD96E4E3C" />
|
|
1626
|
+
</orm:RoleSequence>
|
|
1627
|
+
<orm:PreferredIdentifierFor ref="_FAE00053-F8C0-4BD1-AA51-D6C664B3A76D" />
|
|
1628
|
+
</orm:UniquenessConstraint>
|
|
1629
|
+
<orm:UniquenessConstraint id="_2BCB8C96-CF07-43C3-8EED-D6DB0B4AB404" Name="InternalUniquenessConstraint4" IsInternal="true">
|
|
1630
|
+
<orm:RoleSequence>
|
|
1631
|
+
<orm:Role id="_E58CB21A-C873-4024-947D-1B74C935DEC9" ref="_945A9E2B-8E97-428F-8946-1277CB3AB5A5" />
|
|
1632
|
+
</orm:RoleSequence>
|
|
1633
|
+
</orm:UniquenessConstraint>
|
|
1634
|
+
<orm:MandatoryConstraint id="_1C0EB277-EA3E-441B-8869-A9F275F26A13" Name="SimpleMandatoryConstraint2" IsSimple="true">
|
|
1635
|
+
<orm:RoleSequence>
|
|
1636
|
+
<orm:Role id="_73D21466-D36C-44B0-937F-608B540F6183" ref="_945A9E2B-8E97-428F-8946-1277CB3AB5A5" />
|
|
1637
|
+
</orm:RoleSequence>
|
|
1638
|
+
</orm:MandatoryConstraint>
|
|
1639
|
+
<orm:MandatoryConstraint id="_609DF638-BF22-4153-A450-3D1658C0C146" Name="ImpliedMandatoryConstraint2" IsImplied="true">
|
|
1640
|
+
<orm:RoleSequence>
|
|
1641
|
+
<orm:Role id="_CF008CE7-F62C-4C45-B776-D5D6192BEC1B" ref="_D02C70B9-4D66-47BB-A72E-BA3BD96E4E3C" />
|
|
1642
|
+
</orm:RoleSequence>
|
|
1643
|
+
<orm:ImpliedByObjectType ref="_4BF9D664-3643-4948-B2E7-8BA6D4C1E012" />
|
|
1644
|
+
</orm:MandatoryConstraint>
|
|
1645
|
+
<orm:UniquenessConstraint id="_B5F49121-0EE0-4168-8875-AC5EBA871EC2" Name="InternalUniquenessConstraint5" IsInternal="true">
|
|
1646
|
+
<orm:RoleSequence>
|
|
1647
|
+
<orm:Role id="_BB37D229-A995-44D1-90D0-ABFC61E0062B" ref="_ED83FFC8-A746-4B39-A9DA-4909FE5C40E2" />
|
|
1648
|
+
</orm:RoleSequence>
|
|
1649
|
+
<orm:PreferredIdentifierFor ref="_173CFC3A-2006-4076-9D5E-178F3C498236" />
|
|
1650
|
+
</orm:UniquenessConstraint>
|
|
1651
|
+
<orm:UniquenessConstraint id="_1728B4BC-DCA1-4507-9D2D-7A587441CE9E" Name="InternalUniquenessConstraint6" IsInternal="true">
|
|
1652
|
+
<orm:RoleSequence>
|
|
1653
|
+
<orm:Role id="_4601C13A-9074-48A2-BD13-5B2B18FE86A6" ref="_6CFC24F7-20F4-46E3-955A-BDEBB0AF266B" />
|
|
1654
|
+
</orm:RoleSequence>
|
|
1655
|
+
</orm:UniquenessConstraint>
|
|
1656
|
+
<orm:MandatoryConstraint id="_BD4F2B35-D425-4870-B4B3-1CD3EE3BD87B" Name="SimpleMandatoryConstraint3" IsSimple="true">
|
|
1657
|
+
<orm:RoleSequence>
|
|
1658
|
+
<orm:Role id="_39590D62-1FA2-4ABC-A241-EE765A2F4347" ref="_6CFC24F7-20F4-46E3-955A-BDEBB0AF266B" />
|
|
1659
|
+
</orm:RoleSequence>
|
|
1660
|
+
</orm:MandatoryConstraint>
|
|
1661
|
+
<orm:MandatoryConstraint id="_FD3461CE-BE44-4102-AD2F-91934BD03540" Name="ImpliedMandatoryConstraint4" IsImplied="true">
|
|
1662
|
+
<orm:RoleSequence>
|
|
1663
|
+
<orm:Role id="_BEC85910-3555-4393-BE46-3FAD9C5ACD0E" ref="_ED83FFC8-A746-4B39-A9DA-4909FE5C40E2" />
|
|
1664
|
+
</orm:RoleSequence>
|
|
1665
|
+
<orm:ImpliedByObjectType ref="_45BA76C4-A9BA-45B4-865C-27FD31DB02A1" />
|
|
1666
|
+
</orm:MandatoryConstraint>
|
|
1667
|
+
<orm:MandatoryConstraint id="_24A6231D-D625-4366-8FC1-D19B3C736FE0" Name="ImpliedMandatoryConstraint5" IsImplied="true">
|
|
1668
|
+
<orm:RoleSequence>
|
|
1669
|
+
<orm:Role id="_8A5DA5FF-0FBA-4C0D-9E59-47BB5CDF99F1" ref="_7B239EB8-6599-4D16-BFD8-0AE588EE1DD4" />
|
|
1670
|
+
<orm:Role id="_5ACFCB0D-EC7C-4524-BB53-AC525D256E78" ref="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" />
|
|
1671
|
+
</orm:RoleSequence>
|
|
1672
|
+
<orm:ImpliedByObjectType ref="_FAE00053-F8C0-4BD1-AA51-D6C664B3A76D" />
|
|
1673
|
+
</orm:MandatoryConstraint>
|
|
1674
|
+
<orm:UniquenessConstraint id="_7756569C-B554-425E-8C30-51AFBC53F8C6" Name="InternalUniquenessConstraint13" IsInternal="true">
|
|
1675
|
+
<orm:RoleSequence>
|
|
1676
|
+
<orm:Role id="_11035ADA-3854-4950-8781-337E497E882D" ref="_1958C2F5-5BD6-48B8-A05E-7C098385F3CF" />
|
|
1677
|
+
</orm:RoleSequence>
|
|
1678
|
+
</orm:UniquenessConstraint>
|
|
1679
|
+
<orm:MandatoryConstraint id="_58D7211B-1B84-4E0A-A8C1-1427C55DCFEF" Name="SimpleMandatoryConstraint7" IsSimple="true">
|
|
1680
|
+
<orm:RoleSequence>
|
|
1681
|
+
<orm:Role id="_8BBC17C5-1155-490C-87D6-8989B91F816A" ref="_1958C2F5-5BD6-48B8-A05E-7C098385F3CF" />
|
|
1682
|
+
</orm:RoleSequence>
|
|
1683
|
+
</orm:MandatoryConstraint>
|
|
1684
|
+
<orm:UniquenessConstraint id="_58D0A978-0C7D-4835-AD3A-FF460386F921" Name="InternalUniquenessConstraint14" IsInternal="true">
|
|
1685
|
+
<orm:RoleSequence>
|
|
1686
|
+
<orm:Role id="_EB76A93A-0E1B-4694-9408-46DF2F51B683" ref="_7B99D29F-7459-4AF5-B545-9AFFAF560306" />
|
|
1687
|
+
</orm:RoleSequence>
|
|
1688
|
+
<orm:PreferredIdentifierFor ref="_E02528A9-82D7-4F76-984A-161D7E5A8495" />
|
|
1689
|
+
</orm:UniquenessConstraint>
|
|
1690
|
+
<orm:UniquenessConstraint id="_D3F2A87C-8374-487B-AC5A-7DCCAD035C99" Name="InternalUniquenessConstraint15" IsInternal="true">
|
|
1691
|
+
<orm:RoleSequence>
|
|
1692
|
+
<orm:Role id="_86EA7EC1-9E4E-44F6-B19D-DBBBA963365B" ref="_BD523DB2-6437-4376-A9C2-0C9F6A30C0E2" />
|
|
1693
|
+
</orm:RoleSequence>
|
|
1694
|
+
</orm:UniquenessConstraint>
|
|
1695
|
+
<orm:MandatoryConstraint id="_56379206-434E-41AC-89A6-3A5068B799BF" Name="SimpleMandatoryConstraint8" IsSimple="true">
|
|
1696
|
+
<orm:RoleSequence>
|
|
1697
|
+
<orm:Role id="_B8993392-7352-49FB-BCA7-3BF9F546791E" ref="_BD523DB2-6437-4376-A9C2-0C9F6A30C0E2" />
|
|
1698
|
+
</orm:RoleSequence>
|
|
1699
|
+
</orm:MandatoryConstraint>
|
|
1700
|
+
<orm:MandatoryConstraint id="_396E5313-FD6B-432A-A280-65B1FE32BF57" Name="ImpliedMandatoryConstraint6" IsImplied="true">
|
|
1701
|
+
<orm:RoleSequence>
|
|
1702
|
+
<orm:Role id="_42DEB8F9-0FE5-4C84-A9B6-6BAAA14E37FB" ref="_7B99D29F-7459-4AF5-B545-9AFFAF560306" />
|
|
1703
|
+
</orm:RoleSequence>
|
|
1704
|
+
<orm:ImpliedByObjectType ref="_1267B4EC-D541-40A4-91A9-F7D8C6655949" />
|
|
1705
|
+
</orm:MandatoryConstraint>
|
|
1706
|
+
<orm:MandatoryConstraint id="_FEF5CF9A-BBED-487E-BB2A-96FDB8A0C1A6" Name="ImpliedMandatoryConstraint7" IsImplied="true">
|
|
1707
|
+
<orm:RoleSequence>
|
|
1708
|
+
<orm:Role id="_2B21929F-CE46-445F-827D-5E3FFCD16834" ref="_8504AF9E-3C02-473D-A188-31067DA72AA9" />
|
|
1709
|
+
<orm:Role id="_0F2BE800-4733-47E8-A1DB-33B8E940086B" ref="_E8F091A3-0A28-4B85-815C-2C3D8F8C9E4D" />
|
|
1710
|
+
</orm:RoleSequence>
|
|
1711
|
+
<orm:ImpliedByObjectType ref="_E02528A9-82D7-4F76-984A-161D7E5A8495" />
|
|
1712
|
+
</orm:MandatoryConstraint>
|
|
1713
|
+
<orm:UniquenessConstraint id="_E0ACB5DA-DA8A-4771-80CC-300F9F859EC7" Name="InternalUniquenessConstraint16" IsInternal="true">
|
|
1714
|
+
<orm:RoleSequence>
|
|
1715
|
+
<orm:Role id="_11AEB2FC-5FC7-417D-9B1B-621CAD0961A2" ref="_F56EDD00-B5A2-43B8-9F86-1C8D8DB4A90B" />
|
|
1716
|
+
<orm:Role id="_A66BB455-1B75-472B-8EA0-38562A2A6474" ref="_8504AF9E-3C02-473D-A188-31067DA72AA9" />
|
|
1717
|
+
</orm:RoleSequence>
|
|
1718
|
+
<orm:PreferredIdentifierFor ref="_3980A570-A807-4084-8AAD-3589D5418CFE" />
|
|
1719
|
+
</orm:UniquenessConstraint>
|
|
1720
|
+
<orm:MandatoryConstraint id="_812E066F-4B27-43F2-931D-835E00A30975" Name="SimpleMandatoryConstraint9" IsSimple="true">
|
|
1721
|
+
<orm:RoleSequence>
|
|
1722
|
+
<orm:Role id="_23229D03-36AA-4C6C-A274-74AE1120CBBE" ref="_69BDF891-F1FD-4BB1-9910-1BF954232D0A" />
|
|
1723
|
+
</orm:RoleSequence>
|
|
1724
|
+
</orm:MandatoryConstraint>
|
|
1725
|
+
<orm:UniquenessConstraint id="_B406C3CE-98C0-4459-9886-BA19E86D65E3" Name="InternalUniquenessConstraint17" IsInternal="true">
|
|
1726
|
+
<orm:RoleSequence>
|
|
1727
|
+
<orm:Role id="_EC2BE0E4-7F84-4DCE-9DE0-787737A3D60D" ref="_69BDF891-F1FD-4BB1-9910-1BF954232D0A" />
|
|
1728
|
+
</orm:RoleSequence>
|
|
1729
|
+
</orm:UniquenessConstraint>
|
|
1730
|
+
<orm:MandatoryConstraint id="_B453E80D-EF7B-45EF-8EDC-4DF44DE14960" Name="SimpleMandatoryConstraint10" IsSimple="true">
|
|
1731
|
+
<orm:RoleSequence>
|
|
1732
|
+
<orm:Role id="_A156F639-EBB1-4E30-B071-7081263386CB" ref="_6D49B1A5-EA25-47BB-860E-A936C2F401BB" />
|
|
1733
|
+
</orm:RoleSequence>
|
|
1734
|
+
</orm:MandatoryConstraint>
|
|
1735
|
+
<orm:UniquenessConstraint id="_4FB556B9-F561-4A77-8318-2EB796D8C280" Name="InternalUniquenessConstraint18" IsInternal="true">
|
|
1736
|
+
<orm:RoleSequence>
|
|
1737
|
+
<orm:Role id="_FB636C31-80D2-4A60-BD22-513DB374A2EF" ref="_6D49B1A5-EA25-47BB-860E-A936C2F401BB" />
|
|
1738
|
+
</orm:RoleSequence>
|
|
1739
|
+
</orm:UniquenessConstraint>
|
|
1740
|
+
<orm:MandatoryConstraint id="_8A3653ED-0510-44EB-9F93-E5C937968FCC" Name="ImpliedMandatoryConstraint8" IsImplied="true">
|
|
1741
|
+
<orm:RoleSequence>
|
|
1742
|
+
<orm:Role id="_067285B1-E257-4900-AA64-C8FC341D1506" ref="_8E8AF27F-264A-4D59-98AA-80C6EED0663D" />
|
|
1743
|
+
<orm:Role id="_09BE8DEF-D12D-4901-BD2E-5B28416D9204" ref="_C8E86C24-A9F1-45EC-8B66-AA484FFBD33C" />
|
|
1744
|
+
<orm:Role id="_B655B018-CE5B-4D7D-8DEC-6AC1A6D6F3DC" ref="_D1989704-A08E-466A-A775-B2D925C77307" />
|
|
1745
|
+
</orm:RoleSequence>
|
|
1746
|
+
<orm:ImpliedByObjectType ref="_8606EA36-1051-44C5-A015-27F7398E7896" />
|
|
1747
|
+
</orm:MandatoryConstraint>
|
|
1748
|
+
<orm:MandatoryConstraint id="_26FC8844-1E92-4AB5-B4A1-CF2D6D18355C" Name="ImpliedMandatoryConstraint9" IsImplied="true">
|
|
1749
|
+
<orm:RoleSequence>
|
|
1750
|
+
<orm:Role id="_DE75A7B2-3ACC-4115-85EC-6F41293F3128" ref="_877FC377-D1D4-45E4-9875-F526C106FC67" />
|
|
1751
|
+
</orm:RoleSequence>
|
|
1752
|
+
<orm:ImpliedByObjectType ref="_39E79CF1-AF98-4E38-8A14-5C6528B5E72F" />
|
|
1753
|
+
</orm:MandatoryConstraint>
|
|
1754
|
+
<orm:UniquenessConstraint id="_70CB09FF-83E7-44C2-9B37-2C8D4E7FE198" Name="InternalUniquenessConstraint25" IsInternal="true">
|
|
1755
|
+
<orm:RoleSequence>
|
|
1756
|
+
<orm:Role id="_24652B44-7379-4FDB-907F-7058B27A3E9D" ref="_C842E527-8C30-4BFD-BBC9-695BA97B82C3" />
|
|
1757
|
+
<orm:Role id="_484E58F1-75AA-4511-B332-ADEF820B89B2" ref="_E8F091A3-0A28-4B85-815C-2C3D8F8C9E4D" />
|
|
1758
|
+
</orm:RoleSequence>
|
|
1759
|
+
<orm:PreferredIdentifierFor ref="_7B13A3E8-0388-451E-A121-913A35D317ED" />
|
|
1760
|
+
</orm:UniquenessConstraint>
|
|
1761
|
+
<orm:MandatoryConstraint id="_E52E67DE-146E-4521-80C9-272A8AAEAEF3" Name="SimpleMandatoryConstraint15" IsSimple="true">
|
|
1762
|
+
<orm:RoleSequence>
|
|
1763
|
+
<orm:Role id="_05CFFB36-7706-414C-BE63-131732420B8D" ref="_7D5F0D4F-F16D-4CD0-969F-CD4C5AA77D09" />
|
|
1764
|
+
</orm:RoleSequence>
|
|
1765
|
+
</orm:MandatoryConstraint>
|
|
1766
|
+
<orm:UniquenessConstraint id="_73AC6393-A693-48F1-9A5D-583D7BCF79CC" Name="InternalUniquenessConstraint26" IsInternal="true">
|
|
1767
|
+
<orm:RoleSequence>
|
|
1768
|
+
<orm:Role id="_E7DA3005-C944-4C9C-9FE5-0E3D9E081B3B" ref="_7D5F0D4F-F16D-4CD0-969F-CD4C5AA77D09" />
|
|
1769
|
+
</orm:RoleSequence>
|
|
1770
|
+
</orm:UniquenessConstraint>
|
|
1771
|
+
<orm:MandatoryConstraint id="_45CECFE1-CA23-47F6-A602-35EF64D46DEE" Name="SimpleMandatoryConstraint16" IsSimple="true">
|
|
1772
|
+
<orm:RoleSequence>
|
|
1773
|
+
<orm:Role id="_7582E710-B1D3-41F1-B9E8-738DACA05304" ref="_A3D51996-F490-4247-84C0-28EDE3C6071D" />
|
|
1774
|
+
</orm:RoleSequence>
|
|
1775
|
+
</orm:MandatoryConstraint>
|
|
1776
|
+
<orm:UniquenessConstraint id="_00406394-CBD5-4DC9-840C-2C881D940498" Name="InternalUniquenessConstraint27" IsInternal="true">
|
|
1777
|
+
<orm:RoleSequence>
|
|
1778
|
+
<orm:Role id="_08C9DA79-DE80-4FBA-9045-62A2E5F365DF" ref="_A3D51996-F490-4247-84C0-28EDE3C6071D" />
|
|
1779
|
+
</orm:RoleSequence>
|
|
1780
|
+
</orm:UniquenessConstraint>
|
|
1781
|
+
<orm:MandatoryConstraint id="_F493330D-76BF-4CDC-A5CE-B35550A2F473" Name="ImpliedMandatoryConstraint10" IsImplied="true">
|
|
1782
|
+
<orm:RoleSequence>
|
|
1783
|
+
<orm:Role id="_FABAC1A2-8613-4EC0-B4F1-45A62056A43F" ref="_AA21BD45-6F53-4A11-A703-6F55CCEBBBA9" />
|
|
1784
|
+
</orm:RoleSequence>
|
|
1785
|
+
<orm:ImpliedByObjectType ref="_2F441EC6-C34F-4BCD-80F5-FDAF964F4DBC" />
|
|
1786
|
+
</orm:MandatoryConstraint>
|
|
1787
|
+
<orm:MandatoryConstraint id="_A2065C0B-C662-4E3F-B04A-8AAD639EC778" Name="ImpliedMandatoryConstraint11" IsImplied="true">
|
|
1788
|
+
<orm:RoleSequence>
|
|
1789
|
+
<orm:Role id="_08B07E34-A314-46F9-80F0-42BE7F4628C5" ref="_A0BFB76A-83DF-433E-8EFF-406A82CBA437" />
|
|
1790
|
+
<orm:Role id="_F8E0D8A0-A0FC-4676-AFC3-99B0E10ED3F9" ref="_BABD0E04-4B13-4AAB-8779-28A78AFA5DF5" />
|
|
1791
|
+
</orm:RoleSequence>
|
|
1792
|
+
<orm:ImpliedByObjectType ref="_7B13A3E8-0388-451E-A121-913A35D317ED" />
|
|
1793
|
+
</orm:MandatoryConstraint>
|
|
1794
|
+
<orm:UniquenessConstraint id="_FA865460-5DE5-4039-9703-3D08EB5EEC3F" Name="InternalUniquenessConstraint28" IsInternal="true">
|
|
1795
|
+
<orm:RoleSequence>
|
|
1796
|
+
<orm:Role id="_88F93B44-C837-4B0C-9E77-851F301302A0" ref="_A0BFB76A-83DF-433E-8EFF-406A82CBA437" />
|
|
1797
|
+
</orm:RoleSequence>
|
|
1798
|
+
</orm:UniquenessConstraint>
|
|
1799
|
+
<orm:MandatoryConstraint id="_6A62FC49-C1B2-4958-B00A-0AFA8705D2DA" Name="SimpleMandatoryConstraint17" IsSimple="true">
|
|
1800
|
+
<orm:RoleSequence>
|
|
1801
|
+
<orm:Role id="_0728F3D1-636E-45FB-82BC-D77D57D5460A" ref="_F078C222-F4DA-4D7C-BE92-A5587497BFB3" />
|
|
1802
|
+
</orm:RoleSequence>
|
|
1803
|
+
</orm:MandatoryConstraint>
|
|
1804
|
+
<orm:UniquenessConstraint id="_C3AE2B8C-617A-4A25-846A-080764BFD443" Name="InternalUniquenessConstraint29" IsInternal="true">
|
|
1805
|
+
<orm:RoleSequence>
|
|
1806
|
+
<orm:Role id="_92FEBF27-4720-45BE-A4DD-F1D344490414" ref="_F078C222-F4DA-4D7C-BE92-A5587497BFB3" />
|
|
1807
|
+
</orm:RoleSequence>
|
|
1808
|
+
</orm:UniquenessConstraint>
|
|
1809
|
+
<orm:UniquenessConstraint id="_72EBCAE0-D803-4B45-A9CB-FFD43E5A55E6" Name="InternalUniquenessConstraint30" IsInternal="true">
|
|
1810
|
+
<orm:RoleSequence>
|
|
1811
|
+
<orm:Role id="_F8CAEBA9-76CF-4C6D-8C9F-38AA4806E93B" ref="_2AD393DA-4FB7-487F-81BB-7BF7A41C54ED" />
|
|
1812
|
+
</orm:RoleSequence>
|
|
1813
|
+
<orm:PreferredIdentifierFor ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
1814
|
+
</orm:UniquenessConstraint>
|
|
1815
|
+
<orm:UniquenessConstraint id="_AD68D83A-38A8-48F8-84CE-D9B30D890079" Name="InternalUniquenessConstraint31" IsInternal="true">
|
|
1816
|
+
<orm:RoleSequence>
|
|
1817
|
+
<orm:Role id="_71717C9D-FC10-4866-A1A9-48473862FF8B" ref="_6342077F-ED39-4150-A578-6D54FBF4A357" />
|
|
1818
|
+
</orm:RoleSequence>
|
|
1819
|
+
</orm:UniquenessConstraint>
|
|
1820
|
+
<orm:MandatoryConstraint id="_A2B9172E-64F7-412B-B501-FEAC933AF7F2" Name="SimpleMandatoryConstraint18" IsSimple="true">
|
|
1821
|
+
<orm:RoleSequence>
|
|
1822
|
+
<orm:Role id="_88BDD930-C61A-40F5-9A79-81F40F678046" ref="_6342077F-ED39-4150-A578-6D54FBF4A357" />
|
|
1823
|
+
</orm:RoleSequence>
|
|
1824
|
+
</orm:MandatoryConstraint>
|
|
1825
|
+
<orm:MandatoryConstraint id="_67F9D05C-7A35-4471-82BE-7372F0E28B88" Name="ImpliedMandatoryConstraint12" IsImplied="true">
|
|
1826
|
+
<orm:RoleSequence>
|
|
1827
|
+
<orm:Role id="_79A36917-A400-49DD-978B-9872EDA5BC25" ref="_2AD393DA-4FB7-487F-81BB-7BF7A41C54ED" />
|
|
1828
|
+
</orm:RoleSequence>
|
|
1829
|
+
<orm:ImpliedByObjectType ref="_E13815BF-CDC2-4807-8D02-DD754063C267" />
|
|
1830
|
+
</orm:MandatoryConstraint>
|
|
1831
|
+
<orm:MandatoryConstraint id="_7B34C923-595B-4573-BB4A-FFDC3E76488B" Name="ImpliedMandatoryConstraint13" IsImplied="true">
|
|
1832
|
+
<orm:RoleSequence>
|
|
1833
|
+
<orm:Role id="_59577830-FE62-4D50-839F-10A42FA455D3" ref="_D89CEBFF-10B2-4840-AD26-1B0AE4712D9B" />
|
|
1834
|
+
</orm:RoleSequence>
|
|
1835
|
+
<orm:ImpliedByObjectType ref="_C9782755-2396-4443-8305-3AEDE07345C1" />
|
|
1836
|
+
</orm:MandatoryConstraint>
|
|
1837
|
+
<orm:MandatoryConstraint id="_FABACA58-F45E-4FDA-A1A8-544CF2AC23F8" Name="SimpleMandatoryConstraint19" IsSimple="true">
|
|
1838
|
+
<orm:RoleSequence>
|
|
1839
|
+
<orm:Role id="_CDE3E7DA-A971-4E10-AC69-9F99D413D719" ref="_D9FA26EF-6518-4EC4-B46A-3A26448319F9" />
|
|
1840
|
+
</orm:RoleSequence>
|
|
1841
|
+
</orm:MandatoryConstraint>
|
|
1842
|
+
<orm:UniquenessConstraint id="_9D06329B-C55C-4357-B331-93D3F7119898" Name="InternalUniquenessConstraint32" IsInternal="true">
|
|
1843
|
+
<orm:RoleSequence>
|
|
1844
|
+
<orm:Role id="_9D4D656A-601C-4195-BDFA-B15F38093DDA" ref="_D9FA26EF-6518-4EC4-B46A-3A26448319F9" />
|
|
1845
|
+
</orm:RoleSequence>
|
|
1846
|
+
</orm:UniquenessConstraint>
|
|
1847
|
+
<orm:UniquenessConstraint id="_8401E4A9-72A2-49FB-B307-720F9FAC2EED" Name="InternalUniquenessConstraint33" IsInternal="true">
|
|
1848
|
+
<orm:RoleSequence>
|
|
1849
|
+
<orm:Role id="_C90BE9B7-5A2D-43EC-A48E-8816769C6274" ref="_457C3F04-09EA-4885-816A-61DC8A85FF44" />
|
|
1850
|
+
</orm:RoleSequence>
|
|
1851
|
+
<orm:PreferredIdentifierFor ref="_C9782755-2396-4443-8305-3AEDE07345C1" />
|
|
1852
|
+
</orm:UniquenessConstraint>
|
|
1853
|
+
<orm:UniquenessConstraint id="_74AED8C2-BAE6-43A1-B526-66E0CFB6465D" Name="InternalUniquenessConstraint34" IsInternal="true">
|
|
1854
|
+
<orm:RoleSequence>
|
|
1855
|
+
<orm:Role id="_7B184872-EAB4-4424-890C-6A3C8B4E6CEF" ref="_F2E2C89D-CA75-4E17-8D53-9C5AE8879790" />
|
|
1856
|
+
</orm:RoleSequence>
|
|
1857
|
+
</orm:UniquenessConstraint>
|
|
1858
|
+
<orm:MandatoryConstraint id="_601E8787-FBA3-41D0-A6DE-FE16D2BEB505" Name="SimpleMandatoryConstraint20" IsSimple="true">
|
|
1859
|
+
<orm:RoleSequence>
|
|
1860
|
+
<orm:Role id="_92AB2D06-0328-47DA-8109-0CE7DF71AFE5" ref="_F2E2C89D-CA75-4E17-8D53-9C5AE8879790" />
|
|
1861
|
+
</orm:RoleSequence>
|
|
1862
|
+
</orm:MandatoryConstraint>
|
|
1863
|
+
<orm:MandatoryConstraint id="_E36C7353-32F4-45E2-B1E6-83ED22D868A3" Name="ImpliedMandatoryConstraint14" IsImplied="true">
|
|
1864
|
+
<orm:RoleSequence>
|
|
1865
|
+
<orm:Role id="_30D1C322-15C1-41B7-BD40-27FF9C4D0F5F" ref="_457C3F04-09EA-4885-816A-61DC8A85FF44" />
|
|
1866
|
+
</orm:RoleSequence>
|
|
1867
|
+
<orm:ImpliedByObjectType ref="_3797D1E4-C5C7-483B-8B52-C943908D07D0" />
|
|
1868
|
+
</orm:MandatoryConstraint>
|
|
1869
|
+
<orm:UniquenessConstraint id="_6775A3A1-E9ED-4FF8-BF16-511A6D8A6C2A" Name="InternalUniquenessConstraint35" IsInternal="true">
|
|
1870
|
+
<orm:RoleSequence>
|
|
1871
|
+
<orm:Role id="_82D518E6-90BC-40EE-8FDD-83336C072029" ref="_3FBD98F8-231B-4D60-AD67-2BF44D4D49B7" />
|
|
1872
|
+
</orm:RoleSequence>
|
|
1873
|
+
</orm:UniquenessConstraint>
|
|
1874
|
+
<orm:MandatoryConstraint id="_89CDEDAE-018F-4D82-81E1-560FB840C925" Name="ImpliedMandatoryConstraint15" IsImplied="true">
|
|
1875
|
+
<orm:RoleSequence>
|
|
1876
|
+
<orm:Role id="_107FF416-E7A0-451E-A5D0-687942957F3F" ref="_0DD65F1B-AEAB-42C0-9079-3DAE955800DE" />
|
|
1877
|
+
<orm:Role id="_82C02D08-506A-4B1A-BF36-265162382D1B" ref="_F115AD0F-9B8D-44E1-BB1C-DE6A7310EF43" />
|
|
1878
|
+
</orm:RoleSequence>
|
|
1879
|
+
<orm:ImpliedByObjectType ref="_42089352-832B-4010-BC8E-B388F1F3F819" />
|
|
1880
|
+
</orm:MandatoryConstraint>
|
|
1881
|
+
<orm:UniquenessConstraint id="_54396374-4F4C-4EC3-A8A7-6E4E4A5045C9" Name="InternalUniquenessConstraint36" IsInternal="true">
|
|
1882
|
+
<orm:RoleSequence>
|
|
1883
|
+
<orm:Role id="_2FF8C458-2252-4C7E-A10C-CB58911E31EE" ref="_0B0D761F-62A9-43D7-A039-90FDCDDBC3FB" />
|
|
1884
|
+
</orm:RoleSequence>
|
|
1885
|
+
</orm:UniquenessConstraint>
|
|
1886
|
+
<orm:UniquenessConstraint id="_36DA76FD-0653-404B-8331-DC6EF2115158" Name="InternalUniquenessConstraint37" IsInternal="true">
|
|
1887
|
+
<orm:RoleSequence>
|
|
1888
|
+
<orm:Role id="_3D7A7754-12E0-4334-A82B-2B197BF28BCC" ref="_0F8859AA-ED87-4036-8A3C-DFF94CB96749" />
|
|
1889
|
+
</orm:RoleSequence>
|
|
1890
|
+
<orm:PreferredIdentifierFor ref="_28CE0DE3-F519-47C9-BAE9-CC22EB4AB646" />
|
|
1891
|
+
</orm:UniquenessConstraint>
|
|
1892
|
+
<orm:UniquenessConstraint id="_A2087B27-D49F-4C98-9FAF-59BA4EAF5A0E" Name="InternalUniquenessConstraint38" IsInternal="true">
|
|
1893
|
+
<orm:RoleSequence>
|
|
1894
|
+
<orm:Role id="_B94162F9-5FD0-4500-93AF-EABBF11BE141" ref="_68C2D4C8-C004-473A-82A5-38E69E43634F" />
|
|
1895
|
+
</orm:RoleSequence>
|
|
1896
|
+
</orm:UniquenessConstraint>
|
|
1897
|
+
<orm:MandatoryConstraint id="_60BAD525-7297-4597-9490-8F5DD7EB3E8C" Name="SimpleMandatoryConstraint21" IsSimple="true">
|
|
1898
|
+
<orm:RoleSequence>
|
|
1899
|
+
<orm:Role id="_D0307E90-1A2B-467C-8E20-5C7F627574A3" ref="_68C2D4C8-C004-473A-82A5-38E69E43634F" />
|
|
1900
|
+
</orm:RoleSequence>
|
|
1901
|
+
</orm:MandatoryConstraint>
|
|
1902
|
+
<orm:MandatoryConstraint id="_C1EC1A1A-3AF1-4680-ABAC-F6BFCB8447ED" Name="ImpliedMandatoryConstraint17" IsImplied="true">
|
|
1903
|
+
<orm:RoleSequence>
|
|
1904
|
+
<orm:Role id="_DFAFB4CC-90BD-4DAE-8BAB-BE1CB35C807C" ref="_0F8859AA-ED87-4036-8A3C-DFF94CB96749" />
|
|
1905
|
+
</orm:RoleSequence>
|
|
1906
|
+
<orm:ImpliedByObjectType ref="_A97CCE60-73E7-4549-98D4-54FF3E2DBC14" />
|
|
1907
|
+
</orm:MandatoryConstraint>
|
|
1908
|
+
<orm:UniquenessConstraint id="_96A97AA9-E7F9-4C73-9419-E287A7D32044" Name="InternalUniquenessConstraint39" IsInternal="true">
|
|
1909
|
+
<orm:RoleSequence>
|
|
1910
|
+
<orm:Role id="_49724060-EBB7-4417-94E3-0F2A35F8160C" ref="_5218BF9F-C24C-4E26-A6E8-793500D7E2CC" />
|
|
1911
|
+
</orm:RoleSequence>
|
|
1912
|
+
</orm:UniquenessConstraint>
|
|
1913
|
+
<orm:UniquenessConstraint id="_60A52FD2-8C27-4D15-89E4-FCD12D067F8D" Name="InternalUniquenessConstraint40" IsInternal="true">
|
|
1914
|
+
<orm:RoleSequence>
|
|
1915
|
+
<orm:Role id="_0380DFA5-525D-4F01-8235-0D985E2618EC" ref="_9B326FFA-12FF-471F-8D3F-67CA5BFF6615" />
|
|
1916
|
+
</orm:RoleSequence>
|
|
1917
|
+
</orm:UniquenessConstraint>
|
|
1918
|
+
<orm:MandatoryConstraint id="_FB4E150A-1E9C-448E-A219-7BD62B691EA5" Name="SimpleMandatoryConstraint22" IsSimple="true">
|
|
1919
|
+
<orm:RoleSequence>
|
|
1920
|
+
<orm:Role id="_6FA2FB86-77F6-431A-A8C1-81338E312825" ref="_9B326FFA-12FF-471F-8D3F-67CA5BFF6615" />
|
|
1921
|
+
</orm:RoleSequence>
|
|
1922
|
+
</orm:MandatoryConstraint>
|
|
1923
|
+
<orm:MandatoryConstraint id="_2572D9A2-004E-479E-B1FF-7FA534F750F6" Name="SimpleMandatoryConstraint23" IsSimple="true">
|
|
1924
|
+
<orm:RoleSequence>
|
|
1925
|
+
<orm:Role id="_A3775E39-7AD8-4457-8CFD-EE883B6CA2A1" ref="_586AA182-516C-4FB8-A52C-411FC16088CA" />
|
|
1926
|
+
</orm:RoleSequence>
|
|
1927
|
+
</orm:MandatoryConstraint>
|
|
1928
|
+
<orm:UniquenessConstraint id="_FC40BC9E-7C40-4183-952D-B285AC4B8207" Name="InternalUniquenessConstraint41" IsInternal="true">
|
|
1929
|
+
<orm:RoleSequence>
|
|
1930
|
+
<orm:Role id="_FC77EDFF-FEAD-4610-9E9D-BCF2B37FC816" ref="_586AA182-516C-4FB8-A52C-411FC16088CA" />
|
|
1931
|
+
</orm:RoleSequence>
|
|
1932
|
+
</orm:UniquenessConstraint>
|
|
1933
|
+
<orm:MandatoryConstraint id="_FD23901C-AD1F-4A5F-BAB7-AF4F1F491873" Name="SimpleMandatoryConstraint24" IsSimple="true">
|
|
1934
|
+
<orm:RoleSequence>
|
|
1935
|
+
<orm:Role id="_6B570F69-C13C-446C-821B-BC654E25182D" ref="_673E8D66-677D-487B-A145-21157DB878C7" />
|
|
1936
|
+
</orm:RoleSequence>
|
|
1937
|
+
</orm:MandatoryConstraint>
|
|
1938
|
+
<orm:UniquenessConstraint id="_DFD12991-6DFB-434A-832F-D98107E54D95" Name="InternalUniquenessConstraint42" IsInternal="true">
|
|
1939
|
+
<orm:RoleSequence>
|
|
1940
|
+
<orm:Role id="_8A6EC1FD-59EF-42B0-9F49-DB73BCC29476" ref="_673E8D66-677D-487B-A145-21157DB878C7" />
|
|
1941
|
+
</orm:RoleSequence>
|
|
1942
|
+
</orm:UniquenessConstraint>
|
|
1943
|
+
<orm:MandatoryConstraint id="_FE996827-3316-4C42-8CFF-7521E85D5E61" Name="SimpleMandatoryConstraint25" IsSimple="true">
|
|
1944
|
+
<orm:RoleSequence>
|
|
1945
|
+
<orm:Role id="_C9EFF7A2-14C1-4596-B1B2-5456B17B4E6C" ref="_49E6354F-F730-444A-BC94-5B02AF691C42" />
|
|
1946
|
+
</orm:RoleSequence>
|
|
1947
|
+
</orm:MandatoryConstraint>
|
|
1948
|
+
<orm:UniquenessConstraint id="_5E6F7181-7627-4385-9AC3-34C3E89E56A5" Name="InternalUniquenessConstraint43" IsInternal="true">
|
|
1949
|
+
<orm:RoleSequence>
|
|
1950
|
+
<orm:Role id="_273CDBF5-6AB9-45B8-BA4F-ACE7272AA80E" ref="_49E6354F-F730-444A-BC94-5B02AF691C42" />
|
|
1951
|
+
</orm:RoleSequence>
|
|
1952
|
+
</orm:UniquenessConstraint>
|
|
1953
|
+
<orm:UniquenessConstraint id="_29265FEC-D3A0-4325-B2E1-89EF6067E9D8" Name="InternalUniquenessConstraint44" IsInternal="true">
|
|
1954
|
+
<orm:RoleSequence>
|
|
1955
|
+
<orm:Role id="_314284AD-3258-4166-BBD1-273AA1DCFCB4" ref="_647999A3-D0AE-4469-8323-40939319E45A" />
|
|
1956
|
+
<orm:Role id="_C8E104D7-764C-4DF8-8FCC-2A3A5B452047" ref="_BABD0E04-4B13-4AAB-8779-28A78AFA5DF5" />
|
|
1957
|
+
<orm:Role id="_91486AC5-CFA3-4BD8-97C7-2C19CF142034" ref="_C8E86C24-A9F1-45EC-8B66-AA484FFBD33C" />
|
|
1958
|
+
</orm:RoleSequence>
|
|
1959
|
+
<orm:PreferredIdentifierFor ref="_F15EBD20-E065-418C-A346-480E16B665E5" />
|
|
1960
|
+
</orm:UniquenessConstraint>
|
|
1961
|
+
<orm:MandatoryConstraint id="_AC755045-2149-4D4E-88BC-766DE9659BE5" Name="ImpliedMandatoryConstraint18" IsImplied="true">
|
|
1962
|
+
<orm:RoleSequence>
|
|
1963
|
+
<orm:Role id="_A5B63237-A17A-4F60-A4B9-4100C985A647" ref="_19F0EA78-E40A-44C6-AD3A-BC35A9328422" />
|
|
1964
|
+
</orm:RoleSequence>
|
|
1965
|
+
<orm:ImpliedByObjectType ref="_F15EBD20-E065-418C-A346-480E16B665E5" />
|
|
1966
|
+
</orm:MandatoryConstraint>
|
|
1967
|
+
<orm:UniquenessConstraint id="_277B2FB1-75E2-4058-AA01-3CF6954079C7" Name="InternalUniquenessConstraint45" IsInternal="true">
|
|
1968
|
+
<orm:RoleSequence>
|
|
1969
|
+
<orm:Role id="_6C86CC2A-B01F-4222-8DE9-7D3BA38460EF" ref="_A25ACFA7-F34E-40FF-9510-A7F739C88902" />
|
|
1970
|
+
</orm:RoleSequence>
|
|
1971
|
+
</orm:UniquenessConstraint>
|
|
1972
|
+
<orm:UniquenessConstraint id="_2AE7C2BD-6B1E-40C8-8727-340A2A74D409" Name="InternalUniquenessConstraint46" IsInternal="true">
|
|
1973
|
+
<orm:RoleSequence>
|
|
1974
|
+
<orm:Role id="_542D671F-B6D9-4C7E-94C9-1FAB435E148D" ref="_19F0EA78-E40A-44C6-AD3A-BC35A9328422" />
|
|
1975
|
+
</orm:RoleSequence>
|
|
1976
|
+
<orm:PreferredIdentifierFor ref="_CC5CF3F4-4F49-448D-A4FB-5BE3A6B97C2F" />
|
|
1977
|
+
</orm:UniquenessConstraint>
|
|
1978
|
+
<orm:MandatoryConstraint id="_2AE3B349-FC1A-48B9-82FD-2B6EA5241647" Name="SimpleMandatoryConstraint26" IsSimple="true">
|
|
1979
|
+
<orm:RoleSequence>
|
|
1980
|
+
<orm:Role id="_ED8DB84C-C773-47E8-B842-926FA0AA9364" ref="_A25ACFA7-F34E-40FF-9510-A7F739C88902" />
|
|
1981
|
+
</orm:RoleSequence>
|
|
1982
|
+
</orm:MandatoryConstraint>
|
|
1983
|
+
<orm:UniquenessConstraint id="_D799561A-8F7B-44C5-9C38-3A1FDA8A6117" Name="InternalUniquenessConstraint47" IsInternal="true">
|
|
1984
|
+
<orm:RoleSequence>
|
|
1985
|
+
<orm:Role id="_8AC5A828-DFC0-4B09-8083-00AB74BBCB18" ref="_8E4BBEA3-BDD5-4C4C-B4F3-49D16E76B2A5" />
|
|
1986
|
+
</orm:RoleSequence>
|
|
1987
|
+
<orm:PreferredIdentifierFor ref="_86E381B2-0D09-437D-82E0-0EDF38A3260C" />
|
|
1988
|
+
</orm:UniquenessConstraint>
|
|
1989
|
+
<orm:UniquenessConstraint id="_E28E56BA-6216-4576-AB8D-CDA9A9D12139" Name="InternalUniquenessConstraint48" IsInternal="true">
|
|
1990
|
+
<orm:RoleSequence>
|
|
1991
|
+
<orm:Role id="_0A76C51F-4450-4494-9EB8-D23F93F1C904" ref="_D3EF80EF-9A6B-485B-8D80-77025B6F2FD2" />
|
|
1992
|
+
</orm:RoleSequence>
|
|
1993
|
+
</orm:UniquenessConstraint>
|
|
1994
|
+
<orm:MandatoryConstraint id="_C5D36D8B-8BFC-4A61-885E-88B78FE90115" Name="SimpleMandatoryConstraint27" IsSimple="true">
|
|
1995
|
+
<orm:RoleSequence>
|
|
1996
|
+
<orm:Role id="_8694F8BF-0958-4ABA-926E-D130105E6CAC" ref="_D3EF80EF-9A6B-485B-8D80-77025B6F2FD2" />
|
|
1997
|
+
</orm:RoleSequence>
|
|
1998
|
+
</orm:MandatoryConstraint>
|
|
1999
|
+
<orm:MandatoryConstraint id="_DCA28FDC-11AA-421E-B23A-67635018C7F0" Name="ImpliedMandatoryConstraint16" IsImplied="true">
|
|
2000
|
+
<orm:RoleSequence>
|
|
2001
|
+
<orm:Role id="_4EFDCAB9-6B2D-43F8-B521-29C55EDA7C08" ref="_8E4BBEA3-BDD5-4C4C-B4F3-49D16E76B2A5" />
|
|
2002
|
+
</orm:RoleSequence>
|
|
2003
|
+
<orm:ImpliedByObjectType ref="_8F7E4CDC-845B-498D-8C13-8CA799DB3D59" />
|
|
2004
|
+
</orm:MandatoryConstraint>
|
|
2005
|
+
<orm:UniquenessConstraint id="_BC5E49ED-E7E1-4C35-AE94-56C24DA8E3EE" Name="InternalUniquenessConstraint49" IsInternal="true">
|
|
2006
|
+
<orm:RoleSequence>
|
|
2007
|
+
<orm:Role id="_7BAAE85D-84C5-4E1A-A971-F376BA9787A8" ref="_840FAB73-C58B-434C-9F48-1CA96683467F" />
|
|
2008
|
+
</orm:RoleSequence>
|
|
2009
|
+
</orm:UniquenessConstraint>
|
|
2010
|
+
<orm:UniquenessConstraint id="_68AD9CAE-DB3C-46F6-A5B5-0A5BD8416ADC" Name="InternalUniquenessConstraint50" IsInternal="true">
|
|
2011
|
+
<orm:RoleSequence>
|
|
2012
|
+
<orm:Role id="_6FBEB35A-ED98-422B-9412-1EF4086DFA45" ref="_45A1BCFD-DEB5-4627-9AF5-0FB079B520CA" />
|
|
2013
|
+
</orm:RoleSequence>
|
|
2014
|
+
</orm:UniquenessConstraint>
|
|
2015
|
+
<orm:MandatoryConstraint id="_6708D3D0-FC76-400D-99D5-A8FBFF16FFB0" Name="SimpleMandatoryConstraint28" IsSimple="true">
|
|
2016
|
+
<orm:RoleSequence>
|
|
2017
|
+
<orm:Role id="_A308247F-A94D-41F1-8B28-949E167FED7A" ref="_3FBD98F8-231B-4D60-AD67-2BF44D4D49B7" />
|
|
2018
|
+
</orm:RoleSequence>
|
|
2019
|
+
</orm:MandatoryConstraint>
|
|
2020
|
+
<orm:MandatoryConstraint id="_B2B93F4A-90AB-4A07-8316-64C58052A278" Name="SimpleMandatoryConstraint30" IsSimple="true">
|
|
2021
|
+
<orm:RoleSequence>
|
|
2022
|
+
<orm:Role id="_1C87D668-8D66-4A94-94F6-BD5AF7DFA324" ref="_840FAB73-C58B-434C-9F48-1CA96683467F" />
|
|
2023
|
+
</orm:RoleSequence>
|
|
2024
|
+
</orm:MandatoryConstraint>
|
|
2025
|
+
<orm:UniquenessConstraint id="_71FC5028-5060-4D1A-BA91-25550FF4DF4C" Name="InternalUniquenessConstraint51" IsInternal="true">
|
|
2026
|
+
<orm:RoleSequence>
|
|
2027
|
+
<orm:Role id="_55CCFABD-60FB-495D-BD64-BFD7CC288F8F" ref="_0BB67B32-F130-4974-B993-F2C1D2A36591" />
|
|
2028
|
+
</orm:RoleSequence>
|
|
2029
|
+
</orm:UniquenessConstraint>
|
|
2030
|
+
<orm:MandatoryConstraint id="_F64E252D-F814-4F45-A06A-77D5607F2815" Name="SimpleMandatoryConstraint31" IsSimple="true">
|
|
2031
|
+
<orm:RoleSequence>
|
|
2032
|
+
<orm:Role id="_18B5882F-2744-4808-B67B-052413259FEC" ref="_0BB67B32-F130-4974-B993-F2C1D2A36591" />
|
|
2033
|
+
</orm:RoleSequence>
|
|
2034
|
+
</orm:MandatoryConstraint>
|
|
2035
|
+
<orm:UniquenessConstraint id="_C7AE18BB-9F42-4698-BE01-E4EED623B7EE" Name="InternalUniquenessConstraint52" IsInternal="true">
|
|
2036
|
+
<orm:RoleSequence>
|
|
2037
|
+
<orm:Role id="_71BFCBE9-ACA3-4BA8-87D8-EF2C5AE65DB0" ref="_EBC3A5E3-B826-466F-A08F-F2CCF08915A8" />
|
|
2038
|
+
</orm:RoleSequence>
|
|
2039
|
+
</orm:UniquenessConstraint>
|
|
2040
|
+
<orm:MandatoryConstraint id="_C6BF581E-BE96-4BDD-A260-469C2693EA10" Name="SimpleMandatoryConstraint32" IsSimple="true">
|
|
2041
|
+
<orm:RoleSequence>
|
|
2042
|
+
<orm:Role id="_26AE0379-09C5-49BD-9FE6-556588BD07C9" ref="_EBC3A5E3-B826-466F-A08F-F2CCF08915A8" />
|
|
2043
|
+
</orm:RoleSequence>
|
|
2044
|
+
</orm:MandatoryConstraint>
|
|
2045
|
+
<orm:UniquenessConstraint id="_A5B84ECC-B64E-4589-9BD8-4288C7C367D2" Name="ExternalUniquenessConstraint1">
|
|
2046
|
+
<orm:RoleSequence>
|
|
2047
|
+
<orm:Role id="_DB948819-EBF3-442A-AE3C-2E04163CDE01" ref="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" />
|
|
2048
|
+
<orm:Role id="_760187D6-32BB-41A4-BF40-233103DA0B14" ref="_877FC377-D1D4-45E4-9875-F526C106FC67" />
|
|
2049
|
+
<orm:JoinRule>
|
|
2050
|
+
<orm:JoinPath id="_C1DE2D0E-63E4-4AC0-B2B1-E11CB3ADCD83" IsAutomatic="true">
|
|
2051
|
+
<orm:PathComponents>
|
|
2052
|
+
<orm:RolePath id="_295F203B-1B0A-4535-A723-5A6E379845D4" SplitCombinationOperator="And">
|
|
2053
|
+
<orm:RootObjectType id="_A377C59E-6795-471E-A2B0-C94F6804D1C3" ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
2054
|
+
<orm:SubPaths>
|
|
2055
|
+
<orm:SubPath id="_043452F2-1FCB-4ED7-8200-7553E905CCCA">
|
|
2056
|
+
<orm:PathedRoles>
|
|
2057
|
+
<orm:PathedRole id="_D6126776-F7E4-4FA2-8EB2-03F458F9C010" ref="_0BB67B32-F130-4974-B993-F2C1D2A36591" Purpose="PostInnerJoin" />
|
|
2058
|
+
<orm:PathedRole id="_EE08F9CB-8376-4226-B217-EB191CF846A7" ref="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" Purpose="SameFactType" />
|
|
2059
|
+
</orm:PathedRoles>
|
|
2060
|
+
</orm:SubPath>
|
|
2061
|
+
<orm:SubPath id="_7ED06090-1556-45F1-8249-E8F34033A471">
|
|
2062
|
+
<orm:PathedRoles>
|
|
2063
|
+
<orm:PathedRole id="_5741892F-9BF0-4E8F-8881-90B0767C4A49" ref="_EBC3A5E3-B826-466F-A08F-F2CCF08915A8" Purpose="PostInnerJoin" />
|
|
2064
|
+
<orm:PathedRole id="_CCF3F469-0B95-4EEF-BFDB-DA6D08073A2D" ref="_877FC377-D1D4-45E4-9875-F526C106FC67" Purpose="SameFactType" />
|
|
2065
|
+
</orm:PathedRoles>
|
|
2066
|
+
</orm:SubPath>
|
|
2067
|
+
</orm:SubPaths>
|
|
2068
|
+
</orm:RolePath>
|
|
2069
|
+
</orm:PathComponents>
|
|
2070
|
+
<orm:JoinPathProjections>
|
|
2071
|
+
<orm:JoinPathProjection id="_B8F22D92-CE56-4BC7-B8DA-2CE99EFC626E" ref="_295F203B-1B0A-4535-A723-5A6E379845D4">
|
|
2072
|
+
<orm:ConstraintRoleProjection id="_9753857E-ECEF-4600-A8A5-8F5B644C0345" ref="_DB948819-EBF3-442A-AE3C-2E04163CDE01">
|
|
2073
|
+
<orm:ProjectedFrom>
|
|
2074
|
+
<orm:PathedRole ref="_EE08F9CB-8376-4226-B217-EB191CF846A7" />
|
|
2075
|
+
</orm:ProjectedFrom>
|
|
2076
|
+
</orm:ConstraintRoleProjection>
|
|
2077
|
+
<orm:ConstraintRoleProjection id="_6CA92E58-2C26-4428-B3F5-B4E88EC54DAD" ref="_760187D6-32BB-41A4-BF40-233103DA0B14">
|
|
2078
|
+
<orm:ProjectedFrom>
|
|
2079
|
+
<orm:PathedRole ref="_CCF3F469-0B95-4EEF-BFDB-DA6D08073A2D" />
|
|
2080
|
+
</orm:ProjectedFrom>
|
|
2081
|
+
</orm:ConstraintRoleProjection>
|
|
2082
|
+
</orm:JoinPathProjection>
|
|
2083
|
+
</orm:JoinPathProjections>
|
|
2084
|
+
</orm:JoinPath>
|
|
2085
|
+
</orm:JoinRule>
|
|
2086
|
+
</orm:RoleSequence>
|
|
2087
|
+
<orm:PreferredIdentifierFor ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
2088
|
+
</orm:UniquenessConstraint>
|
|
2089
|
+
<orm:UniquenessConstraint id="_38F65CD9-FDCB-4B3F-BA9F-6F1F603D3FA9" Name="InternalUniquenessConstraint53" IsInternal="true">
|
|
2090
|
+
<orm:RoleSequence>
|
|
2091
|
+
<orm:Role id="_95D8F33E-BB7E-4B1B-A9A3-01F855C5C099" ref="_3451611D-C560-4360-974C-F26494D5CE7B" />
|
|
2092
|
+
</orm:RoleSequence>
|
|
2093
|
+
</orm:UniquenessConstraint>
|
|
2094
|
+
<orm:MandatoryConstraint id="_96509BE2-FC02-455D-A09E-C82164F7F6EC" Name="SimpleMandatoryConstraint33" IsSimple="true">
|
|
2095
|
+
<orm:RoleSequence>
|
|
2096
|
+
<orm:Role id="_074CEFF0-32B7-410B-9944-719B5FAF47BA" ref="_3451611D-C560-4360-974C-F26494D5CE7B" />
|
|
2097
|
+
</orm:RoleSequence>
|
|
2098
|
+
</orm:MandatoryConstraint>
|
|
2099
|
+
<orm:MandatoryConstraint id="_600959FC-AA62-420F-86B5-F8EAD8E1CF02" Name="SimpleMandatoryConstraint34" IsSimple="true">
|
|
2100
|
+
<orm:RoleSequence>
|
|
2101
|
+
<orm:Role id="_C031CCD8-47AA-48E7-82FD-821E4F3C6634" ref="_5DD1908A-EED1-4FFD-9379-FAB29CA66DC9" />
|
|
2102
|
+
</orm:RoleSequence>
|
|
2103
|
+
</orm:MandatoryConstraint>
|
|
2104
|
+
<orm:UniquenessConstraint id="_88907DDD-4CCA-426F-BA08-BF09ABD559BF" Name="InternalUniquenessConstraint54" IsInternal="true">
|
|
2105
|
+
<orm:RoleSequence>
|
|
2106
|
+
<orm:Role id="_14E7DA8A-B506-47CB-B7E6-08BD1D1D2CBB" ref="_5DD1908A-EED1-4FFD-9379-FAB29CA66DC9" />
|
|
2107
|
+
</orm:RoleSequence>
|
|
2108
|
+
</orm:UniquenessConstraint>
|
|
2109
|
+
<orm:MandatoryConstraint id="_C440969B-4BE3-4702-B0CA-2E5B485A3342" Name="SimpleMandatoryConstraint11" IsSimple="true">
|
|
2110
|
+
<orm:RoleSequence>
|
|
2111
|
+
<orm:Role id="_99D0C027-290E-4AD7-9809-BE79334283A0" ref="_D746689E-D3AD-4B11-82B3-272EAB7638E2" />
|
|
2112
|
+
</orm:RoleSequence>
|
|
2113
|
+
</orm:MandatoryConstraint>
|
|
2114
|
+
<orm:UniquenessConstraint id="_D4EF6327-2C6C-4F9B-9CD4-BF2DEE4CD28A" Name="InternalUniquenessConstraint19" IsInternal="true">
|
|
2115
|
+
<orm:RoleSequence>
|
|
2116
|
+
<orm:Role id="_555F78C0-E491-4848-8DAD-876614E90D03" ref="_D746689E-D3AD-4B11-82B3-272EAB7638E2" />
|
|
2117
|
+
</orm:RoleSequence>
|
|
2118
|
+
</orm:UniquenessConstraint>
|
|
2119
|
+
</orm:Constraints>
|
|
2120
|
+
<orm:DataTypes>
|
|
2121
|
+
<orm:FixedLengthTextDataType id="_0E5CAF1B-FFD4-4EE1-9109-3236EBC8CBA4" />
|
|
2122
|
+
<orm:VariableLengthTextDataType id="_587EA24A-5FB1-4759-B18A-6763265BE70E" />
|
|
2123
|
+
<orm:LargeLengthTextDataType id="_ED6C1E1B-8313-4852-A28C-5509C429005D" />
|
|
2124
|
+
<orm:SignedIntegerNumericDataType id="_32AFD7B7-CA7E-4586-9762-4016D9118589" />
|
|
2125
|
+
<orm:AutoCounterNumericDataType id="_67B71B45-728A-4845-ACED-C10799B7603C" />
|
|
2126
|
+
<orm:DateTemporalDataType id="_EA018D64-A532-4F31-8BAB-B669AB890F8B" />
|
|
2127
|
+
</orm:DataTypes>
|
|
2128
|
+
<orm:CustomReferenceModes>
|
|
2129
|
+
<orm:CustomReferenceMode id="_FDA5B277-1E27-4B8E-96A1-B2E319044E29" Name="Number">
|
|
2130
|
+
<orm:CustomFormatString />
|
|
2131
|
+
<orm:Kind ref="_BA474FE7-E39A-4A46-8DEE-B2D5DE38C0FE" />
|
|
2132
|
+
</orm:CustomReferenceMode>
|
|
2133
|
+
</orm:CustomReferenceModes>
|
|
2134
|
+
<orm:ReferenceModeKinds>
|
|
2135
|
+
<orm:ReferenceModeKind id="_EF5CE290-31F8-40DC-9458-75C90138C5CA" FormatString="{1}" ReferenceModeType="General" />
|
|
2136
|
+
<orm:ReferenceModeKind id="_BA474FE7-E39A-4A46-8DEE-B2D5DE38C0FE" FormatString="{0} {1}" ReferenceModeType="Popular" />
|
|
2137
|
+
<orm:ReferenceModeKind id="_B149406D-8AC0-4DDB-8C37-E803E5C4B4D2" FormatString="{1}Value" ReferenceModeType="UnitBased" />
|
|
2138
|
+
</orm:ReferenceModeKinds>
|
|
2139
|
+
</orm:ORMModel>
|
|
2140
|
+
<ormDiagram:ORMDiagram id="_8F1B1046-054D-42F5-BDF0-00A0BDA4754B" IsCompleteView="false" Name="Health" BaseFontName="Tahoma" BaseFontSize="0.0972222238779068">
|
|
2141
|
+
<ormDiagram:Shapes>
|
|
2142
|
+
<ormDiagram:ObjectTypeShape id="_2A65EA5F-E0DE-4D47-8C22-3DCA9E4BDE71" IsExpanded="true" AbsoluteBounds="0.72503354617169391, 0.50844141789153219, 0.42086034536361694, 0.35900605320930479">
|
|
2143
|
+
<ormDiagram:Subject ref="_8996F3CF-C2DF-4B43-9CFA-D20C4B1903D7" />
|
|
2144
|
+
</ormDiagram:ObjectTypeShape>
|
|
2145
|
+
<ormDiagram:ObjectTypeShape id="_958E5916-8711-40DA-892E-DC406E0E472D" IsExpanded="true" AbsoluteBounds="0.55584409304669391, 1.5489166666666665, 0.75923925161361694, 0.22950302660465241">
|
|
2146
|
+
<ormDiagram:Subject ref="_77E51608-1C7F-487F-B7B0-A38A53CAB8E4" />
|
|
2147
|
+
</ormDiagram:ObjectTypeShape>
|
|
2148
|
+
<ormDiagram:ObjectTypeShape id="_7102E73A-BA4B-429B-A703-C0624390BBC5" IsExpanded="true" AbsoluteBounds="2.0277023993325014, 2.0652117322578825, 0.81473379850387573, 0.22950302660465241">
|
|
2149
|
+
<ormDiagram:Subject ref="_EDCBFCD8-1088-42F2-A277-BBA2A194AA1D" />
|
|
2150
|
+
</ormDiagram:ObjectTypeShape>
|
|
2151
|
+
<ormDiagram:ObjectTypeShape id="_7B8CD192-B7D0-437F-A07B-BEB66FB9189F" IsExpanded="true" AbsoluteBounds="0.63502703078797351, 2.5847170961565755, 0.60087337613105773, 0.22950302660465241">
|
|
2152
|
+
<ormDiagram:Subject ref="_16EB6AB4-FB64-4E91-AE7F-F1C9C1FEADC1" />
|
|
2153
|
+
</ormDiagram:ObjectTypeShape>
|
|
2154
|
+
<ormDiagram:ObjectTypeShape id="_565BE6BB-BC04-445F-890E-F4EBCB66A2C8" IsExpanded="true" AbsoluteBounds="2.1390705136052564, 0.50844141789153219, 0.56669368863105773, 0.35900605320930479">
|
|
2155
|
+
<ormDiagram:Subject ref="_FAE00053-F8C0-4BD1-AA51-D6C664B3A76D" />
|
|
2156
|
+
</ormDiagram:ObjectTypeShape>
|
|
2157
|
+
<ormDiagram:ObjectTypeShape id="_C5972F1B-0B8C-4C98-BDA5-78AD0B9E978D" IsExpanded="true" AbsoluteBounds="3.8510178604515204, 0.50844141789153219, 0.98819571256637573, 0.35900605320930479">
|
|
2158
|
+
<ormDiagram:Subject ref="_173CFC3A-2006-4076-9D5E-178F3C498236" />
|
|
2159
|
+
</ormDiagram:ObjectTypeShape>
|
|
2160
|
+
<ormDiagram:FactTypeShape id="_88166346-1AC0-47CC-9B50-D0AF5C169678" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 0.531, 0.38388888899236917, 0.24388888899236916">
|
|
2161
|
+
<ormDiagram:RelativeShapes>
|
|
2162
|
+
<ormDiagram:ReadingShape id="_4AF15C7E-978E-47D8-A2C5-BD8CDAD1D9C7" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 0.83964040229469528, 0.63274781703948979, 0.12950302660465241">
|
|
2163
|
+
<ormDiagram:Subject ref="_E6B85C89-6687-48F9-ADF1-E043AE085F44" />
|
|
2164
|
+
</ormDiagram:ReadingShape>
|
|
2165
|
+
</ormDiagram:RelativeShapes>
|
|
2166
|
+
<ormDiagram:Subject ref="_A27E8AB4-C4B3-43AF-8F1A-806C87ACD56D" />
|
|
2167
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2168
|
+
<ormDiagram:Role ref="_7B239EB8-6599-4D16-BFD8-0AE588EE1DD4" />
|
|
2169
|
+
<ormDiagram:Role ref="_1958C2F5-5BD6-48B8-A05E-7C098385F3CF" />
|
|
2170
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2171
|
+
</ormDiagram:FactTypeShape>
|
|
2172
|
+
<ormDiagram:ObjectTypeShape id="_8ACB63F8-3488-40E5-B7C7-AF6C4B8FD6C9" IsExpanded="true" AbsoluteBounds="5.8291509191187032, 0.50844141789153219, 0.89510350942611694, 0.35900605320930479">
|
|
2173
|
+
<ormDiagram:Subject ref="_E02528A9-82D7-4F76-984A-161D7E5A8495" />
|
|
2174
|
+
</ormDiagram:ObjectTypeShape>
|
|
2175
|
+
<ormDiagram:FactTypeShape id="_9D4E518B-0B12-4C34-A988-ECC859660470" IsExpanded="true" AbsoluteBounds="5.0493819535565176, 0.5, 0.51388888899236917, 0.30588888899236916">
|
|
2176
|
+
<ormDiagram:RelativeShapes>
|
|
2177
|
+
<ormDiagram:ObjectifiedFactTypeNameShape id="_299A5463-59D9-4079-A5F3-F38AB556A7D6" IsExpanded="true" AbsoluteBounds="5.0493819535565176, 0.30574546009302139, 0.94960981607437134, 0.12950302660465241">
|
|
2178
|
+
<ormDiagram:Subject ref="_3980A570-A807-4084-8AAD-3589D5418CFE" />
|
|
2179
|
+
</ormDiagram:ObjectifiedFactTypeNameShape>
|
|
2180
|
+
<ormDiagram:ReadingShape id="_270B8599-FA64-4DB7-B375-D4862839BB39" IsExpanded="true" AbsoluteBounds="5.0493819535565176, 0.87064040229469541, 0.97790300846099854, 0.12950302660465241">
|
|
2181
|
+
<ormDiagram:Subject ref="_0106AFEF-69A5-4242-AD55-14691B892BC5" />
|
|
2182
|
+
</ormDiagram:ReadingShape>
|
|
2183
|
+
</ormDiagram:RelativeShapes>
|
|
2184
|
+
<ormDiagram:Subject ref="_2328E5D5-7F7D-45A0-BBA3-5609A293ACC1" />
|
|
2185
|
+
</ormDiagram:FactTypeShape>
|
|
2186
|
+
<ormDiagram:ObjectTypeShape id="_03DF79FC-35F9-4087-9807-8F97CCC286AF" IsExpanded="true" AbsoluteBounds="1.9975853818906588, 1.5188162966604055, 0.88314061880111694, 0.22950302660465241">
|
|
2187
|
+
<ormDiagram:Subject ref="_39E79CF1-AF98-4E38-8A14-5C6528B5E72F" />
|
|
2188
|
+
</ormDiagram:ObjectTypeShape>
|
|
2189
|
+
<ormDiagram:FactTypeShape id="_A548E298-41A6-4A53-A41A-178782F60CFF" IsExpanded="true" AbsoluteBounds="5.0493819535565176, 1.4977066987998804, 0.51388888899236917, 0.30588888899236916">
|
|
2190
|
+
<ormDiagram:RelativeShapes>
|
|
2191
|
+
<ormDiagram:ReadingShape id="_49B72A05-94D9-4ED7-A61A-F60403F24776" IsExpanded="true" AbsoluteBounds="5.0493819535565176, 1.8683471010945749, 0.38873064517974854, 0.12950302660465241">
|
|
2192
|
+
<ormDiagram:Subject ref="_A01DB1C6-F25E-48ED-95C5-77DD57540F58" />
|
|
2193
|
+
</ormDiagram:ReadingShape>
|
|
2194
|
+
<ormDiagram:ObjectifiedFactTypeNameShape id="_795C1580-A30C-4671-80C0-E5B22E543C3B" IsExpanded="true" AbsoluteBounds="5.0493819535565176, 1.3034521588929018, 0.80928319692611694, 0.12950302660465241">
|
|
2195
|
+
<ormDiagram:Subject ref="_7B13A3E8-0388-451E-A121-913A35D317ED" />
|
|
2196
|
+
</ormDiagram:ObjectifiedFactTypeNameShape>
|
|
2197
|
+
</ormDiagram:RelativeShapes>
|
|
2198
|
+
<ormDiagram:Subject ref="_7D3A54EE-1699-424A-A375-1D75AD94D5DA" />
|
|
2199
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2200
|
+
<ormDiagram:Role ref="_C842E527-8C30-4BFD-BBC9-695BA97B82C3" />
|
|
2201
|
+
<ormDiagram:Role ref="_E8F091A3-0A28-4B85-815C-2C3D8F8C9E4D" />
|
|
2202
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2203
|
+
</ormDiagram:FactTypeShape>
|
|
2204
|
+
<ormDiagram:FactTypeShape id="_516C3301-E9E0-4356-A327-12FF2AC0B6AD" IsExpanded="true" AbsoluteBounds="5.67971924294885, 1.507873365466547, 0.38388888899236917, 0.24388888899236916">
|
|
2205
|
+
<ormDiagram:RelativeShapes>
|
|
2206
|
+
<ormDiagram:ReadingShape id="_9FE73348-D312-4976-BB48-BA3D7615C6C2" IsExpanded="true" AbsoluteBounds="5.67971924294885, 1.8165137677612429, 0.21731001138687134, 0.12950302660465241">
|
|
2207
|
+
<ormDiagram:Subject ref="_BAE2D4FD-0FB4-4E85-90C2-FCAF524AA560" />
|
|
2208
|
+
</ormDiagram:ReadingShape>
|
|
2209
|
+
</ormDiagram:RelativeShapes>
|
|
2210
|
+
<ormDiagram:Subject ref="_F372C868-BA79-4490-BBF9-8575C814E14F" />
|
|
2211
|
+
</ormDiagram:FactTypeShape>
|
|
2212
|
+
<ormDiagram:ObjectTypeShape id="_70211882-5CC1-4360-B50C-28A5E893263C" IsExpanded="true" AbsoluteBounds="6.1262701732899343, 1.560482963327072, 0.91803240299224853, 0.22950302660465241">
|
|
2213
|
+
<ormDiagram:Subject ref="_2F441EC6-C34F-4BCD-80F5-FDAF964F4DBC" />
|
|
2214
|
+
</ormDiagram:ObjectTypeShape>
|
|
2215
|
+
<ormDiagram:ObjectTypeShape id="_92C30A0E-0B89-4855-9281-C444F74015CB" IsExpanded="true" AbsoluteBounds="2.3821927555402143, 2.5199655828542493, 0.57614057779312144, 0.35900605320930479">
|
|
2216
|
+
<ormDiagram:Subject ref="_296DDB18-552E-4B25-B518-2AFFB74A8A81" />
|
|
2217
|
+
</ormDiagram:ObjectTypeShape>
|
|
2218
|
+
<ormDiagram:FactTypeShape id="_38E62F22-974B-49D9-9453-AC19C0CB1047" IsExpanded="true" AbsoluteBounds="1.649332341382902, 2.5425241649627175, 0.38388888899236917, 0.24388888899236916">
|
|
2219
|
+
<ormDiagram:RelativeShapes>
|
|
2220
|
+
<ormDiagram:ReadingShape id="_B2605995-D4C4-46AE-AA1E-FBD9EF0A6778" IsExpanded="true" AbsoluteBounds="1.649332341382902, 2.8511645672574129, 0.43920536637306212, 0.12950302660465241">
|
|
2221
|
+
<ormDiagram:Subject ref="_F42791D3-0A5C-49C4-BB81-959C6550042F" />
|
|
2222
|
+
</ormDiagram:ReadingShape>
|
|
2223
|
+
</ormDiagram:RelativeShapes>
|
|
2224
|
+
<ormDiagram:Subject ref="_821952B2-B05F-4EE0-851B-FC323C36F9B2" />
|
|
2225
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2226
|
+
<ormDiagram:Role ref="_CA897ED4-5C9F-4E32-8BD6-7977321CCC83" />
|
|
2227
|
+
<ormDiagram:Role ref="_F078C222-F4DA-4D7C-BE92-A5587497BFB3" />
|
|
2228
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2229
|
+
</ormDiagram:FactTypeShape>
|
|
2230
|
+
<ormDiagram:ObjectTypeShape id="_982A1151-501A-41B0-A86E-E998FFD697E2" IsExpanded="true" AbsoluteBounds="0.51200389333775531, 3.0477941791598253, 0.84691965103149414, 0.35900605320930479">
|
|
2231
|
+
<ormDiagram:Subject ref="_C9782755-2396-4443-8305-3AEDE07345C1" />
|
|
2232
|
+
</ormDiagram:ObjectTypeShape>
|
|
2233
|
+
<ormDiagram:FactTypeShape id="_792A9A2F-1BB6-454C-9E4B-E475952A6CD8" IsExpanded="true" AbsoluteBounds="1.649332341382902, 3.0703527612682926, 0.38388888899236917, 0.24388888899236916">
|
|
2234
|
+
<ormDiagram:RelativeShapes>
|
|
2235
|
+
<ormDiagram:ReadingShape id="_1E4EA6BD-BE0A-4942-B2D7-14247B94B441" IsExpanded="true" AbsoluteBounds="1.649332341382902, 3.378993163562988, 0.26749989688396453, 0.12950302660465241">
|
|
2236
|
+
<ormDiagram:Subject ref="_CD912090-8AE0-4CAC-BDD7-FDF057AABB78" />
|
|
2237
|
+
</ormDiagram:ReadingShape>
|
|
2238
|
+
</ormDiagram:RelativeShapes>
|
|
2239
|
+
<ormDiagram:Subject ref="_EE9BB486-70B1-4E3A-9203-45F474A695A0" />
|
|
2240
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2241
|
+
<ormDiagram:Role ref="_D89CEBFF-10B2-4840-AD26-1B0AE4712D9B" />
|
|
2242
|
+
<ormDiagram:Role ref="_D9FA26EF-6518-4EC4-B46A-3A26448319F9" />
|
|
2243
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2244
|
+
</ormDiagram:FactTypeShape>
|
|
2245
|
+
<ormDiagram:FactTypeShape id="_7EFED17E-F7E9-4562-967B-22886C6C7F37" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 2.5425241649627175, 0.38388888899236917, 0.24388888899236916">
|
|
2246
|
+
<ormDiagram:RelativeShapes>
|
|
2247
|
+
<ormDiagram:ReadingShape id="_6F25F6DD-FD93-4894-A6C3-08C3C7C306B0" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 2.8511645672574129, 0.55663836002349854, 0.12950302660465241">
|
|
2248
|
+
<ormDiagram:Subject ref="_87049C8E-B3AA-42D5-8BB1-1AD011A9C3F0" />
|
|
2249
|
+
</ormDiagram:ReadingShape>
|
|
2250
|
+
</ormDiagram:RelativeShapes>
|
|
2251
|
+
<ormDiagram:Subject ref="_EBB514B3-7ABD-41D2-BD08-543318D75E3E" />
|
|
2252
|
+
</ormDiagram:FactTypeShape>
|
|
2253
|
+
<ormDiagram:ObjectTypeShape id="_21CCC5D7-71F5-4FA6-9F0B-4E60E7D71D78" IsExpanded="true" AbsoluteBounds="4.1225193463637719, 2.5847170961565755, 0.38929160952568054, 0.22950302660465241">
|
|
2254
|
+
<ormDiagram:Subject ref="_8606EA36-1051-44C5-A015-27F7398E7896" />
|
|
2255
|
+
</ormDiagram:ObjectTypeShape>
|
|
2256
|
+
<ormDiagram:ObjectTypeShape id="_C179DE0C-E00E-4E0B-9E38-862ABCBC22EA" IsExpanded="true" AbsoluteBounds="0.74779626198819171, 3.6383722481699294, 0.37533491373062133, 0.22950302660465241">
|
|
2257
|
+
<ormDiagram:Subject ref="_42089352-832B-4010-BC8E-B388F1F3F819" />
|
|
2258
|
+
</ormDiagram:ObjectTypeShape>
|
|
2259
|
+
<ormDiagram:FactTypeShape id="_DE9CD849-C82D-4051-9893-C37A93FE850E" IsExpanded="true" AbsoluteBounds="1.649332341382902, 3.5900513138396937, 0.38388888899236917, 0.24388888899236916">
|
|
2260
|
+
<ormDiagram:RelativeShapes>
|
|
2261
|
+
<ormDiagram:ReadingShape id="_4491460A-C7C0-442E-B20E-404AB35F6F54" IsExpanded="true" AbsoluteBounds="1.649332341382902, 3.8986917161343895, 0.77530561685562138, 0.12950302660465241">
|
|
2262
|
+
<ormDiagram:Subject ref="_10855BDF-0C7B-4011-B68B-2173DFB2663F" />
|
|
2263
|
+
</ormDiagram:ReadingShape>
|
|
2264
|
+
</ormDiagram:RelativeShapes>
|
|
2265
|
+
<ormDiagram:Subject ref="_1E655D24-D457-4C05-A65E-1A7B254CFEF7" />
|
|
2266
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2267
|
+
<ormDiagram:Role ref="_0DD65F1B-AEAB-42C0-9079-3DAE955800DE" />
|
|
2268
|
+
<ormDiagram:Role ref="_0B0D761F-62A9-43D7-A039-90FDCDDBC3FB" />
|
|
2269
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2270
|
+
</ormDiagram:FactTypeShape>
|
|
2271
|
+
<ormDiagram:ObjectTypeShape id="_2FF6410B-201B-4AD2-987D-C083365B321A" IsExpanded="true" AbsoluteBounds="4.062303082156113, 3.0477941791598253, 0.67754029750823974, 0.35900605320930479">
|
|
2272
|
+
<ormDiagram:Subject ref="_28CE0DE3-F519-47C9-BAE9-CC22EB4AB646" />
|
|
2273
|
+
</ormDiagram:ObjectTypeShape>
|
|
2274
|
+
<ormDiagram:FactTypeShape id="_97D6018C-4034-4516-998D-555869AD6E7C" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 3.0495194279349591, 0.38388888899236917, 0.24388888899236916">
|
|
2275
|
+
<ormDiagram:RelativeShapes>
|
|
2276
|
+
<ormDiagram:ReadingShape id="_DCC28482-7D2B-4595-8D6A-364E9ACAEDFC" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 3.3581598302296545, 0.98877406120300293, 0.12950302660465241">
|
|
2277
|
+
<ormDiagram:Subject ref="_57BB0147-A52C-403A-8E94-7C2BCC08BA44" />
|
|
2278
|
+
</ormDiagram:ReadingShape>
|
|
2279
|
+
</ormDiagram:RelativeShapes>
|
|
2280
|
+
<ormDiagram:Subject ref="_7A29D10B-56A8-4971-B4E9-5302B4F6F810" />
|
|
2281
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2282
|
+
<ormDiagram:Role ref="_5218BF9F-C24C-4E26-A6E8-793500D7E2CC" />
|
|
2283
|
+
<ormDiagram:Role ref="_9B326FFA-12FF-471F-8D3F-67CA5BFF6615" />
|
|
2284
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2285
|
+
</ormDiagram:FactTypeShape>
|
|
2286
|
+
<ormDiagram:FactTypeShape id="_5C760F0D-4998-44BF-BB5C-12C47A47880D" IsExpanded="true" AbsoluteBounds="4.9693819535565176, 3.0393527612682929, 0.6738888889923691, 0.30588888899236916">
|
|
2287
|
+
<ormDiagram:RelativeShapes>
|
|
2288
|
+
<ormDiagram:ReadingShape id="_0BB50931-F920-4174-B292-0A2D47A5B356" IsExpanded="true" AbsoluteBounds="4.9693819535565176, 3.4099931635629881, 1.1351770162582398, 0.12950302660465241">
|
|
2289
|
+
<ormDiagram:Subject ref="_33BCF470-BE85-469A-B7A4-B6A56D3D9B24" />
|
|
2290
|
+
</ormDiagram:ReadingShape>
|
|
2291
|
+
<ormDiagram:ObjectifiedFactTypeNameShape id="_550C50D3-0B85-4272-A4C1-2223B25FF3FF" IsExpanded="true" AbsoluteBounds="4.9797986202231845, 2.8450982213613143, 0.68381524085998535, 0.12950302660465241">
|
|
2292
|
+
<ormDiagram:Subject ref="_F15EBD20-E065-418C-A346-480E16B665E5" />
|
|
2293
|
+
</ormDiagram:ObjectifiedFactTypeNameShape>
|
|
2294
|
+
</ormDiagram:RelativeShapes>
|
|
2295
|
+
<ormDiagram:Subject ref="_C6477377-F55B-4F69-95BF-A99C396C38DA" />
|
|
2296
|
+
</ormDiagram:FactTypeShape>
|
|
2297
|
+
<ormDiagram:ObjectTypeShape id="_E31DAA8D-D45A-4D05-AADF-8E75D54205AC" IsExpanded="true" AbsoluteBounds="6.0537695053094911, 3.1125456924621515, 0.38929160952568054, 0.22950302660465241">
|
|
2298
|
+
<ormDiagram:Subject ref="_8606EA36-1051-44C5-A015-27F7398E7896" />
|
|
2299
|
+
</ormDiagram:ObjectTypeShape>
|
|
2300
|
+
<ormDiagram:ObjectTypeShape id="_878B8189-936D-4AE0-B512-146BBA383669" IsExpanded="true" AbsoluteBounds="4.9623699942682471, 4.1266043395856276, 0.90858548402786254, 0.22950302660465241">
|
|
2301
|
+
<ormDiagram:Subject ref="_CC5CF3F4-4F49-448D-A4FB-5BE3A6B97C2F" />
|
|
2302
|
+
</ormDiagram:ObjectTypeShape>
|
|
2303
|
+
<ormDiagram:FactTypeShape id="_CAFE9C52-BE04-4586-B9D9-615525A7B965" IsExpanded="true" AbsoluteBounds="5.1105388116294437, 3.5628543395856269, 0.38388888899236917, 0.24388888899236916">
|
|
2304
|
+
<ormDiagram:RelativeShapes>
|
|
2305
|
+
<ormDiagram:ReadingShape id="_6249D1A5-FFFD-426F-9589-FD85B07F08C1" IsExpanded="true" AbsoluteBounds="5.1105388116294437, 3.8714947418803227, 0.77591055631637573, 0.12950302660465241">
|
|
2306
|
+
<ormDiagram:Subject ref="_6CDC732F-934A-4B0D-80DE-107EE1448885" />
|
|
2307
|
+
</ormDiagram:ReadingShape>
|
|
2308
|
+
</ormDiagram:RelativeShapes>
|
|
2309
|
+
<ormDiagram:Subject ref="_DAAE4F90-87D0-4468-B302-29018F50B920" />
|
|
2310
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2311
|
+
<ormDiagram:Role ref="_A25ACFA7-F34E-40FF-9510-A7F739C88902" />
|
|
2312
|
+
<ormDiagram:Role ref="_19F0EA78-E40A-44C6-AD3A-BC35A9328422" />
|
|
2313
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2314
|
+
</ormDiagram:FactTypeShape>
|
|
2315
|
+
<ormDiagram:ObjectTypeShape id="_5CA692BE-F872-4D4A-B257-C9A98DA279F6" IsExpanded="true" AbsoluteBounds="2.6214976584108456, 4.0618528262833014, 1.2430242252349855, 0.35900605320930479">
|
|
2316
|
+
<ormDiagram:Subject ref="_86E381B2-0D09-437D-82E0-0EDF38A3260C" />
|
|
2317
|
+
</ormDiagram:ObjectTypeShape>
|
|
2318
|
+
<ormDiagram:FactTypeShape id="_3FB6F109-A858-4A57-824D-88383636D9AC" IsExpanded="true" AbsoluteBounds="4.260336833785062, 4.0844114083917686, 0.38388888899236917, 0.24388888899236916">
|
|
2319
|
+
<ormDiagram:RelativeShapes>
|
|
2320
|
+
<ormDiagram:ReadingShape id="_7314229A-297E-4B35-A4BE-74E3DC653E67" IsExpanded="true" AbsoluteBounds="4.260336833785062, 4.3930518106864644, 0.26749989688396453, 0.12950302660465241">
|
|
2321
|
+
<ormDiagram:Subject ref="_CF1D144F-BD19-42DC-BDFD-891D581F047F" />
|
|
2322
|
+
</ormDiagram:ReadingShape>
|
|
2323
|
+
</ormDiagram:RelativeShapes>
|
|
2324
|
+
<ormDiagram:Subject ref="_2487EABB-5348-4424-AABF-3BA42AD6587C" />
|
|
2325
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2326
|
+
<ormDiagram:Role ref="_78BD8553-7948-4C1A-B1F1-0EC38D61B9D9" />
|
|
2327
|
+
<ormDiagram:Role ref="_840FAB73-C58B-434C-9F48-1CA96683467F" />
|
|
2328
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2329
|
+
</ormDiagram:FactTypeShape>
|
|
2330
|
+
<ormDiagram:FactTypeShape id="_D2A72F4F-36FA-47F9-AA11-C38FC028B3F6" IsExpanded="true" AbsoluteBounds="1.6569417656376342, 4.0844114083917686, 0.38388888899236917, 0.24388888899236916">
|
|
2331
|
+
<ormDiagram:RelativeShapes>
|
|
2332
|
+
<ormDiagram:ReadingShape id="_7B6DD9EB-5D98-45AE-B7B7-48373F5B8473" IsExpanded="true" AbsoluteBounds="1.6569417656376342, 4.3930518106864644, 0.77530561685562138, 0.12950302660465241">
|
|
2333
|
+
<ormDiagram:Subject ref="_1AC7E60E-E7D3-4753-B167-F3D4708F9798" />
|
|
2334
|
+
</ormDiagram:ReadingShape>
|
|
2335
|
+
</ormDiagram:RelativeShapes>
|
|
2336
|
+
<ormDiagram:Subject ref="_FCB34B5D-8B39-46B7-B74F-B796BED65B42" />
|
|
2337
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2338
|
+
<ormDiagram:Role ref="_F115AD0F-9B8D-44E1-BB1C-DE6A7310EF43" />
|
|
2339
|
+
<ormDiagram:Role ref="_45A1BCFD-DEB5-4627-9AF5-0FB079B520CA" />
|
|
2340
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2341
|
+
</ormDiagram:FactTypeShape>
|
|
2342
|
+
<ormDiagram:ObjectTypeShape id="_DB53B330-8208-4DC6-B957-A2C36F17E0F7" IsExpanded="true" AbsoluteBounds="4.0996839652458821, 1.5416666666666661, 0.45090999722480779, 0.22950302660465241">
|
|
2343
|
+
<ormDiagram:Subject ref="_FDE76258-D09D-400E-AADB-6BAF1E3A71F3" />
|
|
2344
|
+
</ormDiagram:ObjectTypeShape>
|
|
2345
|
+
<ormDiagram:FactTypeShape id="_C109C3A9-7284-4949-AD66-13B1C2F0A76C" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 0.98715050469877563, 0.38388888899236917, 0.24388888899236916">
|
|
2346
|
+
<ormDiagram:RelativeShapes>
|
|
2347
|
+
<ormDiagram:ReadingShape id="_A2CB3937-14A7-4AC2-89BB-D610453DF504" IsExpanded="true" AbsoluteBounds="3.1447774316055828, 1.2541242403268043, 0.71462446451187134, 0.12950302660465241">
|
|
2348
|
+
<ormDiagram:Subject ref="_6A3E2BAD-ED98-4DE5-B7BB-E20A0F3DF858" />
|
|
2349
|
+
</ormDiagram:ReadingShape>
|
|
2350
|
+
</ormDiagram:RelativeShapes>
|
|
2351
|
+
<ormDiagram:Subject ref="_40903083-202B-456E-9E8C-9414E0C791CD" />
|
|
2352
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2353
|
+
<ormDiagram:Role ref="_448F45D5-54B0-40BD-AEC0-3D93F07C41DB" />
|
|
2354
|
+
<ormDiagram:Role ref="_0BB67B32-F130-4974-B993-F2C1D2A36591" />
|
|
2355
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2356
|
+
</ormDiagram:FactTypeShape>
|
|
2357
|
+
<ormDiagram:FactTypeShape id="_E398152F-E12B-4A02-812C-C55507527D3A" IsExpanded="true" AbsoluteBounds="3.1447774316055828, 1.4972591753802949, 0.38388888899236917, 0.24388888899236916">
|
|
2358
|
+
<ormDiagram:RelativeShapes>
|
|
2359
|
+
<ormDiagram:ReadingShape id="_08015ABB-0F94-47AA-886D-E7960127D414" IsExpanded="true" AbsoluteBounds="3.1447774316055828, 1.8058995776749902, 0.23545643985271453, 0.12950302660465241">
|
|
2360
|
+
<ormDiagram:Subject ref="_233B3C42-5A51-47C3-8E2B-9A312AE6F657" />
|
|
2361
|
+
</ormDiagram:ReadingShape>
|
|
2362
|
+
</ormDiagram:RelativeShapes>
|
|
2363
|
+
<ormDiagram:Subject ref="_EF8354A3-6BA2-44B2-9F1B-0081465190F6" />
|
|
2364
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2365
|
+
<ormDiagram:Role ref="_877FC377-D1D4-45E4-9875-F526C106FC67" />
|
|
2366
|
+
<ormDiagram:Role ref="_EBC3A5E3-B826-466F-A08F-F2CCF08915A8" />
|
|
2367
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2368
|
+
</ormDiagram:FactTypeShape>
|
|
2369
|
+
<ormDiagram:ExternalConstraintShape id="_7567EBE7-62AF-438B-8143-7C804DDCEBEB" IsExpanded="true" AbsoluteBounds="2.9416667461395267, 1.3604166666666664, 0.16, 0.16">
|
|
2370
|
+
<ormDiagram:Subject ref="_A5B84ECC-B64E-4589-9BD8-4288C7C367D2" />
|
|
2371
|
+
</ormDiagram:ExternalConstraintShape>
|
|
2372
|
+
<ormDiagram:FactTypeShape id="_C4E7A97B-819D-4689-88FA-5D9F8620863C" IsExpanded="true" AbsoluteBounds="4.1583254265492355, 1.9597464469486394, 0.38388888899236917, 0.24388888899236916">
|
|
2373
|
+
<ormDiagram:RelativeShapes>
|
|
2374
|
+
<ormDiagram:ReadingShape id="_7BA86F9C-FB58-4E51-83FB-E0440C2FB885" IsExpanded="true" AbsoluteBounds="4.1583254265492355, 2.2683868492433348, 0.83126264810562134, 0.12950302660465241">
|
|
2375
|
+
<ormDiagram:Subject ref="_F63F3E6E-92D7-4424-A04F-26A15D14F071" />
|
|
2376
|
+
</ormDiagram:ReadingShape>
|
|
2377
|
+
</ormDiagram:RelativeShapes>
|
|
2378
|
+
<ormDiagram:Subject ref="_2C144E25-EAEE-447A-9C6B-FEB8D4F6A54F" />
|
|
2379
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2380
|
+
<ormDiagram:Role ref="_3451611D-C560-4360-974C-F26494D5CE7B" />
|
|
2381
|
+
<ormDiagram:Role ref="_D1989704-A08E-466A-A775-B2D925C77307" />
|
|
2382
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2383
|
+
</ormDiagram:FactTypeShape>
|
|
2384
|
+
<ormDiagram:FactTypeShape id="_3C250BFA-913A-4526-9E3C-C32FE20D6785" IsExpanded="true" AbsoluteBounds="4.112744793131256, 0.99087411447863594, 0.38388888899236917, 0.24388888899236916">
|
|
2385
|
+
<ormDiagram:RelativeShapes>
|
|
2386
|
+
<ormDiagram:ReadingShape id="_A9A279CB-6232-4E23-AEA8-5B0CC15CAA86" IsExpanded="true" AbsoluteBounds="4.112744793131256, 1.2995145167733313, 0.92753541469573975, 0.12950302660465241">
|
|
2387
|
+
<ormDiagram:Subject ref="_F2ED0E3F-B4A4-40CF-A0DE-6ED4A75CCD0C" />
|
|
2388
|
+
</ormDiagram:ReadingShape>
|
|
2389
|
+
</ormDiagram:RelativeShapes>
|
|
2390
|
+
<ormDiagram:Subject ref="_33ABD8DB-27AD-4319-BFA9-61AFA5621914" />
|
|
2391
|
+
</ormDiagram:FactTypeShape>
|
|
2392
|
+
<ormDiagram:FactTypeShape id="_A11B017D-719F-4DFD-9D86-1F7A0952EFCF" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 2.0199524948076295, 0.38388888899236917, 0.24388888899236916">
|
|
2393
|
+
<ormDiagram:RelativeShapes>
|
|
2394
|
+
<ormDiagram:ReadingShape id="_532D0F88-EA64-45F6-B088-69BFB95DDC2D" IsExpanded="true" AbsoluteBounds="3.1551940982722497, 2.3285928971023249, 0.50452654361724858, 0.12950302660465241">
|
|
2395
|
+
<ormDiagram:Subject ref="_A32E90F3-2177-4836-8F31-7C10C6B5A1BB" />
|
|
2396
|
+
</ormDiagram:ReadingShape>
|
|
2397
|
+
</ormDiagram:RelativeShapes>
|
|
2398
|
+
<ormDiagram:Subject ref="_269DD1FA-5C2D-4D7C-9531-DAAAB58D7E88" />
|
|
2399
|
+
<ormDiagram:RoleDisplayOrder>
|
|
2400
|
+
<ormDiagram:Role ref="_71AD544F-B578-4B72-BAE8-BEB89BCDC61E" />
|
|
2401
|
+
<ormDiagram:Role ref="_D746689E-D3AD-4B11-82B3-272EAB7638E2" />
|
|
2402
|
+
</ormDiagram:RoleDisplayOrder>
|
|
2403
|
+
</ormDiagram:FactTypeShape>
|
|
2404
|
+
</ormDiagram:Shapes>
|
|
2405
|
+
<ormDiagram:Subject ref="_BFD2778B-A57D-47D4-ABD8-54EC29B8304C" />
|
|
2406
|
+
</ormDiagram:ORMDiagram>
|
|
2407
|
+
</ormRoot:ORM2>
|