Added initial version of docu for new ATDB. TODO: Example DB.

Change-Id: I7b9c5cbd45edd4f72fe4e9af8ed90f17925829f6
Signed-off-by: Raphael Weber <raphael.weber@vector.com>
diff --git a/plugins/org.eclipse.app4mc.help/docu/dev_atdb.textile b/plugins/org.eclipse.app4mc.help/docu/dev_atdb.textile
index a974889..cb6878b 100644
--- a/plugins/org.eclipse.app4mc.help/docu/dev_atdb.textile
+++ b/plugins/org.eclipse.app4mc.help/docu/dev_atdb.textile
@@ -1,5 +1,5 @@
 
-h1. AMALTHEA Trace Database
+h1. AMALTHEA Trace Database (current version)
 
 The AMALTHEA Trace Database stores traces in a way that - especially for graphical user interfaces - information can be extracted efficiently.
 
diff --git a/plugins/org.eclipse.app4mc.help/docu/dev_atdb_new.textile b/plugins/org.eclipse.app4mc.help/docu/dev_atdb_new.textile
new file mode 100644
index 0000000..1790657
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.help/docu/dev_atdb_new.textile
@@ -0,0 +1,581 @@
+h1. AMALTHEA Trace Database (preview of new version)
+
+The new AMALTHEA Trace DataBase (ATDB) primarily used to represent a runtime trace in a database format. As part of the rework, ATDB can also be used to calculate derived metrics from the trace data it holds. Since it is intended to be used in conjunction with AMALTHEA, the calculable metrics are a subset of the metrics found in AMALTHEA. However, the database schema allows for arbitrary events, entities, properties, and metrics.
+
+The database is stored as "SQLite Database":http://www.sqlite.org/ with extension *.atdb*. It provides the data tables and several views to make the data contained in the data base more user-accessible. For performance reasons, there are some indices to speed up the access times. The general database structure and views will be described in the following sections.
+
+h2. Database Structure
+
+The database schema is defined completely static. Depending on the detail of data to be stored some of the tables are optional (they can be temporary to calculate metrics and do not need to be persisted). The following tables are defined:
+
+* Default:
+** MetaInformation
+** Entity
+** EntityType
+** EntityInstance
+** EventType
+** Property
+** PropertyValue
+** Event
+** Metric
+** EntityMetricValue
+** EntityInstanceMetricValue
+** EntityMetricInstanceValue
+* Optional:
+** TraceEvent
+** RunnableInstanceEventInfo
+** ProcessInstanceEventInfo
+** EventChainInstanceInfo
+
+The database schema as Entity Relationship diagram:
+
+!../pictures/atdb_db_schema.svg!
+
+h3. Core Tables
+
+The core tables refer to all white tables from the picture, without them, the database would not be meaningful. So these are mandatory to contain datasets.
+
+h4. MetaInformation
+
+This table contains simple key-value pairs containing information about the trace, how it was recorded, how long it is, etc. It may also contain other information, e.g., the file name(s) of the related AMALTHEA model.
+
+* Columns
+** name: text - Primary Key
+** value: text - unique
+
+So far, commonly used names include the following:
+
+* *dbVersion*: version of the ATDB schema with syntax "v#.#.#". Current version is "v1.0.0"
+* *eventsWritten*: number of events stored in the database
+* *input*: path to the file, from which the information was produced
+* *timeBase*: time unit in which time-values are stored
+
+h4. Entity
+
+The entity table contains information about all artifacts used in the database. This may include things that are not visible in the underlying trace, e.g., event chains.
+
+* Columns
+** id: integer - Primary Key
+** name: text - unique, the name of the entity
+** entityTypeId: integer - Foreign Key, reference to entityType.id
+
+h4. EntityType
+
+In order to classify entities, this table contains datasets about their types. These types can be referenced in the entityTypeId column of the entity table.
+
+* Columns
+** id: integer - Primary Key
+** name: text - unique, the name of the entity type
+
+Currently, the following type names are commonly used (also see BTF specification):
+
+* *T*: task
+* *I*: interrupt service routine
+* *R*: runnable
+* *EC*: event chain
+* *SIM*: simulation
+* *STI*: stimulus
+* *ECU*: electronic control unit
+* *Processor*: micro controller
+* *C*: core
+* *M*: memory
+* *SCHED*: scheduler
+* *SIG*: label/signal
+* *SEM*: semaphore
+* *EVENT*: operating system event (used for synchronization)
+
+This table may contain more entity types as long as they are unique within this table.
+
+h4. EntityInstance
+
+Entities may be instantiated multiple times. In a trace this may be the time span between the start and terminate event of a runnable entity. For a periodic time stimulus an instance represents the nth occurence of the time stimulus. In order to differentiate between these instances this table holds two values which act as a unique identification for entity instances. They will be referenced from various entity-instance-specific tables.
+
+* Columns
+** entityId: integer - Foreign Key, references an entity
+** sqcnr: integer - strictly sequential counting number (starting with 0) that will be counted up per unique entityId
+** *Compound Primary Key*: entityId, sqcnr
+
+h4. EventType
+
+Similar to entity types this table contains types of events that can be referenced from the event and trace event tables. This also represents the connection between which events shall be observed (the ones in the event table) and which events are actually in the trace (the ones in the trace event table). The commonly used event type names are the intersection between the events from AMALTHEA and the events from the BTF specification. Just like for entity types, this table may contain additional event types (unique).
+
+* Columns
+** id: integer - Primary Key
+** name: text - unique, the name of the event type
+
+h3. Auxillary Data Tables
+
+Additional information about entities which may help to understand and analyze the trace can be provided in auxillary tables. They are represented in yellow in the above data base schema diagram. Some information in these tables can be derived from the trace, e.g., the runnable to task mapping, other data (like event chains and events) will be sourced from the original AMALTHEA model.
+
+h4. Property
+
+A table for all possible properties that an entity may have in the database.
+
+* Columns
+** id: integer - Primary Key
+** name: text - unique, the name of the property
+** type: text - the type of the property
+
+Currently, the following property names with their types are used:
+
+* *simultionDuration*: time - the duration of the simulation that produced the trace, time is a double value, the global time unit can be specified in MetaInformation, if not specified defaults to nano seconds
+* *initValue*: object - the initial value of a signal/label at the begin of the trace
+* *processors*: entityIdRef - multi-valued reference to other entities acting as processors for this entity
+* *cores*: entityIdRef - multi-valued reference to other entities acting as cores for this entity
+* *frequencyInHz*: long - the clock frequency, e.g. of a core, usually an integer
+* *executingCore*: entityIdRef - reference to an other entity acting as the executing core for this entity
+* *runnables*: entityIdRef - multi-valued reference to other entities acting as runnables for this entity
+* *ecItems*: entityIdRef - multi-valued reference to other event chain entities acting as items for this event chain entity
+* *ecStimulus*: eventIdRef - reference to an event acting as the stimulus for this event chain entity (multiple values represent an event set)
+* *ecResponse*: eventIdRef - reference to an event acting as the response for this event chain entity (multiple values represent an event set)
+
+h4. PropertyValue
+
+Here, the actual properties are set for entities. Multiple property values are represented with a strictly sequential counting number (sqcnr). In case of ordered multiple values, this acts as the index of the value within the list of values.
+
+* Columns
+** entityId: integer - Foreign Key, the id of the entity for which a row in this table holds a property value
+** propertyId: integer - Foreign Key, the id of the property for which a row in this table holds a value
+** sqcnr: integer - strictly sequential counting number (starting with 0) that will be counted up for each unique entityId - propertyId pair
+** value: text - text representation of the value of the property
+** *Compound Primary Key*: entityId, propertyId, sqcnr
+
+h4. Event
+
+Observable event specifications directly sourced from an AMALTHEA model can be stored in this table. Since event sets are handled via multi-valued properties, this table directly corresponds the abstract EntityEvent meta-class from AMALTHEA. The description field is left out. The name, eventType, and entity columns directly match the AMALTHEA pendants. The subtype-specific references in the EntityEvents are abstractly represented by the sourceEntity in this table. The events contained in this table are referenced in event chain entities.
+
+* Columns
+** id: integer - Primary Key
+** name: text - unique, the name of the event
+** eventTypeId: integer - Foreign Key, reference to the type of this event
+** entityId: integer - Foreign Key, reference to the entity that shall experience this event
+** sourceEntityId: integer - Foreign Key, reference to the source entity that shall emit this event
+
+h3. Metric Tables
+
+Derived information about entities and their instances which can be calculated (via metrics) based on an event trace may be stored in metric tables. In the above diagram these tables are colored in green.
+
+h4. Metric
+
+Similar to Property, this table contains the name and dimension for metrics which are referenced by the other metric tables. Commonly used metrics per entity type are defined in the Requirements section of the AMALTHEA data model [REFERENCE???].
+
+* Columns
+** id: integer - Primary Key
+** name: text - unique, the name of the metric
+** dimension: text - the dimension of the metric (e.g. time, count, percentage, ...)
+
+h4. EntityMetricValue
+
+Contains entity-specific values for given metrics.
+
+* Columns
+** entityId: integer - Foreign Key, the id of the entity for which the metric was calculated
+** metricId: integer - Foreign Key, the id of the metric that was calculated for the entity
+** value: text - textual representation of the metric's value
+** *Compound Primary Key*: entityId, metricId
+
+h4. EntityInstaneMetricValue
+
+Contains entity-instance-specific values for given metrics.
+
+* Columns
+** entityId: integer - the entity id of the entity instance
+** entityInstance: integer - the instance number of the entity
+** metricId: integer - Foreign Key, the id of the metric that was calculated for the entity instance
+** value: text - textual representation of the metric's value
+** *Compound Primary Key*: entityId, entityInstance, metricId
+** *Compound Foreign Key*: entityId, entityInstance of EntityInstance
+
+h4. EntityMetricInstanceValue
+
+Contains entity-specific values for given metrics. The sqcnr can be used to represent instances which are not differentiated by entity instances (e.g. by a constant sized time frame). Metrics like the average core load based on time slices can be stored here.
+
+* Columns
+** entityId: integer - Foreign Key, the id of the entity for which the metric instance was calculated
+** metricId: integer - Foreign Key, the id of the metric whose instance was calculated for the entity
+** sqcnr: integer - strictly sequential counting number (starting with 0) that will be counted up for each unique entityId - metricId pair
+** value: text - textual representation of the metric instance's value
+** *Compound Primary Key*: entityId, metricId, sqcnr
+
+h3. Optional Tables
+
+Depending on how much information shall be exchanged/contained in this data base the following tables do not have to be stored (they can be declared as TEMPORARY). They can, however, be quite usefull in calculating metrics about entities in a structured and comprehensive way. Once the metrics are calculated, there is no reference back to these optional tables. So, they do not have to remain in the data base. Since these tables represent a full event trace, omitting them can greatly reduce the size of the data base.
+
+h4. TraceEvent
+
+Opposite to the observable events, this table is used to store all events directly from a BTF trace (in timestamp ascending order). For multiple events happening at the same timestamp there is a strictly sequential counting number. All other columns of this table correspond to a typical event line in a BTF trace.
+
+* Columns
+** timestamp: integer - point in time at which the event occurred
+** sqcnr: integer - strictly sequential counting number (starting with 0) that will be counted up for each unique timestamp
+** entityId: integer - the entity id of the entity instance
+** entityInstance: integer - the instance number of the entity
+** sourceEntityId: integer - the entity id of the source entity instance
+** entityInstance: integer - the instance number of the source entity
+** eventTypeId: integer - Foreign Key, the id of the event's type
+** value: text - in BTF this column is called _Note_, for signal/label write events this may hold the written value
+** *Compound Primary Key*: timestamp, sqcnr
+** *Compound Foreign Key*: entityId, entityInstance of EntityInstance
+** *Compound Foreign Key*: sourceEntityId, sourceEntityInstance of EntityInstance
+
+h4. RunnableInstanceTraceInfo
+
+Derived information about runnable events for easier metric calculation. All values are derived from TraceEvent. The event counts per runnable instance stored in this table help to determine if the runnable instance is completely captured within the trace.
+
+* Columns
+** entityId: integer - the id of the runnable instance
+** entityInstance: integer - the instance number of the runnable
+** [RunnableEventType]EventCount: integer - the count of the respective event type for the runnable instance
+** isComplete: boolean - derived from the event counts for each runnable instance, will be TRUE if the instance is completely captured in the trace, FALSE otherwise
+** *Compound Primary Key*: entityId, entityInstance
+** *Compound Foreign Key*: entityId, entityInstance of EntityInstance
+
+h4. ProcessInstanceTraceInfo
+
+Derived information about process (task or ISR) events for easier metric calculation. All values are derived from TraceEvent. The event counts per process instance stored in this table help to determine if the process instance is completely captured within the trace.
+
+* Columns
+** entityId: integer - the id of the processs instance
+** entityInstance: integer - the instance number of the process
+** [ProcessEventType]EventCount: integer - the count of the respective event type for the process instance
+** isComplete: boolean - derived from the event counts for each process instance, will be TRUE if the instance is completely captured in the trace, FALSE otherwise
+** *Compound Primary Key*: entityId, entityInstance
+** *Compound Foreign Key*: entityId, entityInstance of EntityInstance
+
+h4. EventChainInstanceInfo
+
+Derived information about event chain instances for easier metric calculation. All values are derived from event chain entities (and their properties) and TraceEvent. This table connects the event chain instances in EntityInstance to their corresponding stimulus and response events (via Compound Foreign Key) in TraceEvent. Since event chains can be subject to EventChainLatencyConstraints and there are only two types of instances considered (age and reaction) this table holds information about whether the event chain instance is age, reaction, or both.
+
+* Columns
+** entityId: integer - the id of the event chain instance
+** entityInstance: integer - the instance number of the event chain
+** stimulusTimestamp: integer - the timestamp of the stimulus event of this event chain instance
+** stimulusSqcnr: integer - the sqcnr of the stimulus timestamp
+** responseTimestamp: integer - the timestamp of the response event of this event chain instance
+** responseSqcnr: integer - the sqcnr of the response timestamp
+** isAge: boolean - TRUE if this event chain instance represents the age
+** isReaction: boolean - TRUE if this event chain instance represents the reaction
+** *Compound Primary Key*: entityId, entityInstance
+** *Compound Foreign Key*: entityId, entityInstance of EntityInstance
+** *Compound Foreign Key*: stimulusTimestamp, stimulusSqcnr of TraceEvent
+** *Compound Foreign Key*: responseTimestamp, responseSqcnr of TraceEvent
+
+h2. Database Views
+
+In order to better comprehend the contents of the database, SQLite offers the definition of views, which can be used to display the tables in a more readable way. With the help of views, the database contents can be presented in a standard database browser without knowing the meaning or significance of the table values - this is conveyed in views. This section will describe the views, which in turn can be understood as database tables, and how they are derived from the persisted tables from above. The _how_ will also be given as SQL statements.
+
+h3. Core Views
+
+The core tables include MetaInformation, Entity, EntityType, EntityInstance, and EventType. Since these tables only contain a small number of columns which are comprehensible on their own, there are no views defined for the core tables.
+
+h3. Auxillary Data Views
+
+The auxillary data tables contain more columns and refer to other tables to some extent. The following views are defined for ausillary tables:
+
+h4. vProperty
+
+This view shows the entity names and property names, with their corresponding values (multiple values are shown in one value entry, where the values are concatenated). In addition they also show the entity and property type names.
+
+* Columns
+** entityName: text - name of the entity with the property value
+** entityType: text - name of the entity type of the entity
+** propertyName: text - name of the property
+** propertyType: text - type of the property
+** value: text - value of the property, if there are multiple values: comma-seperated values
+
+The corresponding SQL query to generate the view:
+
+bc. SELECT
+  (SELECT name FROM entity WHERE id = propertyValue.entityId) AS entityName,
+  (SELECT name FROM entityType WHERE id = (SELECT entityTypeId FROM entity WHERE id = propertyValue.entityId)) AS entityType,
+  (SELECT name FROM property WHERE id = propertyValue.propertyId) AS propertyName,
+  (SELECT type FROM property WHERE id = propertyValue.propertyId) AS propertyType,
+  (GROUP_CONCAT(CASE
+    WHEN propertyValue.propertyId IN (SELECT id FROM property WHERE type = 'entityIdRef') THEN
+      (SELECT name FROM entity WHERE id = propertyValue.value)
+    WHEN propertyValue.propertyId IN (SELECT id FROM property WHERE type = 'eventIdRef') THEN
+      (SELECT name FROM event WHERE id = propertyValue.value)
+    ELSE
+      propertyValue.value
+  END, ', ')) AS value
+FROM propertyValue GROUP BY entityId, propertyId ORDER BY entityId, propertyId
+
+h4. vEvent
+
+The observable event specification refers to EventType and Entity. This view resolves the referenced ids and presents the events in an understandable way.
+
+* Columns
+** name: text - name of the observable event
+** eventType: text - name of the type of the observalbe event
+** entityName: text - name of the entity that shall be subject to the observable event
+** entityType: text - name of the type of the entity
+** sourceEntityName: text - name of the source entity that is responsible for the observable event
+** sourceEntityType: text - name of the type of the source entity
+
+The corresponding SQL query to generate the Event view:
+
+bc. SELECT
+  name,
+  (SELECT name FROM eventType WHERE id = eventTypeId) AS eventType,
+  (SELECT name FROM entity WHERE id = entityId) AS entityName,
+  (SELECT name FROM entityType WHERE id =
+    (SELECT entityTypeId FROM entity WHERE id = event.entityId)
+  ) AS entityType,
+  (SELECT name FROM entity WHERE id = sourceEntityId) AS sourceEntityName,
+  (SELECT name FROM entityType WHERE id =
+    (SELECT entityTypeId FROM entity WHERE id = event.sourceEntityId)
+  ) AS sourceEntityType
+FROM event
+
+h4. vEventChainEntity
+
+As a special case, event chains are also stored as entities, however, they never act as a subject or source entity in the trace event table. In order to better present and highlight them among all other entities, this view provides a comprehensive representation of all event chain entities.
+
+* Columns
+** eventChainName: text - name from entity
+** stimulus: text - name(s) of the observable stimulus event(s)
+** response: text - name(s) of the observable response event(s)
+** items: text - names of all event chain items
+** minItemsCompleted: integer - number of parallel items that shall be completed until an instance of this event chain is considered complete
+** isParallel: boolean - TRUE if the property with the name 'minItemsCompleted' is set
+
+The corresponding SQL query to generate the event chain entity view:
+
+bc. SELECT
+  name AS eventChainName,
+  (SELECT GROUP_CONCAT(name, ', ') FROM event  WHERE id IN (SELECT value FROM propertyValue WHERE entityId = ecEntity.id AND
+    propertyId = (SELECT id FROM property WHERE name = 'ecStimulus'))) AS stimulus,
+  (SELECT GROUP_CONCAT(name, ', ') FROM event  WHERE id IN (SELECT value FROM propertyValue WHERE entityId = ecEntity.id AND
+    propertyId = (SELECT id FROM property WHERE name = 'ecResponse'))) AS response,
+  (SELECT GROUP_CONCAT(name, ', ') FROM entity WHERE id IN (SELECT value FROM propertyValue WHERE entityId = ecEntity.id AND
+    propertyId = (SELECT id FROM property WHERE name = 'ecItems'   ))) AS items,
+  (SELECT value FROM propertyValue WHERE entityId = ecEntity.id AND propertyId =
+    (SELECT id FROM property WHERE name = 'ecMinItemsCompleted')) AS minItemsCompleted,
+  EXISTS(SELECT value FROM propertyValue WHERE entityId = ecEntity.id AND propertyId =
+    (SELECT id FROM property WHERE name = 'ecMinItemsCompleted')) AS isParallel
+FROM entity AS ecEntity WHERE entityTypeId = (SELECT id FROM entityType WHERE entityType.name = 'EC')
+
+h3. Metric Views
+
+The metric views resolve the entity and metric ids into the corresponding names and displays them. The three metric views are thus very similar.
+
+h4. vEntityMetricValue
+
+This view presents non-instance-specific entity metrics.
+
+* Columns
+** entityName: text - name of the entity for which this metric is stored
+** entityType: text - name of the type of the entity
+** metricName: text - name of the metric
+** value: text - from EntityMetricValue
+
+The corresponding SQL query to generate the entity metric value view:
+
+bc. SELECT
+  (SELECT name FROM entity WHERE id = entityMetricValue.entityId) AS entityName,
+  (SELECT name FROM entityType WHERE id =
+    (SELECT entityTypeId FROM entity WHERE id = entityMetricValue.entityId)
+  ) AS entityType,
+  (SELECT name FROM metric WHERE id = entityMetricValue.metricId) AS metricName,
+  entityMetricValue.value
+FROM entityMetricValue
+ORDER BY entityId, metricId
+
+h4. vEntityInstanceMetricValue
+
+A representation of the entity instance-specific metrics is given with this view.
+
+* Columns
+** entityName: text - name of the entity for which this metric is stored
+** entityType: text - name of the type of the entity
+** entityInstance: integer - from EntityInstanceMetricValue
+** metricName: text - name of the metric
+** value: text - from EntityInstanceMetricValue
+
+The corresponding SQL query to generate the entity instance metric value view:
+
+bc. SELECT
+  (SELECT name FROM entity WHERE id = entityInstanceMetricValue.entityId) AS entityName,
+  (SELECT name FROM entityType WHERE id =
+    (SELECT entityTypeId FROM entity WHERE id = entityInstanceMetricValue.entityId)
+  ) AS entityType,
+  entityInstanceMetricValue.entityInstance,
+  (SELECT name FROM metric WHERE id = entityInstanceMetricValue.metricId) AS metricName,
+  entityInstanceMetricValue.value
+FROM entityInstanceMetricValue
+ORDER BY entityId, entityInstance, metricId
+
+h4. vEntityMetricInstanceValue
+
+This view shows entity metrics that are not grouped by entity instances but by metric instances.
+
+* Columns
+** entityName: text - name of the entity for which this metric is stored
+** entityType: text - name of the type of the entity
+** metricName: text - name of the metric
+** sqcnr: integer - from EntityMetricInstanceValue
+** value: text - from EntityMetricInstanceValue
+
+The corresponding SQL query to generate the entity metric instance value view:
+
+bc. SELECT
+  (SELECT name FROM entity WHERE id = entityMetricInstanceValue.entityId) AS entityName,
+  (SELECT name FROM entityType WHERE id =
+    (SELECT entityTypeId FROM entity WHERE id = entityMetricInstanceValue.entityId)
+  ) AS entityType,
+  (SELECT name FROM metric WHERE id = entityMetricInstanceValue.metricId) AS metricName,
+  entityMetricInstanceValue.sqcnr,
+  entityMetricInstanceValue.value
+FROM entityMetricInstanceValue
+ORDER BY entityId, metricId, sqcnr
+
+h3. Optional Views
+
+These views are derived from optional tables. So they may not be persisted in the database file.
+
+h4. vTraceEvent
+
+The trace event table itself is not readable like the BTF since all the references are ids. This view therefore offers a more BTF-like trace event table.
+
+* Columns
+** timestamp: integer - from TraceEvent
+** sqcnr: integer - from TraceEvent
+** entityName: text - name of the entity that is subject to the trace event
+** entityType: text - name of the type of the entity
+** entityInstance: integer - from TraceEvent
+** sourceEntityName: text - name of the source entity that is responsible for the trace event
+** sourceEntityType: text - name of the type of the source entity
+** sourceEntityInstance: integer - from TraceEvent
+** eventType: text - name of the type of the trace event
+** value: text - from TraceEvent
+
+The corresponding SQL query to generate the TraceEvent view:
+
+bc. SELECT
+  traceEvent.timestamp,
+  traceEvent.sqcnr,
+  (SELECT name FROM entity WHERE id = traceEvent.entityId) AS entityName,
+  (SELECT name FROM entityType WHERE id =
+    (SELECT entityTypeId FROM entity WHERE id = traceEvent.entityId)
+  ) AS entityType,
+  traceEvent.entityInstance,
+  (SELECT name FROM entity WHERE id = traceEvent.sourceEntityId) AS sourceEntityName,
+  (SELECT name FROM entityType WHERE id =
+    (SELECT entityTypeId FROM entity WHERE id = traceEvent.sourceEntityId)
+  ) AS sourceEntityType,
+  traceEvent.sourceEntityInstance,
+  (SELECT name FROM eventType WHERE id = traceEvent.eventTypeId) AS eventType,
+  traceEvent.value
+FROM traceEvent
+
+h4. vRunnableInstanceRuntimeTraceEvent
+
+This provides a filtered view on TraceEvent where the subject entity is a runnable.
+
+* Columns
+** timestamp: integer - from TraceEvent
+** sqcnr: integer - from TraceEvent
+** runnableName: text - name of the runnable entity
+** entityInstance: integer - from TraceEvent
+** sourceEntityName: text - name of the source entity that is responsible for the runnable trace event
+** sourceEntityInstance: integer - from TraceEvent
+** eventType: text - name of the type of the runnable trace event
+
+The corresponding SQL query to generate the runnable instance TraceEvent view:
+
+bc. SELECT
+  timestamp,
+  sqcnr,
+  (SELECT name FROM entity WHERE id = entityId) AS runnableName,
+  entityInstance,
+  (SELECT name FROM entity WHERE id = sourceEntityId) AS sourceEntityName,
+  sourceEntityInstance,
+  (SELECT name FROM eventType WHERE id = eventTypeId) AS eventType
+FROM (
+  SELECT timestamp, sqcnr, entityId, entityInstance, sourceEntityId, sourceEntityInstance, eventTypeId
+  FROM traceEvent WHERE
+    eventTypeId IN (SELECT id FROM eventType WHERE name IN ('start', 'resume', 'terminate', 'suspend')) AND
+    entityId IN (SELECT id FROM entity WHERE entityTypeId IN
+      (SELECT id FROM entityType WHERE name IN ('R'))
+    )
+  GROUP BY entityId, entityInstance, timestamp, sqcnr
+)
+
+h4. vProcessInstanceRuntimeTraceEvent
+
+This provides a filtered view on TraceEvent where the subject entity is a process (Task or ISR).
+
+* Columns
+** timestamp: integer - from TraceEvent
+** sqcnr: integer - from TraceEvent
+** processName: text - name of the process entity
+** entityInstance: integer - from TraceEvent
+** sourceEntityName: text - name of the source entity that is responsible for the process trace event
+** sourceEntityInstance: integer - from TraceEvent
+** eventType: text - name of the type of the process trace event
+
+The corresponding SQL query to generate the process instance TraceEvent view:
+
+bc. SELECT
+  timestamp,
+  sqcnr,
+  (SELECT name FROM entity WHERE id = entityId) AS processName,
+  entityInstance,
+  (SELECT name FROM entity WHERE id = sourceEntityId) AS sourceEntityName,
+  sourceEntityInstance,
+  (SELECT name FROM eventType WHERE id = eventTypeId) AS eventType
+FROM (
+  SELECT timestamp, sqcnr, entityId, entityInstance, sourceEntityId, sourceEntityInstance, eventTypeId
+  FROM traceEvent WHERE
+    eventTypeId IN (SELECT id FROM eventType WHERE name IN ('activate', 'start', 'resume', 'run', 'terminate',
+      'preempt', 'poll', 'wait', 'poll_parking', 'park', 'release_parking', 'release', 'boundedmigration',
+      'fullmigration', 'mtalimitexceeded')) AND
+    entityId IN (SELECT id FROM entity WHERE entityTypeId IN
+      (SELECT id FROM entityType WHERE name IN ('T', 'I'))
+    )
+  GROUP BY entityId, entityInstance, timestamp, sqcnr
+)
+
+h4. vRunnableInstanceTraceInfo/vProcessInstanceTraceInfo
+
+These two views directly represent the instance trace info tables, except that the entityId is resolved to the name of the entity.
+
+h4. vEventChainInstanceInfo
+
+This view maps event chain, stimulus event, and response event entities to their corresponding names, which makes the EventChainInstanceInfo table more comprehensible.
+
+* Columns
+** eventChainName: text - name of the event chain entity
+** ecInstance: integer - entityInstance from eventChainInstanceInfo
+** stimulusTimestamp: integer - timestamp of the stimulus event for this event chain instance
+** stimulusEntityName: text - name of the entity that is subject to the stimulus event
+** stimulusEntityInstance: integer - instance of the stimulus entity
+** stimulusEvent: text - name of the type of the stimulus event
+** responseTimestamp: integer - timestamp of the response event for this event chain instance
+** responseEntityName: text - name of the entity that is subject to the response event
+** responseEntityInstance: integer - instance of the response entity
+** responseEvent: text - name of the type of the response event
+** latencyType: text - either 'age', 'reaction', or 'age/reaction'
+
+The corresponding SQL query to generate the EventChainInstanceInfo view:
+
+bc. SELECT
+  (SELECT name FROM entity WHERE id = entityId) AS eventChainName,
+  entityInstance AS ecInstance,
+  stimulusTimestamp,
+  (SELECT name FROM entity WHERE id = (SELECT entityId FROM traceEvent WHERE timestamp = stimulusTimestamp AND
+    sqcnr = stimulusSqcnr)) AS stimulusEntityName,
+  (SELECT entityInstance FROM traceEvent WHERE timestamp = stimulusTimestamp AND sqcnr = stimulusSqcnr) AS stimulusEntityInstance,
+  (SELECT name FROM eventType WHERE id = (SELECT eventTypeId FROM traceEvent WHERE timestamp = stimulusTimestamp AND
+    sqcnr = stimulusSqcnr)) AS stimulusEvent,
+  responseTimestamp,
+  (SELECT name FROM entity WHERE id = (SELECT entityId FROM traceEvent WHERE timestamp = responseTimestamp AND
+    sqcnr = responseSqcnr)) AS responseEntityName,
+  (SELECT entityInstance FROM traceEvent WHERE timestamp = responseTimestamp AND
+    sqcnr = responseSqcnr) AS responseEntityInstance,
+  (SELECT name FROM eventType WHERE id = (SELECT eventTypeId FROM traceEvent WHERE timestamp = responseTimestamp AND
+    sqcnr = responseSqcnr)) AS responseEvent,
+  (CASE WHEN isAge AND isReaction THEN 'age/reaction' WHEN isAge THEN 'age' WHEN isReaction THEN 'reaction' END) AS latencyType
+FROM eventChainInstanceInfo
+
+
diff --git a/plugins/org.eclipse.app4mc.help/mainToc.xml b/plugins/org.eclipse.app4mc.help/mainToc.xml
index 65c4d36..5e2f1da 100644
--- a/plugins/org.eclipse.app4mc.help/mainToc.xml
+++ b/plugins/org.eclipse.app4mc.help/mainToc.xml
@@ -44,6 +44,7 @@
       <anchor id="app4mc.docu.dev.multicore"/>
       <anchor id="app4mc.docu.dev.utilities"/>
       <anchor id="app4mc.docu.dev.misc"/>
+      <link toc="toc/dev_atdb_new-toc.xml"/>
       <link toc="toc/dev_atdb-toc.xml"/>
    </topic>
    <link toc="toc/release_notes-toc.xml"/>
diff --git a/plugins/org.eclipse.app4mc.help/pictures/atdb_db_schema.svg b/plugins/org.eclipse.app4mc.help/pictures/atdb_db_schema.svg
new file mode 100644
index 0000000..0459292
--- /dev/null
+++ b/plugins/org.eclipse.app4mc.help/pictures/atdb_db_schema.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg width="1037.4" height="817.28" version="1.1" viewBox="0 0 1037.4 817.28" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><metadata><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><dc:title/></cc:Work></rdf:RDF></metadata><defs><clipPath id="clipPath18"><path d="m0 0h3241.7v2553.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath30"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath388"><path d="m1781 80.817h245.44v89.797h-245.44z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath404"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath416"><path d="m1691.2 80.817h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath430"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath440"><path d="m1781 185.58h245.44v89.797h-245.44z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath454"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath484"><path d="m2439.5 80.817h275.38v89.797h-275.38z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath500"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath512"><path d="m2349.7 80.817h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath526"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath536"><path d="m2439.5 185.58h275.38v89.797h-275.38z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath550"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath670"><path d="m1721.1 440h365.17v77.824h-365.17z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath686"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath698"><path d="m1631.3 440h65.851v77.824h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath712"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath724"><path d="m1721.1 517.83h365.17v89.797h-365.17z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath740"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath752"><path d="m1631.3 517.83h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath766"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath776"><path d="m1721.1 622.59h365.17v113.74h-365.17z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath794"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath806"><path d="m1631.3 607.63h65.851v113.74h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath820"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath830"><path d="m1721.1 736.33h365.17v113.74h-365.17z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath848"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath860"><path d="m1631.3 721.37h65.851v113.74h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath874"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath884"><path d="m1721.1 850.08h365.17v77.824h-365.17z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath898"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath910"><path d="m1631.3 850.08h65.851v77.824h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath924"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath934"><path d="m1721.1 927.9h365.17v89.797h-365.17z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath948"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath978"><path d="m823.14 1344h245.44v89.797h-245.44z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath994"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1006"><path d="m733.34 1344h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1020"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1030"><path d="m823.14 1448.7h245.44v77.824h-245.44z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1044"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1056"><path d="m823.14 1526.5h245.44v89.797h-245.44z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1070"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1082"><path d="m733.34 1526.5h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1096"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1122"><path d="m1798.9 1388.9h287.35v77.824h-287.35z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1138"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1150"><path d="m1631.3 1388.9h143.68v77.824h-143.68z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1164"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1174"><path d="m1798.9 1481.6h287.35v89.797h-287.35z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1190"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1202"><path d="m1631.3 1481.6h143.68v89.797h-143.68z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1216"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1244"><path d="m104.76 2274.9h185.58v89.797h-185.58z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1260"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1272"><path d="m14.966 2274.9h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1286"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1296"><path d="m104.76 2379.6h185.58v77.824h-185.58z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1310"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1322"><path d="m104.76 2457.4h185.58v86.804h-185.58z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1336"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1364"><path d="m182.59 1757h287.35v77.824h-287.35z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1380"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1392"><path d="m14.966 1757h143.67v77.824h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1406"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1418"><path d="m182.59 1834.8h287.35v89.797h-287.35z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1434"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1446"><path d="m14.966 1834.8h143.67v89.797h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1460"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1470"><path d="m182.59 1939.6h287.35v89.797h-287.35z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1484"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1512"><path d="m900.96 1757h407.08v77.824h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1528"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1540"><path d="m733.34 1757h143.67v77.824h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1554"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1564"><path d="m900.96 1834.8h407.08v77.824h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1580"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1592"><path d="m733.34 1834.8h143.67v77.824h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1606"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1618"><path d="m900.96 1912.7h407.08v89.797h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1634"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1646"><path d="m733.34 1912.7h143.67v89.797h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1660"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1670"><path d="m900.96 2017.4h407.08v89.797h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1684"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1712"><path d="m900.96 2274.9h407.08v77.824h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1728"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1740"><path d="m733.34 2274.9h143.67v77.824h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1754"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1766"><path d="m900.96 2352.7h407.08v89.797h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1782"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1794"><path d="m733.34 2352.7h143.67v89.797h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1808"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1818"><path d="m900.96 2457.4h407.08v86.804h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1832"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1862"><path d="m2696.9 1185.3h526.81v89.797h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1878"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1890"><path d="m2529.3 1185.3h143.67v89.797h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1904"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1914"><path d="m2696.9 1290.1h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1928"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1940"><path d="m2696.9 1367.9h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1954"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1966"><path d="m2696.9 1445.7h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1980"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath1992"><path d="m2696.9 1523.6h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2006"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2018"><path d="m2696.9 1601.4h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2032"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2044"><path d="m2696.9 1679.2h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2058"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2070"><path d="m2696.9 1757h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2084"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2096"><path d="m2696.9 1834.8h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2110"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2122"><path d="m2696.9 1912.7h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2136"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2148"><path d="m2696.9 1990.5h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2162"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2174"><path d="m2696.9 2068.3h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2188"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2200"><path d="m2696.9 2146.1h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2214"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2226"><path d="m2696.9 2224h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2240"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2252"><path d="m2696.9 2301.8h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2266"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2278"><path d="m2696.9 2379.6h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2292"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2304"><path d="m2696.9 2457.4h526.81v86.804h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2318"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2348"><path d="m104.76 80.817h305.31v89.797h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2364"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2376"><path d="m14.966 80.817h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2390"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2400"><path d="m104.76 185.58h305.31v77.824h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2414"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2426"><path d="m104.76 263.4h305.31v77.824h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2440"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2452"><path d="m14.966 263.4h65.851v77.824h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2466"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2476"><path d="m104.76 341.23h305.31v77.824h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2490"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2502"><path d="m14.966 341.23h65.851v77.824h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2516"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2526"><path d="m104.76 419.05h305.31v89.797h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2540"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2552"><path d="m14.966 419.05h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2566"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2594"><path d="m104.76 703.41h305.31v89.797h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2610"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2622"><path d="m14.966 703.41h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2636"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2646"><path d="m104.76 808.17h305.31v77.824h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2660"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2672"><path d="m104.76 886h305.31v89.797h-305.31z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2686"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2714"><path d="m182.59 1248.2h227.49v77.824h-227.49z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2730"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2742"><path d="m14.966 1248.2h143.67v77.824h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2756"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2766"><path d="m182.59 1326h227.49v77.824h-227.49z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2782"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2794"><path d="m14.966 1326h143.67v77.824h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2808"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2820"><path d="m182.59 1403.8h227.49v89.797h-227.49z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2836"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2848"><path d="m14.966 1403.8h143.67v89.797h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2862"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2872"><path d="m182.59 1508.6h227.49v89.797h-227.49z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2886"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2916"><path d="m823.14 927.9h245.44v89.797h-245.44z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2932"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2944"><path d="m733.34 927.9h65.851v89.797h-65.851z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2958"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2968"><path d="m823.14 1032.7h245.44v89.797h-245.44z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath2982"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3012"><path d="m900.96 260.41h407.08v89.797h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3028"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3040"><path d="m733.34 260.41h143.67v89.797h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3054"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3064"><path d="m900.96 365.17h407.08v113.74h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3082"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3094"><path d="m733.34 350.21h143.67v113.74h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3108"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3118"><path d="m900.96 478.92h407.08v113.74h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3136"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3148"><path d="m733.34 463.95h143.67v113.74h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3162"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3172"><path d="m900.96 592.66h407.08v77.824h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3186"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3198"><path d="m900.96 670.48h407.08v89.797h-407.08z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3212"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3242"><path d="m2696.9 511.84h526.81v89.797h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3258"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3270"><path d="m2529.3 511.84h143.67v89.797h-143.67z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3284"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3294"><path d="m2696.9 616.61h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3308"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3320"><path d="m2696.9 694.43h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3334"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3346"><path d="m2696.9 772.25h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3360"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3372"><path d="m2696.9 850.08h526.81v77.824h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3386"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3398"><path d="m2696.9 927.9h526.81v89.797h-526.81z" clip-rule="evenodd"/></clipPath><clipPath id="clipPath3412"><path d="m0 0h3241.7v2544.2h-3241.7z" clip-rule="evenodd"/></clipPath></defs><g transform="matrix(.32 0 0 .32 0 2.3765e-5)"><g clip-path="url(#clipPath18)"><g transform="scale(2.9932)"><path d="m0 0h1083v853h-1083z" fill="#fff"/></g></g><g clip-path="url(#clipPath30)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m681 42h40c6.6667 0 10 3.3333 10 10v230c0 6.6667-3.3333 10-10 10h-20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m716 292c-6e-5 0.3978-0.0762 0.78049-0.22845 1.148-0.15223 0.36755-0.36896 0.69199-0.65027 0.9733-0.28138 0.28128-0.60578 0.49804-0.97327 0.6503-0.36755 0.15225-0.75024 0.22836-1.148 0.22839-0.39783-3e-5 -0.78052-0.0761-1.1481-0.22839-0.36756-0.15226-0.69196-0.36902-0.97327-0.6503-0.28131-0.28131-0.49811-0.60575-0.65039-0.9733-0.15222-0.36752-0.22827-0.75021-0.22821-1.148-6e-5 -0.39786 0.076-0.78055 0.22821-1.1481 0.15228-0.36752 0.36908-0.69196 0.65039-0.97324 0.28131-0.28131 0.60571-0.49808 0.97327-0.6503 0.36761-0.15225 0.7503-0.22836 1.1481-0.22836 0.39777 0 0.78046 0.0761 1.148 0.22836 0.36749 0.15222 0.69189 0.36899 0.97327 0.6503 0.28131 0.28128 0.49804 0.60572 0.65027 0.97324 0.15228 0.36755 0.22839 0.75024 0.22845 1.1481z" fill="#fff"/><path d="m716 292c-6e-5 0.3978-0.0762 0.78049-0.22845 1.148-0.15223 0.36755-0.36896 0.69199-0.65027 0.9733-0.28138 0.28128-0.60578 0.49804-0.97327 0.6503-0.36755 0.15225-0.75024 0.22836-1.148 0.22839-0.39783-3e-5 -0.78052-0.0761-1.1481-0.22839-0.36756-0.15226-0.69196-0.36902-0.97327-0.6503-0.28131-0.28131-0.49811-0.60575-0.65039-0.9733-0.15222-0.36752-0.22827-0.75021-0.22821-1.148-6e-5 -0.39786 0.076-0.78055 0.22821-1.1481 0.15228-0.36752 0.36908-0.69196 0.65039-0.97324 0.28131-0.28131 0.60571-0.49808 0.97327-0.6503 0.36761-0.15225 0.7503-0.22836 1.1481-0.22836 0.39777 0 0.78046 0.0761 1.148 0.22836 0.36749 0.15222 0.69189 0.36899 0.97327 0.6503 0.28131 0.28128 0.49804 0.60572 0.65027 0.97324 0.15228 0.36755 0.22839 0.75024 0.22845 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m701 296 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m699 95h65v14h-65z" fill="#fff"/><text transform="translate(698.81 106)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 12.673828 19.347656 26.021484 29.355469 36.023438 42.023438 48.697266 55.371094 58.705078" y="0">eventTypeId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m581 438-1.12-103.27" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m583.01 346.73c0 0.3978-0.0762 0.78049-0.22845 1.148-0.15223 0.36752-0.36896 0.69196-0.65027 0.9733-0.28131 0.28128-0.60578 0.49805-0.97327 0.6503-0.36755 0.15222-0.75024 0.22836-1.148 0.22839-0.39789-3e-5 -0.78058-0.0762-1.1481-0.22839-0.36756-0.15225-0.69196-0.36902-0.97321-0.6503-0.28137-0.28134-0.49817-0.60578-0.65033-0.9733-0.15228-0.36752-0.22839-0.75021-0.22833-1.148-6e-5 -0.39786 0.0761-0.78055 0.22833-1.1481 0.15216-0.36752 0.36896-0.69196 0.65033-0.97324 0.28125-0.28131 0.60565-0.4981 0.97321-0.65036 0.36755-0.15219 0.75024-0.2283 1.1481-0.2283 0.39777 0 0.78046 0.0761 1.148 0.2283 0.36749 0.15226 0.69196 0.36905 0.97327 0.65036 0.28131 0.28128 0.49804 0.60572 0.65027 0.97324 0.15228 0.36755 0.22845 0.75024 0.22845 1.1481z" fill="#fff"/><path d="m583.01 346.73c0 0.3978-0.0762 0.78049-0.22845 1.148-0.15223 0.36752-0.36896 0.69196-0.65027 0.9733-0.28131 0.28128-0.60578 0.49805-0.97327 0.6503-0.36755 0.15222-0.75024 0.22836-1.148 0.22839-0.39789-3e-5 -0.78058-0.0762-1.1481-0.22839-0.36756-0.15225-0.69196-0.36902-0.97321-0.6503-0.28137-0.28134-0.49817-0.60578-0.65033-0.9733-0.15228-0.36752-0.22839-0.75021-0.22833-1.148-6e-5 -0.39786 0.0761-0.78055 0.22833-1.1481 0.15216-0.36752 0.36896-0.69196 0.65033-0.97324 0.28125-0.28131 0.60565-0.4981 0.97321-0.65036 0.36755-0.15219 0.75024-0.2283 1.1481-0.2283 0.39777 0 0.78046 0.0761 1.148 0.2283 0.36749 0.15226 0.69196 0.36905 0.97327 0.65036 0.28131 0.28128 0.49804 0.60572 0.65027 0.97324 0.15228 0.36755 0.22845 0.75024 0.22845 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m575.88 334.77 4.09 7.96 3.91-8.04" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m524 365h75v28h-75z" fill="#fff"/><text transform="translate(540.5,376)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453" y="0">entityId,</tspan></text><text transform="translate(524.48 390)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453 44.689453 48.023438 54.697266 61.371094 67.371094" y="0">entityInstance</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m661 438-1.12-102.97" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m663.01 347.03c-6e-5 0.3978-0.0762 0.78049-0.22845 1.148-0.15229 0.36752-0.36902 0.69196-0.65027 0.97327-0.28131 0.28128-0.60578 0.49804-0.97333 0.6503-0.36755 0.15225-0.75018 0.22836-1.148 0.22839-0.39789-3e-5 -0.78064-0.0761-1.1482-0.22839-0.3675-0.15226-0.6919-0.36902-0.97321-0.6503-0.28131-0.28131-0.49811-0.60575-0.65033-0.9733-0.15222-0.36752-0.22833-0.75021-0.22827-1.148-6e-5 -0.39786 0.0761-0.78055 0.22827-1.1481 0.15222-0.36756 0.36902-0.69199 0.65033-0.97327 0.28131-0.28131 0.60571-0.49808 0.97321-0.6503 0.36755-0.15225 0.7503-0.22836 1.1482-0.22836 0.39777 0 0.7804 0.0761 1.148 0.22836 0.36755 0.15222 0.69202 0.36899 0.97333 0.6503 0.28125 0.28128 0.49798 0.60571 0.65027 0.97327 0.15222 0.36752 0.22839 0.75021 0.22845 1.1481z" fill="#fff"/><path d="m663.01 347.03c-6e-5 0.3978-0.0762 0.78049-0.22845 1.148-0.15229 0.36752-0.36902 0.69196-0.65027 0.97327-0.28131 0.28128-0.60578 0.49804-0.97333 0.6503-0.36755 0.15225-0.75018 0.22836-1.148 0.22839-0.39789-3e-5 -0.78064-0.0761-1.1482-0.22839-0.3675-0.15226-0.6919-0.36902-0.97321-0.6503-0.28131-0.28131-0.49811-0.60575-0.65033-0.9733-0.15222-0.36752-0.22833-0.75021-0.22827-1.148-6e-5 -0.39786 0.0761-0.78055 0.22827-1.1481 0.15222-0.36756 0.36902-0.69199 0.65033-0.97327 0.28131-0.28131 0.60571-0.49808 0.97321-0.6503 0.36755-0.15225 0.7503-0.22836 1.1482-0.22836 0.39777 0 0.7804 0.0761 1.148 0.22836 0.36755 0.15222 0.69202 0.36899 0.97333 0.6503 0.28125 0.28128 0.49798 0.60571 0.65027 0.97327 0.15222 0.36752 0.22839 0.75021 0.22845 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m655.88 335.07 4.09 7.96 3.91-8.04" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m626 366h111v28h-111z" fill="#fff"/><text transform="translate(641.81 377)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 19.347656 23.34375 29.34375 36.017578 44.021484 50.695312 54.029297 56.695312 60.029297 66.029297 69.363281 76.037109" y="0">sourceEntityId,</tspan></text><text transform="translate(625.8 391)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 19.347656 23.34375 29.34375 36.017578 44.021484 50.695312 54.029297 56.695312 60.029297 66.029297 69.363281 76.037109 82.037109 85.371094 92.044922 98.71875 104.71875" y="0">sourceEntityInstance</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m361 479h20 20 100 20 20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m532 479c-6e-5 0.39777-0.0762 0.78043-0.22839 1.148-0.15229 0.36755-0.36908 0.69199-0.65033 0.9733-0.28131 0.28128-0.60578 0.49804-0.97333 0.6503-0.36749 0.15225-0.75018 0.22839-1.148 0.22842-0.39789-3e-5 -0.78058-0.0761-1.1481-0.22839-0.36755-0.15229-0.69196-0.36905-0.97327-0.65033-0.28131-0.28131-0.49804-0.60575-0.65033-0.9733-0.15222-0.36755-0.22833-0.75021-0.22833-1.148 0-0.39786 0.0761-0.78055 0.22833-1.1481 0.15229-0.36752 0.36902-0.69196 0.65033-0.97324 0.28131-0.28134 0.60572-0.49811 0.97327-0.65033 0.36749-0.15222 0.75018-0.22833 1.1481-0.22833 0.39777 0 0.78046 0.0761 1.148 0.22833 0.36755 0.15222 0.69202 0.36899 0.97333 0.65033 0.28125 0.28128 0.49798 0.60572 0.65027 0.97324 0.15228 0.36755 0.22839 0.75024 0.22845 1.1481z" fill="#fff"/><path d="m532 479c-6e-5 0.39777-0.0762 0.78043-0.22839 1.148-0.15229 0.36755-0.36908 0.69199-0.65033 0.9733-0.28131 0.28128-0.60578 0.49804-0.97333 0.6503-0.36749 0.15225-0.75018 0.22839-1.148 0.22842-0.39789-3e-5 -0.78058-0.0761-1.1481-0.22839-0.36755-0.15229-0.69196-0.36905-0.97327-0.65033-0.28131-0.28131-0.49804-0.60575-0.65033-0.9733-0.15222-0.36755-0.22833-0.75021-0.22833-1.148 0-0.39786 0.0761-0.78055 0.22833-1.1481 0.15229-0.36752 0.36902-0.69196 0.65033-0.97324 0.28131-0.28134 0.60572-0.49811 0.97327-0.65033 0.36749-0.15222 0.75018-0.22833 1.1481-0.22833 0.39777 0 0.78046 0.0761 1.148 0.22833 0.36755 0.15222 0.69202 0.36899 0.97333 0.65033 0.28125 0.28128 0.49798 0.60572 0.65027 0.97324 0.15228 0.36755 0.22839 0.75024 0.22845 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m541 475-8 4 8 4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m432 473h39v14h-39z" fill="#fff"/><text transform="translate(432.16 484)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625" y="0">entityId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m71 321v70" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m74 379c-8e-6 0.3978-0.07613 0.78046-0.22837 1.148-0.15224 0.36752-0.36901 0.69196-0.65031 0.9733-0.28131 0.28128-0.60574 0.49804-0.97327 0.65027-0.36754 0.15225-0.75022 0.22842-1.148 0.22845-0.39784-3e-5 -0.78052-0.0762-1.1481-0.22845-0.36754-0.15223-0.69196-0.36899-0.97327-0.65027-0.2813-0.28134-0.49808-0.60578-0.65033-0.9733-0.15224-0.36752-0.22836-0.75018-0.22835-1.148-8e-6 -0.39786 0.07611-0.78058 0.22836-1.1481 0.15224-0.36759 0.36902-0.69199 0.65032-0.97327 0.2813-0.28131 0.60573-0.49808 0.97327-0.6503s0.75022-0.22833 1.1481-0.22833c0.39782 0 0.7805 0.0761 1.148 0.22833 0.36754 0.15222 0.69196 0.36899 0.97327 0.6503 0.2813 0.28128 0.49807 0.60568 0.65031 0.97327 0.15224 0.36752 0.22836 0.75024 0.22837 1.1481z" fill="#fff"/><path d="m74 379c-8e-6 0.3978-0.07613 0.78046-0.22837 1.148-0.15224 0.36752-0.36901 0.69196-0.65031 0.9733-0.28131 0.28128-0.60574 0.49804-0.97327 0.65027-0.36754 0.15225-0.75022 0.22842-1.148 0.22845-0.39784-3e-5 -0.78052-0.0762-1.1481-0.22845-0.36754-0.15223-0.69196-0.36899-0.97327-0.65027-0.2813-0.28134-0.49808-0.60578-0.65033-0.9733-0.15224-0.36752-0.22836-0.75018-0.22835-1.148-8e-6 -0.39786 0.07611-0.78058 0.22836-1.1481 0.15224-0.36759 0.36902-0.69199 0.65032-0.97327 0.2813-0.28131 0.60573-0.49808 0.97327-0.6503s0.75022-0.22833 1.1481-0.22833c0.39782 0 0.7805 0.0761 1.148 0.22833 0.36754 0.15222 0.69196 0.36899 0.97327 0.6503 0.2813 0.28128 0.49807 0.60568 0.65031 0.97327 0.15224 0.36752 0.22836 0.75024 0.22837 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m75 391-4-8-4 8" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m44 348h55v14h-55z" fill="#fff"/><text transform="translate(44.484 359)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 10.669922 17.34375 24.017578 30.691406 34.6875 38.021484 44.021484 47.355469" y="0">propertyId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m241 479h-20c-6.6667 0-12.107-2.5833-16.32-7.75l-27.36-33.5c-4.2133-5.1667-9.6533-7.75-16.32-7.75h-20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m156 430c-2e-5 0.3978-0.0761 0.78049-0.22838 1.148-0.15224 0.36752-0.36902 0.69196-0.65031 0.9733-0.28131 0.28128-0.60575 0.49801-0.97328 0.65027-0.36754 0.15225-0.75022 0.22839-1.148 0.22842-0.39784-3e-5 -0.78053-0.0762-1.1481-0.22842-0.36754-0.15226-0.69197-0.36899-0.97327-0.65027-0.28131-0.28134-0.49809-0.60578-0.65033-0.97333-0.15223-0.36752-0.22835-0.75018-0.22833-1.148-2e-5 -0.39786 0.0761-0.78058 0.22833-1.1481 0.15224-0.36756 0.36902-0.69199 0.65033-0.97327 0.2813-0.28128 0.60573-0.49805 0.97327-0.6503 0.36754-0.15222 0.75023-0.22833 1.1481-0.22833 0.39781 0 0.78049 0.0761 1.148 0.22833 0.36753 0.15225 0.69197 0.36902 0.97328 0.6503 0.28129 0.28128 0.49807 0.60571 0.65031 0.97327 0.15224 0.36752 0.22836 0.75024 0.22838 1.1481z" fill="#fff"/><path d="m156 430c-2e-5 0.3978-0.0761 0.78049-0.22838 1.148-0.15224 0.36752-0.36902 0.69196-0.65031 0.9733-0.28131 0.28128-0.60575 0.49801-0.97328 0.65027-0.36754 0.15225-0.75022 0.22839-1.148 0.22842-0.39784-3e-5 -0.78053-0.0762-1.1481-0.22842-0.36754-0.15226-0.69197-0.36899-0.97327-0.65027-0.28131-0.28134-0.49809-0.60578-0.65033-0.97333-0.15223-0.36752-0.22835-0.75018-0.22833-1.148-2e-5 -0.39786 0.0761-0.78058 0.22833-1.1481 0.15224-0.36756 0.36902-0.69199 0.65033-0.97327 0.2813-0.28128 0.60573-0.49805 0.97327-0.6503 0.36754-0.15222 0.75023-0.22833 1.1481-0.22833 0.39781 0 0.78049 0.0761 1.148 0.22833 0.36753 0.15225 0.69197 0.36902 0.97328 0.6503 0.28129 0.28128 0.49807 0.60571 0.65031 0.97327 0.15224 0.36752 0.22836 0.75024 0.22838 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m141 434 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m167 442h39v14h-39z" fill="#fff"/><text transform="translate(167.16 453)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625" y="0">entityId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m301 370v53" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m304 411c-3e-5 0.3978-0.0762 0.78049-0.22842 1.148-0.15226 0.36752-0.36899 0.69193-0.65027 0.97327-0.28134 0.28131-0.60578 0.49807-0.9733 0.6503-0.36752 0.15225-0.75021 0.22839-1.148 0.22842-0.39786-3e-5 -0.78055-0.0762-1.1481-0.22842-0.36755-0.15223-0.69199-0.36899-0.97327-0.6503-0.28131-0.28134-0.49808-0.60578-0.65033-0.9733s-0.22836-0.75018-0.22833-1.148c-3e-5 -0.39786 0.0761-0.78058 0.22833-1.1481 0.15225-0.36756 0.36902-0.69196 0.65033-0.97324 0.28128-0.28131 0.60572-0.49808 0.97327-0.65033 0.36752-0.15222 0.75021-0.22833 1.1481-0.22833 0.3978 0 0.78049 0.0761 1.148 0.22833 0.36752 0.15225 0.69196 0.36902 0.9733 0.65033 0.28128 0.28128 0.49801 0.60568 0.65027 0.97324 0.15225 0.36752 0.22839 0.75024 0.22842 1.1481z" fill="#fff"/><path d="m304 411c-3e-5 0.3978-0.0762 0.78049-0.22842 1.148-0.15226 0.36752-0.36899 0.69193-0.65027 0.97327-0.28134 0.28131-0.60578 0.49807-0.9733 0.6503-0.36752 0.15225-0.75021 0.22839-1.148 0.22842-0.39786-3e-5 -0.78055-0.0762-1.1481-0.22842-0.36755-0.15223-0.69199-0.36899-0.97327-0.6503-0.28131-0.28134-0.49808-0.60578-0.65033-0.9733s-0.22836-0.75018-0.22833-1.148c-3e-5 -0.39786 0.0761-0.78058 0.22833-1.1481 0.15225-0.36756 0.36902-0.69196 0.65033-0.97324 0.28128-0.28131 0.60572-0.49808 0.97327-0.65033 0.36752-0.15222 0.75021-0.22833 1.1481-0.22833 0.3978 0 0.78049 0.0761 1.148 0.22833 0.36752 0.15225 0.69196 0.36902 0.9733 0.65033 0.28128 0.28128 0.49801 0.60568 0.65027 0.97324 0.15225 0.36752 0.22839 0.75024 0.22842 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m305 423-4-8-4 8" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m269 394h65v14h-65z" fill="#fff"/><text transform="translate(269.14 405)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 35.349609 41.349609 48.023438 54.697266 58.03125" y="0">entityTypeId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m941 1h140v30h-140z" fill="#dae8fc"/><path d="m941 1h140v30h-140z" fill="none" stroke="#6c8ebf" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><text transform="translate(962.97 21)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.6660156 15.339844 22.013672 25.347656 32.021484 38.695312 42.029297 45.363281 52.037109 62.033203 68.707031 75.380859 79.376953 86.050781 90.046875" y="0">Can be temporary</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m941 41h140v30h-140z" fill="#fff2cc"/><path d="m941 41h140v30h-140z" fill="none" stroke="#d6b656" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><text transform="translate(944.09 61)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781 11.326172 18 27.996094 31.330078 39.333984 49.330078 57.333984 63.117188 70.447266 79.113281 87.117188 94.458984 101.12695 111.12305 117.79688 124.4707 131.14453" y="0">From AMALTHEA model</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m941 81h140v30h-140z" fill="#d5e8d4"/><path d="m941 81h140v30h-140z" fill="none" stroke="#82b366" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><text transform="translate(951.19 101)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 9.9960938 16.669922 20.003906 24 26.666016 32.666016 38.666016 42 48.673828 55.347656 58.681641 65.566406 69.5625 76.236328 82.236328 88.910156 96.914062 102.91406 109.58789 116.26172" y="0">Metrics on TraceEvent</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m361 492h20c6.6667 0 10 3.3333 10 10v59" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m394 549c-3e-5 0.39777-0.0761 0.78046-0.22839 1.148-0.15226 0.36755-0.36902 0.69196-0.6503 0.97327-0.28131 0.28131-0.60575 0.49804-0.9733 0.65027-0.36752 0.15228-0.75018 0.22839-1.148 0.22845-0.39786-6e-5 -0.78055-0.0762-1.1481-0.22845-0.36755-0.15223-0.69199-0.36896-0.97327-0.65027-0.28134-0.28131-0.49811-0.60572-0.65036-0.97327s-0.22833-0.75024-0.2283-1.148c-3e-5 -0.39789 0.0761-0.78058 0.2283-1.1481 0.15225-0.36756 0.36902-0.69196 0.65036-0.97321 0.28128-0.28131 0.60572-0.49811 0.97327-0.65033 0.36752-0.15222 0.75021-0.22833 1.1481-0.22833 0.39783 0 0.78052 0.0761 1.148 0.22833 0.36752 0.15222 0.69196 0.36902 0.97327 0.65033 0.28128 0.28125 0.49804 0.60565 0.6503 0.97321 0.15225 0.36755 0.22836 0.75024 0.22839 1.1481z" fill="#fff"/><path d="m394 549c-3e-5 0.39777-0.0761 0.78046-0.22839 1.148-0.15226 0.36755-0.36902 0.69196-0.6503 0.97327-0.28131 0.28131-0.60575 0.49804-0.9733 0.65027-0.36752 0.15228-0.75018 0.22839-1.148 0.22845-0.39786-6e-5 -0.78055-0.0762-1.1481-0.22845-0.36755-0.15223-0.69199-0.36896-0.97327-0.65027-0.28134-0.28131-0.49811-0.60572-0.65036-0.97327s-0.22833-0.75024-0.2283-1.148c-3e-5 -0.39789 0.0761-0.78058 0.2283-1.1481 0.15225-0.36756 0.36902-0.69196 0.65036-0.97321 0.28128-0.28131 0.60572-0.49811 0.97327-0.65033 0.36752-0.15222 0.75021-0.22833 1.1481-0.22833 0.39783 0 0.78052 0.0761 1.148 0.22833 0.36752 0.15222 0.69196 0.36902 0.97327 0.65033 0.28128 0.28125 0.49804 0.60565 0.6503 0.97321 0.15225 0.36755 0.22836 0.75024 0.22839 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m395 561-4-8-4 8" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m372 506h39v14h-39z" fill="#fff"/><text transform="translate(372.16 517)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625" y="0">entityId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m101 775h20c6.6667 0 11.577-2.9366 14.73-8.81l70.54-131.38c3.1533-5.8734 8.0633-8.81 14.73-8.81h20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m232 626c-2e-5 0.39777-0.0762 0.78046-0.22839 1.148-0.15224 0.36755-0.36901 0.69202-0.6503 0.97333-0.28131 0.28125-0.60575 0.49798-0.97328 0.65027-0.36754 0.15222-0.75022 0.22839-1.148 0.22845-0.39784-6e-5 -0.78055-0.0762-1.1481-0.22845-0.36753-0.15229-0.69194-0.36902-0.97323-0.65027-0.28131-0.28131-0.4981-0.60578-0.65033-0.97333-0.15224-0.36749-0.22837-0.75018-0.22835-1.148-2e-5 -0.39789 0.0761-0.78058 0.22835-1.1481 0.15223-0.36755 0.36902-0.69196 0.65033-0.97327 0.28129-0.28131 0.60571-0.49811 0.97325-0.65033s0.75023-0.22833 1.1481-0.22833c0.39781 0 0.78049 0.0761 1.148 0.22833 0.36753 0.15222 0.69197 0.36902 0.97328 0.65033 0.28129 0.28131 0.49806 0.60572 0.6503 0.97327 0.15223 0.36749 0.22837 0.75018 0.22839 1.1481z" fill="#fff"/><path d="m232 626c-2e-5 0.39777-0.0762 0.78046-0.22839 1.148-0.15224 0.36755-0.36901 0.69202-0.6503 0.97333-0.28131 0.28125-0.60575 0.49798-0.97328 0.65027-0.36754 0.15222-0.75022 0.22839-1.148 0.22845-0.39784-6e-5 -0.78055-0.0762-1.1481-0.22845-0.36753-0.15229-0.69194-0.36902-0.97323-0.65027-0.28131-0.28131-0.4981-0.60578-0.65033-0.97333-0.15224-0.36749-0.22837-0.75018-0.22835-1.148-2e-5 -0.39789 0.0761-0.78058 0.22835-1.1481 0.15223-0.36755 0.36902-0.69196 0.65033-0.97327 0.28129-0.28131 0.60571-0.49811 0.97325-0.65033s0.75023-0.22833 1.1481-0.22833c0.39781 0 0.78049 0.0761 1.148 0.22833 0.36753 0.15222 0.69197 0.36902 0.97328 0.65033 0.28129 0.28131 0.49806 0.60572 0.6503 0.97327 0.15223 0.36749 0.22837 0.75018 0.22839 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m241 622-8 4 8 4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m150 694h43v14h-43z" fill="#fff"/><text transform="translate(150.16 705)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 9.9960938 16.669922 20.003906 24 26.666016 32.666016 36" y="0">metricId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m541 505h-20c-6.6667 0-10.493 3.2967-11.48 9.89l-37.04 248.22c-0.98666 6.5933-4.8134 9.89-11.48 9.89h-20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m456 773c-3e-5 0.39777-0.0761 0.7804-0.22839 1.148-0.15226 0.36755-0.36905 0.69202-0.65033 0.97333-0.28131 0.28125-0.60575 0.49798-0.9733 0.65027-0.36752 0.15222-0.75018 0.22839-1.148 0.22845-0.39786-6e-5 -0.78055-0.0762-1.1481-0.22845-0.36752-0.15229-0.69196-0.36902-0.97324-0.65027-0.28134-0.28131-0.49811-0.60578-0.65033-0.97333-0.15225-0.36755-0.22836-0.75018-0.22833-1.148-3e-5 -0.39789 0.0761-0.78064 0.22833-1.1482 0.15222-0.3675 0.36899-0.6919 0.65033-0.97321 0.28128-0.28131 0.60572-0.49811 0.97324-0.65033 0.36755-0.15216 0.75024-0.22827 1.1481-0.22827 0.3978 0 0.78046 0.0761 1.148 0.22827 0.36755 0.15222 0.69199 0.36902 0.9733 0.65033 0.28128 0.28131 0.49807 0.60571 0.65033 0.97321 0.15225 0.36755 0.22836 0.7503 0.22839 1.1482z" fill="#fff"/><path d="m456 773c-3e-5 0.39777-0.0761 0.7804-0.22839 1.148-0.15226 0.36755-0.36905 0.69202-0.65033 0.97333-0.28131 0.28125-0.60575 0.49798-0.9733 0.65027-0.36752 0.15222-0.75018 0.22839-1.148 0.22845-0.39786-6e-5 -0.78055-0.0762-1.1481-0.22845-0.36752-0.15229-0.69196-0.36902-0.97324-0.65027-0.28134-0.28131-0.49811-0.60578-0.65033-0.97333-0.15225-0.36755-0.22836-0.75018-0.22833-1.148-3e-5 -0.39789 0.0761-0.78064 0.22833-1.1482 0.15222-0.3675 0.36899-0.6919 0.65033-0.97321 0.28128-0.28131 0.60572-0.49811 0.97324-0.65033 0.36755-0.15216 0.75024-0.22827 1.1481-0.22827 0.3978 0 0.78046 0.0761 1.148 0.22827 0.36755 0.15222 0.69199 0.36902 0.9733 0.65033 0.28128 0.28131 0.49807 0.60571 0.65033 0.97321 0.15225 0.36755 0.22836 0.7503 0.22839 1.1482z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m441 777 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m454 626h75v28h-75z" fill="#fff"/><text transform="translate(470.5,637)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453" y="0">entityId,</tspan></text><text transform="translate(454.48 651)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453 44.689453 48.023438 54.697266 61.371094 67.371094" y="0">entityInstance</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m51 734v-20.5c0-6.6667 3.3333-10 10-10h10c6.6667 0 10-3.3333 10-10v-20.5" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m84 685c-8e-6 0.39783-0.07613 0.78046-0.22837 1.148-0.15224 0.36755-0.36901 0.69202-0.65031 0.97333s-0.60573 0.4981-0.97327 0.65033c-0.36754 0.15222-0.75022 0.22833-1.148 0.22839-0.39784-6e-5 -0.78052-0.0762-1.1481-0.22839-0.36754-0.15223-0.69196-0.36902-0.97326-0.65033-0.2813-0.28131-0.49808-0.60578-0.65032-0.97333-0.15224-0.36749-0.22836-0.75012-0.22836-1.148-8e-6 -0.39789 0.07611-0.78058 0.22836-1.1481 0.15224-0.36749 0.36902-0.6919 0.65032-0.97321 0.2813-0.28131 0.60572-0.49811 0.97326-0.65039 0.36755-0.15216 0.75023-0.22827 1.1481-0.22827 0.39782 0 0.7805 0.0761 1.148 0.22827 0.36755 0.15228 0.69197 0.36908 0.97327 0.65039s0.49808 0.60572 0.65031 0.97321c0.15224 0.36755 0.22836 0.75024 0.22837 1.1481z" fill="#fff"/><path d="m84 685c-8e-6 0.39783-0.07613 0.78046-0.22837 1.148-0.15224 0.36755-0.36901 0.69202-0.65031 0.97333s-0.60573 0.4981-0.97327 0.65033c-0.36754 0.15222-0.75022 0.22833-1.148 0.22839-0.39784-6e-5 -0.78052-0.0762-1.1481-0.22839-0.36754-0.15223-0.69196-0.36902-0.97326-0.65033-0.2813-0.28131-0.49808-0.60578-0.65032-0.97333-0.15224-0.36749-0.22836-0.75012-0.22836-1.148-8e-6 -0.39789 0.07611-0.78058 0.22836-1.1481 0.15224-0.36749 0.36902-0.6919 0.65032-0.97321 0.2813-0.28131 0.60572-0.49811 0.97326-0.65039 0.36755-0.15216 0.75023-0.22827 1.1481-0.22827 0.39782 0 0.7805 0.0761 1.148 0.22827 0.36755 0.15228 0.69197 0.36908 0.97327 0.65039s0.49808 0.60572 0.65031 0.97321c0.15224 0.36755 0.22836 0.75024 0.22837 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m77 673 4 8 4-8" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m46 698h43v14h-43z" fill="#fff"/><text transform="translate(46.156 709)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 9.9960938 16.669922 20.003906 24 26.666016 32.666016 36" y="0">metricId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m101 775h20c6.6667 0 13.17 1.03 19.51 3.09l60.98 19.82c6.34 2.06 12.843 3.09 19.51 3.09h20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m232 801c-2e-5 0.39777-0.0762 0.78046-0.22839 1.148-0.15224 0.36755-0.36901 0.69202-0.6503 0.97339-0.28131 0.28125-0.60575 0.49798-0.97328 0.65027-0.36754 0.15222-0.75022 0.22833-1.148 0.22839-0.39784-6e-5 -0.78055-0.0762-1.1481-0.22839-0.36753-0.15229-0.69194-0.36902-0.97323-0.65027-0.28131-0.28137-0.4981-0.60584-0.65033-0.97339-0.15224-0.36749-0.22837-0.75018-0.22835-1.148-2e-5 -0.39789 0.0761-0.78064 0.22835-1.1481 0.15223-0.36756 0.36902-0.69196 0.65033-0.97321 0.28129-0.28131 0.60571-0.49811 0.97325-0.65033s0.75023-0.22833 1.1481-0.22833c0.39781 0 0.78049 0.0761 1.148 0.22827 0.36753 0.15228 0.69197 0.36908 0.97328 0.65039 0.28129 0.28125 0.49806 0.60565 0.6503 0.97327 0.15223 0.36749 0.22837 0.75018 0.22839 1.1481z" fill="#fff"/><path d="m232 801c-2e-5 0.39777-0.0762 0.78046-0.22839 1.148-0.15224 0.36755-0.36901 0.69202-0.6503 0.97339-0.28131 0.28125-0.60575 0.49798-0.97328 0.65027-0.36754 0.15222-0.75022 0.22833-1.148 0.22839-0.39784-6e-5 -0.78055-0.0762-1.1481-0.22839-0.36753-0.15229-0.69194-0.36902-0.97323-0.65027-0.28131-0.28137-0.4981-0.60584-0.65033-0.97339-0.15224-0.36749-0.22837-0.75018-0.22835-1.148-2e-5 -0.39789 0.0761-0.78064 0.22835-1.1481 0.15223-0.36756 0.36902-0.69196 0.65033-0.97321 0.28129-0.28131 0.60571-0.49811 0.97325-0.65033s0.75023-0.22833 1.1481-0.22833c0.39781 0 0.78049 0.0761 1.148 0.22827 0.36753 0.15228 0.69197 0.36908 0.97328 0.65039 0.28129 0.28125 0.49806 0.60565 0.6503 0.97327 0.15223 0.36749 0.22837 0.75018 0.22839 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m241 797-8 4 8 4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m150 782h43v14h-43z" fill="#fff"/><text transform="translate(150.16 793)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 9.9960938 16.669922 20.003906 24 26.666016 32.666016 36" y="0">metricId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m241 479h-20c-6.6667 0-10.543 3.29-11.63 9.87l-16.74 101.26c-1.0867 6.58-4.9633 9.87-11.63 9.87h-20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m176 600c-2e-5 0.39783-0.0761 0.78046-0.22838 1.148-0.15224 0.36755-0.369 0.69202-0.6503 0.97333-0.28132 0.28125-0.60576 0.49798-0.97329 0.65027-0.36754 0.15228-0.75022 0.22839-1.148 0.22845-0.39784-6e-5 -0.78053-0.0762-1.1481-0.22845-0.36754-0.15229-0.69196-0.36902-0.97325-0.65027-0.28131-0.28131-0.4981-0.60578-0.65033-0.97333-0.15224-0.36749-0.22837-0.75012-0.22835-1.148-2e-5 -0.39789 0.0761-0.78058 0.22835-1.1481 0.15223-0.36756 0.36902-0.69196 0.65033-0.97327 0.28129-0.28131 0.60571-0.49805 0.97325-0.65033 0.36754-0.15216 0.75023-0.22827 1.1481-0.22827 0.39781 0 0.78049 0.0761 1.148 0.22827 0.36753 0.15228 0.69197 0.36902 0.97329 0.65033 0.2813 0.28131 0.49806 0.60571 0.6503 0.97327 0.15224 0.36755 0.22836 0.75024 0.22838 1.1481z" fill="#fff"/><path d="m176 600c-2e-5 0.39783-0.0761 0.78046-0.22838 1.148-0.15224 0.36755-0.369 0.69202-0.6503 0.97333-0.28132 0.28125-0.60576 0.49798-0.97329 0.65027-0.36754 0.15228-0.75022 0.22839-1.148 0.22845-0.39784-6e-5 -0.78053-0.0762-1.1481-0.22845-0.36754-0.15229-0.69196-0.36902-0.97325-0.65027-0.28131-0.28131-0.4981-0.60578-0.65033-0.97333-0.15224-0.36749-0.22837-0.75012-0.22835-1.148-2e-5 -0.39789 0.0761-0.78058 0.22835-1.1481 0.15223-0.36756 0.36902-0.69196 0.65033-0.97327 0.28129-0.28131 0.60571-0.49805 0.97325-0.65033 0.36754-0.15216 0.75023-0.22827 1.1481-0.22827 0.39781 0 0.78049 0.0761 1.148 0.22827 0.36753 0.15228 0.69197 0.36902 0.97329 0.65033 0.2813 0.28131 0.49806 0.60571 0.6503 0.97327 0.15224 0.36755 0.22836 0.75024 0.22838 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m161 604 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m182 515h39v14h-39z" fill="#fff"/><text transform="translate(182.16 526)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625" y="0">entityId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m701 479h20c6.6667 0 11.757 2.8333 15.27 8.5l69.46 112c3.5134 5.6667 8.6033 8.5 15.27 8.5h20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m832 608c-6e-5 0.39777-0.0762 0.78046-0.22852 1.148-0.15228 0.36749-0.36901 0.69196-0.65026 0.97327-0.28138 0.28125-0.60578 0.49798-0.97327 0.65027-0.36749 0.15228-0.75018 0.22839-1.148 0.22845-0.39789-6e-5 -0.78058-0.0762-1.1481-0.22845-0.36756-0.15229-0.69196-0.36902-0.97327-0.65027-0.28131-0.28131-0.49811-0.60578-0.65039-0.97327-0.15216-0.36755-0.22827-0.75024-0.22821-1.148-6e-5 -0.39789 0.0761-0.78058 0.22827-1.1481 0.15222-0.36762 0.36902-0.69202 0.65033-0.97327 0.28131-0.28131 0.60571-0.49811 0.97327-0.65027 0.36755-0.15222 0.75024-0.22833 1.1481-0.22833 0.39777 0 0.78046 0.0761 1.148 0.22833 0.36749 0.15216 0.69189 0.36896 0.97327 0.65027 0.28125 0.28125 0.49798 0.60565 0.65026 0.97327 0.15229 0.36755 0.22846 0.75024 0.22852 1.1481z" fill="#fff"/><g fill="none" stroke="#000" stroke-miterlimit="10"><path d="m832 608c-6e-5 0.39777-0.0762 0.78046-0.22852 1.148-0.15228 0.36749-0.36901 0.69196-0.65026 0.97327-0.28138 0.28125-0.60578 0.49798-0.97327 0.65027-0.36749 0.15228-0.75018 0.22839-1.148 0.22845-0.39789-6e-5 -0.78058-0.0762-1.1481-0.22845-0.36756-0.15229-0.69196-0.36902-0.97327-0.65027-0.28131-0.28131-0.49811-0.60578-0.65039-0.97327-0.15216-0.36755-0.22827-0.75024-0.22821-1.148-6e-5 -0.39789 0.0761-0.78058 0.22827-1.1481 0.15222-0.36762 0.36902-0.69202 0.65033-0.97327 0.28131-0.28131 0.60571-0.49811 0.97327-0.65027 0.36755-0.15222 0.75024-0.22833 1.1481-0.22833 0.39777 0 0.78046 0.0761 1.148 0.22833 0.36749 0.15216 0.69189 0.36896 0.97327 0.65027 0.28125 0.28125 0.49798 0.60565 0.65026 0.97327 0.15229 0.36755 0.22846 0.75024 0.22852 1.1481z"/><path d="m841 604-8 4 8 4"/><path d="m561 42h-420"/></g><path d="m156 42c-2e-5 0.39782-0.0761 0.7805-0.22838 1.148-0.15224 0.36754-0.36902 0.69197-0.65031 0.97327-0.28131 0.2813-0.60575 0.49807-0.97328 0.65031-0.36754 0.15224-0.75022 0.22837-1.148 0.22837-0.39784 0-0.78053-0.07612-1.1481-0.22836-0.36754-0.15224-0.69197-0.36902-0.97327-0.65032-0.28131-0.28131-0.49809-0.60573-0.65033-0.97327-0.15223-0.36754-0.22835-0.75022-0.22833-1.148-2e-5 -0.39783 0.0761-0.78051 0.22833-1.1481 0.15224-0.36754 0.36902-0.69196 0.65033-0.97327 0.2813-0.28131 0.60573-0.49808 0.97327-0.65032s0.75023-0.22836 1.1481-0.22836c0.39781 0 0.78049 0.07612 1.148 0.22836 0.36753 0.15224 0.69197 0.36901 0.97328 0.65032 0.28129 0.2813 0.49807 0.60572 0.65031 0.97327s0.22836 0.75023 0.22838 1.1481z" fill="#fff"/><path d="m156 42c-2e-5 0.39782-0.0761 0.7805-0.22838 1.148-0.15224 0.36754-0.36902 0.69197-0.65031 0.97327-0.28131 0.2813-0.60575 0.49807-0.97328 0.65031-0.36754 0.15224-0.75022 0.22837-1.148 0.22837-0.39784 0-0.78053-0.07612-1.1481-0.22836-0.36754-0.15224-0.69197-0.36902-0.97327-0.65032-0.28131-0.28131-0.49809-0.60573-0.65033-0.97327-0.15223-0.36754-0.22835-0.75022-0.22833-1.148-2e-5 -0.39783 0.0761-0.78051 0.22833-1.1481 0.15224-0.36754 0.36902-0.69196 0.65033-0.97327 0.2813-0.28131 0.60573-0.49808 0.97327-0.65032s0.75023-0.22836 1.1481-0.22836c0.39781 0 0.78049 0.07612 1.148 0.22836 0.36753 0.15224 0.69197 0.36901 0.97328 0.65032 0.28129 0.2813 0.49807 0.60572 0.65031 0.97327s0.22836 0.75023 0.22838 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m141 46 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m319 36h65v14h-65z" fill="#fff"/><text transform="translate(318.81 47)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 12.673828 19.347656 26.021484 29.355469 36.023438 42.023438 48.697266 55.371094 58.705078" y="0">eventTypeId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m241 479h-20c-6.6667 0-10.403-3.31-11.21-9.93l-37.58-309.14c-0.80667-6.62-4.5433-9.93-11.21-9.93h-20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m156 150c-2e-5 0.39781-0.0761 0.78049-0.22838 1.148-0.15224 0.36753-0.36902 0.69195-0.65031 0.97326-0.28131 0.2813-0.60575 0.49808-0.97328 0.65033-0.36754 0.15224-0.75022 0.22836-1.148 0.22838-0.39784-2e-5 -0.78053-0.0761-1.1481-0.22838-0.36754-0.15225-0.69197-0.36903-0.97327-0.65033-0.28131-0.28131-0.49809-0.60573-0.65033-0.97326-0.15223-0.36754-0.22835-0.75022-0.22833-1.148-2e-5 -0.39783 0.0761-0.78052 0.22833-1.1481 0.15224-0.36753 0.36902-0.69197 0.65033-0.97326 0.2813-0.28131 0.60573-0.4981 0.97327-0.65033 0.36754-0.15224 0.75023-0.22835 1.1481-0.22835 0.39781 0 0.78049 0.0761 1.148 0.22835 0.36753 0.15223 0.69197 0.36902 0.97328 0.65033 0.28129 0.28129 0.49807 0.60573 0.65031 0.97326 0.15224 0.36754 0.22836 0.75023 0.22838 1.1481z" fill="#fff"/><path d="m156 150c-2e-5 0.39781-0.0761 0.78049-0.22838 1.148-0.15224 0.36753-0.36902 0.69195-0.65031 0.97326-0.28131 0.2813-0.60575 0.49808-0.97328 0.65033-0.36754 0.15224-0.75022 0.22836-1.148 0.22838-0.39784-2e-5 -0.78053-0.0761-1.1481-0.22838-0.36754-0.15225-0.69197-0.36903-0.97327-0.65033-0.28131-0.28131-0.49809-0.60573-0.65033-0.97326-0.15223-0.36754-0.22835-0.75022-0.22833-1.148-2e-5 -0.39783 0.0761-0.78052 0.22833-1.1481 0.15224-0.36753 0.36902-0.69197 0.65033-0.97326 0.2813-0.28131 0.60573-0.4981 0.97327-0.65033 0.36754-0.15224 0.75023-0.22835 1.1481-0.22835 0.39781 0 0.78049 0.0761 1.148 0.22835 0.36753 0.15223 0.69197 0.36902 0.97328 0.65033 0.28129 0.28129 0.49807 0.60573 0.65031 0.97326 0.15224 0.36754 0.22836 0.75023 0.22838 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m141 154 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m153 301h77v28h-77z" fill="#fff"/><text transform="translate(170.5,312)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453" y="0">entityId/</tspan></text><text transform="translate(153.48 326)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 19.347656 23.34375 29.34375 36.017578 44.021484 50.695312 54.029297 56.695312 60.029297 66.029297 69.363281" y="0">sourceEntityId</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m561 27v-26h120v26" fill="#fff"/><g fill="none" stroke="#000" stroke-miterlimit="10"><path d="m561 27v-26h120v26"/><path d="m561 27v60h120v-60"/><path d="m561 27h120"/></g></g><g transform="scale(2.9932)"><text transform="translate(587.92 20)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 16.337891 24.124023 31.910156 35.799805 43.579102 50.579102 58.365234" y="0">EventType</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m681 57h-120" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath388)"><g transform="scale(2.9932)"><path d="m597 47.9h10.664v0.6h-10.664z"/><text transform="translate(597,47)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 3.3339844" y="0">id</tspan></text></g></g><g clip-path="url(#clipPath404)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m591 27v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath416)"><g transform="scale(2.9932)"><text transform="translate(567,47)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath430)"/><g clip-path="url(#clipPath440)"><g transform="scale(2.9932)"><text transform="translate(597,75)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 23.34375" y="0">name</tspan></text></g></g><g clip-path="url(#clipPath454)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m591 57v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m781 27v-26h130v26" fill="#fff"/><g fill="none" stroke="#000" stroke-miterlimit="10"><path d="m781 27v-26h130v26"/><path d="m781 27v60h130v-60"/><path d="m781 27h130"/></g></g><g transform="scale(2.9932)"><text transform="translate(795.42 20)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 11.662109 19.448242 23.337891 31.124023 35.013672 42.799805 46.689453 54.475586 59.137695 70.799805 78.585938 82.475586 85.585938 93.37207" y="0">MetaInformation</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m911 57h-130" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath484)"><g transform="scale(2.9932)"><path d="m817 47.9h31.348v0.6h-31.348z"/><text transform="translate(817,47)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 7.3300781 14.003906 24.673828" y="0">name</tspan></text></g></g><g clip-path="url(#clipPath500)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m811 27v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath512)"><g transform="scale(2.9932)"><text transform="translate(787,47)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath526)"/><g clip-path="url(#clipPath536)"><g transform="scale(2.9932)"><text transform="translate(817,75)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 15.339844 22.013672" y="0">value</tspan></text></g></g><g clip-path="url(#clipPath550)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m811 57v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m521 751h220l20 20v75h-240z" fill="#fff"/><path d="m521 751h220l20 20v75h-240z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m741 751v20h20z" fill-opacity=".051"/><path d="m741 751v20h20" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)" fill="#000000" font-family="Arial" font-size="12px"><text transform="translate(523,785)"><tspan x="0 6.6738281 13.347656 20.021484 26.695312 33.369141 40.042969 42.708984 49.382812 56.056641 59.390625 66.064453 72.738281 76.072266 79.40625 86.080078 92.753906 96.087891 102.76172 106.75781 113.43164 120.10547 126.7793 130.77539 134.10938 140.10938 143.44336 146.77734 152.77734 159.45117 166.125 169.45898 172.79297 176.12695 182.80078 185.4668 191.4668 194.80078 200.80078 207.47461 210.14062 216.81445" y="0">depending on the property type, this value</tspan></text><text transform="translate(523,799)"><tspan x="0 9.9960938 16.669922 22.669922 26.003906 30 36.673828 40.007812 46.681641 50.677734 54.011719 57.345703 64.019531 67.353516 74.027344 80.701172 84.035156 86.701172 90.035156 92.701172 99.375 105.375 108.70898 115.38281 121.38281 124.7168 127.38281 134.05664 137.39062 141.38672 144.7207 150.7207 157.39453 164.06836 171.07617 177.75 184.42383 187.75781 190.42383 193.75781 199.75781 203.0918 209.76562 218.43164 225.10547 228.43945 232.43555" y="0">may refer to entities by id (type=entityIdRef),</tspan></text><text transform="translate(523,813)"><tspan x="0 6.6738281 10.669922 14.003906 20.677734 26.677734 33.351562 40.025391 43.359375 49.359375 52.693359 59.367188 65.367188 68.701172 71.367188 78.041016 81.375 85.371094 88.705078 94.705078 101.37891 108.05273 115.06055 121.73438 127.73438 134.4082 141.08203 144.41602 147.75 154.42383 163.08984 169.76367 173.09766 177.09375 180.42773 183.76172 193.75781 200.43164 203.09766 206.43164 209.09766 215.77148 218.4375" y="0">or events by id (type=eventIdRef), multiple</tspan></text><text transform="translate(523,827)"><tspan x="0 6 12.673828 15.339844 22.013672 28.6875 34.6875 38.021484 44.021484 50.695312 57.369141 60.703125 67.376953 74.050781 77.384766 83.384766 90.058594 96.732422 102.73242 105.39844 108.73242 111.39844 118.07227 124.74609 128.08008 131.41406 138.08789 142.08398 145.41797 148.75195 155.42578 162.09961 165.43359 171.43359 178.10742 188.10352 194.77734 198.11133 204.78516 211.45898 214.79297 217.45898 220.79297 226.79297 230.12695" y="0">values can be specified for the same entityId</tspan></text><text transform="translate(523,841)"><tspan x="0 6.6738281 13.347656 20.021484 23.355469 30.029297 34.025391 40.699219 47.373047 54.046875 58.042969 61.376953 67.376953 70.710938 77.384766 80.71875 87.392578 93.392578 96.726562 99.392578 106.06641 112.06641 116.0625 122.73633 132.73242 139.40625 146.08008 149.41406 152.08008 158.75391 165.42773 168.76172 174.76172 181.43555 187.43555 194.10938" y="0">and propertyId by incrementing sqcnr</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m122.18 529.63 5e-3 3-1 2e-3 -5e-3 -3zm0.0189 6.0008c0.0545 0.9618 0.36041 1.7749 0.91782 2.4394l-0.76617 0.64258c-0.69971-0.83417-1.0831-1.8427-1.15-3.0255l0.9984-0.0565zm3.1412 3.9411c0.79044 0.31439 1.7281 0.54913 2.8129 0.70422l-0.14148 0.98999c-1.1632-0.16626-2.1769-0.42126-3.041-0.76501zm5.7731 0.92376c0.19307 3e-3 0.38864 5e-3 0.58672 5e-3h2.4691v1h-2.4691c-0.20528 0-0.40674-2e-3 -0.60442-5e-3l0.0177-0.99988zm6.0558 5e-3h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6 0h3v1h-3zm6.0261 9.2e-4c1.1545 0.0112 2.2131 0.12188 3.1755 0.33203l-0.21338 0.97693c-0.89508-0.1955-1.8857-0.29853-2.9718-0.30896l0.01-1zm6.0894 1.4371c0.92346 0.54236 1.6964 1.2361 2.3187 2.0812l-0.80517 0.59301c-0.54126-0.73486-1.2146-1.3388-2.02-1.8119zm3.6944 4.9463c0.26368 0.91388 0.42725 1.9246 0.49079 3.0321l-0.99842 0.0573c-0.0592-1.0329-0.21026-1.9703-0.45318-2.8121l0.96081-0.27722zm0.521 6.1573v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3zm0 6v3h-1v-3z"/><path d="m541 458.5h-50c-6.6667 0-10-3.3333-10-10v-197.5c0-6.6667-3.3333-10-10-10h-30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m456 241c-3e-5 0.39781-0.0761 0.78047-0.22839 1.148-0.15226 0.36754-0.36905 0.69197-0.65033 0.9733-0.28131 0.28129-0.60575 0.49806-0.9733 0.6503-0.36752 0.15225-0.75018 0.22837-1.148 0.22839-0.39786-2e-5 -0.78055-0.0761-1.1481-0.22839-0.36752-0.15224-0.69196-0.36901-0.97324-0.6503-0.28134-0.28133-0.49811-0.60576-0.65033-0.9733-0.15225-0.36754-0.22836-0.7502-0.22833-1.148-3e-5 -0.39784 0.0761-0.78055 0.22833-1.1481 0.15222-0.36753 0.36899-0.69195 0.65033-0.97325 0.28128-0.28131 0.60572-0.49809 0.97324-0.65033 0.36755-0.15222 0.75024-0.22833 1.1481-0.22833 0.3978 0 0.78046 0.0761 1.148 0.22833 0.36755 0.15224 0.69199 0.36902 0.9733 0.65033 0.28128 0.2813 0.49807 0.60572 0.65033 0.97325 0.15225 0.36754 0.22836 0.75025 0.22839 1.1481z" fill="#fff"/><path d="m456 241c-3e-5 0.39781-0.0761 0.78047-0.22839 1.148-0.15226 0.36754-0.36905 0.69197-0.65033 0.9733-0.28131 0.28129-0.60575 0.49806-0.9733 0.6503-0.36752 0.15225-0.75018 0.22837-1.148 0.22839-0.39786-2e-5 -0.78055-0.0761-1.1481-0.22839-0.36752-0.15224-0.69196-0.36901-0.97324-0.6503-0.28134-0.28133-0.49811-0.60576-0.65033-0.9733-0.15225-0.36754-0.22836-0.7502-0.22833-1.148-3e-5 -0.39784 0.0761-0.78055 0.22833-1.1481 0.15222-0.36753 0.36899-0.69195 0.65033-0.97325 0.28128-0.28131 0.60572-0.49809 0.97324-0.65033 0.36755-0.15222 0.75024-0.22833 1.1481-0.22833 0.3978 0 0.78046 0.0761 1.148 0.22833 0.36755 0.15224 0.69199 0.36902 0.9733 0.65033 0.28128 0.2813 0.49807 0.60572 0.65033 0.97325 0.15225 0.36754 0.22836 0.75025 0.22839 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m441 245 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m443 352h75v28h-75z" fill="#fff"/><text transform="translate(459.5,363)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453" y="0">entityId,</tspan></text><text transform="translate(443.48 377)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453 44.689453 48.023438 54.697266 61.371094 67.371094" y="0">entityInstance</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m541 228h-20c-6.6667 0-11.33-3.0567-13.99-9.17l-32.02-73.66c-2.66-6.1133-7.3233-9.17-13.99-9.17h-20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m456 136c-3e-5 0.39781-0.0761 0.7805-0.22839 1.148-0.15226 0.36754-0.36905 0.69196-0.65033 0.97327-0.28131 0.28129-0.60575 0.49807-0.9733 0.65031-0.36752 0.15224-0.75018 0.22836-1.148 0.22838-0.39786-2e-5 -0.78055-0.0761-1.1481-0.22838-0.36752-0.15224-0.69196-0.36902-0.97324-0.65031-0.28134-0.28131-0.49811-0.60573-0.65033-0.97327-0.15225-0.36754-0.22836-0.75023-0.22833-1.148-3e-5 -0.39783 0.0761-0.78052 0.22833-1.1481 0.15222-0.36755 0.36899-0.69198 0.65033-0.97328 0.28128-0.28131 0.60572-0.49808 0.97324-0.65031 0.36755-0.15224 0.75024-0.22835 1.1481-0.22835 0.3978 0 0.78046 0.0761 1.148 0.22835 0.36755 0.15223 0.69199 0.369 0.9733 0.65031 0.28128 0.2813 0.49807 0.60573 0.65033 0.97328 0.15225 0.36754 0.22836 0.75023 0.22839 1.1481z" fill="#fff"/><path d="m456 136c-3e-5 0.39781-0.0761 0.7805-0.22839 1.148-0.15226 0.36754-0.36905 0.69196-0.65033 0.97327-0.28131 0.28129-0.60575 0.49807-0.9733 0.65031-0.36752 0.15224-0.75018 0.22836-1.148 0.22838-0.39786-2e-5 -0.78055-0.0761-1.1481-0.22838-0.36752-0.15224-0.69196-0.36902-0.97324-0.65031-0.28134-0.28131-0.49811-0.60573-0.65033-0.97327-0.15225-0.36754-0.22836-0.75023-0.22833-1.148-3e-5 -0.39783 0.0761-0.78052 0.22833-1.1481 0.15222-0.36755 0.36899-0.69198 0.65033-0.97328 0.28128-0.28131 0.60572-0.49808 0.97324-0.65031 0.36755-0.15224 0.75024-0.22835 1.1481-0.22835 0.3978 0 0.78046 0.0761 1.148 0.22835 0.36755 0.15223 0.69199 0.369 0.9733 0.65031 0.28128 0.2813 0.49807 0.60573 0.65033 0.97328 0.15225 0.36754 0.22836 0.75023 0.22839 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m441 140 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m469 148h44v14h-44z" fill="#fff"/><text transform="translate(468.5,159)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 9.3339844 12 21.996094 28.669922 31.335938 38.009766" y="0">stimulus</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m541 228h-20c-6.6667 0-11.983-2.68-15.95-8.04l-28.1-37.92c-3.9667-5.36-9.2834-8.04-15.95-8.04h-20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m456 174c-3e-5 0.39781-0.0761 0.78049-0.22839 1.148-0.15226 0.36755-0.36905 0.69198-0.65033 0.97328-0.28131 0.28129-0.60575 0.49807-0.9733 0.65031-0.36752 0.15224-0.75018 0.22836-1.148 0.22838-0.39786-2e-5 -0.78055-0.0761-1.1481-0.22838-0.36752-0.15224-0.69196-0.36902-0.97324-0.65031-0.28134-0.2813-0.49811-0.60573-0.65033-0.97328-0.15225-0.36754-0.22836-0.75022-0.22833-1.148-3e-5 -0.39784 0.0761-0.78053 0.22833-1.1481 0.15222-0.36754 0.36899-0.69197 0.65033-0.97327 0.28128-0.28131 0.60572-0.49808 0.97324-0.65031 0.36755-0.15224 0.75024-0.22835 1.1481-0.22835 0.3978 0 0.78046 0.0761 1.148 0.22835 0.36755 0.15223 0.69199 0.369 0.9733 0.65031 0.28128 0.2813 0.49807 0.60573 0.65033 0.97327 0.15225 0.36754 0.22836 0.75023 0.22839 1.1481z" fill="#fff"/><path d="m456 174c-3e-5 0.39781-0.0761 0.78049-0.22839 1.148-0.15226 0.36755-0.36905 0.69198-0.65033 0.97328-0.28131 0.28129-0.60575 0.49807-0.9733 0.65031-0.36752 0.15224-0.75018 0.22836-1.148 0.22838-0.39786-2e-5 -0.78055-0.0761-1.1481-0.22838-0.36752-0.15224-0.69196-0.36902-0.97324-0.65031-0.28134-0.2813-0.49811-0.60573-0.65033-0.97328-0.15225-0.36754-0.22836-0.75022-0.22833-1.148-3e-5 -0.39784 0.0761-0.78053 0.22833-1.1481 0.15222-0.36754 0.36899-0.69197 0.65033-0.97327 0.28128-0.28131 0.60572-0.49808 0.97324-0.65031 0.36755-0.15224 0.75024-0.22835 1.1481-0.22835 0.3978 0 0.78046 0.0761 1.148 0.22835 0.36755 0.15223 0.69199 0.369 0.9733 0.65031 0.28128 0.2813 0.49807 0.60573 0.65033 0.97327 0.15225 0.36754 0.22836 0.75023 0.22839 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m441 178 8-4-8-4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m467 195h49v14h-49z" fill="#fff"/><text transform="translate(466.81 206)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.9960938 10.669922 16.669922 23.34375 30.017578 36.691406 42.691406" y="0">response</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m541 147v-26h160v26" fill="#dae8fc"/><g fill="none" stroke="#6c8ebf" stroke-miterlimit="10"><path d="m541 147v-26h160v26"/><path d="m541 147v188h160v-188"/><path d="m541 147h160"/></g></g><g transform="scale(2.9932)"><text transform="translate(585.47 140)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 8.0322266 12.694336 20.480469 27.480469 35.266602 44.604492 51.604492 59.390625 67.176758" y="0">TraceEvent</tspan></text></g></g><g clip-path="url(#clipPath670)"><g transform="scale(2.9932)"><path d="m577 165.9h60.018v0.60001h-60.018z"/><text transform="translate(577,165)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 3.9960938 7.3300781 18 24.673828 31.347656 35.34375 42.017578 52.6875" y="0">timestamp</tspan></text></g></g><g clip-path="url(#clipPath686)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m571 147v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath698)"><g transform="scale(2.9932)"><text transform="translate(547,165)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath712)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m701 203h-160" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath724)"><g transform="scale(2.9932)"><path d="m577 193.9h32.678v0.60001h-32.678z"/><text transform="translate(577,193)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 20.677734 28.007812" y="0">sqcnr</tspan></text></g></g><g clip-path="url(#clipPath740)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m571 173v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath752)"><g transform="scale(2.9932)"><text transform="translate(547,193)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath766)"/><g clip-path="url(#clipPath776)"><g transform="scale(2.9932)" fill="#000000" font-family="Arial" font-size="12px"><text transform="translate(577,221)"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453" y="0">entityId,</tspan></text><text transform="translate(577,235)"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453 44.689453 48.023438 54.697266 61.371094 67.371094" y="0">entityInstance</tspan></text></g></g><g clip-path="url(#clipPath794)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m571 203v38" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath806)"><g transform="scale(2.9932)"><text transform="translate(547,227)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath820)"/><g clip-path="url(#clipPath830)"><g transform="scale(2.9932)" fill="#000000" font-family="Arial" font-size="12px"><text transform="translate(577,259)"><tspan x="0 6 12.673828 19.347656 23.34375 29.34375 36.017578 44.021484 50.695312 54.029297 56.695312 60.029297 66.029297 69.363281 76.037109" y="0">sourceEntityId,</tspan></text><text transform="translate(577,273)"><tspan x="0 6 12.673828 19.347656 23.34375 29.34375 36.017578 44.021484 50.695312 54.029297 56.695312 60.029297 66.029297 69.363281 76.037109 82.037109 85.371094 92.044922 98.71875 104.71875" y="0">sourceEntityInstance</tspan></text></g></g><g clip-path="url(#clipPath848)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m571 241v38" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath860)"><g transform="scale(2.9932)"><text transform="translate(547,265)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath874)"/><g clip-path="url(#clipPath884)"><g transform="scale(2.9932)"><text transform="translate(577,297)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 12.673828 19.347656 26.021484 29.355469 36.023438 42.023438 48.697266 55.371094 58.705078" y="0">eventTypeId</tspan></text></g></g><g clip-path="url(#clipPath898)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m571 279v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath910)"><g transform="scale(2.9932)"><text transform="translate(547,297)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath924)"/><g clip-path="url(#clipPath934)"><g transform="scale(2.9932)"><text transform="translate(577,323)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 15.339844 22.013672" y="0">value</tspan></text></g></g><g clip-path="url(#clipPath948)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m571 305v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m241 449v-26h120v26" fill="#fff"/><g fill="none" stroke="#000" stroke-miterlimit="10"><path d="m241 449v-26h120v26"/><path d="m241 449v86h120v-86"/><path d="m241 449h120"/></g></g><g transform="scale(2.9932)"><text transform="translate(283.49 442)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 17.124023 21.013672 24.124023 28.013672" y="0">Entity</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m361 479h-120" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath978)"><g transform="scale(2.9932)"><path d="m277 469.9h10.664v0.60001h-10.664z"/><text transform="translate(277,469)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 3.3339844" y="0">id</tspan></text></g></g><g clip-path="url(#clipPath994)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m271 449v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1006)"><g transform="scale(2.9932)"><text transform="translate(247,469)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath1020)"/><g clip-path="url(#clipPath1030)"><g transform="scale(2.9932)"><text transform="translate(277,497)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 23.34375" y="0">name</tspan></text></g></g><g clip-path="url(#clipPath1044)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m271 479v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1056)"><g transform="scale(2.9932)"><text transform="translate(277,523)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 35.349609 41.349609 48.023438 54.697266 58.03125" y="0">entityTypeId</tspan></text></g></g><g clip-path="url(#clipPath1070)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m271 505v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1082)"><g transform="scale(2.9932)"><text transform="translate(247,523)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath1096)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m541 464v-26h160v26" fill="#fff"/><g fill="none" stroke="#000" stroke-miterlimit="10"><path d="m541 464v-26h160v26"/><path d="m541 464v56h160v-56"/><path d="m541 464h160"/></g></g><g transform="scale(2.9932)"><text transform="translate(577.03 457)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 17.124023 21.013672 24.124023 28.013672 35.013672 38.90332 46.689453 53.689453 57.579102 65.365234 73.151367 80.151367" y="0">EntityInstance</tspan></text></g></g><g clip-path="url(#clipPath1122)"><g transform="scale(2.9932)"><path d="m603 482.9h42.668v0.60001h-42.668z"/><text transform="translate(603,482)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891" y="0">entityId</tspan></text></g></g><g clip-path="url(#clipPath1138)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m597 464v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1150)"><g transform="scale(2.9932)"><text transform="translate(547,482)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1164)"/><g clip-path="url(#clipPath1174)"><g transform="scale(2.9932)"><path d="m603 508.9h32.678v0.60001h-32.678z"/><text transform="translate(603,508)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 20.677734 28.007812" y="0">sqcnr</tspan></text></g></g><g clip-path="url(#clipPath1190)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m597 490v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1202)"><g transform="scale(2.9932)"><text transform="translate(547,508)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath1216)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m1 760v-26h100v26" fill="#d5e8d4"/><g fill="none" stroke="#82b366" stroke-miterlimit="10"><path d="m1 760v-26h100v26"/><path d="m1 760v86h100v-86"/><path d="m1 760h100"/></g></g><g transform="scale(2.9932)"><text transform="translate(31.945 753)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 11.662109 19.448242 23.337891 28 31.110352" y="0">Metric</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m101 790h-100" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1244)"><g transform="scale(2.9932)"><path d="m37 780.9h10.664v0.59998h-10.664z"/><text transform="translate(37,780)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 3.3339844" y="0">id</tspan></text></g></g><g clip-path="url(#clipPath1260)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 760v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1272)"><g transform="scale(2.9932)"><text transform="translate(7,780)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath1286)"/><g clip-path="url(#clipPath1296)"><g transform="scale(2.9932)"><text transform="translate(37,808)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 23.34375" y="0">name</tspan></text></g></g><g clip-path="url(#clipPath1310)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 790v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1322)"><g transform="scale(2.9932)"><text transform="translate(37,834)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 9.3398438 19.335938 26.009766 32.683594 38.683594 41.349609 48.023438" y="0">dimension</tspan></text></g></g><g clip-path="url(#clipPath1336)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 816v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m1 587v-26h160v26" fill="#d5e8d4"/><g fill="none" stroke="#82b366" stroke-miterlimit="10"><path d="m1 587v-26h160v26"/><path d="m1 587v86h160v-86"/><path d="m1 587h160"/></g></g><g transform="scale(2.9932)"><text transform="translate(27.054 580)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 17.124023 21.013672 24.124023 28.013672 35.013672 46.675781 54.461914 58.351562 63.013672 66.124023 73.124023 81.422852 89.208984 92.319336 100.10547" y="0">EntityMetricValue</tspan></text></g></g><g clip-path="url(#clipPath1364)"><g transform="scale(2.9932)"><path d="m63 605.9h42.668v0.59998h-42.668z"/><text transform="translate(63,605)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891" y="0">entityId</tspan></text></g></g><g clip-path="url(#clipPath1380)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m57 587v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1392)"><g transform="scale(2.9932)"><text transform="translate(7,605)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1406)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m161 643h-160" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1418)"><g transform="scale(2.9932)"><path d="m63 633.9h46.682v0.59998h-46.682z"/><text transform="translate(63,633)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 10.669922 17.34375 21.339844 26.009766 29.34375 36.017578 39.351562" y="0">metricId</tspan></text></g></g><g clip-path="url(#clipPath1434)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m57 613v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1446)"><g transform="scale(2.9932)"><text transform="translate(7,633)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1460)"/><g clip-path="url(#clipPath1470)"><g transform="scale(2.9932)"><text transform="translate(63,661)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 15.339844 22.013672" y="0">value</tspan></text></g></g><g clip-path="url(#clipPath1484)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m57 643v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m241 587v-26h200v26" fill="#d5e8d4"/><g fill="none" stroke="#82b366" stroke-miterlimit="10"><path d="m241 587v-26h200v26"/><path d="m241 587v112h200v-112"/><path d="m241 587h200"/></g></g><g transform="scale(2.9932)"><text transform="translate(260.59 580)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 17.124023 21.013672 24.124023 28.013672 35.013672 46.675781 54.461914 58.351562 63.013672 66.124023 73.124023 77.013672 84.799805 91.799805 95.689453 103.47559 111.26172 118.26172 126.04785 134.34668 142.13281 145.24316 153.0293" y="0">EntityMetricInstanceValue</tspan></text></g></g><g clip-path="url(#clipPath1512)"><g transform="scale(2.9932)"><path d="m303 605.9h42.668v0.59998h-42.668z"/><text transform="translate(303,605)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891" y="0">entityId</tspan></text></g></g><g clip-path="url(#clipPath1528)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 587v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1540)"><g transform="scale(2.9932)"><text transform="translate(247,605)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1554)"/><g clip-path="url(#clipPath1564)"><g transform="scale(2.9932)"><path d="m303 631.9h46.682v0.59998h-46.682z"/><text transform="translate(303,631)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 10.669922 17.34375 21.339844 26.009766 29.34375 36.017578 39.351562" y="0">metricId</tspan></text></g></g><g clip-path="url(#clipPath1580)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 613v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1592)"><g transform="scale(2.9932)"><text transform="translate(247,631)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1606)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m441 669h-200" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1618)"><g transform="scale(2.9932)"><path d="m303 659.9h32.678v0.59998h-32.678z"/><text transform="translate(303,659)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 20.677734 28.007812" y="0">sqcnr</tspan></text></g></g><g clip-path="url(#clipPath1634)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 639v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1646)"><g transform="scale(2.9932)"><text transform="translate(247,659)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath1660)"/><g clip-path="url(#clipPath1670)"><g transform="scale(2.9932)"><text transform="translate(303,687)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 15.339844 22.013672" y="0">value</tspan></text></g></g><g clip-path="url(#clipPath1684)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 669v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m241 760v-26h200v26" fill="#d5e8d4"/><g fill="none" stroke="#82b366" stroke-miterlimit="10"><path d="m241 760v-26h200v26"/><path d="m241 760v86h200v-86"/><path d="m241 760h200"/></g></g><g transform="scale(2.9932)"><text transform="translate(260.59 753)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 17.124023 21.013672 24.124023 28.013672 35.013672 38.90332 46.689453 53.689453 57.579102 65.365234 73.151367 80.151367 87.9375 99.599609 107.38574 111.27539 115.9375 119.04785 126.04785 134.34668 142.13281 145.24316 153.0293" y="0">EntityInstanceMetricValue</tspan></text></g></g><g clip-path="url(#clipPath1712)"><g transform="scale(2.9932)"><path d="m303 778.9h130.03v0.59998h-130.03z"/><text transform="translate(303,778)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891 42.667969 46.001953 49.335938 56.009766 63.339844 67.335938 70.669922 74.666016 81.339844 84.673828 92.003906 98.677734 102.67383 109.34766 116.67773 123.35156" y="0">entityId, entityInstance</tspan></text></g></g><g clip-path="url(#clipPath1728)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 760v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1740)"><g transform="scale(2.9932)"><text transform="translate(247,778)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1754)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m441 816h-200" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1766)"><g transform="scale(2.9932)"><path d="m303 806.9h46.682v0.59998h-46.682z"/><text transform="translate(303,806)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 10.669922 17.34375 21.339844 26.009766 29.34375 36.017578 39.351562" y="0">metricId</tspan></text></g></g><g clip-path="url(#clipPath1782)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 786v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1794)"><g transform="scale(2.9932)"><text transform="translate(247,806)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1808)"/><g clip-path="url(#clipPath1818)"><g transform="scale(2.9932)"><text transform="translate(303,834)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 15.339844 22.013672" y="0">value</tspan></text></g></g><g clip-path="url(#clipPath1832)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 816v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m841 396v-26h240v26" fill="#dae8fc"/><g fill="none" stroke="#6c8ebf" stroke-miterlimit="10"><path d="m841 396v-26h240v26"/><path d="m841 396v450h240v-450"/><path d="m841 396h240"/></g></g><g transform="scale(2.9932)"><text transform="translate(879.94 389)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 14 21.786133 28.786133 36.572266 43.572266 50.572266 54.461914 62.248047 69.248047 73.137695 80.923828 88.709961 95.709961 103.49609 111.52832 116.19043 123.97656 130.97656 138.7627 142.65234 150.43848 154.32812" y="0">ProcessInstanceTraceInfo</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m1081 426h-240" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1862)"><g transform="scale(2.9932)"><path d="m903 416.9h130.03v0.60001h-130.03z"/><text transform="translate(903,416)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891 42.667969 46.001953 49.335938 56.009766 63.339844 67.335938 70.669922 74.666016 81.339844 84.673828 92.003906 98.677734 102.67383 109.34766 116.67773 123.35156" y="0">entityId, entityInstance</tspan></text></g></g><g clip-path="url(#clipPath1878)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 396v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1890)"><g transform="scale(2.9932)"><text transform="translate(847,416)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath1904)"/><g clip-path="url(#clipPath1914)"><g transform="scale(2.9932)"><text transform="translate(903,444)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.013672 18.679688 26.683594 32.683594 39.357422 46.03125 49.365234 58.03125 64.705078 71.378906 78.052734" y="0">pollEventCount</tspan></text></g></g><g clip-path="url(#clipPath1928)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 426v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1940)"><g transform="scale(2.9932)"><text transform="translate(903,470)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.6660156 15.339844 18.005859 21.339844 29.34375 35.34375 42.017578 48.691406 52.025391 60.691406 67.365234 74.039062 80.712891" y="0">waitEventCount</tspan></text></g></g><g clip-path="url(#clipPath1954)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 452v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1966)"><g transform="scale(2.9932)"><text transform="translate(903,496)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 17.34375 23.34375 31.347656 37.347656 44.021484 50.695312 54.029297 62.695312 69.369141 76.042969 82.716797" y="0">parkEventCount</tspan></text></g></g><g clip-path="url(#clipPath1980)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 478v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath1992)"><g transform="scale(2.9932)"><text transform="translate(903,522)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 10.669922 17.34375 24.017578 34.013672 40.6875 44.021484 52.025391 58.025391 64.699219 71.373047 74.707031 83.373047 90.046875 96.720703 103.39453" y="0">preemptEventCount</tspan></text></g></g><g clip-path="url(#clipPath2006)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 504v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2018)"><g transform="scale(2.9932)"><text transform="translate(903,548)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.9960938 10.669922 17.34375 25.347656 31.347656 38.021484 44.695312 48.029297 56.695312 63.369141 70.042969 76.716797" y="0">runEventCount</tspan></text></g></g><g clip-path="url(#clipPath2032)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 530v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2044)"><g transform="scale(2.9932)"><text transform="translate(903,574)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.9960938 10.669922 13.335938 20.009766 26.683594 32.683594 39.357422 46.03125 52.705078 59.378906 63.375 69.375 72.041016 78.714844 85.388672 93.392578 99.392578 106.06641 112.74023 116.07422 124.74023 131.41406 138.08789 144.76172" y="0">release_parkingEventCount</tspan></text></g></g><g clip-path="url(#clipPath2058)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 556v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2070)"><g transform="scale(2.9932)"><text transform="translate(903,600)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.9960938 10.669922 16.669922 23.34375 33.339844 40.013672 48.017578 54.017578 60.691406 67.365234 70.699219 79.365234 86.039062 92.712891 99.386719" y="0">resumeEventCount</tspan></text></g></g><g clip-path="url(#clipPath2084)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 582v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2096)"><g transform="scale(2.9932)"><text transform="translate(903,626)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.3339844 10.007812 14.003906 24 26.666016 33.339844 40.013672 43.347656 50.021484 58.025391 64.025391 70.699219 77.373047 80.707031 89.373047 96.046875 102.7207 109.39453" y="0">terminateEventCount</tspan></text></g></g><g clip-path="url(#clipPath2110)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 608v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2122)"><g transform="scale(2.9932)"><text transform="translate(903,652)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.013672 18.679688 25.353516 32.027344 38.701172 42.697266 48.697266 51.363281 58.037109 64.710938 72.714844 78.714844 85.388672 92.0625 95.396484 104.0625 110.73633 117.41016 124.08398" y="0">poll_parkingEventCount</tspan></text></g></g><g clip-path="url(#clipPath2136)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 634v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2148)"><g transform="scale(2.9932)"><text transform="translate(903,678)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.9960938 10.669922 13.335938 20.009766 26.683594 32.683594 39.357422 47.361328 53.361328 60.035156 66.708984 70.042969 78.708984 85.382812 92.056641 98.730469" y="0">releaseEventCount</tspan></text></g></g><g clip-path="url(#clipPath2162)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 660v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2174)"><g transform="scale(2.9932)"><text transform="translate(903,704)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 12.673828 16.007812 18.673828 24.673828 31.347656 34.681641 41.355469 49.359375 55.359375 62.033203 68.707031 72.041016 80.707031 87.380859 94.054688 100.72852" y="0">activateEventCount</tspan></text></g></g><g clip-path="url(#clipPath2188)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 686v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2200)"><g transform="scale(2.9932)"><text transform="translate(903,730)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 9.3339844 16.007812 20.003906 23.337891 31.341797 37.341797 44.015625 50.689453 54.023438 62.689453 69.363281 76.037109 82.710938" y="0">startEventCount</tspan></text></g></g><g clip-path="url(#clipPath2214)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 712v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2226)"><g transform="scale(2.9932)"><text transform="translate(903,756)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 20.021484 26.695312 33.369141 40.042969 46.716797 56.712891 59.378906 66.052734 70.048828 76.722656 80.056641 82.722656 89.396484 96.070312 104.07422 110.07422 116.74805 123.42188 126.75586 135.42188 142.0957 148.76953 155.44336" y="0">boundedmigrationEventCount</tspan></text></g></g><g clip-path="url(#clipPath2240)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 738v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2252)"><g transform="scale(2.9932)"><text transform="translate(903,782)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.3339844 10.007812 12.673828 15.339844 25.335938 28.001953 34.675781 38.671875 45.345703 48.679688 51.345703 58.019531 64.693359 72.697266 78.697266 85.371094 92.044922 95.378906 104.04492 110.71875 117.39258 124.06641" y="0">fullmigrationEventCount</tspan></text></g></g><g clip-path="url(#clipPath2266)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 764v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2278)"><g transform="scale(2.9932)"><text transform="translate(903,808)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 9.9960938 13.330078 20.003906 22.669922 25.335938 35.332031 37.998047 41.332031 48.005859 54.005859 60.005859 66.679688 73.353516 80.027344 86.701172 93.375 101.37891 107.37891 114.05273 120.72656 124.06055 132.72656 139.40039 146.07422 152.74805" y="0">mtalimitexceededEventCount</tspan></text></g></g><g clip-path="url(#clipPath2292)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 790v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2304)"><g transform="scale(2.9932)"><text transform="translate(903,834)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 2.6660156 8.6660156 17.332031 24.005859 34.001953 40.675781 43.341797 50.015625 53.349609" y="0">isComplete</tspan></text></g></g><g clip-path="url(#clipPath2318)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 816v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m1 27v-26h140v26" fill="#fff2cc"/><g fill="none" stroke="#d6b656" stroke-miterlimit="10"><path d="m1 27v-26h140v26"/><path d="m1 27v138h140v-138"/><path d="m1 27h140"/></g></g><g transform="scale(2.9932)"><text transform="translate(53.1 20)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 16.337891 24.124023 31.910156" y="0">Event</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m141 57h-140" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2348)"><g transform="scale(2.9932)"><path d="m37 47.9h10.664v0.6h-10.664z"/><text transform="translate(37,47)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 3.3339844" y="0">id</tspan></text></g></g><g clip-path="url(#clipPath2364)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 27v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2376)"><g transform="scale(2.9932)"><text transform="translate(7,47)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath2390)"/><g clip-path="url(#clipPath2400)"><g transform="scale(2.9932)"><text transform="translate(37,75)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 23.34375" y="0">name</tspan></text></g></g><g clip-path="url(#clipPath2414)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 57v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2426)"><g transform="scale(2.9932)"><text transform="translate(37,101)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 12.673828 19.347656 26.021484 29.355469 36.023438 42.023438 48.697266 55.371094 58.705078" y="0">eventTypeId</tspan></text></g></g><g clip-path="url(#clipPath2440)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 83v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2452)"><g transform="scale(2.9932)"><text transform="translate(7,101)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath2466)"/><g clip-path="url(#clipPath2476)"><g transform="scale(2.9932)"><text transform="translate(37,127)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625" y="0">entityId</tspan></text></g></g><g clip-path="url(#clipPath2490)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 109v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2502)"><g transform="scale(2.9932)"><text transform="translate(7,127)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath2516)"/><g clip-path="url(#clipPath2526)"><g transform="scale(2.9932)"><text transform="translate(37,153)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 19.347656 23.34375 29.34375 36.017578 44.021484 50.695312 54.029297 56.695312 60.029297 66.029297 69.363281" y="0">sourceEntityId</tspan></text></g></g><g clip-path="url(#clipPath2540)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 135v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2552)"><g transform="scale(2.9932)"><text transform="translate(7,153)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath2566)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m1 235v-26h140v26" fill="#fff2cc"/><g fill="none" stroke="#d6b656" stroke-miterlimit="10"><path d="m1 235v-26h140v26"/><path d="m1 235v86h140v-86"/><path d="m1 235h140"/></g></g><g transform="scale(2.9932)"><text transform="translate(44.545 228)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 14 21.786133 29.572266 37.358398 42.020508 45.910156" y="0">Property</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m141 265h-140" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2594)"><g transform="scale(2.9932)"><path d="m37 255.9h10.664v0.60001h-10.664z"/><text transform="translate(37,255)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 3.3339844" y="0">id</tspan></text></g></g><g clip-path="url(#clipPath2610)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 235v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2622)"><g transform="scale(2.9932)"><text transform="translate(7,255)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath2636)"/><g clip-path="url(#clipPath2646)"><g transform="scale(2.9932)"><text transform="translate(37,283)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 23.34375" y="0">name</tspan></text></g></g><g clip-path="url(#clipPath2660)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 265v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2672)"><g transform="scale(2.9932)"><text transform="translate(37,309)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.3339844 9.3339844 16.007812" y="0">type</tspan></text></g></g><g clip-path="url(#clipPath2686)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m31 291v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m1 417v-26h140v26" fill="#fff2cc"/><g fill="none" stroke="#d6b656" stroke-miterlimit="10"><path d="m1 417v-26h140v26"/><path d="m1 417v112h140v-112"/><path d="m1 417h140"/></g></g><g transform="scale(2.9932)"><text transform="translate(27.161 410)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 14 21.786133 29.572266 37.358398 42.020508 45.910156 52.910156 61.208984 68.995117 72.105469 79.891602" y="0">PropertyValue</tspan></text></g></g><g clip-path="url(#clipPath2714)"><g transform="scale(2.9932)"><path d="m63 435.9h42.668v0.60001h-42.668z"/><text transform="translate(63,435)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891" y="0">entityId</tspan></text></g></g><g clip-path="url(#clipPath2730)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m57 417v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2742)"><g transform="scale(2.9932)"><text transform="translate(7,435)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath2756)"/><g clip-path="url(#clipPath2766)"><g transform="scale(2.9932)"><path d="m63 461.9h59.338v0.60001h-59.338z"/><text transform="translate(63,461)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 7.3300781 12 19.330078 26.660156 33.333984 38.003906 42 48.673828 52.007812" y="0">propertyId</tspan></text></g></g><g clip-path="url(#clipPath2782)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m57 443v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2794)"><g transform="scale(2.9932)"><text transform="translate(7,461)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath2808)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m141 499h-140" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2820)"><g transform="scale(2.9932)"><path d="m63 489.9h32.678v0.60001h-32.678z"/><text transform="translate(63,489)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 20.677734 28.007812" y="0">sqcnr</tspan></text></g></g><g clip-path="url(#clipPath2836)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m57 469v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2848)"><g transform="scale(2.9932)"><text transform="translate(7,489)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath2862)"/><g clip-path="url(#clipPath2872)"><g transform="scale(2.9932)"><text transform="translate(63,517)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 15.339844 22.013672" y="0">value</tspan></text></g></g><g clip-path="url(#clipPath2886)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m57 499v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m241 310v-26h120v26" fill="#fff"/><g fill="none" stroke="#000" stroke-miterlimit="10"><path d="m241 310v-26h120v26"/><path d="m241 310v60h120v-60"/><path d="m241 310h120"/></g></g><g transform="scale(2.9932)"><text transform="translate(268.32 303)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 17.124023 21.013672 24.124023 28.013672 35.013672 42.792969 49.792969 57.579102" y="0">EntityType</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m361 340h-120" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2916)"><g transform="scale(2.9932)"><path d="m277 330.9h10.664v0.60001h-10.664z"/><text transform="translate(277,330)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 3.3339844" y="0">id</tspan></text></g></g><g clip-path="url(#clipPath2932)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m271 310v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath2944)"><g transform="scale(2.9932)"><text transform="translate(247,330)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062" y="0">PK</tspan></text></g></g><g clip-path="url(#clipPath2958)"/><g clip-path="url(#clipPath2968)"><g transform="scale(2.9932)"><text transform="translate(277,358)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 23.34375" y="0">name</tspan></text></g></g><g clip-path="url(#clipPath2982)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m271 340v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m241 87v-26h200v26" fill="#dae8fc"/><g fill="none" stroke="#6c8ebf" stroke-miterlimit="10"><path d="m241 87v-26h200v26"/><path d="m241 87v162h200v-162"/><path d="m241 87h200"/></g></g><g transform="scale(2.9932)"><text transform="translate(266.67 80)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 9.3378906 16.337891 24.124023 31.910156 35.799805 45.910156 53.696289 61.482422 64.592773 72.378906 76.268555 84.054688 91.054688 94.944336 102.73047 110.5166 117.5166 125.30273 129.19238 136.97852 140.86816" y="0">EventChainInstanceInfo</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m441 117h-200" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3012)"><g transform="scale(2.9932)"><path d="m303 107.9h130.03v0.6h-130.03z"/><text transform="translate(303,107)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891 42.667969 46.001953 49.335938 56.009766 63.339844 67.335938 70.669922 74.666016 81.339844 84.673828 92.003906 98.677734 102.67383 109.34766 116.67773 123.35156" y="0">entityId, entityInstance</tspan></text></g></g><g clip-path="url(#clipPath3028)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 87v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3040)"><g transform="scale(2.9932)"><text transform="translate(247,107)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath3054)"/><g clip-path="url(#clipPath3064)"><g transform="scale(2.9932)" fill="#000000" font-family="Arial" font-size="12px"><text transform="translate(303,135)"><tspan x="0 6 9.3339844 12 21.996094 28.669922 31.335938 38.009766 44.009766 50.894531 53.560547 63.556641 70.230469 76.230469 79.564453 86.238281 96.234375 102.9082" y="0">stimulusTimestamp,</tspan></text><text transform="translate(303,149)"><tspan x="0 6 9.3339844 12 21.996094 28.669922 31.335938 38.009766 44.009766 52.013672 58.6875 64.6875 71.361328" y="0">stimulusSqcnr</tspan></text></g></g><g clip-path="url(#clipPath3082)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 117v38" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3094)"><g transform="scale(2.9932)"><text transform="translate(247,141)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath3108)"/><g clip-path="url(#clipPath3118)"><g transform="scale(2.9932)" fill="#000000" font-family="Arial" font-size="12px"><text transform="translate(303,173)"><tspan x="0 3.9960938 10.669922 16.669922 23.34375 30.017578 36.691406 42.691406 49.365234 56.25 58.916016 68.912109 75.585938 81.585938 84.919922 91.59375 101.58984 108.26367" y="0">responseTimestamp,</tspan></text><text transform="translate(303,187)"><tspan x="0 3.9960938 10.669922 16.669922 23.34375 30.017578 36.691406 42.691406 49.365234 57.369141 64.042969 70.042969 76.716797" y="0">responseSqcnr</tspan></text></g></g><g clip-path="url(#clipPath3136)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 155v38" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3148)"><g transform="scale(2.9932)"><text transform="translate(247,179)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 7.3300781" y="0">FK</tspan></text></g></g><g clip-path="url(#clipPath3162)"/><g clip-path="url(#clipPath3172)"><g transform="scale(2.9932)"><text transform="translate(303,211)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 2.6660156 8.6660156 16.669922 23.34375" y="0">isAge</tspan></text></g></g><g clip-path="url(#clipPath3186)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 193v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3198)"><g transform="scale(2.9932)"><text transform="translate(303,237)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 2.6660156 8.6660156 17.332031 24.005859 30.679688 36.679688 40.013672 42.679688 49.353516" y="0">isReaction</tspan></text></g></g><g clip-path="url(#clipPath3212)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m297 219v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m841 171v-26h240v26" fill="#dae8fc"/><g fill="none" stroke="#6c8ebf" stroke-miterlimit="10"><path d="m841 171v-26h240v26"/><path d="m841 171v164h240v-164"/><path d="m841 171h240"/></g></g><g transform="scale(2.9932)"><text transform="translate(875.26 164)" fill="#000000" font-family="Arial" font-size="14px"><tspan x="0 10.110352 17.896484 25.682617 33.46875 41.254883 49.041016 52.151367 59.9375 63.827148 71.613281 78.613281 82.50293 90.289062 98.075195 105.0752 112.86133 120.89355 125.55566 133.3418 140.3418 148.12793 152.01758 159.80371 163.69336" y="0">RunnableInstanceTraceInfo</tspan></text></g><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m1081 201h-240" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3242)"><g transform="scale(2.9932)"><path d="m903 191.9h130.03v0.60001h-130.03z"/><text transform="translate(903,191)" fill="#000000" font-family="Arial" font-size="12px" font-weight="bold"><tspan x="0 6.6738281 14.003906 18 21.333984 25.330078 32.003906 35.337891 42.667969 46.001953 49.335938 56.009766 63.339844 67.335938 70.669922 74.666016 81.339844 84.673828 92.003906 98.677734 102.67383 109.34766 116.67773 123.35156" y="0">entityId, entityInstance</tspan></text></g></g><g clip-path="url(#clipPath3258)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 171v30" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3270)"><g transform="scale(2.9932)"><text transform="translate(847,191)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 8.0039062 16.007812 19.341797 22.675781 30.005859" y="0">PK, FK</tspan></text></g></g><g clip-path="url(#clipPath3284)"/><g clip-path="url(#clipPath3294)"><g transform="scale(2.9932)"><text transform="translate(903,219)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 12.673828 18.673828 25.347656 32.021484 38.695312 45.369141 53.373047 59.373047 66.046875 72.720703 76.054688 84.720703 91.394531 98.068359 104.74219" y="0">suspendEventCount</tspan></text></g></g><g clip-path="url(#clipPath3308)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 201v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3320)"><g transform="scale(2.9932)"><text transform="translate(903,245)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.9960938 10.669922 16.669922 23.34375 33.339844 40.013672 48.017578 54.017578 60.691406 67.365234 70.699219 79.365234 86.039062 92.712891 99.386719" y="0">resumeEventCount</tspan></text></g></g><g clip-path="url(#clipPath3334)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 227v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3346)"><g transform="scale(2.9932)"><text transform="translate(903,271)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 3.3339844 10.007812 14.003906 24 26.666016 33.339844 40.013672 43.347656 50.021484 58.025391 64.025391 70.699219 77.373047 80.707031 89.373047 96.046875 102.7207 109.39453" y="0">terminateEventCount</tspan></text></g></g><g clip-path="url(#clipPath3360)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 253v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3372)"><g transform="scale(2.9932)"><text transform="translate(903,297)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6 9.3339844 16.007812 20.003906 23.337891 31.341797 37.341797 44.015625 50.689453 54.023438 62.689453 69.363281 76.037109 82.710938" y="0">startEventCount</tspan></text></g></g><g clip-path="url(#clipPath3386)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 279v26" fill="none" stroke="#000" stroke-miterlimit="10"/></g></g><g clip-path="url(#clipPath3398)"><g transform="scale(2.9932)"><text transform="translate(903,323)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 2.6660156 8.6660156 17.332031 24.005859 34.001953 40.675781 43.341797 50.015625 53.349609" y="0">isComplete</tspan></text></g></g><g clip-path="url(#clipPath3412)"><g transform="matrix(2.9932 0 0 2.9932 1.4966 1.4966)"><path d="m897 305v30" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m701 479h20c6.6667 0 11.057-3.16 13.17-9.48l73.66-220.04c2.1133-6.32 6.5033-9.48 13.17-9.48h20" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m832 240c-6e-5 0.39781-0.0762 0.7805-0.22852 1.148-0.15228 0.36754-0.36901 0.69196-0.65026 0.97328-0.28138 0.2813-0.60578 0.49806-0.97327 0.6503s-0.75018 0.22836-1.148 0.22838c-0.39789-2e-5 -0.78058-0.0761-1.1481-0.22836-0.36756-0.15226-0.69196-0.36902-0.97327-0.65032-0.28131-0.28132-0.49811-0.60576-0.65039-0.97329-0.15216-0.36754-0.22827-0.75022-0.22821-1.148-6e-5 -0.39784 0.0761-0.78055 0.22827-1.1481 0.15222-0.36753 0.36902-0.69195 0.65033-0.97325 0.28131-0.28129 0.60571-0.49808 0.97327-0.65031 0.36755-0.15224 0.75024-0.22835 1.1481-0.22835 0.39777 0 0.78046 0.0761 1.148 0.22835 0.36749 0.15223 0.69189 0.36902 0.97327 0.65031 0.28125 0.2813 0.49798 0.60572 0.65026 0.97325 0.15229 0.36754 0.22846 0.75025 0.22852 1.1481z" fill="#fff"/><path d="m832 240c-6e-5 0.39781-0.0762 0.7805-0.22852 1.148-0.15228 0.36754-0.36901 0.69196-0.65026 0.97328-0.28138 0.2813-0.60578 0.49806-0.97327 0.6503s-0.75018 0.22836-1.148 0.22838c-0.39789-2e-5 -0.78058-0.0761-1.1481-0.22836-0.36756-0.15226-0.69196-0.36902-0.97327-0.65032-0.28131-0.28132-0.49811-0.60576-0.65039-0.97329-0.15216-0.36754-0.22827-0.75022-0.22821-1.148-6e-5 -0.39784 0.0761-0.78055 0.22827-1.1481 0.15222-0.36753 0.36902-0.69195 0.65033-0.97325 0.28131-0.28129 0.60571-0.49808 0.97327-0.65031 0.36755-0.15224 0.75024-0.22835 1.1481-0.22835 0.39777 0 0.78046 0.0761 1.148 0.22835 0.36749 0.15223 0.69189 0.36902 0.97327 0.65031 0.28125 0.2813 0.49798 0.60572 0.65026 0.97325 0.15229 0.36754 0.22846 0.75025 0.22852 1.1481z" fill="none" stroke="#000" stroke-miterlimit="10"/><path d="m841 236-8 4 8 4" fill="none" stroke="#000" stroke-miterlimit="10"/></g><g transform="scale(2.9932)"><path d="m714 467h75v28h-75z" fill="#fff"/><text transform="translate(730.5,478)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453" y="0">entityId,</tspan></text><text transform="translate(714.48 492)" fill="#000000" font-family="Arial" font-size="12px"><tspan x="0 6.6738281 13.347656 16.681641 19.347656 22.681641 28.681641 32.015625 38.689453 44.689453 48.023438 54.697266 61.371094 67.371094" y="0">entityInstance</tspan></text></g></g></g></svg>